马哥教育网络班21期+第4周作业

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

[root@localhost ~]# cp -r /etc/skel /home/ && mv /home/skel /home/tuser1
[root@localhost ~]# chmod -R g-rwx,o-rwx  /home/tuser1
[root@localhost tuser1]# ll -a
总用量 12
drwx------. 3 root root  74 7月  30 13:31 .
drwx--x--x. 3 root root  43 7月  30 13:31 ..
-rw-------. 1 root root  18 7月  30 13:31 .bash_logout
-rw-------. 1 root root 193 7月  30 13:31 .bash_profile
-rw-------. 1 root root 231 7月  30 13:31 .bashrc
drwx------. 4 root root  37 7月  30 13:31 .mozilla

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

[root@localhost /]# echo "hadoop:x:1000:" >> /etc/group
[root@localhost /]# tail -1 /etc/group
hadoop:x:1000:

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

[root@localhost /]# echo "hadoop:x:1000:1000:hadoop:/home/hadoop:/bin/bash" >> /etc/passwd
[root@localhost /]# tail -1 /etc/passwd
hadoop:x:1000:1000::/home/hadoop:/bin/bash

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

[root@localhost /]# cp -r /etc/skel/ /home && mv /home/skel /home/hadoop
[root@localhost /]# chmod g-rwx,o-rwx /home/hadoop/
[root@localhost /]# ll -a /home | grep hadoop
drwx------.  4 root root    85 7月  30 13:42 hadoop

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

[root@localhost /]# chown -R hadoop:hadoop /home/hadoop
[root@localhost /]# ll /home | grep hadoop
drwx------. 3 hadoop hadoop 74 7月  30 13:45 hadoop
[root@localhost /]# ll -a /home/hadoop
总用量 12
drwx------. 4 hadoop hadoop  85 7月  30 13:42 .
drwx--x--x. 4 root   root    56 7月  30 13:42 ..
-rw-r--r--. 1 hadoop hadoop  18 7月  30 13:42 .bash_logout
-rw-r--r--. 1 hadoop hadoop 193 7月  30 13:42 .bash_profile
-rw-r--r--. 1 hadoop hadoop 231 7月  30 13:42 .bashrc
drwxr-xr-x. 4 hadoop hadoop  37 7月  30 13:42 .mozilla

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

[root@localhost /]# cat /proc/meminfo | grep ^[s,S] 
SwapCached:            0 kB
SwapTotal:       2097148 kB
SwapFree:        2097148 kB
Shmem:              8800 kB
Slab:              66536 kB
SReclaimable:      23132 kB
SUnreclaim:        43404 kB
[root@localhost /]# cat /proc/meminfo | grep -i ^s 
SwapCached:            0 kB
SwapTotal:       2097148 kB
SwapFree:        2097148 kB
Shmem:              8800 kB
Slab:              66564 kB
SReclaimable:      23156 kB
SUnreclaim:        43408 kB

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

[root@localhost /]# cat /etc/passwd | grep -v /sbin/nologin | awk -F: '{ print $1 }' 
root
sync
shutdown
halt
hadoop

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

[root@localhost /]# cat /etc/passwd | grep  /bin/bash | awk -F: '{ print $1 }'                
root
hadoop

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

[root@localhost /]# grep -o "[0-9]\{1,2\}" /etc/passwd  
0
中间略...
00

10、显示/boot/grub/grub.conf中以至少一个空白字符开头的行(系统为CentOS 7,以/boot/grub2/grub.cfg代替)

[root@localhost grub2]# grep "^[[:space:]]\+" grub.cfg 
  load_env
   set default="${next_entry}"
中间略... 
        initrd16 /initramfs-0-rescue-37e800fd7ca2447eade3a5cb36080c40.img
  source ${config_directory}/custom.cfg
  source $prefix/custom.cfg;

11、显示/etc/rc.d/rc.sysinit文件 中以#开头,后面跟至少一个空白字符,而后又有至少一个非空白字符的行(系统为CentOS 7,以/boot/grub2/grub.cfg代替)

[root@localhost /]# cat /boot/grub2/grub.cfg  | grep "^#[[:space:]]\{1,\}[^[:space:]]"
# DO NOT EDIT THIS FILE
# It is automatically generated by grub2-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.

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

[root@localhost /]# netstat -tan | grep '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:25            0.0.0.0:*               LISTEN     
tcp6       0      0 :::22                   :::*                    LISTEN     
tcp6       0      0 ::1:25                  :::*                    LISTEN

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

[root@localhost /]# useradd bash && useradd testbash && useradd basher && useradd -s /sbin/nologin nologin
[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:1001:1001::/home/bash:/bin/bash
nologin:x:1004:1004::/home/nologin:/sbin/nologin

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

(0)
lichenhanlichenhan
上一篇 2016-08-02
下一篇 2016-08-02

相关推荐

  • God进程监控框架

    监控重启进程的方案有很多种: 最简单的方法,写个脚本fork进程运行,然后waitpid,如果获pid后就再次启动 最土的方法,配置cron任务,固定时间运行脚本检查进程是否存在,不存在则启动 百度使用qmail里的supervised程序,通过supervised监管进程。 优点:supervised可以启动daemon程序,对于非daemon需要采用no…

    Linux干货 2015-02-13
  • nginx反向代理负载均衡集群配置详解

    反向代理负载均衡集群配置详解 反向代理(Reverse Proxy)方式是指以代理服务器来接受internet上的连接请求,然后将请求转发给内部网络上的服务器,并将从服务器上得到的结果返回给internet上请求连接的客户端,此时站在服务器角度来看,代理服务器对外就表现为一个反向代理服务器。 对反向代理服务器的攻击并不会使得后端内网Web服务器上网页信息遭到…

    Linux干货 2016-11-07
  • grep命令

    ]# chmod -R 700 /home/tuser1 ]# ll /home/tuser1/ total 0 drwx——. 2 root root 72 Nov 20 17:33 skel 新增用户与组: 显示/proc/meminfo: 显示shell 非 /sbin/nologin 的用户 找出/etc/passwd文件中一…

    Linux干货 2016-11-20
  • 文件管理命令及变量基础

    文件管理工具:cp,    mv,     rm       cp命令:copy 源文件;目标文件 单源复制: cp [OPTION]….[-T]  SOURCE  DEST 多源复制:cp [OPTION] ….SOURCE…DIR…

    Linux干货 2016-12-21
  • 用户组和权限管理知识总结

    在介绍本期内容之前呢,有一个小插曲.就是由于昨天晚上我没有正常关闭虚拟机,今天早上打开的时候一直显示正在使用中,弹 出来个小框框,如下图,马赛克部分呢就是提示的路径,安装路径不一样,提示的就也不一样. 此虚拟机似乎正在使用中。 如果此虚拟机已在使用中,请按“取消”按钮,以免损坏它。如果此虚拟机未使用,请按“取得所有权(T)”按钮以获取它的所有权。&…

    2017-07-28
  • N25-第六周作业

    第6周作业 — 请详细总结vim编辑器的使用并完成以下练习题 vim是模式化的全屏文本编辑器。vim分为三种模式:分别是编辑模式;输入模式;末行模式; 打开文件的方式有:vim +# FILE打开文件FILE并把光标定位到#行的行首;vim +/PATTERN FILE打开文件并让光标处于第一个被PATTERN匹配到的行的行首。(支持正则表达式)…

    Linux干货 2017-02-22

评论列表(1条)

  • 马哥教育
    马哥教育 2016-08-02 11:58

    写的很好,排版也很棒,加油