首页 > 代码库 > linux运维
linux运维
老男孩教育linux运维
1、创建目录/data/sun ,并且在该目录下创建文件sun.txt,然后在文件sun.txt里写入内容"inet addr:10.0.0.8 Bcast:10.0.0.255 Mask:255.255.255.0"(不包含引号)。
2、将题1中的sun.txt文件内容通过命令过滤只输出如下内容:
10.0.0.8 10.0.0.255 255.255.255.0
3、将题1中的sun目录移动到/tmp目录下,并将/etc/passwd文件复制到/tmp/sun下。
4、在题3的基础上使用awk取passwd文件的第10行到20行的第三列重定向到/tmp/sun/test.txt文件里。
5、在题3的基础上要求用命令rm删除文件时提示如下禁止使用rm的提示,并使该效果永久生效。
[root@sun sun]# rm -f passwd
Do not use rm command.
6、在题3的基础上,删除/tmp/sun/下除passwd以外的其他文件。
7、在题3的基础上,请打印/etc/passwd文件中的第2-5行(不低于三种方法)
8、在题3的基础上,使用命令调换passwd文件里root位置和/bin/bash位置,即将所有的第一列和最后一列位置调换。
例:
默认:root:x:0:0:root:/root:/bin/bash
修改后:/bin/bash:x:0:0:root:/root:root
9、把/data目录及其子目录下所有以扩展名.txt结尾的文件中包含yyyy的字符串全部替换为sun。
10、查找/sun下所有7天以前以log结尾的大于1M的文件移动/tmp下
11、什么是linux的运行级别,请描述linux的运行级别不同数字的含义? (附加题)
12、请描述buffer和cache的区别(附加题)?
13、请说出你知道的下列字符在linux里可以代表的意义(附加题)。
~ - . .. | > >> < << !
1 1. 2 mkdir -p /data/sun; //-p选项允许一次性创建多层次的目录,而不是一次只创建单独的目录 3 echo "inet addr:10.0.0.8 Bcast:10.0.0.255 Mask:255.255.255.0">>/data/sun/sun.txt 4 2. 5 cat /data/sun/sun.txt |awk -F "[: ]" ‘{print $3 " " $5 " " $7}‘ //[: ] 为冒号和空格 6 cat /data/sun/sun.txt|sed -r ‘s#[a-z]|[A-Z]|:##g‘ 7 cat /data/sun/sun.txt |cut -c 11-19,26-36,42- 8 10.0.0.8 10.0.0.255 255.255.255.0 9 10 3. 11 mv /data/sun/tmp 12 cp /etc/passwd/tmp/sun/ 13 14 4. 15 cat /tmp/sun/passwd|awk -F":" ‘{if(NR>9&&NR<21) print $3}‘>>/tmp/sun/test.txt 16 17 5. 18 alias rm=‘echo "Do not use rm command."‘ 19 echo "alias rm=‘echo "Do not use rm command."‘">>.bash_profile 20 source /etc/profile 21 22 6. 23 find /tmp/sun/ -type f ! -name "passwd" -exec rm -f {} \; 24 find /tmp/sun/ -type f ! -name "passwd"|xargs rm -f //xargs是给命令传递参数的一个过滤器,也是组合多个命令的一个工具 25 26 7. 27 cat /tmp/sun/passwd|sed -n ‘3,5p‘ 28 cat /tmp/sun/passwd|head -n 5|tail -n 3 29 cat /tmp/sun/passwd|awk ‘{if(NR>2&&NR<6) print $0}‘ 30 31 32 8. 33 cat /tmp/sun/passwd|awk -F ":" ‘{print $7":"$2":"$3":"$4":"$5":"$6":"$1}‘ >/tmp/sun/pa; 34 cat /tmp/sun/pa >/tmp/sun/passwd 35 36 9. 37 find /data/ -type f -name "*.txt"|xargs sed -i ‘s#yyyy#sun#g‘ 38 39 10. 40 find /sun/ -type f -size +1M -mtime +7|xargs mv -t /tmp 41 42 11 43 linux的运行级别是linux主机定义好的,每一个级别有不同的功能模块 44 0代表关机 1代表单用户模式 2多用户文本模式不带NFS 3多用户模式 4自定义 5图形界面 6重启 45 46 12. 47 buffer 是对磁盘等块设备进行缓存,cache是对文件系统的文件操作缓存。 48 49 13. 50 ~==家目录 -==上一次目录 .=当前目录 ..上一级目录 >重定向 >>追加重定向 <输入重定向 <<追加输入重定向 !非
linux运维