7月24日 上课练习和作业

  • 文件权限
    1、当用户xiaoming对/testdir 目录无执行权限时,意味着无法做哪些操作?
    无法进入该目录
    2、当用户xiaoqiang对/testdir 目录无读权限时,意味着无法做哪些操作?
    无法看目录内的文件列表
    3、当用户wangcai 对/testdir 目录无写权限时,该目录下的只读文件file1是否可修改和删除?
    不可以
    4、当用户wangcai 对/testdir 目录有写和执行权限时,该目录下的只读文件file1是否可修改和删除?
    不可以修改但可以删除
    5、复制/etc/fstab文件到/app/tmp下,设置文件所有者为zhang读写权限,所属组为admins组有读写权限,其他人无权限
[root@centos6 app]#cp /etc/fstab ./tmp
[root@centos6 app]#ll
total 28
drwxr--r--. 2 zhang root 4096 Jul 25 09:25 dir1
-rw-rw-r--+ 1 root  root   51 Jul 25 08:30 f1
-rw-rw-r--+ 1 root  root   27 Jul 25 08:32 f2
-rw-r--r--. 1 root  root   19 Jul 25 08:16 f3
-rw-r--r--. 1 root  root  899 Jul 25 09:28 tmp
[root@centos6 app]#chown zhang tmp
[root@centos6 app]#chgrp admins tmp
[root@centos6 app]#ll
total 28
drwxr--r--. 2 zhang root   4096 Jul 25 09:25 dir1
-rw-rw-r--+ 1 root  root     51 Jul 25 08:30 f1
-rw-rw-r--+ 1 root  root     27 Jul 25 08:32 f2
-rw-r--r--. 1 root  root     19 Jul 25 08:16 f3
-rw-r--r--. 1 zhang admins  899 Jul 25 09:28 tmp
[root@centos6 app]#chmod u=rw,g=rw,o= tmp
[root@centos6 app]#ll
total 28
drwxr--r--. 2 zhang root   4096 Jul 25 09:25 dir1
-rw-rw-r--+ 1 root  root     51 Jul 25 08:30 f1
-rw-rw-r--+ 1 root  root     27 Jul 25 08:32 f2
-rw-r--r--. 1 root  root     19 Jul 25 08:16 f3
-rw-rw----. 1 zhang admins  899 Jul 25 09:28 tmp

6、误删除了用户harry的家目录,请重建并恢复该用户家目录及相应的权限属性

[root@centos6 home]#ls
dufu  gentoo  harry  libai  natasha  tom  zhang  zhaoritian
[root@centos6 home]#rm -rf harry
[root@centos6 home]#ls
dufu  gentoo  libai  natasha  tom  zhang  zhaoritian
[root@centos6 home]#cp -r /etc/skel  /home/harry  ---第一步
[root@centos6 home]#ls
dufu  gentoo  harry  libai  natasha  tom  zhang  zhaoritian
[root@centos6 home]#chown -R harry harry  ---第二步
[root@centos6 home]#chgrp -R harry harry
[root@centos6 home]#ll
total 32
drwx------. 2 dufu       dufu       4096 Jul 22 14:05 dufu
drwx------. 4 gentoo     gentoo     4096 Jul 24 10:17 gentoo
drwxr-xr-x. 4 harry      harry      4096 Jul 25 09:39 harry
drwx------. 2 libai      libai      4096 Jul 22 14:05 libai
drwx------. 4 natasha    natasha    4096 Jul 22 15:16 natasha
drwx------. 4 tom        tom        4096 Jul 22 10:50 tom
drwx------. 4 zhang      zhang      4096 Jul 25 09:25 zhang
drwx------. 2 zhaoritian zhaoritian 4096 Jul 22 14:08 zhaoritian
[root@centos6 home]#chmod 0700 harry   --第三步
[root@centos6 home]#ll
total 32
drwx------. 2 dufu       dufu       4096 Jul 22 14:05 dufu
drwx------. 4 gentoo     gentoo     4096 Jul 24 10:17 gentoo
drwx------. 4 harry      harry      4096 Jul 25 09:39 harry
drwx------. 2 libai      libai      4096 Jul 22 14:05 libai
drwx------. 4 natasha    natasha    4096 Jul 22 15:16 natasha
drwx------. 4 tom        tom        4096 Jul 22 10:50 tom
drwx------. 4 zhang      zhang      4096 Jul 25 09:25 zhang
drwx------. 2 zhaoritian zhaoritian 4096 Jul 22 14:08 zhaoritian
  • ACL 访问控制列表
    1、在/app/dir里创建的新文件自动属于g1组,组g2的成员如:alice能对这些新文件有读写权限,组g3的成员如:tom只能对新文件有读权限,其它用户(不属于g1,g2,g3)不能访问这个文件夹。
[root@centos6 app]#mkdir dir
[root@centos6 app]#ll
total 4
drwxr-xr-x. 2 root root 4096 Jul 25 09:53 dir
[root@centos6 app]#groupadd g1
[root@centos6 app]#chgrp g1 dir
[root@centos6 app]#ll
total 4
drwxr-xr-x. 2 root g1 4096 Jul 25 09:53 dir
[root@centos6 app]#chmod g+s dir
[root@centos6 app]#ll
total 4
drwxr-sr-x. 2 root g1 4096 Jul 25 09:53 dir
[root@centos6 app]#groupadd g2
[root@centos6 app]#groupadd g3
[root@centos6 app]#useradd -g g2 alice
[root@centos6 app]#id alice
uid=518(alice) gid=518(g2) groups=518(g2)
[root@centos6 app]#id tom
uid=504(tom) gid=505(tom) groups=505(tom),500(zhang),501(gentoo),504(harry)
[root@centos6 app]#gpasswd -a tom g3
Adding user tom to group g3
[root@centos6 app]#id tom
uid=504(tom) gid=505(tom) groups=505(tom),500(zhang),501(gentoo),504(harry),519(g3)
[root@centos6 app]#setfacl -Rm d:g:g2:rwx dir
[root@centos6 app]#setfacl -Rm d:g:g3:rx dir
[root@centos6 app]#ll
total 8
drwxr-sr-x+ 2 root g1 4096 Jul 25 09:53 dir
[root@centos6 app]#chmod u=rwx,g=rwx,o= dir
[root@centos6 app]#ll
total 8
drwxrws---+ 2 root g1 4096 Jul 25 09:53 dir

2、备份/testdir/dir里所有文件的ACL权限到/root/acl.txt中,清除/testdir/dir中所有ACL权限,最后还原ACL权限

[root@centos6 app]#getfacl -R dir/>/root/acl.txt   ---备份acl权限
[root@centos6 ~]#setfacl -Rb /app/dir/ ---清除acl权限
[root@centos6 app]#setfacl --set-file=/root/acl.txt /app/dir/ ---还原
  • 文本处理工具
    1、找出ifconfig “网卡名”命令结果中本机的IPv4地址
[root@centos6 app]#ifconfig eth2|head -2|tail -1|tr -s " "|cut -d " " -f3|cut -d: -f2
192.168.25.142

2、查出分区空间使用率的最大百分比值

[root@centos6 app]#df|grep ^/dev/sd|tr -s " " "%"|cut -d "%" -f5|sort -nr|head -n1
10

3、查出用户UID最大值的用户名、UID及shell类型

[root@centos6 app]#cat /etc/passwd|sort -t: -k3 -n|tail -n1|cut -d: -f1,3,7
nfsnobody:65534:/sbin/nologin

4、查出/tmp的权限,以数字方式显示

[root@centos6 app]#stat /tmp |head -4|tail -1|cut -d "(" -f2|cut -d "/" -f1
1777

5、查看access_log日志文件中,远程主机IP连接数排名前10名的IP

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

推荐阅读更多精彩内容