1、显示/etc目录下,以非字母开头,后面跟了一个字母以及其它任意长度任意字符的文件或目录
ls /etc/ -a|egrep ‘^[^a-zA-Z\.][[:alpha:]]{1}.
2、复制/etc目录下所有以p开头,以非数字结尾的文件或目录到/tmp/mytest1目录中。
cd /etc/ && find -regex "^\./p.*[^0-9]$" -exec cp -r {} /tmp/mytest1/ \;
3、将/etc/issue文件中的内容转换为大写后保存至/tmp/issue.out文件中
cat /etc/issue|tr a-z A-z >>/tmp/issue.out
4、请总结描述用户和组管理类命令的使用方法并完成以下练习:
(1)、创建组distro,其GID为2019;
groupadd -g 2019 distro
(2)、创建用户mandriva, 其ID号为1005;基本组为distro;
useradd -u 1005 -g distro mandriva
(3)、创建用户mageia,其ID号为1100,家目录为/home/linux;
useradd -u 1100 -d /home/linux mageia
(4)、给用户mageia添加密码,密码为mageedu,并设置用户密码7天后过期
echo mageedu|passwd --stdin mageia
chage -E 7 mageia
(5)、删除mandriva,但保留其家目录;
userdel mandriva
(6)、创建用户slackware,其ID号为2002,基本组为distro,附加组peguin;
groupadd peguin
uid=2002(slackware) gid=2019(distro) groups=2019(distro),2020(peguin)
(7)、修改slackware的默认shell为/bin/tcsh;
usermod -s /bin/tcsh slackware
(8)、为用户slackware新增附加组admins,并设置不可登陆。
groupadd admins;usermod -G admins -s /sbin/nologin slackware
5、创建用户user1、user2、user3。在/data/下创建目录test
for i in {1..3};do useradd user$i;done
mkdir /data/test -p
(1)、目录/data/test属主、属组为user1
chown user1:user1 /data/test
(2)、在目录属主、属组不变的情况下,user2对文件有读写权限
setfacl -m u:user2:rx /data/test
(3)、user1在/data/test目录下创建文件a1.sh, a2.sh, a3.sh, a4.sh,设置所有用户都不可删除1.sh,2.sh文件、除了user1及root之外,所有用户都不可删除a3.sh, a4.sh
chattr +i a1.sh a2.sh
(4)、user3增加附加组user1,同时要求user1不能访问/data/test目录及其下所有文件
usermod -G user1 user3
chmod ug=- /data/test
(5)、清理/data/test目录及其下所有文件的acl权限
setfacl -b /data/test
相关文章
- 01-062019牛客暑期多校训练营(第二场)-H Second Large Rectangle(次大子矩阵,降维,直方图+单调栈)
- 01-062019牛客暑期多校训练营(第二场)H Second Large Rectangle(第二大子矩阵)
- 01-06a-second-operation-started-on-this-context-before-a-previous-operation-completed
- 01-06安装mac os x时about a second remaining解决方法
- 01-06leetcode176 第二高的薪水 Second Highest Salary
- 01-06Eighth season twenty-second episode,does sex promote childbirth???????
- 01-06Seventh season second episode,Joey found a dirty book,Rachel had porn???!!!
- 01-06COMP523 Second CA Assignment
- 01-06Second Autoprefixer control comment was ignored. Autoprefixer applies control comment to whole block
- 01-06Vue-second