马哥教育网络班22期+第4周课程练习

1、复制/etc/skel目录为/home/tuser1,要求/home/tuser1及其内部文件的属组和其它用户均没有任何访问权限。
    [root@director2 ~]# cp -a /etc/skel /home/tuser1
    [root@director2 ~]# chmod -R 600 /home/tuser1
    
2、编辑/etc/group文件,添加组hadoop。
    [root@director2 ~]# echo "hadoop:x:998" >> /etc/group 
    
3、手动编辑/etc/passwd文件新增一行,添加用户hadoop,其基本组ID为hadoop组的id号;其家目录为/home/hadoop。
    [root@director2 ~]# echo "hadoop:x:998:998::/home/hadoop:/bin/bash" >> /etc/passwd
    
4、复制/etc/skel目录为/home/hadoop,要求修改hadoop目录的属组和其它用户没有任何访问权限。
    [root@director2 ~]# cp -a /etc/skel /home/hadoop
    [root@director2 ~]# chmod -R 600 /home/hadoop
    
5、修改/home/hadoop目录及其内部所有文件的属主为hadoop,属组为hadoop。
    [root@director2 ~]# chown -R hadoop.hadoop /home/hadoop/
    
6、显示/proc/meminfo文件中以大写或小写S开头的行;用两种方式;
    方法1:
    [root@director2 ~]# grep -i ^s /proc/meminfo
    方法2:
    [root@director2 ~]# awk '/^[sS]/{print $0}' /proc/meminfo 
    
7、显示/etc/passwd文件中其默认shell为非/sbin/nologin的用户;
    [root@director2 ~]# awk -F":" -v SHELL="/sbin/nologin" '{if($NF==SHELL)print $1}' /etc/passwd
    
8、显示/etc/passwd文件中其默认shell为/bin/bash的用户;
    [root@director2 ~]# awk -F":" -v SHELL="/bin/bash" '{if($NF==SHELL)print $1}' /etc/passwd
    
9、找出/etc/passwd文件中的一位数或两位数;
    [root@director2 ~]# awk -F":" '{for(i=1;i<=NF;i++)if($i>=0 && $i<100)print $i}' /etc/passwd |sort -n|uniq
    
10、显示/boot/grub/grub.conf中以至少一个空白字符开头的行;
    方法1:
        [root@director2 ~]# grep -E ^[[:space:]]+.* /boot/grub/grub.conf
    方法2:
        [root@director2 ~]# awk '/^[[:space:]]+.*/{print $0}' /boot/grub/grub.conf
        
11、显示/etc/rc.d/rc.sysinit文件中以#开头,后面跟至少一个空白字符,而后又有至少一个非空白字符的行;
    [root@director2 ~]# grep -E "^#[[:space:]]+[[:graph:]]+" /etc/rc.d/rc.sysinit
    
12、打出netstat -tan命令执行结果中以‘LISTEN’,后或跟空白字符结尾的行;
    [root@director2 ~]# netstat -tan|grep -E ".*LISTEN$|LISTEN([[:space:]]+)$"
    
13、添加用户bash, testbash, basher, nologin (此一个用户的shell为/sbin/nologin),
而后找出当前系统上其用户名和默认shell相同的用户的信息;
    [root@director2 ~]# useradd bash
    [root@director2 ~]# useradd testbash
    [root@director2 ~]# useradd basher
    [root@director2 ~]# useradd -s /sbin/nologin nologin
    [root@director2 ~]# awk -F":" -v SHELL="/bin/bash" '{if($NF==SHELL)print $0}' /etc/passwd
    
14、显示/proc/meminfo文件中以大写或小写S开头的行;用三种方式;
    方法1:
        [root@director2 ~]# grep -i ^s /proc/meminfo
    方法2:
        [root@director2 ~]# awk '/^[sS]/{print $0}' /proc/meminfo 
    方法3:
        [root@director2 ~]# sed -n '/^[sS].*/p' /proc/meminfo

原创文章,作者:devon,如若转载,请注明出处:http://www.178linux.com/41783

(0)
devondevon
上一篇 2016-08-29
下一篇 2016-08-30

相关推荐

  • 第二周-作业

    第二周作业: 题1、Linux上的文件管理类命令都有哪些,其常用的使用方法及其相关示例演示。 Linux上常见的文件管理类命令有mkdir、touch、cp、mv、rm、stat。     mkdir:创建新目录         用法:mk…

    Linux干货 2016-12-08
  • 内核编译安装 (用NTFS模块)

    内核编译安装 (用NTFS模块) 1 rz 下载的 的内核最新文件 在这 https://www.kernel.org/ 2 tar xvf linux-4.12.10.tar.xz 解压文件 内核文件一般都放在 /usr/src/ 3 cd linux-4.12.10/ 4 [root@god linux-4.12.10]#cp /boot/config-…

    2017-09-04
  • N22—第五周作业

    1、显示当前系统上root、fedora或user1用户的默认shell; [root@localhost ~]# grep -E "^(root|fedora|user1)"  /etc/passwd |cut -d : -f 1,7 root:/bin/bash fedora:/bin/bash user1:/bin/bas…

    Linux干货 2016-09-11
  • Keepalive+Nginx高可用配置(主从)

    Keepalived高可用集群 一、Keepalived介绍 Keepalived软件主要通过VRRP协议实现高可用功能的。VRRP是Virtual Router Redundancy Protocol(虚拟路由器冗余协议)的缩写,VRRP出现的目的就是为了解决静态路由单点故障问题,它能够保证当个别节点宕机时,整个网络可以不间断地运行。keepalived除…

    Linux干货 2016-12-30
  • shell脚本编程之if条件判断与for、while、until循环

    一、if语句 语法: if 测试条件1 ; then        分支1 elif  测试条件2; then        分支2 … else&nbsp…

    Linux干货 2015-08-24
  • N26-第五周

    1、显示当前系统上root、fedora或user1用户的默认shell;[root@localhost ~]# grep -E ‘^(root|fedora|user1)\>’ /etc/passwdroot:x:0:0:root:/root:/bin/bashfedora:x:4002:4002:Fedora Core:/h…

    Linux干货 2017-03-13

评论列表(1条)

  • 马哥教育
    马哥教育 2016-09-13 21:28

    答题内容挑不出毛病…排版也比较清晰,赞。
    继续保持。