在 Linux 上给用户赋予指定目录的读写权限

使用用户组来为用户赋予指定目录的读写权限

如果用户已经拥有了默认的用户组(通常组名与用户名相同),或者已经所属某个用户组,就可以简单的通过变更文件夹的所属用户组来完成。

# chgrp -R storm /usr/local

如果想重新建立用户及用户组,并且重新设置权限,需要按照下面步骤操作。

1、创建用户

# useradd restart1025

2、设置密码

# passwd restart1025

3、创建用户组

# groupadd storm

4、设置用户所属用户组

# usermod -aG storm restart1025      # add restart1025 to storm
# groups restart1025                 # check restart1025 groups

5、 将目录的所属用户组变更为storm:

 # chgrp -R storm /usr/local

6、给组成员设置读写权限。

# chmod -R 0760 /usr/local
# ls  -l /usr/local/      #check new permissions

你可能感兴趣的:(linux)