Linux第四周作业

Linux

1、 复制/etc/skel目录为/home/tuser1,要求/home/tuser1及其内部文件的属组和其它用户均没有任何访问权限。
~]# cp /etc/skel/ /home/tuser1
home]# getfacl tuser1/
# file: tuser1/
# owner: root
# group: root
user::rwx
group::r-x
other::r-x
home]# setfacl -m u::7,g::0,o::0 tuser1/
[root@ada-dog home]# getfacl tuser1/
# file: tuser1/
# owner: root
# group: root
user::rwx
group::—
other::—

2、 编辑/etc/group文件,添加组hadoop。
~]# echo “hadoop:x:1004:” >> /etc/group
3、 手动编辑/etc/passwd文件新增一行,添加用户hadoop,其基本组ID为hadoop组的id号;其家目录为/home/hadoop。
~]# echo “hadoop:x:1003:1004::/home/hadoop:/bin/bash” >> /etc/passwd
4、 复制/etc/skel目录为/home/hadoop,要求修改hadoop目录的属组和其它用户没有任何访问权限。
home]# cp -rv /etc/skel/ /home/hadoop/
“/etc/skel/” -> “/home/hadoop/”
“/etc/skel/.mozilla” -> “/home/hadoop/.mozilla”
“/etc/skel/.mozilla/extensions” -> “/home/hadoop/.mozilla/extensions”
“/etc/skel/.mozilla/plugins” -> “/home/hadoop/.mozilla/plugins”
“/etc/skel/.bash_logout” -> “/home/hadoop/.bash_logout”
“/etc/skel/.bash_profile” -> “/home/hadoop/.bash_profile”
“/etc/skel/.bashrc” -> “/home/hadoop/.bashrc”
[root@ada-dog home]# getfacl hadoop/
# file: hadoop/
# owner: root
# group: root
user::rwx
group::r-x
other::r-x
home]# setfacl -m u::7,g::0,o::0 hadoop/
[root@ada-dog home]# getfacl hadoop/
# file: hadoop/
# owner: root
# group: root
user::rwx
group::—
other::—

5、 修改/home/hadoop目录及其内部所有文件的属主为hadoop,属组为hadoop。
home]# chown -Rv hadoop:hadoop /home/hadoop/
changed ownership of “/home/hadoop/.mozilla/extensions” from root:root to hadoop:hadoop
changed ownership of “/home/hadoop/.mozilla/plugins” from root:root to hadoop:hadoop
changed ownership of “/home/hadoop/.mozilla” from root:root to hadoop:hadoop
changed ownership of “/home/hadoop/.bash_logout” from root:root to hadoop:hadoop
changed ownership of “/home/hadoop/.bash_profile” from root:root to hadoop:hadoop
changed ownership of “/home/hadoop/.bashrc” from root:root to hadoop:hadoop
changed ownership of “/home/hadoop/” from root:root to hadoop:hadoop
home]# ls -al /home/hadoop/
总用量 12
drwx——. 3 hadoop hadoop 78 7月 10 15:41 .
drwxr-xr-x. 7 root root 73 7月 10 15:41 ..
-rw-r–r–. 1 hadoop hadoop 18 7月 10 15:41 .bash_logout
-rw-r–r–. 1 hadoop hadoop 193 7月 10 15:41 .bash_profile
-rw-r–r–. 1 hadoop hadoop 231 7月 10 15:41 .bashrc
drwxr-xr-x. 4 hadoop hadoop 39 7月 10 15:41 .mozilla
6、 显示/proc/meminfo文件中以大写或小写S开头的行;用两种方式;
~]# grep -i ‘^s’ /proc/meminfo
SwapCached: 1456 kB
SwapTotal: 3145724 kB
SwapFree: 3112296 kB
Shmem: 2252 kB
Slab: 57744 kB
SReclaimable: 19724 kB
SUnreclaim: 38020 kB
~]# grep -E ‘^[sS]’ /proc/meminfo
SwapCached: 1652 kB
SwapTotal: 3145724 kB
SwapFree: 3111748 kB
Shmem: 2216 kB
Slab: 57168 kB
SReclaimable: 19724 kB
SUnreclaim: 37444 kB

7、 显示/etc/passwd文件中其默认shell为非/sbin/nologin的用户;
~]# cat /etc/passwd | grep -v “/sbin/nologin” | cut -d: -f1
root
sync
shutdown
halt
ada
fedora
centos
hadoop
8、 显示/etc/passwd文件中其默认shell为/bin/bash的用户;
~]# cat /etc/passwd | grep “/bin/bash” | cut -d: -f1
root
ada
fedora
centos
hadoop

9、 找出/etc/passwd文件中的一位数或两位数;
~]# grep “\<[[:digit:]]\{,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
ntp:x:38:38::/etc/ntp:/sbin/nologin
mysql:x:27:27:MariaDB Server:/var/lib/mysql:/sbin/nologin
tss:x:59:59:Account used by the trousers package to sandbox the tcsd daemon:/dev/null:/sbin/nologin
gdm:x:42:42::/var/lib/gdm:/sbin/nologin
rpcuser:x:29:29:RPC Service User:/var/lib/nfs:/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/grub/grub.conf中以至少一个空白字符开头的行;
~]# grep “^[[:space:]]\+” /boot/grub/grub.conf
dfsgs
safa
gsgsg
wsd
sdfdse444
esg
fsgr\
11、 显示/etc/rc.d/rc.sysinit文件中以#开头,后面跟至少一个空白字符,而后又有至少一个非空白字符的行;
~]# grep “^#[[:space:]]\+[^[:space:]]\+” /etc/rc.d/rc.sysinit
# It receives polydir path as $1, the instance path as $2,
# a flag whether the instance dir was newly created (0 – no, 1 – yes) in $3,
# and user name in $4.
# The following section will copy the contents of /etc/skel if this is a
# newly created home directory.

12、 打出netstat -tan命令执行结果中以‘LISTEN’,后或跟空白字符结尾的行;
~]# netstat -tan | grep “LISTEN[[:space:]]\+”
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 127.0.0.1:6010 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:6011 0.0.0.0:* LISTEN
tcp6 0 0 :::111 :::* LISTEN
tcp6 0 0 :::22 :::* LISTEN
tcp6 0 0 ::1:631 :::* LISTEN
tcp6 0 0 ::1:25 :::* LISTEN
tcp6 0 0 ::1:6010 :::* LISTEN
tcp6 0 0 ::1:6011 :::* LISTEN

13、 添加用户bash, testbash, basher, nologin (此一个用户的shell为/sbin/nologin),而后找出当前系统上其用户名和默认shell相同的用户的信息;
~]# useradd bash
~]# useradd testbash
~]# useradd basher
~]# useradd -s /sbin/nologin nologin
~]# grep “^\([^:]\+\>\).*\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:501:501::/home/bash:/bin/bash
nologin:x:504:504::/home/nologin:/sbin/nologin

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

(0)
FelixFelix
上一篇 2018-07-14
下一篇 2018-07-14

相关推荐

  • 加密和安全

    加密和安全

    2018-05-17
  • mysql数据库的安装

    实战:rpm包安装 1、yum安装 centos6上yum install mysql-server rpm -ql mysql-server /etc/rc.d/init.d/mysqld  服务名(服务脚本的名称) /usr/libexec/mysqld  数据库的主程序(二进制的程序路径与平时看到的二进制程序路径不一样) /var/lib/mysql …

    Linux笔记 2018-06-11
  • 第三周作业

    第三周作业 1列出当前系统上所有已经登录的用户的用户名,注意:同一个用户登录多次,则只显示一次即可。 W 命令:显示信息更加全面 第一行显示系统的汇总信息,字段分别表示系统当前时间、系统运行时间、登陆内用户总数及系统平均负载信息。 从第二行开始构成一个表格,共有8个栏目,分别显示各个用户正在做的事情及该用户所占用的系统资料。 USER:显示登陆用户帐号名。用…

    2018-07-08
  • 第一周作业之:计算机的组成及其功能 | Linux发行版 | Linux哲学思想

    计算机组成 Linux发行版 Linux哲学思想

    2018-04-14
  • 计算机原理与Linux基础

    计算机的组成及功能 1、其实计算机的组织分为内部设备和外部设备, 内部设备:         CPU:运算器、寄存器、缓存         存储器:内存,RAM(Random Access Memory)         控制器:控制器是整个计算机系统的控制中心,它指挥计算机各部分协调地工作,保证计算机按照预先规定的目标和步骤有条不紊地进行操作及处理。 外部…

    Linux笔记 2018-05-13
  • 网络模型和iproute家族命令

    1、简述osi七层模型和TCP/IP五层模型
    2、简述iproute家族命令
    3、详细说明进行管理工具htop、vmstat等相关命令,并举例
    4、使用until和while分别实现192.168.0.0/24 网段内,地址是否能够ping通,若ping通则输出”success!”,若ping不通则输出”fail!”

    2018-06-19