cp,chmod,chown,chgrg,grep命令应用实例和总结

1.复制/etc/skel目录为/home/tuser1,要求/home/tuser1及其内部文件的其他属组和其他用户没有任何访问权限。
[root@dxlcentOS ~]# cp -a /etc/skel/ /home/tuser1
[root@dxlcentOS ~]# chmod -R go= /home/tuser1 递归修改权限,g:组的权限,o其他人权限,后面没有加权限,表示取消他们的权限

2.编辑/etc/group文件,添加组hadood.
[root@dxlcentOS ~]# vim /etc/group
hadoop:x:2050:
加入一行hadoop:x:2050:,指定组名和组ID,组ID不能和存在的ID号相同,要是没有指定组ID,则是无效组,不能往里面添加用户。

3.手动编辑/etc/passwd文件新增一行,添加用户hadoop,其基本组为ID为hadoop组的ID号,其家目录为/home/hadoop。
[root@dxlcentOS ~]# vim /etc/passwd
hadoop:x:2049:2050::/home/hadoop:/bin/bash
Hadoop用户增加进用户信息库后,还没有家目录,还要复制/etc/skel过来

4.复制/etc/skel目录为/home/haddoop,要求/home/haddoop目录的属组和其他用户没有任何访问权限。
[root@dxlcentOS ~]# cp -a /etc/skel /home/hadoop
[root@dxlcentOS ~]# chmod go= /home/hadoop

5,修改/home/haddoop目录及其内部所有文件属主为hadoop,属组为hadoop。
[root@dxlcentOS ~]# chown -R hadoop /home/hadoop | chgrp -R hadoop /home/hadoop

6.显示/proc/meminfo文件中,所有以大写或小写S开头的行,两种方式。
[hadoop@dxlcentOS ~]$ grep -i “^s” /proc/meminfo
[hadoop@dxlcentOS ~]$ grep “^[Ss]” /proc/meminfo

7.显示/etc/passwd文件中默认shell为非/sbin/nologin的用户.
[hadoop@dxlcentOS ~]$ grep -v “/sbin/nologin” /etc/passwd

8.显示/etc/passwd文件中默认shell为/bin/bash的用户.
[root@dxlcentOS ~]# grep “/bin/bash” /etc/passwd
root:x:0:0:root:/root:/bin/bash
centos:x:1000:1000::/home/centos:/bin/bash

9.找出/etc/passwd文件中的一位数或二位数
[root@dxlcentOS ~]# 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
…….

10.显示/boot/grub/grup.conf文件中,以至少一个空白字符开头的行.
[root@dxl ~ 12:33:45]# grep “^[[:space:]]\+” /boot/grub/grub.conf

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

 [root@dxl ~ 12:46:27]# grep "^[#][[:space:]]\+[^[:space:]]\+" /boot/grub/grub.conf
# grub.conf generated by anaconda
# Note that you do not have to rerun grub after making changes to this file
# NOTICE:  You have a /boot partition.  This means that
#          all kernel and initrd paths are relative to /boot/, eg.
#          root (hd0,0)
#          kernel /vmlinuz-version ro root=/dev/sda3
#          initrd /initrd-[generic-]version.img

12.找出”netstat -tan”命令的结果中以’LISTEN’,后跟空白字符结尾的行。

 [root@dxl ~ 12:59:51]# 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:25                0.0.0.0:*                   LISTEN      

13.添加用户bash, testbash, basher以及nologin(其shell为/sbin/nologin);而后找出当前系统上其用户名和默认shell相同的用户信息。
第一步先添加用户bash, testbash, basher以及nologin
第二步

 [root@dxl ~ 13:24:53]# 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:504:504::/home/bash:/bin/bash
nologin:x:507:507::/home/nologin:/sbin/nologin

总结:通过编辑组信息库文件/etc/grouptonggu添加的组,其ID不能和存在的组ID相同。通过手动编辑用户信息库/etc/passwd文件添加的用户并指定家目录路径后,并不立即生效,还要复制复制/etc/skel目录为/home/haddoop,并修改其属主和属组为hadoop。

本文来自投稿,不代表Linux运维部落立场,如若转载,请注明出处:http://www.178linux.com/88066

(0)
N27_dxldengN27_dxldeng
上一篇 2017-10-25
下一篇 2017-10-26

相关推荐

  • Shell编程if语句

    Shell编程if语句 条件选择if语句(#if输入keywork) 选择执行: 注意:if语句可嵌套 单分支 if 判断条件(#如果为真执行下一条);then 条件为真的分支代码 fi(结尾) 双分支 if 判断条件; then 条件为真的分支代码 else 条件为假的分支代码 fi if 语句 多分支 if 判断条件1; then 条件为真的分支代码 e…

    2018-01-01
  • M20-1 8月3号作业

    1、三种权限rwx对文件和目录的不同意义 2、umask和acl mask 的区别和联系 3、三种特殊权限的应用场景和作用 4、设置user1,使之新建文件权限为rw——- 5、设置/testdir/f1的权限,使user1用户不可以读写执行,g1组可以读写 /testdir/dir的权限,使新建文件自动具有acl权限:user1:r…

    Linux干货 2016-08-05
  • 文本处理工具-习题

    1 、找出ifconfig 命令结果中本机的所有IPv4地址 [root@centos7 ~]# ifconfig |head -2 |tail-1 |cut -dn -f2 |cut -d" " -f2 2 、查出分区空间使用率的最大百分比值 [root@centos7 ~]# df |cut -c44-46 |sort -n|tail…

    Linux干货 2016-08-15
  • 第四周练习

    1、复制/etc/skel目录为/home/tuser1,要求/home/tuser1及其内部文件的属组和其它用户均没有任何访问权限 # cp -a /etc/skel /home/tuser1 # chmod -R go= /home/tuser1 2、编辑/etc/group文件,添加组hadoop #vim /etc/group #hadoop:x:5…

    Linux干货 2017-10-21
  • 虚拟化技术介绍、Xen的简单实现

    虚拟化是什么? 虚拟化是一种资源管理技术, 是将计算机的各实体资源, 如服务、网络、内存及存储等, 予以抽象、转换后呈现出来, 打破实体之间的不可切割的障碍, 使用户可以比原本的配置更好的方式来应用这些资源。这些资源的新虚拟部分是不受现有资源的架设方式, 地域或物理配置所限制。一般情况下, 虚拟化资源包括计算能力和数据存储 —<转自维基百科&…

    2016-05-31