About 484,000 results
Open links in new tab
  1. linux - Understanding UNIX permissions and file types - Unix

    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 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, …

  3. 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, …

  4. SSH Key Permissions chmod settings? - Unix & Linux Stack Exchange

    I want to add to the answers above that for me my home directory (~/) also needed to have the permissions 755, regardless of the permissions of ~/.ssh and the files therein.

  5. 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 …

  6. permissions - Give read-only access to specific folders? - Unix

    To edit permissions use chmod. Usage: chmod xyz <file or directory> x - the sum of owner permissions y - the sum of owner group permissions z - the sum of rest users/groups …

  7. Uppercase S in permissions of a folder - Unix & Linux Stack …

    That means that any file dropped into the folder will take on the folder's owning group. For example: Suppose you have a folder called "shared" which belongs to user "intrpc" and group …

  8. User permissions in NFS mounted directory - Unix & Linux Stack …

    Jan 2, 2016 · The command for mounting the folder used is : mount /orabackup Now , the "orabackup" folder is mounted . However the oracle user cannot read and write, and needs …

  9. Mounting volume/partition with permissions for user

    Jul 13, 2018 · 25 A volume intended for use by my user was created at OS installation with root ownership and my user lacks write permissions. Some solutions I've read about include: …

  10. linux - How to change permissions from root user to all users?

    Nov 13, 2013 · I created a folder on the command line as the root user. Now I want to edit it and its contents in GUI mode. How do I change the permissions on it to allow me to do this?