第4周 作业

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

[[email protected] skel]# cp -R /etc/skel/ /home/tuser1
[[email protected] skel]# chmod -R 700 /home/tuser1/
[[email protected] skel]# ls -dl /home/tuser1/
drwx------. 4 root root 4096 Aug  9 08:19 /home/tuser1/
[[email protected] skel]# ls -al /home/tuser1/
total 28
drwx------.  4 root root 4096 Aug  9 08:19 .
drwxr-xr-x. 14 root root 4096 Aug  9 08:19 ..
-rwx------.  1 root root   18 Aug  9 08:19 .bash_logout
-rwx------.  1 root root  176 Aug  9 08:19 .bash_profile
-rwx------.  1 root root  124 Aug  9 08:19 .bashrc
drwx------.  2 root root 4096 Aug  9 08:19 .gnome2
drwx------.  4 root root 4096 Aug  9 08:19 .mozilla

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

[[email protected] home]# vim /etc/group
[[email protected] home]# tail -n 1 /etc/group
hadoop:x:505:

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

[[email protected] ~]# tail -n 1 /etc/passwd
hadoop:x:505:505::/home/hadoop:/bin/bash

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

[[email protected] hadoop]# cp -R /etc/skel/ /home/hadoop
[[email protected] hadoop]# chmod -R 700 /home/hadoop/
[[email protected] hadoop]# ll -dl /home/hadoop/
drwx------. 4 root root 4096 Aug  9 12:01 /home/hadoop/
[[email protected] hadoop]# ll -al /home/hadoop
total 28
drwx------.  4 root root 4096 Aug  9 12:01 .
drwxr-xr-x. 15 root root 4096 Aug  9 12:01 ..
-rwx------.  1 root root   18 Aug  9 12:01 .bash_logout
-rwx------.  1 root root  176 Aug  9 12:01 .bash_profile
-rwx------.  1 root root  124 Aug  9 12:01 .bashrc
drwx------.  2 root root 4096 Aug  9 12:01 .gnome2
drwx------.  4 root root 4096 Aug  9 12:01 .mozilla

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

[[email protected] home]# chown -R hadoop:hadoop /home/hadoop/
[[email protected] home]# ll -al /home/hadoop/
total 28
drwx------.  4 hadoop hadoop 4096 Aug  9 12:01 .
drwxr-xr-x. 15 root   root   4096 Aug  9 12:01 ..
-rwx------.  1 hadoop hadoop   18 Aug  9 12:01 .bash_logout
-rwx------.  1 hadoop hadoop  176 Aug  9 12:01 .bash_profile
-rwx------.  1 hadoop hadoop  124 Aug  9 12:01 .bashrc
drwx------.  2 hadoop hadoop 4096 Aug  9 12:01 .gnome2
drwx------.  4 hadoop hadoop 4096 Aug  9 12:01 .mozilla
[[email protected] home]# ll -dl /home/hadoop/
drwx------. 4 hadoop hadoop 4096 Aug  9 12:01 /home/hadoop/

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

[[email protected] home]# grep -E "^[sS]" /proc/meminfo #方法1
SwapCached:            0 kB
SwapTotal:       2031612 kB
SwapFree:        2031612 kB
Shmem:              1140 kB
Slab:             102148 kB
SReclaimable:      39044 kB
SUnreclaim:        63104 kB
[[email protected] home]# grep -Ev "^[^sS]" /proc/meminfo #方法2
SwapCached:            0 kB
SwapTotal:       2031612 kB
SwapFree:        2031612 kB
Shmem:              1140 kB
Slab:             102152 kB
SReclaimable:      39048 kB
SUnreclaim:        63104 kB

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

[[email protected] home]# cut -d: -f1,7 /etc/passwd | grep -Ev "/sbin/nologin$" | cut -d: -f1
root
sync
shutdown
halt
mu
user1
user2
user3
dff_grt
mageia
mageiaa
slackware
openstack
hadoop

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

[[email protected] home]# cut -d: -f1,7 /etc/passwd | grep -E "/bin/bash$" | cut -d: -f1
root
mu
user1
user2
user3
dff_grt
mageia
mageiaa
openstack
hadoop

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

[[email protected] home]# cat /etc/passwd | grep -Eo "\<[0-9][0-9]?\>"
0
0
1
1
2
2
3
4
4
7
5
0
6
0
7
0
8
12
10
14
11
0
12
13
30
14
50
99
99
81
81
32
32
69
69
29
29
68
68
38
38
48
48
76
89
89
42
42
74
74
72
72

10、显示/boot/grub/grub.conf中以至少一个空白字符开头的行;

[[email protected] home]# grep -E "^[[:space:]]+" /boot/grub/grub.conf 
	root (hd0,0)
	kernel /vmlinuz-2.6.32-642.el6.x86_64 ro root=/dev/mapper/vg_client-lv_root rd_NO_LUKS LANG=en_US.UTF-8 rd_LVM_LV=vg_client/lv_root rd_NO_MD rd_LVM_LV=vg_client/lv_swap SYSFONT=latarcyrheb-sun16 crashkernel=auto  KEYBOARDTYPE=pc KEYTABLE=us rd_NO_DM rhgb quiet
	initrd /initramfs-2.6.32-642.el6.x86_64.img

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

[[email protected] home]# grep -E "^#[[:space:]]+[^[:space:]]+" /etc/rc.d/rc.sysinit 
# /etc/rc.d/rc.sysinit - run once at boot time
# Taken in part from Miquel van Smoorenburg‘s bcheckrc.
# Check SELinux status
# Print a text banner.
# Only read this once.
# Initialize hardware
# Set default affinity
# Load other user-defined modules
# Load modules (for backward compatibility with VARs)
# Configure kernel parameters
# Set the hostname.
# Sync waiting for storage.
# Device mapper & related initialization
# Start any MD RAID arrays that haven‘t been started yet
# Remount the root filesystem read-write.
# Clean up SELinux labels
# If relabeling, relabel mount points.
# Mount all other filesystems (except for NFS and /proc, which is already
# mounted). Contrary to standard usage,
# filesystems are NOT unmounted in single user mode.
# The ‘no‘ applies to all listed filesystem types. See mount(8).
# Check to see if a full relabel is needed
# Update quotas if necessary
# Initialize pseudo-random number generator
# Configure machine if necessary.
# Clean out /.
# Do we need (w|u)tmpx files? We don‘t set them up, but the sysadmin might...
# Clean up /var.
# Clean up utmp/wtmp
# Clean up various /tmp bits
# Make ICE directory
# Start up swapping.
# Set up binfmt_misc
# Boot time profiles. Yes, this should be somewhere else.
# Now that we have all of our basic modules loaded and the kernel going,
# let‘s dump the syslog ring somewhere so we can find it later
# create the crash indicator flag to warn on crashes, offer fsck with timeout
# Let rhgb know that we‘re leaving rc.sysinit

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

[[email protected] home]# netstat -tan | grep -E "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 0.0.0.0:35098               0.0.0.0:*                   LISTEN      
tcp        0      0 :::43279                    :::*                        LISTEN      
tcp        0      0 :::111                      :::*                        LISTEN      
tcp        0      0 :::22                       :::*                        LISTEN      
tcp        0      0 ::1:631                     :::*                        LISTEN      
tcp        0      0 ::1:25                      :::*                        LISTEN

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

[[email protected] home]# grep -E "^(\<[[:alpha:]]+\>).*\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:3005:3005::/home/bash:/bin/bash
nologin:x:3008:3008::/home/nologin:/sbin/nologin
时间: 2024-10-04 22:32:09

第4周 作业的相关文章

python基础周作业

python基础周作业 1.执行python脚本的两种方法 脚本前面直接指定解释器 在脚本开始前声明解释器 2.简述位,字节的关系 每一个字节占用八个比特位 3, 简述ascii.unicode.utf- ‐8.gbk的关系 utf--‐8 <-- unicode <-- gbk <-- ascii 按此方向兼容 4..请写出"李杰"分别用utf- ‐8和gbk编码所占的位数 "李杰" 占用utf -8 占6字节 , gbk 占用4字节 5.pyt

马哥2016全新Linux+Python高端运维班第三周作业作答

                    马哥2016全新Linux+Python高端运维班第三周作业                                           1.列出当前系统上所有已经登录的用户的用户名,注意:同一个用户登录多次,则只显示一次即可.     [[email protected] ~]# who | awk '{print $1 $NF}'| uniq -d     [[email protected] ~]# who     yicx     :0  

软件项目管理第五周作业

1.psp Job Type Date Start End Total 四周总结 随笔 2016.4.4 23:00 23:23 23 站立会议 会议 2016.4.4 13:30 13:45 15 数据库 编码测试 2016.4.4 13:50 15:20 90 站立会议 会议 2016.4.5 13:00 13:15 15 摇一摇1 编码测试 2016.4.5 13:35 14:20 45 站立会议 会议 2016.4.6 13:05 13:15 10 数据库函数添加 编码测试 2016.4

《机电传动控制》第五周作业

机电传动控制第五周作业 一.传动电机或控制电机在工业或生活中的应用: 1.电气伺服传动领域 在要求速度控制和位置控制(伺服)的场合,特种电机的应用越来越广泛.开关磁阻电动机.永磁无刷直流电动机.步进电动机.永磁交流伺服电动机.永磁直流电动机等都已在数控机床.工业电气自动化.自动生产线.工业机器人以及各种军.民用装备等领域获得了广泛应用.如交流伺服电机驱动系统应用在凹版印刷机中,以其高控制精度实现了极高的同步协调性,使这种印刷设备具有自动化程度高.套准精度高.承印范围大.生产成本低.节约能源.维修

解题报告——-2018级2016第二学期第三周作业

解题报告——2018级2016第二学期第三周作业 A:[NOIP2002P]过河卒 题目: 描述 如图,A 点有一个过河卒,需要走到目标 B   点.卒行走规则:可以向下.或者向右.同时在棋盘上的任一点有一个对方的马(如上图的C点),该马所在的点和所有跳跃一步可达的点称为对方马的控制点.例 如上图 C  点上的马可以控制 9 个点(图中的P1,P2 … P8 和 C).卒不能通过对方马的控制点. 棋盘用坐标表示,A 点(0,0).B 点(n,m)(n,m 为不超过 20  的整数,并由键盘输入)

解题报告——2018级2016第二学期第二周作业

解题报告——2018级2016第二学期第二周作业 D:迷宫问题 题目描述: 定义一个二维数组: int maze[5][5] = { 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, }; 它表示一个迷宫,其中的1表示墙壁,0表示可以走的路,只能横着走或竖着走,不能斜着走,要求编程序找出从左上角到右下角的最短路线. 输入 一个5 × 5的二维数组,表示一个迷宫.数据保证有唯一解. 输出 左上角到右

马哥linux 培训第二周作业

注意:第二周作业,请将以下题目整理在51cto博客当中,完成后请将对应的博文链接地址提交在答案栏中,提交格式如下:学号+姓名+博文链接地址eg:1+张三+http://mageedu.blog.51cto.com/4265610/1794420 本周作业内容:1.Linux上的文件管理类命令都有哪些,其常用的使用方法及其相关示例演示. 文件管理的命令有cp.mv.rm 复制命令:cp 用法: cp [-adfilprsu] 来源文件(source) 目标文件(destination) cp [o

第六周作业。

第六周作业.额,暂时不知道写什么好.那就写写如何翻越GFW   (科学上网)的教程吧.基于Shadow socks的教程.可能不是第一个,也可能不是最后一个.但是这也算是科普吧.毕竟连翻越GWF(科学上网)能力都没有何必谈的上是一个好的Programer呢?. ========================================================== 顺便说一句:Fk GFW. ==============================================

魏昊卿——《Linux内核分析》第三周作业:Linux系统启动过程

魏昊卿——<Linux内核分析>第三周作业:Linux系统启动过程 一.实验部分 实验指导 使用实验楼的虚拟机打开shell 1 cd LinuxKernel/ 2 qemu -kernel linux-3.18.6/arch/x86/boot/bzImage -initrd rootfs.img 内核启动完成后进入menu程序(<软件工程C编码实践篇>的课程项目),支持三个命令help.version和quit,您也可以添加更多的命令,对选修过<软件工程C编码实践篇>

机械传动控制第一周作业

机械传动控制第一周作业 现代机电传动控制要求工程师有较为广阔的知识面.在产品设计的过程中,既要充分地运用自己的专业知识,也要与其他学科进行协同设计,现代机电控制靠纯机械已经不能达到复杂的技术要求,它还需要电气和软件的共同作用,做到机电软一体化.在完成一件机械设备的性能要求后,成本的问题也是必须要充分考虑的,设计时要考虑用材成本,设计过程中要考虑能耗的均衡问题,经济因素是机械设计中一个需要权衡的问题.同时,创新也是必须的,无尽的重复和运用虽说可以使一个技能得到完善,但是创新才能使其真正的发展. 现