1、复制/etc/skel目录为/home/tuser1,要求/home/tuser1及其内部文件的属组和其它用户均没有任何访问权限。
cp -R /etc/skel /home/tuser1
chmod 700 -R /home/tuser1
2、编辑/etc/group文件,添加组hadoop。
vim /etc/group
hadoop:x:1010:1010::/home/hadoop:/bin/bash
3、手动编辑/etc/passwd文件新增一行,添加用户hadoop,其基本组ID为hadoop组的id号;其家目录为/home/hadoop。
vim /etc/group
hadoop:x:1010:1010::/home/hadoop:/bin/bash
4、复制/etc/skel目录为/home/hadoop,要求修改hadoop目录的属组和其它用户没有任何访问权限。
cp -R /etc/skel /home/hadoop
chmod 700 -R /home/hadoop
5、修改/home/hadoop目录及其内部所有文件的属主为hadoop,属组为hadoop。
chown hadoop:hadoop -R /home/hadoop/
chown hadoop:hadoop -R /home/hadoop 没有/,不修改目录下的文件
6、显示/proc/meminfo文件中以大写或小写S开头的行;用两种方式;
方法一:
grep -E ^[Ss] /proc/meminfo
方法二:
grep -E "^(S|s)" /proc/meminfo
7、显示/etc/passwd文件中其默认shell为非/sbin/nologin的用户;
grep -E -v "/sbin/nologin$" /etc/passwd | cut -d':' -f1
[root@server1 ~]# grep -E -v "/sbin/nologin$" /etc/passwd | cut -d':' -f1 root sync shutdown halt xia fedora gentoo bash testbash basher test hadoop
8、显示/etc/passwd文件中其默认shell为/bin/bash的用户;
grep -E "/bin/bash$" /etc/passwd | cut -d':' -f1
[root@server1 ~]# grep -E "/bin/bash$" /etc/passwd root:x:0:0:root:/root:/bin/bash xia:x:1000:1000:xia:/home/xia:/bin/bash fedora:x:1002:1002::/users/fedora:/bin/bash gentoo:x:1003:1003::/users/gentoo:/bin/bash bash:x:1005:1005::/home/bash:/bin/bash testbash:x:1006:1006::/home/testbash:/bin/bash basher:x:1007:1007::/home/basher:/bin/bash test:x:1009:1009::/home/test:/bin/bash hadoop:x:1010:1010::/home/hadoop:/bin/bash
9、找出/etc/passwd文件中的一位数或两位数;
grep -E "\<[0-9]{1,2}>" /etc/passwd
[root@server1 ~]# grep -E "\<[0-9]{1,2}\>" /etc/passwd root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin:/sbin/nologin daemon:x:2:2:daemon:/sbin:/sbin/nologin adm:x:3:4:adm:/var/adm:/sbin/nologin lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin sync:x:5:0:sync:/sbin:/bin/sync shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown halt:x:7:0:halt:/sbin:/sbin/halt mail:x:8:12:mail:/var/spool/mail:/sbin/nologin operator:x:11:0:operator:/root:/sbin/nologin games:x:12:100:games:/usr/games:/sbin/nologin ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin nobody:x:99:99:Nobody:/:/sbin/nologin dbus:x:81:81:System message bus:/:/sbin/nologin tss:x:59:59:Account used by the trousers package to sandbox the tcsd daemon:/dev/null:/sbin/nologin rpc:x:32:32:Rpcbind Daemon:/var/lib/rpcbind:/sbin/nologin radvd:x:75:75:radvd user:/:/sbin/nologin rpcuser:x:29:29:RPC Service User:/var/lib/nfs:/sbin/nologin saslauth:x:991:76:Saslauthd user:/run/saslauthd:/sbin/nologin gdm:x:42:42::/var/lib/gdm:/sbin/nologin avahi:x:70:70:Avahi mDNS/DNS-SD Stack:/var/run/avahi-daemon:/sbin/nologin sshd:x:74:74:Privilege-separated SSH:/var/empty/sshd:/sbin/nologin postfix:x:89:89::/var/spool/postfix:/sbin/nologin ntp:x:38:38::/etc/ntp:/sbin/nologin tcpdump:x:72:72::/:/sbin/nologin
10、显示/boot/grub/grub.conf中以至少一个空白字符开头的行;
egrep "^[[:space:]]+" /boot/grub/grub.conf
11、显示/etc/rc.d/rc.sysinit文件中以#开头,后面跟至少一个空白字符,而后又有至少一个非空白字符的行;
grep -E "^#[[:space:]]+[^[:space:]]+" /etc/rc.d/rc.sysinit
12、打出netstat -tan命令执行结果中以‘LISTEN’,后或跟空白字符结尾的行;
netstat -tan | grep -E "\<LISTEN>[[:space:]]*$"
[root@server1 ~]# netstat -tan | grep -E "\<LISTEN\>[[:space:]]*$" tcp 0 0 192.168.122.1:53 0.0.0.0:* LISTEN tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN tcp6 0 0 :::22 :::* LISTEN tcp6 0 0 ::1:631 :::* LISTEN tcp6 0 0 ::1:25 :::* LISTEN [root@server1 ~]#
13、添加用户bash, testbash, basher, nologin (此一个用户的shell为/sbin/nologin),而后找出当前系统上其用户名和默认shell相同的用户的信息;
useradd bash
useradd testbash
useradd basher
useradd -s /sbin/nologin nologin
grep -E "(^[^:]+).*\1$" /etc/passwd
[root@server1 ~]# grep -E "(^[^:]+).*\1$" /etc/passwd sync:x:5:0:sync:/sbin:/bin/sync shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown halt:x:7:0:halt:/sbin:/sbin/halt nobody:x:99:99:Nobody:/:/sbin/nologin nfsnobody:x:65534:65534:Anonymous NFS User:/var/lib/nfs:/sbin/nologin ntp:x:38:38::/etc/ntp:/sbin/nologin bash:x:1005:1005::/home/bash:/bin/bash basher:x:1007:1007::/home/basher:/bin/bash nologin:x:1008:1008::/home/nologin:/sbin/nologin hadoop:x:1010:1010::/home/hadoop:/bin/bash [root@server1 ~]#
14、显示/proc/meminfo文件中以大写或小写S开头的行;用三种方式;
~]# grep -i "^s" /proc/meminfo
~]# grep "^[sS]" /proc/meminfo
~]# grep -E "^(s|S)" /proc/meminfo
15、显示/etc/passwd文件中其默认shell为非/sbin/nologin的用户;
grep -E -v "/sbin/nologin$" /etc/passwd | cut -d':' -f1
16、显示/etc/passwd文件中其默认shell为/bin/bash的用户;
grep -E "/bin/bash$" /etc/passwd | cut -d':' -f1
17、找出/etc/passwd文件中的一位数或两位数;
grep -E "\<[0-9]{1,2}>" /etc/passwd
原创文章,作者:xiaopang304,如若转载,请注明出处:http://www.178linux.com/64673
评论列表(1条)
grep借助正则表达式可以发挥出强大的作用,从作业可以看出,掌握的还不错, 学有余力的话,可以变换几种正则表达式来实现同一功能。