(1)创建mygroup组,group组,GID为600的temp组及组id为40000的adminuser组
[root@localhost ~]# groupadd mygroup
[root@localhost ~]# groupadd group
[root@localhost ~]# groupadd -g 600 temp
[root@localhost ~]# groupadd -g 40000 adminuser
2)创建myuser用户属于mygroup组群,接着以myuser身份登录,创建ex和hv两个文件于/home/myuser目录,并使hv文件的同组用户是root。请依次写出相应执行的命令
[root@localhost ~]# useradd myuser -G mygroup
[root@localhost ~]# su myuser
[myuser@localhost root]$ touch /home/myuser/{ex,hv}
1)创建g1组,要求创建一个属于redhat用户g1组的文件redhat.txt
[root@localhost ~]# groupadd g1
[root@localhost ~]# useradd redhat -g g1
[root@localhost ~]# su - redhat
[redhat@localhost ~]$ touch redhat.txt
[redhat@localhost ~]$ ll
总用量 0
-rw-r--r--. 1 redhat g1 0 11月 19 18:54 redhat.txt
[redhat@localhost ~]$
2)新建/sc目录,所属组为group组,root用户和group组用户可在该目录下创建文件,其他人无任何权限
[root@localhost ~]# mkdir /sc
[root@localhost ~]# chown root:group /sc
[root@localhost ~]# chmod -R 770 /sc
[root@localhost ~]# cd /
[root@localhost /]# ll
总用量 44
lrwxrwxrwx. 1 root root 7 6月 21 2021 bin -> usr/bin
dr-xr-xr-x. 5 root root 4096 11月 7 10:19 boot
drwxr-xr-x. 20 root root 3200 11月 19 17:55 dev
drwxr-xr-x. 145 root root 8192 11月 19 18:53 etc
-rw-r--r--. 1 root root 85 11月 12 17:38 file
-rw-r--r--. 1 root root 85 11月 12 17:38 file1
-rw-r--r--. 1 root root 0 11月 14 20:03 file.text
-rw-r--r--. 1 root root 15 11月 14 20:04 file.txt
drwxr-xr-x. 6 root root 59 11月 19 18:53 home
lrwxrwxrwx. 1 root root 7 6月 21 2021 lib -> usr/lib
lrwxrwxrwx. 1 root root 9 6月 21 2021 lib64 -> usr/lib64
drwxr-xr-x. 2 root root 6 6月 21 2021 media
drwxr-xr-x. 3 root root 18 11月 7 10:12 mnt
drwxr-xr-x. 2 root root 6 6月 21 2021 opt
dr-xr-xr-x. 284 root root 0 11月 19 17:54 proc
dr-xr-x---. 19 root root 4096 11月 19 17:56 root
drwxr-xr-x. 41 root root 1200 11月 19 17:57 run
lrwxrwxrwx. 1 root root 8 6月 21 2021 sbin -> usr/sbin
drwxrwx---. 2 root group 6 11月 19 18:56 sc
drwxr-xr-x. 2 root root 6 6月 21 2021 srv
dr-xr-xr-x. 13 root root 0 11月 19 17:55 sys
-rw-r--r--. 1 root root 109 11月 14 20:32 testnewfile.tar.gz
drwxrwxrwt. 23 root root 4096 11月 19 17:56 tmp
drwxr-xr-x. 13 root root 158 11月 7 10:13 usr
drwxr-xr-x. 21 root root 4096 11月 7 10:18 var