设置Linux系统下的文件权限的详细方法(2)

步骤2 挂载分区

你可以用下列的方式挂载分区并启用ACL:

#mount -t ext3 -o acl /dev/sda1 /fs1

你也可以直接写在/etc/fstab文件中,这样就可以在开机后支持ACL功能:

#vi /etc/fstab

步骤3 设置ACL权限

ACL常常针对个别用户来进行设置,下面是多个不同的例子:

例如需要创建test1、test2、test3三个用户,可以先用root身份登录系统,然后执行以下命令分别创建三个用户名和密码:

  [root@mail root]#adduser test1   [root@mail root]#adduser test2   [root@mail root]#adduser test3   [root@mail root]#passwd test1   [root@mail root]#passwd test2   [root@mail root]#passwd test3  

然后mount一个ext3文件到目录/fs1:

[root@mail root]#mount -t ext3 -o acl /dev/sda1 /fs1

再将test1 建立的文件设置读写的权限给test2 :

[root@mail root]#chmod -R 777 /fs1

让所有的用户都能增加文件到目录的权限:

先用test1登录系统,执行命令:

  [test1@mail test1]# cd /fs1   [test1@mail fs1]# echo "Create by test1" > test1.txt   [test1@mail fs1]# chmod go-r test1.txt   [test1@mail fs1]# ll test1.txt   -rw------- 1 test1 test1 17 Jul 14 22:11 test1.txt  

而如下操作则可以让除了test1有读写的权限外其他人没有读写test1.txt的权限(root除外),先用test2 登录系统后执行以下命令:

  [test2@mail test2]# cd /fs1   [test2@mail fs1]# cat test1.txt   cat : test1.txt Permission denied  

接着用test1登录系统,执行如下命令:

[test1@mail fs1]# setfacl -m u:test2:rw test1.txt

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/ef72067e9aa8284a145c60d52716be4d.html