首页 > 代码库 > linux权限设置(开放某个文件夹给指定用户)
linux权限设置(开放某个文件夹给指定用户)
问题背景:
今天想把自己的数据集开放给同事a,只允许其读,不允许写。
操作:
step1:
查看该文件夹属于哪一个用户,哪一个组
ls 文件夹 -l
step2:
usermod -a -G 指定文件夹的组名 要分配的用户名
step3:
chmod 754 指定文件夹名
延伸:
1 权限的设置
chmod -rwxrwxrwx 三个rwx分别属于user,group,others
把一个文件的权限全部放开 就是chmod 777 file
chmod a+rwx 其实相当于 chmod 777
a:all
u:user
g:group
o:others
2 在服务器上增添新用户
useradd -d /home/username -s /bin/bash -u uid username
passwd username
mkdir /home/username
chown username:username /home/username/
chmod 755 /home/username
参考网址:
https://wiki.archlinux.org/index.php/Users_and_groups_(%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87)#.E6.9D.83.E9.99.90.E4.B8.8E.E5.B1.9E.E4.B8.BB
https://cnzhx.net/blog/linux-add-user-to-group/
http://www.cnblogs.com/peida/archive/2012/11/29/2794010.html
linux权限设置(开放某个文件夹给指定用户)