第2周

1、显示/etc目录下,以非字母开头,后面跟了一个字母以及其它任意长度任意字符的文件或目录

^:非,排除
[]:匹配[]出现的一个字符
[:alpha:]:任意的大小写字母
*:匹配零个或多个字符,不匹配隐藏文件

[root@sh-720 ~]# ls /etc/[^[:alpha:]]*
ls: cannot access ‘/etc/[^[:alpha:]]*‘: No such file or directory
[root@sh-720 ~]# mkdir /etc/{1..4}yang.~M
[root@sh-720 ~]# touch /etc/{0..9}.exit;
[root@sh-720 ~]# ll /etc/[^[:alpha:]]*
-rw-r--r-- 1 root root 0 Aug 30 12:25 /etc/0.exit
-rw-r--r-- 1 root root 0 Aug 30 12:25 /etc/1.exit
-rw-r--r-- 1 root root 0 Aug 30 12:25 /etc/2.exit
-rw-r--r-- 1 root root 0 Aug 30 12:25 /etc/3.exit
-rw-r--r-- 1 root root 0 Aug 30 12:25 /etc/4.exit
-rw-r--r-- 1 root root 0 Aug 30 12:25 /etc/5.exit
-rw-r--r-- 1 root root 0 Aug 30 12:25 /etc/6.exit
-rw-r--r-- 1 root root 0 Aug 30 12:25 /etc/7.exit
-rw-r--r-- 1 root root 0 Aug 30 12:25 /etc/8.exit
-rw-r--r-- 1 root root 0 Aug 30 12:25 /etc/9.exit

/etc/1yang.~M:
total 0

/etc/2yang.~M:
total 0

/etc/3yang.~M:
total 0

/etc/4yang.~M:
total 0
2、复制/etc目录下所有以p开头,以非数字结尾的文件或目录到/tmp/mytest1目录中。
[root@sh-720 mytest1]# ls /etc/p
pam.d/          pkcs11/         pm/             postfix/        profile
passwd          pki/            polkit-1/       prelink.conf.d/ profile.d/
passwd-         plymouth/       popt.d/         printcap        protocols
[root@sh-720 ~]# mkdir /tmp/mytest1
[root@sh-720 ~]# cp -ar /etc/p*[^0-9] /tmp/mytest1
[root@sh-720 ~]# cd /tmp/mytest1/
[root@sh-720 mytest1]# ls
pam.d   passwd-  plymouth  popt.d   prelink.conf.d  profile    protocols
passwd  pki      pm        postfix  printcap        profile.d

3、将/etc/issue文件中的内容转换为大写后保存至/tmp/issue.out文件中
[root@sh-720 mytest1]# cat /etc/issue
\S
Kernel \r on an \m

[root@sh-720 mytest1]# cat /etc/issue |tr ‘a-z‘ ‘A-Z‘
\S
KERNEL \R ON AN \M

[root@sh-720 mytest1]# cat /etc/issue |tr ‘a-z‘ ‘A-Z‘ > /tmp/issue.out
[root@sh-720 mytest1]# cat /tmp/issue.out 
\S
KERNEL \R ON AN \M

4、请总结描述用户和组管理类命令的使用方法并完成以下练习:
  • 创建组distro,其GID为2019;
[root@CentOS ~]# groupadd -g 2019 distro
  • 创建用户mandriva, 其ID号为1005;基本组为distro;
[root@CentOS ~]# useradd -u 1005 -g distro mandriva
[root@CentOS ~]# id mandriva
uid=1005(mandriva) gid=2019(distro) groups=2019(distro)
  • 创建用户mageia,其ID号为1100,家目录为/home/linux;
[root@CentOS ~]# useradd -u 1100 -d /home/linux mageia
  • 给用户mageia添加密码,密码为mageedu,并设置用户密码7天后过期
[root@CentOS ~]# chage -M 7 mageia
[root@CentOS ~]# chage -l !$
chage -l mageia
Last password change					: Sep 04, 2021
Password expires					: Sep 11, 2021
Password inactive					: never
Account expires						: never
Minimum number of days between password change		: 0
Maximum number of days between password change		: 7
Number of days of warning before password expires	: 7
  • 删除mandriva,但保留其家目录;
[root@CentOS ~]# userdel mandriva
[root@CentOS ~]# ll /home/
total 0
drwx------ 2 mageia mageia 62 Sep  4 19:16 linux
drwx------ 2   1005 distro 62 Sep  4 19:15 mandriva
  • 创建用户slackware,其ID号为2002,基本组为distro,附加组peguin;
[root@CentOS ~]# groupadd peguin
[root@CentOS ~]# useradd -u 2002 -g distro -G peguin slackware
[root@CentOS ~]# id slackware
uid=2002(slackware) gid=2019(distro) groups=2019(distro),2020(peguin)
  • 修改slackware的默认shell为/bin/tcsh;
[root@CentOS ~]# usermod -s /bin/tcsh slackware
  • 为用户slackware新增附加组admins,并设置不可登陆。
[root@CentOS ~]# groupadd admins
[root@CentOS ~]# usermod -s /sbin/nologin -G admins slackware
5、创建用户user1、user2、user3;在/data/下创建目录test。
[root@CentOS ~]# useradd user1
[root@CentOS ~]# useradd user2
[root@CentOS ~]# useradd user3
[root@CentOS ~]# id user1
uid=2003(user1) gid=2003(user1) groups=2003(user1)
[root@CentOS ~]# id user2
uid=2004(user2) gid=2004(user2) groups=2004(user2)
[root@CentOS ~]# id user3
uid=2005(user3) gid=2005(user3) groups=2005(user3)
[root@CentOS ~]# mkdir /data/test
[root@CentOS ~]# ll /data/
total 0
drwxr-xr-x 2 root root 6 Sep  4 20:18 test

(1)、目录/data/test属主、属组为user1

[root@CentOS ~]# chown user1:user1 /data/test/
[root@CentOS ~]# ll /data/
total 0
drwxr-xr-x 2 user1 user1 6 Sep  4 20:18 test

(2)、在目录属主、属组不变的情况下,user2对文件有读写权限

[root@CentOS test]# setfacl -m u:user2:rwx /data/test/
[root@CentOS test]# su - user2
Last login: Sat Sep  4 20:45:50 CST 2021 on pts/0
[user2@CentOS ~]$ cd /data/test/
[user2@CentOS test]$ echo yang >> yang
[user2@CentOS test]$ cat yang 
yang

(3)、user1在/data/test目录下创建文件a1.sh, a2.sh, a3.sh, a4.sh,设置所有用户都不可删除1.sh,2.sh文件、除了user1及root之外,所有用户都不可删除a3.sh, a4.sh

[root@CentOS test]# touch a{1..4}.sh
[root@CentOS test]# ls
a1.sh  a2.sh  a3.sh  a4.sh  yang
[root@CentOS test]# chmod o+a a{1..2}.sh
[root@CentOS test]# ll !$
ll o+a a{1..2}.sh
-rw-r--r-T 1 root root 0 Sep  4 20:54 a1.sh
-rw-r--r-T 1 root root 0 Sep  4 20:54 a2.sh

[root@CentOS test]# chattr +a a{3..4}.sh
[root@CentOS test]# lsattr !$
lsattr a{3..4}.sh
-----a-------------- a3.sh
-----a-------------- a4.sh

(4)、user3增加附加组user1,同时要求user1不能访问/data/test目录及其下所有文件

[root@CentOS test]# usermod -G user1 user3

(5)、清理/data/test目录及其下所有文件的acl权限

[user1@CentOS test]$ setfacl -b /data/test/

[user1@CentOS test]$ getfacl /data/test/
getfacl: Removing leading ‘/‘ from absolute path names
# file: data/test/
# owner: user1
# group: user1
user::rwx
group::r-x
other::r-x

第2周

上一篇:cad怎么快速清理图层?cad清理图层命令的使用方法


下一篇:Photoshop为单一的冷色图片调制出温暖的阳光色