About 50 results
Open links in new tab
  1. linux - Understanding UNIX permissions and file types - Unix & Linux ...

    Feb 10, 2015 · The permissions are the same as already discussed (r, w, and x). The chmod command lets us add and subtract permissions from an existing set using + or - instead of =.

  2. How do I copy a folder keeping owners and permissions intact?

    tar keeps permissions, ownership and directory structure intact, but converts everything into a stream of bytes. You run a "subshell" (the parenthesized commands) that change directory, and then get tar to …

  3. How to get permission number by string : -rw-r--r--

    May 31, 2012 · The full permissions mode number is a 4-digit octal number, though most of the time, you only use the 3 least-significant digits. Add up each group in the permissions string, taking r=4, …

  4. How to handle CHMOD permissions like an expert? - Unix & Linux …

    Feb 15, 2022 · 0 So Unix/Linux permissions work according to numbers and addition, okay? It's pretty simple once you understand this. Permissions-wise, you can have three possible permission rights …

  5. What's meaning of the `c` in `crw-rw-rw-` in linux file permissions?

    I wouldn't call the linked question "Understanding UNIX permissions and file types" a duplicate of this question. It's similar and overlapping, but far from the same.

  6. How to set default file permissions for all folders/files in a ... - linux

    Nov 16, 2020 · I want to set a folder such that anything created within it (directories, files) inherit default permissions and group. Lets call the group "media". And also, the folders/files created within the

  7. What does the 's' attribute in file permissions mean?

    Mar 26, 2016 · You can set the suid bit using chmod, eg chmod 4755 which will give a file give the normal permissions 755 does (rwxr-xr-x) and add the suid bit to give rwsr-xr-x You can clear the …

  8. chown - chmod to change permissions of specific user - Unix & Linux ...

    May 19, 2021 · 0 The traditional Unix permissions are quite coarse-grained, distinguishing only between owner (user), group and others, where a user (more precisely, a process) can belong to several groups.

  9. Is there a filesystem supporting Linux permissions and Windows …

    Jan 17, 2025 · Is there a filesystem that respects both these requirements? supports Linux standard file permissions is recognized natively by Windows I would like to use it to format an USB external stick I …

  10. File Permissions mode ending in @ or - Unix & Linux Stack Exchange

    90 I was changing file permissions and I noticed that some of the permissions modes ended in @ as in -rw-r--r--@, or a + as in drwxr-x---+. I've looked at the man pages for chmod and chown, and …