#1、创建g1组,要求创建一个属于redhat用户g1组的文件redhat.txt
[root@haha123 ~]# groupadd g1
[root@haha123 ~]# teach redhat.txt
[root@haha123 ~]# useradd redhat
[root@haha123 ~]# chown redhat:g1 redhat.txt
#2、新建/sc目录,所属组为group组,root用户和group组用户可在该目录下创建文件,其他人无任何权限
[root@haha123 ~]# mkdir /sc
[root@haha123 ~]# groupadd group
[root@haha123 ~]# chown :group /sc
[root@haha123 ~]# chmod 770 /sc
[root@haha123 ~]# ll -d /sc
drwxrwx---. 2 root group 6 4月 25 19:31 /sc
#3、新建/cw目录为财务部存储目录,只能对财务部人员可以写入,并且财务部人员所建立的文件都自动属于mygroup组中
[root@haha123 ~]# mkdir /cw
[root@haha123 ~]# useradd caiwubu
[root@haha123 ~]# groupadd mygroup
[root@haha123 ~]# chown caiwubu:mygroup /cw
[root@haha123 ~]# chmod 700 /cw
[root@haha123 ~]# chmod g+s /cw
[root@haha123 ~]# ll -d /cw
drwx--S---. 2 caiwubu mygroup 6 4月 25 19:34 /cw
#4、设置helen用户对于/sc和/cw目录可读、可写、可执行
[root@haha123 ~]# useradd helen
[root@haha123 ~]# setfacl -m u:helen:rwx /sc /cw
[root@haha123 ~]# getfacl /sc /cw
getfacl: Removing leading '/' from absolute path names
# file: sc
# owner: root
# group: group
user::rwx
user:helen:rwx
group::rwx
mask::rwx
other::---
# file: cw
# owner: caiwubu
# group: mygroup
# flags: -s-
user::rwx
user:helen:rwx
group::---
mask::rwx
other::---
#5、设置/test目录为公共存储目录,对所有用户可以读、写、执行,但用户只能删除属于自己的文件。
[root@haha123 ~]# mkdir /test
[root@haha123 ~]# chmod 777 /test
[root@haha123 ~]# chmod o+t /test
#6、在/test/dir里创建的新文件自动属于temp组
[root@haha123 ~]# mkdir /test/dir
[root@haha123 ~]# groupadd temp
[root@haha123 ~]# chown :temp /test/dir
[root@haha123 ~]# chmod g+s /test/dir/
[root@haha123 ~]# ll -d /test/dir/
drwxr-sr-x. 2 root temp 6 4月 25 19:44 /test/dir/