I know I can assign the permission to write to an owner/group/others like this:
chmod u+w myfolder
Can I specify the specific user here? Some like this:
chmod username u+w myfolder
I know I can assign the permission to write to an owner/group/others like this:
chmod u+w myfolder
Can I specify the specific user here? Some like this:
chmod username u+w myfolder
You could use setfacl
:
setfacl -m u:username:rwx myfolder
This sets permissions for specific users, without changing the ownership of the directory.
Check out the man page for further details and examples.
Note:
setfacl
is short for set File ACL (Access Control List)
If you want to apply it recursively to all the subdirectories: add the -R flag like this:
setfacl -R -m u:username:rwx myfolder
setfacl
is available on CentOS (yum -y install acl
) & FreeBSD as well.
– Viet
Apr 20 '17 at 12:21
setfacl -R -m u:username:rwx myfolder
– Jose A
Mar 14 '18 at 21:01
rw
without changing any existing x
permission, if operating on multiple files or recursively?
– Qi Fan
Apr 23 '18 at 21:58
If you want to change the user owning this file or directory (folder), you will have to use the command chown
. For instance, if you run
sudo chown username: myfolder
the user owning myfolder will be username. Then you can execute
sudo chmod u+w myfolder
to add the write permission to the username user.
But if you want to add this user to the group associated with "myfolder", you can run
sudo usermod -a -G groupname username
and then execute
sudo chmod g+w myfolder
to add the write permission to the group.
username
the owning group is also changed to username
(if you omit such a colon, the owning group will not change).
– Charo
Apr 18 '18 at 08:46
No this is not possible. You can either change the owner of the file with
[sudo] chown username: foldername
or you can add the user to the group that owns the file with
usermod -a -G {group-name} username
useradd -G {group-name} username
tells me that username already exists
– Erdal G.
Sep 20 '16 at 11:51
If you want to apply it recursively to all the subdirectories: add the -R flag like this:
setfacl -R -m u:username:rwx myfolder
In Ubuntu recursively (folder and it's all sub folders) giving permission to a specific user:
sudo chown -R <username>: <folderName>