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

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

# chgrp -R storm /usr/local
  • 1

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

1、创建用户

# useradd restart1025
  • 1

2、设置密码

# passwd restart1025
  • 1

3、创建用户组

# groupadd storm
  • 1

4、设置用户所属用户组

# usermod -aG storm restart1025      # add restart1025 to storm
# groups restart1025                 # check restart1025 groups
  • 1
  • 2

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

 # chgrp -R storm /usr/local
  • 1

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

# chmod -R 0760 /usr/local
# ls  -l /usr/local/      #check new permissions
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐