马哥教育网络21期+第四周作业博客

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总用量 12drwx------. 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/grouphadoop: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/passwdhadoop: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 hadoopdrwx------. 3 hadoop hadoop 74 7月  30 13:45 hadoop
[root@localhost /]# ll -a /home/hadoop总用量 12drwx------. 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] 
Sfile:            0 kBSwapFile:       148 kBShmem:        9721438 kBSHanghaiFile:              80 kBSlab:              6132 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;

显示/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/syncshutdown:x:6:0:shutdown:/sbin:/sbin/shutdownhalt:x:7:0:halt:/sbin:/sbin/haltbash:x:1001:1001::/home/bash:/bin/bashnologin:x:1004:1004::/home/nologin:/sbin/nologin

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

(0)
Net21_XUNet21_XU
上一篇 2016-09-05
下一篇 2016-09-05

相关推荐

  • LVM逻辑卷管理

    一、简述 什么是逻辑卷?LVM(Logical Volume Manager)利用Linux内核device-mapper实现存储系统的虚拟化。通过LVM,把底层存储硬件抽象化成存储逻辑块,再将这些逻辑块集合构成存储池,从存储池空间划分分区,可以简单地扩大或缩小分区,而不用担心硬盘没有足够的连续空间。 使用逻辑卷分区有什么用?使用逻辑卷分区重点在于可以弹性地…

    Linux干货 2016-09-06
  • 马哥教育21期网络班—第14周课程+练习——>iptables 练习

    系统的INPUT和OUTPUT默认策略为DROP; iptables -P INPUT DROP iptables -P OUTPUT DROP [root@localhost ~]# iptables -L -n  Chain INPUT…

    Linux干货 2016-10-24
  • 软链接和硬链接及两者之间的不同

    在 Linux 上被分成两个部分:用户数据 (user data) 与元数据 (metadata)。用户数据,即文件数据块 (data block),数据块是记录文件真实内容的地方;而元数据则是文件的附加属性,如文件大小、创建时间、所有者等信息。在 Linux 中,元数据中的 inode 号(inode 是文件元数据的一部分但其并不包含文件名,inode 号…

    Linux干货 2016-12-05
  • N26-博客作业-week5

    1、显示当前系统上root、fedora或user1用户的默认shell; ~]# grep -E “^((root|fedora|user1)\>)” /etc/passwd | cut -d: -f7 2、找出/etc/rc.d/init.d/functions文件中某单词后面跟一组小括号的行,形如:hello(); ~]#…

    Linux干货 2017-03-05
  • Linux基础知识总结

    Linux基础知识 计算机系统 计算机硬件组成 1.控制器:计算机系统的控制中心,协调各部分工作,保证计算机按照预先规定的目标和步骤进行操作及处理。 2.运算器:对数据进行算数运算,逻辑判断以及数据的比较、移位等操作。 3.存储器:存取程序和各种数据信息。  4.输入设备:把信息,如数字、文字、图像等转换为数字形式的“编码”的设备(键盘,扫描仪) …

    2017-05-18
  • 27期第一周学习小结

    第一周 1. 描述计算机的组成及其功能。 计算机主要组成部分以下五种:运算器,控制器,存储器,输入设备,输出设备。 运算器的功能是对数据进行算术运算与逻辑运算,就是对数据进行加工处理。 控制器的功能是调度二进制程序,数据,内存寻址,以及协调计算机输入设备和输出设备等各计算机部件之间的正常工作。 存储器的功能是存储二进制指令和数据。存储器是编址存储单元。 输入…

    Linux干货 2017-07-15

评论列表(1条)

  • 马哥教育
    马哥教育 2016-09-07 18:45

    完成的非常好,答案的排版需要注意一下,有些地方需要添加换行符哈,加油!