Linux第五周

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

[[email protected] ~]# grep ‘^[[:space:]]\+‘ /boot/grub/grub.conf 
        root (hd0,0)
        kernel /vmlinuz-2.6.18-128.el5 ro root=LABEL=/ rhgb quiet
        initrd /initrd-2.6.18-128.el5.img

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

[[email protected] ~]# grep ‘^#[[:space:]]\+[^[:space:]]\+‘ /etc/rc.d/rc.sysinit

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

[[email protected] ~]# netstat -tan | grep ‘LISTEN[[:space:]]*‘
tcp        0      0 127.0.0.1:2208              0.0.0.0:*                   LISTEN      
tcp        0      0 0.0.0.0:868                 0.0.0.0:*                   LISTEN      
tcp        0      0 0.0.0.0:111                 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:2207              0.0.0.0:*                   LISTEN      
tcp        0      0 :::22                       :::*                        LISTEN

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

[[email protected] ~]# useradd bash
[[email protected] ~]# useradd testbash
[[email protected] ~]# useradd basher
[[email protected] ~]# useradd -s /sbin/nologin nologin
[[email protected] ~]# grep ‘^\([[:alnum:]]\+\>\).*\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

5、显示当前系统上root、fedora或user1用户的默认shell;

[[email protected] ~]# useradd fedora
[[email protected] ~]# useradd -s /sbin/nologin user1
[[email protected] ~]# egrep ‘^(root|fedora|user1)‘ /etc/passwd
root:x:0:0:root:/root:/bin/bash
fedora:x:505:505::/home/fedora:/bin/bash
user1:x:506:506::/home/user1:/sbin/nologin

6、找出/etc/rc.d/init.d/functions文件中某单词后面跟一组小括号的行,形如:hello();

[[email protected] ~]# egrep -o ‘^[[:alpha:]]+\(\)‘ /etc/rc.d/init.d/functions

7、使用echo命令输出一个绝对路径,使用grep取出其基名;

[[email protected] ~]# echo /var/www/html/ | egrep -o ‘[^/]+/?$‘ | cut -d/ -f1
html

    扩展:取出其路径名


8、找出ifconfig命令结果中的1-255之间数字;

[[email protected] ~]# ifconfig | grep -o ‘\<\([0-1]\?[0-9]\{1,2\}\|2[0-4][0-9]\|25[0-5]\)\>‘| grep -v ‘^0$‘

9、挑战题:写一个模式,能匹配合理的IP地址;

CentOS6.X以前:
[[email protected] ~]# ifconfig | grep ‘inet\b‘ | cut -d: -f2 | awk ‘{print $1}‘ | egrep -v ‘^(127|255)‘
192.168.1.66
CentOS7.x
[[email protected] ~]# ifconfig | grep ‘inet\b‘ | awk ‘{print $2}‘ | egrep -v ‘^(127|255)‘
172.17.0.1
192.168.1.63
192.168.122.1

10、挑战题:写一个模式,能匹配出所有的邮件地址;

[[email protected] ~]# grep -o ‘[[:alnum:]]\[email protected][[:alnum:]]\+\.[[:alnum:]]\+\>‘ mail.sh

11、查找/var目录下属主为root,且属组为mail的所有文件或目录;

[[email protected] ~]# find /var/ -user root -group mail
/var/spool/mail

12、查找当前系统上没有属主或属组的文件;

[[email protected] ~]# find / -nouser -o -nogroup

     进一步:查找当前系统上没有属主或属组,且最近3天内曾被访问过的文件或目录;

[[email protected] ~]# find / \( -nouser -o -nogroup \) -atime -3

13、查找/etc目录下所有用户都有写权限的文件;

[[email protected] ~]# find /etc -perm -222

14、查找/etc目录下大于1M,且类型为普通文件的所有文件;

[[email protected] ~]# find /etc -size +1M -type f -exec ls -lh {} \;
-rw-r--r--. 1 root root 7.8M 3月  17 2015 /etc/selinux/targeted/policy/policy.24
-rw-r--r--. 1 root root 7.8M 3月  17 2015 /etc/selinux/targeted/modules/active/policy.kern
-rw-r--r--. 1 root root 2.1M 3月  17 2015 /etc/gconf/gconf.xml.defaults/%gconf-tree.xml

15、查找/etc/init.d/目录下,所有用户都有执行权限,且其它用户有写权限的文件;

[[email protected] ~]# find /etc/init.d/ -perm -113

16、查找/usr目录下不属于root、bin或hadoop的文件;

[[email protected] ~]# find /usr/ -not \( -user root -o -user bin -o -user hadoop \)

17、查找/etc/目录下至少有一类用户没有写权限的文件;

[[email protected] ~]# find /etc -not \( -perm -222 \)

18、查找/etc目录下最近一周内其内容被修改过,且不属于root或hadoop的文件;

[[email protected] ~]# find /etc -mtime -7 -not \( -user root -o -user hadoop \)

时间: 2024-10-21 16:36:07

Linux第五周的相关文章

Linux第五周上课笔记(1),rpm软件安装,yum源,yum仓库

第五周上课笔记 一.应用软件的安装 1.认识软件:|libmp3lame0|-3.99.3-23|.el7|.x86_64|.rpm 软件名     软件版本   适用系统 64位  红帽适用软件 2.如何安装软件 1.rpm rpm      -vih    name.rpm      安装,-v:显示过程,-h:指定加密方式为哈希加密 -e      name          卸载 -q      name          查询软件生成文件 -qlp  name.rpm        查

马哥Linux第五周作业

1.显示当前系统上root.fedora或user1用户的默认shell: PS:第一眼看到问题可能会有点头疼,那就把问题拆分完成,组合多个简单命令完成复杂工作 第一步,查找到这些用户并显示: 使用|或衔接多个过滤条件: [[email protected] ~]# grep -E "^root\>|^fedora\>|^user1\>" /etc/passwd   #grep -E也可使用egrep root:x:0:0:root:/root:/bin/bash u

linux第五周微职位

1.请描述网桥.集线器.二层交换机.三层交换机.路由器的功能.使用场景与区别. 1)集线器: 集线器(Hub)是指将多条以太网双绞线或光纤集合连接在同一段物理介质下的设备,主要功能是对接收到的信号进行放大,以扩大网络的传输距离,工作于OSI(开放系统互联参考模型)参考模型第一层,即"物理层". 集线器是一个多端口的中继器,只负责节点间数据的传递和信号的放大处理,检测冲突但不负责解决阻塞问题,所有端口处于同一个冲突域下.与二层设备如二层交换机区别在于不像交换机一样每个端口分隔冲突域,不具

Linux第五周作业

1.显示当前系统上root.fedora或user1用户的默认shell: egrep "^(root|user1|fedora)" /etc/passwd|cut -d: -f7 2.找出/etc/rc.d/init.d/functions文件中某单词后面跟一组小括号的行,形如:hello(): egrep "^[[:alpha:]]+\(\)" /etc/rc.d/init.d/functions # 小括号必须转义,因为()在egrep中有特殊含义. 3.使用

Linux第五周学习总结

作者:黎静 一.知识点总结 (一)给MenuOS增加time和time-asm命令 1.更新menu代码到最新版 2.test.c中main函数里,增加MenuConfig() 3.增加对应的两个函数,Time和TimeAsm函数 4.make rootfs自动编译脚本 (二)使用gdb调试跟踪系统调用内核函数sys_time 为处理time函数的系统调用systime设置断点之后,在menuOS中执行time.发现系统停在systime处.继续按n单步执行,会进入schedule函数. sys

20135316王剑桥 linux第五周课实验笔记

4.1.1程序员的可见的状态 ———— Y86的每条指令都会读取或修改处理器状态的某些部分,称为程序员可见状态.如图1所示. 1.程序寄存器(Program registers): %eax, %ecx, %edx, %ebx, %esi,%edi, %esp和%ebp.都是32位的. 2.条件码(Condition codes): ZF(零标志), SF(符号标志), OF(溢出标志).用来保存最近的算术或逻辑指令造成的影响. 3.程序计数器(PC):存放当前正在执行的地址. 4.存储器(Me

马哥linux作业第五周&#39;

1.显示当前系统上root.fedora或user1用户的默认shell: egrep "^(root|fedora|user1)\>" /etc/passwd |cut -d: -f1,7 root|fedora|user1表示三者符合其一的选择条件 ()使其归组 ^表示以后面归组的条件开头 \>表示以空字符截断此前的条件字符,即后跟其它字符的单词将不匹配 2.找出/etc/rc.d/init.d/functions文件中某单词后面跟一组小括号的行,形如:hello():

linux五周第三次课(3月7日)笔记

五周第三次课(3月7日)8.1 shell介绍8.2 命令历史8.3 命令补全和别名8.4 通配符8.5 输入输出重定向 搜索看一下有没有这两个shell,不安装. 8.2 命令历史 用过的命令,在/root/.bash_history存着 用cat命令查看一下/root/.bash_history 可以用命令history查看一下之前使用过的命令 history -c 修改了/etc/profile 配置文件,运行source命令,使其生效. 指定什么时候运行. 变量变了. 历史命令. 想要生

201405644 嵌入式程序设计第五周学习总结

嵌入式课程设计第五周学习总结 标准 I/O 编程 标准 I/O 提供流缓冲的目的是尽可能减少使用 read()和 write()等系统调用的数量.标准 I/O 提供了 3 种类型 的缓冲存储.全缓冲.行缓冲.不带缓冲. 打开文件 打开文件有三个标准函数,分别为:fopen().fdopen()和 freopen().其中 fopen()可以指定打开文件的路径和模式,fdopen()可以指定打开的文件描述符和模式,而 freopen() 除可指定打开的文件.模式外,还可指定特定的 I/O 流. f