grep、egrep、vim练习

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

        [root@localhost ~]# install -d -m 600 /etc/skel /home/tuser1
        [root@localhost ~]# ls -l /home
        drw-------.  2 root        root           6 11月 15 20:23 tuser1

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

        [root@localhost ~]# vim /etc/group
        [root@localhost ~]# cat /etc/group
        hadoop:x:1002:

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

        [root@localhost ~]# vim /etc/passwd
        [root@localhost ~]# idhadoop
        uid=1002(hadoop) gid=1002(hadoop) 组=1002(hadoop)  
        [root@localhost ~]# cat /etc/passwd
        hadoop:x:1002:1002::/home/hadoop:/bin/bash

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

        [root@localhost ~]# install -d -m 600 /etc/skel/ /home/hadoop
        [root@localhost ~]# ls -l /home
        drw-------.  2 root        root           6 11月 15 20:49 hadoop

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

        [root@localhost ~]# install -d -o hadoop -g hadoop /home/hadoop/ /home/hadoop/
        [root@localhost ~]# ls -l /home/
        drwxr-xr-x.  2 hadoophadoop         6 11月 15 20:49 hadoop

6、显示/proc/meminfo文件中以大写或小写s开头的行,两种方式。

        [root@localhost ~]# grep  "^[sS]" /proc/meminfo
        SwapCached:            0 kB
        SwapTotal:       2098172 kB
        SwapFree:        2098172 kB
        Shmem:              7196 kB
        Slab:              93980 kB
        SReclaimable:      47692 kB
        SUnreclaim:        46288 kB
        [root@localhost ~]# grep -i  "^s" /proc/meminfo
        SwapCached:            0 kB
        SwapTotal:       2098172 kB
        SwapFree:        2098172 kB
        Shmem:              7196 kB
        Slab:              93980 kB
        SReclaimable:      47692 kB
        SUnreclaim:        46288 kB

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

        [root@localhost ~]# grep  -o ".*[^/sbin/nologin]" /etc/passwd
        root:x:0:0:root:/root:/bin/bash
        bin:x:1:1:bin:/bin:
        daemon:x:2:2:daemon:/sbin:
        adm:x:3:4:adm:/var/adm:
        lp:x:4:7:lp:/var/spool/lpd:
        sync:x:5:0:sync:/sbin:/bin/sync
        shutdown:x:6:0:shutdown:/sbin:/sbin/shutdow
        halt:x:7:0:halt:/sbin:/sbin/halt
        mail:x:8:12:mail:/var/spool/mail:
        operator:x:11:0:operator:/root:
        games:x:12:100:games:/usr/games:
        ftp:x:14:50:FTP User:/var/ftp:
        nobody:x:99:99:Nobody:/:
        avahi-autoipd:x:170:170:Avahi IPv4LL Stack:/var/lib/avahi-autoipd:
        systemd-bus-proxy:x:999:997:systemd Bus Proxy:/:
        systemd-network:x:998:996:systemd Network Management:/:
        dbus:x:81:81:System message bus:/:
        polkitd:x:997:995:User for polkitd:/:
        abrt:x:173:173::/etc/abrt:
        colord:x:996:994:User for colord:/var/lib/colord:
        libstoragemgmt:x:995:992:daemon account for libstoragemgmt:/var/run/lsm:
        setroubleshoot:x:994:991::/var/lib/setroubleshoot:
        rpc:x:32:32:Rpcbind Daemon:/var/lib/rpcbind:
        rtkit:x:172:172:RealtimeKit:/proc:
        chrony:x:993:990::/var/lib/chrony:
        tss:x:59:59:Account used by the trousers package to sandbox the tcsd daemon:/dev/null:
        geoclue:x:992:989:User for geoclue:/var/lib/geoclue:
        usbmuxd:x:113:113:usbmuxd user:/:
        ntp:x:38:38::/etc/ntp:
        mysql:x:27:27:MariaDB Server:/var/lib/mysql:
        rpcuser:x:29:29:RPC Service User:/var/lib/nfs:
        nfsnobody:x:65534:65534:Anonymous NFS User:/var/lib/nfs:
        sssd:x:991:988:User for sssd:/:
        pulse:x:171:171:PulseAudio System Daemon:/var/run/pulse:
        gdm:x:42:42::/var/lib/gdm:
        postfix:x:89:89::/var/spool/postfix:
        sshd:x:74:74:Privilege-separated SSH:/var/empty/sshd:
        tcpdump:x:72:72::/:
        dunwen_jian:x:1000:1000::/home/dunwen_jian:/bin/bash
        centos01:x:1001:1001::/home/centos01:/bin/bash
        hadoop:x:1002:1002::/home/hadoop:/bin/bash

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

        [root@localhost ~]# grep ".*/bin/bash" /etc/passwd
        root:x:0:0:root:/root:/bin/bash
        dunwen_jian:x:1000:1000::/home/dunwen_jian:/bin/bash
        centos01:x:1001:1001::/home/centos01:/bin/bash
        hadoop:x:1002:1002::/home/hadoop:/bin/bash

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

        [root@localhost ~]# grep "\<[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
        rpc:x:32:32:Rpcbind Daemon:/var/lib/rpcbind:/sbin/nologin
        tss:x:59:59:Account used by the trousers package to sandbox the tcsd daemon:/dev/null:/sbin/nologin
        ntp:x:38:38::/etc/ntp:/sbin/nologin
        mysql:x:27:27:MariaDB Server:/var/lib/mysql:/sbin/nologin
        rpcuser:x:29:29:RPC Service User:/var/lib/nfs:/sbin/nologin
        gdm:x:42:42::/var/lib/gdm:/sbin/nologin
        postfix:x:89:89::/var/spool/postfix:/sbin/nologin
        sshd:x:74:74:Privilege-separated SSH:/var/empty/sshd:/sbin/nologin
        tcpdump:x:72:72::/:/sbin/nologin

10、显示/boot/grub2/grub.cfg文件中至少一个空白字符开头的行。

[root@localhost ~]# grep "^[[:space:]]\+[[:space:]]" /boot/grub2/grub.cfg
  load_env
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
   set default="${saved_entry}"
  menuentry_id_option="--id"
  menuentry_id_option=""
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
  set timeout_style=menu
  set timeout=5
  set timeout=5
  source ${prefix}/user.cfg
  if [ -n ${GRUB2_PASSWORD} ]; then
    set superusers="root"
    export superusers
    password_pbkdf2 root ${GRUB2_PASSWORD}
  fi
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 --hint='hd0,msdos1'  0e66967e-71ab-473f-a181-635ec181283c
      search --no-floppy --fs-uuid --set=root 0e66967e-71ab-473f-a181-635ec181283c
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 --hint='hd0,msdos1'  0e66967e-71ab-473f-a181-635ec181283c
      search --no-floppy --fs-uuid --set=root 0e66967e-71ab-473f-a181-635ec181283c
  source ${config_directory}/custom.cfg
  source $prefix/custom.cfg;

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

        [root@localhost ~]# grep "^#[[:space:]]\+[^[:space:]]" /etc/rc.d/rc.local
        # THIS FILE IS ADDED FOR COMPATIBILITY PURPOSES
        # It is highly advisable to create own systemd services or udev rules
        # to run scripts during boot instead of using this file.
        # In contrast to previous versions due to parallel execution during boot
        # this script will NOT be run after all other services.
        # Please note that you must run 'chmod +x /etc/rc.d/rc.local' to ensure
        # that this script will be executed during boot.

12、打出netstat -tan命令执行结果中以‘LISTEN',后或跟空白字符结尾的行。

    [root@localhost ~]# netstat -tan | grep "\<LISTEN[[:space:]]\+"
    tcp        0      0 0.0.0.0:53164             0.0.0.0:*           LISTEN      
    tcp        0      0 0.0.0.0:111               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      
    tcp        0      0 :::111                    :::*                LISTEN      
    tcp        0      0 :::22                     :::*                LISTEN      
    tcp        0      0 ::1:631                   :::*                LISTEN      
    tcp        0      0 ::1:25                    :::*                LISTEN      
    tcp        0      0 :::34985                  :::*                LISTEN

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

        [root@localhost ~]# 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
        bash:x:4004:4004::/home/bash:/bin/bash
        nologin:x:4007:4007::/home/nologin:/sbin/nologin

 

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

(0)
641348038@qq.com641348038@qq.com
上一篇 2016-11-17
下一篇 2016-11-18

相关推荐

  • 利用keepalived搭建高可用集群

    在一个系统中,常常存在一些单点服务器,为了提高整个系统的稳定性,我们常常需要对这些单点服务做高可用配置;keepalived即为一种常用的高可用配置服务; Keepalived的工作模式有以下两种: 1、 主/备:即单虚拟路径器,仅配置一个VIP; 2、 主/主:即多个虚拟路径器,配置多个VIP,每个虚拟路径器作为其中某个VIP的的master虚拟路径器; …

    Linux干货 2016-11-01
  • RPM的使用

    概述 RPM 是 Red Hat PackageManager 的缩写,本意是Red Hat 软件包管理,顾名思义是Red Hat 贡献出来的软件包管理;在Fedora 、Redhat、Mandriva、SuSE、YellowDog等主流发行版本,以及在这些版本基础上二次开发出来的发行版采用; RPM包里面都包含什么?里面包含可执行的二进制程序,这个程序和W…

    Linux干货 2016-02-14
  • 马哥教育网络班21期+第5周课程练习

    1.显示/boot/grub/grub.conf中至少以一个空白字符开头的行 [root@itop ~]# grep "^[[:space:]]\+" /boot/grub/grub.conf 2.显示/etc/rc.d/rc.sysinit文件中以#开头,后面至少一个空白字符,而后又有至少一个非空…

    Linux干货 2016-08-08
  • Ansible应用介绍

    Ansible 简介 ansible是个什么东西呢?官方的title是“Ansible is Simple IT Automation”——简单的自动化IT工具。这个工具的目标有这么几项:自动化部署APP;自动化管理配置项;自动化的持续交互;自动化的(AWS)云服务管理。所有的这几个目标从本质上来说都是在一个台或者几台服务器上,执行一系列的命令而已。通俗的说…

    Linux干货 2015-07-03
  • 马哥Linux学习之查询篇(命令查询和文件查询)

        Linux运维工作一般都使用命令完成,在如此多的各种命令中,要想全部记住显然是不太可能也是不必要的,另外,文件的查找在日常操作中也是必不可少的。下面我就总结一下Linux中如何查找命令以及文件。     命令的运行文件路径查询。这个查找的方法是同样是使用命令,这个命令叫w…

    Linux干货 2015-04-13
  • 马哥教育网络21期+第五周练习博客

    1、显示/boot/grub/grub.conf中以至少一个空白字符开头的行; [root@localhost ~]#  grep '[^[:space:]]\+' /boot/grub2/grub.cfg 2、显示/etc/rc.d/rc.sysinit文件中以#开头,后面跟至少一个空白字符…

    Linux干货 2016-08-08