姗姗来迟的第四周作业

1、复制/etc/skel目录为/home/tuser1,要求/home/tuser1及其内部文件的属组和其它用户均没有任何访问权限。

    [root@www /]# cp -r /etc/skel /home/tuser1 && chmod 700 -R /home/tuser1     
    [root@www /]# echo $?     
    0     
    [root@www home]# ll -al /home/tuser1/     
    总用量 12     
    drwx------. 3 root root  74 11月 30 13:14 .     
    drwxr-xr-x. 4 root root  30 11月 30 13:14 ..     
    -rwx------. 1 root root  18 11月 30 13:14 .bash_logout     
    -rwx------. 1 root root 193 11月 30 13:14 .bash_profile     
    -rwx------. 1 root root 231 11月 30 13:14 .bashrc     
    drwx------. 4 root root  37 11月 30 13:14 .mozilla

2、编辑/etc/group文件,添加组hadoop。

    [root@www /]#echo "hadoop:x:1001" >>/etc/group     
    [root@www /]# cat /etc/group |grep hadoop     
    hadoop:x:1001     
    [root@www /]#

3、手动编辑/etc/passwd文件新增一行,添加用户hadoop,其基本组ID为hadoop组的id号;其家目录为/home/hadoop。

    [root@www home]# echo "hadoop:x:1001:1001:hadoop:/home/hadoop:/bin/bash" >> /etc/passwd && tail -n 2 /etc/passwd     
    user:x:1000:1000:user:/home/user:/bin/bash     
    hadoop:x:1001:1001:hadoop:/home/hadoop:/bin/bash

4、复制/etc/skel目录为/home/hadoop,要求修改hadoop目录的属组和其它用户没有任何访问权限。

    [root@www /]# cp -r /etc/skel /home/hadoop && chmod 700 -R /home/hadoop && ll -al /home/hadoop/     
    总用量 12     
    drwx------. 3 root root  74 11月 30 13:54 .     
    drwxr-xr-x. 5 root root  43 11月 30 13:54 ..     
    -rwx------. 1 root root  18 11月 30 13:54 .bash_logout     
    -rwx------. 1 root root 193 11月 30 13:54 .bash_profile     
    -rwx------. 1 root root 231 11月 30 13:54 .bashrc     
    drwx------. 4 root root  37 11月 30 13:54 .mozilla     
    [root@www /]#

5、修改/home/hadoop目录及其内部所有文件的属主为hadoop,属组为hadoop。

    [root@www /]# chown -R hadoop:hadoop /home/hadoop/ && ll -al /home/hadoop/     
    总用量 12     
    drwx------. 3 hadoop hadoop  74 11月 30 13:54 .     
    drwxr-xr-x. 5 root   root    43 11月 30 13:54 ..     
    -rwx------. 1 hadoop hadoop  18 11月 30 13:54 .bash_logout     
    -rwx------. 1 hadoop hadoop 193 11月 30 13:54 .bash_profile     
    -rwx------. 1 hadoop hadoop 231 11月 30 13:54 .bashrc     
    drwx------. 4 hadoop hadoop  37 11月 30 13:54 .mozilla     
    [root@www /]#

6、显示/proc/meminfo文件中以大写或小写S开头的行;用两种方式;

    [root@www /]# grep -i "^s" /proc/meminfo     
    SwapCached:            0 kB     
    SwapTotal:       1023996 kB     
    SwapFree:        1023996 kB     
    Shmem:              9636 kB     
    Slab:             171236 kB     
    SReclaimable:      99660 kB     
    SUnreclaim:        71576 kB     
    [root@www /]# grep -i "^[sS]" /proc/meminfo     
    SwapCached:            0 kB     
    SwapTotal:       1023996 kB     
    SwapFree:        1023996 kB     
    Shmem:              9636 kB     
    Slab:             171236 kB     
    SReclaimable:      99660 kB     
    SUnreclaim:        71576 kB     
    [root@www /]#

7、显示/etc/passwd文件中其默认shell为非/sbin/nologin的用户;

    [root@www /]# grep -v "/sbin/nologin" /etc/passwd     
    root:x:0:0:root:/root:/bin/bash     
    sync:x:5:0:sync:/sbin:/bin/sync     
    shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown     
    halt:x:7:0:halt:/sbin:/sbin/halt     
    amandabackup:x:33:6:Amanda user:/var/lib/amanda:/bin/bash     
    user:x:1000:1000:user:/home/user:/bin/bash     
    hadoop:x:1001:1001:hadoop:/home/hadoop:/bin/bash     
    [root@www /]#      
    
    cut一下,美观     
    [root@www /]# grep -v "/sbin/nologin" /etc/passwd | cut -d":" -f1     
    root     
    sync     
    shutdown     
    halt     
    amandabackup     
    user     
    hadoop     
    [root@www /]#

8、显示/etc/passwd文件中其默认shell为/bin/bash的用户;

    [root@www /]# grep  "/bin/bash" /etc/passwd     
    root:x:0:0:root:/root:/bin/bash     
    amandabackup:x:33:6:Amanda user:/var/lib/amanda:/bin/bash     
    user:x:1000:1000:user:/home/user:/bin/bash     
    hadoop:x:1001:1001:hadoop:/home/hadoop:/bin/bash     
    
    cut一下,美观     
    [root@www /]# grep  "/bin/bash" /etc/passwd |cut -d":" -f1     
    root     
    amandabackup     
    user     
    hadoop     
    [root@www /]#

9、找出/etc/passwd文件中的一位数或两位数;

    grep "\<[0-9]\{1,2\}\>" /etc/passwd

10、显示/boot/grub/grub.conf中以至少一个空白字符开头的行;

    [root@centos6 ~]# grep "^[[:space:]]\+" /boot/grub/grub.conf         
    root (hd0,0)         
    kernel /vmlinuz-2.6.32-642.3.1.el6.x86_64 ro root=/dev/mapper/vg_centos-lv_root rd_NO_LUKS rd_LVM_LV=vg_centos/lv_swap rd_NO_MD.UTF-8 rd_LVM_LV=vg_centos/lv_root  KEYBOARDTYPE=pc KEYTABLE=us rd_NO_DM rhgb quiet crashkernel=auto         
    initrd /initramfs-2.6.32-642.3.1.el6.x86_64.img         
    root (hd0,0)         
    kernel /vmlinuz-2.6.32-642.el6.x86_64 ro root=/dev/mapper/vg_centos-lv_root rd_NO_LUKS rd_LVM_LV=vg_centos/lv_swap rd_NO_MD.UTF-8 rd_LVM_LV=vg_centos/lv_root  KEYBOARDTYPE=pc KEYTABLE=us rd_NO_DM rhgb quiet         
    initrd /initramfs-2.6.32-642.el6.x86_64.img

11、显示/etc/rc.d/rc.sysinit文件中以#开头,后面跟至少一个空白字符,而后又有至少一个非空白字符的行;

    grep "^#[[:space:]]\+[^[:space:]]\+" /etc/rc.d/rc.sysinit

12、找出"netstat -tan"命令的结果中以'LISTEN'后跟0、1或多个空白字符结尾的行;

    [root@www /]# netstat -tan | grep  "LISTEN[[:space:]]*$"     
    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          
    tcp        0      0 127.0.0.1:6010          0.0.0.0:*               LISTEN          
    tcp6       0      0 :::22                   :::*                    LISTEN          
    tcp6       0      0 ::1:631                 :::*                    LISTEN          
    tcp6       0      0 ::1:25                  :::*                    LISTEN          
    tcp6       0      0 ::1:6010                :::*                    LISTEN          
    [root@www /]#

13、添加用户bash, testbash, basher, nologin (此一个用户的shell为/sbin/nologin),而后找出当前系统上其用户名和默认shell相同的用户的信息;

    useradd -d /home/bash -s /bin/bash -m bash     
    useradd -d /home/testbash -s /bin/bash -m testbash     
    useradd -d /home/basher -s /bin/bash -m basher     
    useradd -d /home/nologin -s /sbin/nologin -m nologin     
    [root@www /]# cat  /etc/passwd | grep "^\<bash\>"     
    bash:x:1002:1002::/home/bash:/bin/bash     
    [root@www /]#

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

(0)
N24_JerryN24_Jerry
上一篇 2016-11-30 14:11
下一篇 2016-11-30 17:08

相关推荐

  • N25_第四周作业(补)

    1、复制/etc/skel目录到/home/tuser1,要求/home/tuser1及其内部文件的属组和其它用户均没有任何访问权限。 [root@EASTED tmp]# cp -r /etc/skel/ /home/tuser1/ [root@EASTED tmp]# cp …

    Linux干货 2017-01-02
  • 文本处理工具之grep

                    文本处理工具之grep 一、grep的简介 1、grep是一个文本过滤器的工具,它根据用户指定的模式(pattern)对目标文本进行匹配检查,并将匹配的行打印到标准输出或输出重定向。 2、模式:由文本字符或正则表达式组成 3、正则表达式分…

    2017-05-06
  • 计算机组成及各部分功能

    计算机组成及各部分功能 计算机组成 区别于利用机械原理对数据进行处理的机械计算机,计算机现在一般都指电子计算机,即电脑。计算机是一种利用电子学原理,根据一些列指令对数据进行处理的工具。 不管是机械计算机还是电子计算机其主要目的还是代替人来完成一系列的数据计算。1941年夏天诞生的阿塔纳索夫-贝瑞计算机是世界上第一部电子计算机,使用了真空管计算器,二进制数值,…

    Linux干货 2016-10-27
  • Linux终端类型

    Linux中各种终端的解释 设备终端   键盘鼠标显示器 物理终端( /dev/console ) )   在Linux 系统中,计算机显示器通常被称为控制台终端(Console)。 虚拟终端(tty :teletypewriters, /dev/tty# # 为[1-6])   tty 可有n 个,Ctrl+Alt+…

    Linux干货 2016-10-13
  • 文件查找:find命令、locate命令;Linux文件系统上的权限

    文件查找:find、locate locate:依赖事先构建的索引,是在系统空闲周期性自动进行;手动更新(updatedb);极其消耗资源;   find [option]… [查找路径] [查找条件] [处理动作] 查找条件: 根据文件名查找: -name “文件名称”:支持使用通配符glob(*,?,[],[…

    Linux干货 2017-12-14
  • 考试题目

    1、  简述TCP三次握手四次挥手过程及各过程中客户端和服务器端的状态。 TCP三次握手,四次断开通过以下图示说明: 2、说说进程和线程的区别 (1)一个线程只能输入某一个进程,一个进程可以有多个线程。一个程序至少有一个进程,一个进程至少有一个线程。 (2)进程有独立的地址空间,线程没有独立的地址空间,进程内的多个线程共享进程的地址空间。 (3)线…

    Linux干货 2016-06-19

评论列表(1条)

  • 马哥教育
    马哥教育 2016-12-07 23:22

    总结的很棒,可以研究一种方法实现同一功能