第二次作业
1.显示/etc目录下,以非字母开头,后面跟了一个字母以及其它任意长度任意字符的文件或目录
[root@centos8 ~]# ls /etc/[^A-Z][[:alpha:]]* -d
2.复制/etc目录下所有以p开头,以非数字结尾的文件或目录到/tmp/mytest1目录中。
[root@centos8 ~]# cp /etc/p*[^0-9] /tmp/mytest1
3.将/etc/issue文件中的内容转换为大写后保存至/tmp/issue.out文件中
[root@centos8 ~]# cat /etc/issue | tr a-z A-Z > /tmp/issue.out [root@centos8 ~]# echo $? 0
4、请总结描述用户和组管理类命令的使用方法并完成以下练习:
(1)、创建组distro,其GID为2019;
[root@centos8 ~]# groupadd -g 2019 distro [root@centos8 ~]# getent group distro distro:x:2019:
(2)、创建用户mandriva, 其ID号为1005;基本组为distro;
[root@centos8 ~]# useradd -g distro -u 1005 mandriva [root@centos8 ~]# getent passwd mandriva mandriva:x:1005:2019::/home/mandriva:/bin/bash
(3)、创建用户mageia,其ID号为1100,家目录为/home/linux;
[root@centos8 ~]# useradd -u 1100 -d /home/linux mageia
[root@centos8 ~]# getent passwd mageia
mageia:x:1100:1100::/home/linux:/bin/bash
(4)、给用户mageia添加密码,密码为mageedu,并设置用户密码7天后过期
[root@centos8 ~]# echo mageia:mageedu | chpasswd [root@centos8 ~]# chage mageia Changing the aging information for mageia Enter the new value, or press ENTER for the default Minimum Password Age [0]: 7 Maximum Password Age [99999]: 7 Last Password Change (YYYY-MM-DD) [2022-03-12]: Password Expiration Warning [7]: Password Inactive [-1]: Account Expiration Date (YYYY-MM-DD) [-1]:
(5)、删除mandriva,但保留其家目录;
userdel mandriva
(6)、创建用户slackware,其ID号为2002,基本组为distro,附加组peguin;
[root@centos8 ~]# useradd -u 2002 -g distro -G peguin slackware
(7)、修改slackware的默认shell为/bin/tcsh;
[root@centos8 ~]# usermod -s /bin/tcsh slackware
(8)、为用户slackware新增附加组admins,并设置不可登陆。
[root@centos8 ~]# usermod -s /sbin/nologin -G admins slackware
5、创建用户user1、user2、user3。在/data/下创建目录test
(1)、目录/data/test属主、属组为user1
[root@centos8 data]# chown user1 test&& chgrp user1 test [root@centos8 data]# ll total 0 d--------- 2 user1 user1 6 Mar 12 17:07 test
(2)、在目录属主、属组不变的情况下,user2对文件有读写权限
[root@centos8 data]# setfacl -m u:user2:rw test [root@centos8 data]# getfacl test # file: test # owner: user1 # group: user1 user::--- user:user2:rw- group::--- mask::rw- other::---
(3)、user1在/data/test目录下创建文件a1.sh, a2.sh, a3.sh, a4.sh,设置所有用户都不可删除1.sh,2.sh文件、除了user1及root之外,所有用户都不可删除a3.sh, a4.sh
[root@centos8 data]# touch /data/test/a{1..4}.sh [root@centos8 data]# chmod a-w test [root@centos8 data]# ll total 0 dr--r--r-- 2 user1 user1 58 Mar 12 17:23 test [root@centos8 data]# chattr +i /data/test/a{3..4}.sh [root@centos8 data]# setfacl -m u:user1:rw test
(4)、user3增加附加组user1,同时要求user1不能访问/data/test目录及其下所有文件
[root@centos8 data]# usermod -G user1 user3 [root@centos8 data]# id user3 uid=1103(user3) gid=1103(user3) groups=1103(user3),1101(user1) [root@centos8 data]# chmod o-x test
(5)、清理/data/test目录及其下所有文件的acl权限
[root@centos8 data]# setfacl -b test/*
写于2022-3-12-17:51