三、无题

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

[root@Centos7 etc]# ls /etc/ | grep  ^[^[:alpha:]]
1a.txt
1dir
_a.log

2、复制/etc目录下所有以p开头,以非数字结尾的文件或目录,到/tmp/mytest1目录下。

[root@Centos7 etc]# cp -ar /etc/p*[^0-9] /tmp/mytest1
[root@Centos7 mytest1]# ls /tmp/mytest1/
pam.d   passwd-  plymouth  popt.d   ppp             printcap  profile.d  python
passwd  pki      pm        postfix  prelink.conf.d  profile   protocols

3、将/etc/issue文件中的内容转化为大写后保存至/tmp/issue.out文件中。

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

4、请总结描述用户和组管理类命令的使用方法并完成以下练习:

用户管理命令说明:

新建用户命令:useradd
用户属性修改:usermod
用户删除:userdel
修改用户密码策略:chage

组管理命令说明:

创建组:groupadd
组属性修改:groupmod
组删除:groupdel
(1) 创建组distro,其GID为2019;
[root@Centos7 tmp]# groupadd distro -g 2019
[root@Centos7 tmp]# getent group | grep 'distro*'
distro:x:2019:
(2) 创建用户mandriva,其ID号为1005,基本组为distro;
[root@Centos7 tmp]# useradd mandriva -u 1005 -g distro
[root@Centos7 tmp]# id mandriva
uid=1005(mandriva) gid=2019(distro) groups=2019(distro)
(3) 创建用户mageia,其ID号为1100,家目录为/home/linux;
[root@Centos7 tmp]# useradd mageia -u 1100 -d /home/linux
[root@Centos7 tmp]# getent passwd | grep 'mageia'
mageia:x:1100:1100::/home/linux:/bin/bash
(4) 给用户mageia添加密码,密码为mageedu,并设置用户密码7天后过期;
[root@Centos7 tmp]# echo mageedu | passwd --stdin mageia
[root@Centos7 ~]# chage -M 7 mageia
(5) 删除mandriva,但保留其家目录;
[root@Centos7 ~]# userdel mandriva
[root@Centos7 ~]# ll /home
total 0
drwx------. 2 mageia mageia 62 Dec 12 12:54 linux
drwx------. 2   1005 distro 62 Dec 12 12:36 mandriva
drwx------. 2 wu     wu     83 Nov 25 20:29 wu

(6) 创建用户slackware,其ID号为2002,基本组为distro,附属组peguin;
[root@Centos7 ~]# useradd slackware -u 2002 -g distro -G peguin
[root@Centos7 ~]# id slackware
uid=2002(slackware) gid=2019(distro) groups=2019(distro),2020(peguin)

(7) 修改slackware的默认shell为/bin/tcsh;
[root@Centos7 ~]# getent passwd slackware
slackware:x:2002:2019::/home/slackware:/bin/bash
[root@Centos7 ~]# usermod -s /bin/tcsh slackware
[root@Centos7 ~]# getent passwd slackware
slackware:x:2002:2019::/home/slackware:/bin/tcsh

(8) 为用户slackware新增附属组admins,并设置不可登录;
[root@Centos7 ~]# usermod -G admins -s /sbin/nologin slackware 
[root@Centos7 ~]# getent passwd slackware
slackware:x:2002:2019::/home/slackware:/sbin/nologin
[root@Centos7 ~]# id slackware
uid=2002(slackware) gid=2019(distro) groups=2019(distro),2021(admins)


5、创建用户user1、user2、user3 。在/data/下创建目录test

(1) 目录/data/test属主、属组为user1;
[root@Centos7 data]# ll
total 8
drwxr-xr-x. 2 root root   62 Dec  8 16:25 binlog
-rw-r--r--. 1 root root  752 Dec 10 10:11 fstab
drwxr-xr-x. 3 root root 4096 Dec  8 15:12 mysql
drwxr-xr-x. 2 root root    6 Dec 12 13:55 test
[root@Centos7 data]# chown user1:user1 test
[root@Centos7 data]# ll
total 8
drwxr-xr-x. 2 root  root    62 Dec  8 16:25 binlog
-rw-r--r--. 1 root  root   752 Dec 10 10:11 fstab
drwxr-xr-x. 3 root  root  4096 Dec  8 15:12 mysql
drwxr-xr-x. 2 user1 user1    6 Dec 12 13:55 test

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


[root@Centos7 data]# getfacl test
# file: test
# owner: user1
# group: user1
user::rwx
group::r-x
other::r-x

[root@Centos7 data]# setfacl -m u:user2:rw test
[root@Centos7 data]# getfacl test
# file: test
# owner: user1
# group: user1
user::rwx
user:user2:rw-
group::r-x
mask::rwx
other::r-x


(3) user1在/data/test目录下创建文件a1.sh,a2.sh,a3.sh,a4.sh,设置所有用户都不可删除a1.sh,a2.sh文件。除了user1和root之外,其他用户都不可删除a3.sh,a4.sh文件;
[user1@Centos7 test]$ touch a{1..4}.sh
[user1@Centos7 test]$ ll
total 0
-rw-rw-r--. 1 user1 user1 0 Dec 12 14:55 a1.sh
-rw-rw-r--. 1 user1 user1 0 Dec 12 14:55 a2.sh
-rw-rw-r--. 1 user1 user1 0 Dec 12 14:55 a3.sh
-rw-rw-r--. 1 user1 user1 0 Dec 12 14:55 a4.sh
[user1@Centos7 test]$ chattr +i a1.sh a2.sh
chattr: Operation not permitted while setting flags on a1.sh
chattr: Operation not permitted while setting flags on a2.sh
[user1@Centos7 test]$ exit
logout
[root@Centos7 test]# chattr +i a1.sh a2.sh 

[root@Centos7 test]# lsattr 
---------------- ./1.txt
---------------- ./b.log
----i----------- ./a1.sh
----i----------- ./a2.sh
---------------- ./a3.sh
---------------- ./a4.sh
[root@Centos7 test]# rm -f a1.sh 
rm: cannot remove ‘a1.sh’: Operation not permitted

#使用特殊权限sticky位,在目录设置Sticky位,只有文件的所有者或root可以删除该文件
[root@Centos7 test]# chmod o+t /data/test
[root@Centos7 test]# su - user3
Last login: Sat Dec 12 14:06:09 CST 2020 on pts/0
[user3@Centos7 ~]$ cd /data/test
[user3@Centos7 test]$ rm -f a3.sh 
rm: cannot remove ‘a3.sh’: Permission denied
[user3@Centos7 test]$ exit
logout
[root@Centos7 test]# su - user1
Last login: Sat Dec 12 14:54:59 CST 2020 on pts/0
[user1@Centos7 ~]$ rm -f /data/test/a3.sh 
[user1@Centos7 ~]$ ll /data/test/
total 0
-rw-rw-r--. 1 user1 user1 0 Dec 12 14:55 a1.sh
-rw-rw-r--. 1 user1 user1 0 Dec 12 14:55 a2.sh
-rw-rw-r--. 1 user1 user1 0 Dec 12 14:55 a4.sh


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

[root@Centos7 test]# usermod -G user1 user3
[root@Centos7 test]# id user3
uid=2005(user3) gid=2005(user3) groups=2005(user3),2003(user1)
[root@Centos7 ~]# setfacl -m u:user3:- /data/test
[root@Centos7 ~]# su - user3
Last login: Sat Dec 12 16:20:37 CST 2020 on pts/0
[user3@Centos7 ~]$ cd /data/test
-bash: cd: /data/test: Permission denied


(5) 清理/data/test目录下及其下所有文件的acl权限
[user3@Centos7 ~]$ getfacl /data/test
getfacl: Removing leading '/' from absolute path names
# file: data/test
# owner: user1
# group: user1
# flags: --t
user::rwx
user:user1:---
user:user2:rw-
user:user3:---
group::r-x
mask::rwx
other::r-x

[root@Centos7 ~]# setfacl -b /data/test
[root@Centos7 ~]# getfacl /data/test
getfacl: Removing leading '/' from absolute path names
# file: data/test
# owner: user1
# group: user1
# flags: --t
user::rwx
group::r-x
other::r-x


©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,923评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,154评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,775评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,960评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,976评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,972评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,893评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,709评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,159评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,400评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,552评论 1 346
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,265评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,876评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,528评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,701评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,552评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,451评论 2 352

推荐阅读更多精彩内容

  • 显示/etc目录下,以非字母开头,后面跟了一个字母以及其他任意长度任意字符的文件或目录 ls /etc/ | gr...
    紫火红云阅读 286评论 0 0
  • Q1:显示/etc目录下,以非字母开头,后面跟了一个字母以及其它任意长度任意字符的文件或目录A1:ls -dl |...
    丹枫_Nariss阅读 222评论 0 0
  • 一、显示/etc目录下,非字母开头,后面跟了一个字母以及其他任意长度任意字符的文件或目录 命令: ls [...
    _柠檬气泡水_阅读 397评论 0 1
  • 1. 显示/etc目录下,以非字母开头,后面跟了一个字母以及其他任意长度任意字符的文件或目录。 2.复制/etc目...
    antikor阅读 218评论 0 0
  • 1、列出当前系统上所有已经登录的用户的用户名,注意:同一用户登录多次,则只显示一次即可。 [root@localh...
    随风而落随心而动阅读 237评论 0 1