我想在/data/da 目录下面创建 一个 da.txt 文件
[root@ll ~]# cd /data/oldboyedu
-bash: cd: /data/oldboyedu: No such file or directory
1.为何出现这样的错误
因为没有这个目录
2.如何解决这个错误呢?
创建这两个目录:mkdir -p /data/da
接上题,向 da.txt 加入内容 "I love studying Linux." (不少于 2 种方法)
命令格式:echo "I love studying Linux." >> /data/da.txt
[root@ll-01 ~]# echo "I love studying Linux." >> /data/da.txt
[root@ll-01 ~]# cat /data/da.txt
I love studying Linux.
命令格式:cat >/data/da.txt <<EOF
> I love studying Linux.
> EOF
[root@ll-01 ~]# cat >/data/da.txt <<EOF
> I love studying Linux.
> EOF
[root@ll-01 ~]# cat /data/da.txt
I love studying Linux.
把/data 目录复制到 /tmp 目录下
命令格式:cp -r /data/ /tmp/
[root@ll-01 ~]# cp -r /data/ /tmp/
说说这些特殊符号含义: > >> 2> 2>> #(井号) .(点) ..(两个点)
>:标准输出重定向,先清除文件内容,再将新内容放入文件。
>>:追加输出重定向,不清除文件内容,将新内容放入文件末尾。
2>:错误输出重定向,先清除文件内容,再将命令错误的提示放入文件。
2>>:错误追加输出重定向,不清楚文件内容,将命令错误的提示追加到文件末尾。
#(号):Linux中的注释符号,
.(点):表示当前路径。
..(点点):表示上一层路径。
test.txt 内容为:
trainning
fanbingbing
lidao
请给出输出 test.txt 文件内容时,不包含 trainning 字符串的命令。
命令格式: tail -2 /test.txt
[root@ll-01 ~]# tail -2 /test.txt
fanbingbing
lidao
命令格式:sed '/trainning/d' /test.txt
[root@ll-01 ~]# sed '/trainning/d' /test.txt
fanbingbing
lidao
命令格式:grep -v " trainning " /test.txt
[root@ll-01 ~]# grep -v " trainning " /test.txt
fanbingbing
lidao
命令格式:awk '!/trainning/' test.txt
[root@ll-01 ~]# awk '!/trainning/' test.txt
fanbingbing
lidao
入职新公司,老大让你在服务器上限制 rm 命令,当用户输入 rm 命令时候提示”rm command is not allowed to use.” 请问实现的步骤是?。
第一步:
命令格式:alias rm='echo rm command is not allowed to use.'
[root@ll-01 ~]# alias rm='echo rm command is not allowed to use.'
[root@ll-01 ~]# rm test.txt
rm command is not allowed to use. test.txt
第二步:写入 /etc/profile 配置文件
[root@ll-01 ~]# echo "alias rm='echo rm command is not allowed to use.'" >> /etc/profile
第三步:生效
[root@ll-01 ~]# source /etc/profile
取出文件 ett.txt 的第 30 到 40 行的内容。
命令格式:sed -n '30,40p' /ett.txt
[root@ll-01 ~]# sed -n '30,40p' /ett.txt
30
31
32
33
34
35
36
37
38
39
40
命令格式:awk 'NR==30,NR==40' /ett.txt
[root@ll-01 ~]# awk 'NR==30,NR==40' /ett.txt
30
31
32
33
34
35
36
37
38
39
40
命令格式:head -40 /ett.txt |tail -11
[root@ll-01 ~]# head -40 /ett.txt |tail -11
30
31
32
33
34
35
36
37
38
39
40
把 test.txt 文件中的 trainning 修改为 lll.
命令格式:find /data/ -type f -name "test.txt" |xargs sed -i 's#trainning#lll#g'
[root@ll-01 ~]# find /data/ -type f -name "test.txt" |xargs sed 's#trainning#lll#g'
lll
fanbingbing
lidao
[root@ll-01 ~]# find /data/ -type f -name "test.txt" |xargs sed -i 's#trainning#lll#g'
命令格式:sed -i 's#trainning#lll#g' $(find /data/ -type f -name "test.txt")
[root@ll-01 ~]# sed 's#trainning#lll#g' $(find /data/ -type f -name "test.txt")
lll
fanbingbing
lidao
[root@ll-01 ~]# sed -i 's#trainning#lll#g' $(find /data/ -type f -name "test.txt")
命令格式:find /data/ -type f -name "test.txt" -exec sed -i 's#trainning#lll#g' {} \;
[root@ll-01 ~]# find /data/ -type f -name "test.txt" -exec sed -i 's#trainning#lll#g' {} \;
[root@ll-01 ~]# find /data/ -type f -name "test.txt" -exec sed 's#trainning#lll#g' {} \;
lll
fanbingbing
lidao
查找出/data 目录下所有以.txt 结尾的文件,并且把文件中的 trainning 修改为 lll.
命令格式:
find /data/ -type f -name "*.txt" |xargs sed -i 's#trainning#lll#g'
sed -i 's#trainning#lll#g' $(find /data/ -type f -name "*.txt")
find /data/ -type f -name "*.txt" -exec sed -i 's#trainning#lll#g' {} \;
查找/data 下所有以 log 结尾的大于 1M 的文件复制到/tmp 下。
命令格式:find /data -type f -name "*.log" -size +1M
方法1
cp $(find /data -type f -name "*.log" -size +1M ) /tmp
方法2
find /data -type f -name "*.log" -size +1M |xargs cp -t /tmp
方法3
find /data -type f -name "*.log" -size +1M |xargs -i cp {} /tmp
方法4
find /data -type f -name "*.log" -size +1M -exec cp {} /tmp \;
什么是 linux 的运行级别,请描述 linux 的运行级别不同数字的含义?(附加题)
运行级别0-6
0表示关机
1表示单用户
2 表示多用户但是没有NFS
3 表示完整的多用户状态 命令行模式 命令模式
4 没有使用
5 图形化界面模式
6 重启
如何查看运行级别
runlevel命令
如何配置运行级别
/etc/inittab文件
临时修改init命令
init 5
请描述 buffer 和 cache 的区别(附加题)?
buffer:缓冲区,写buffer 数据写入到内存中的缓冲区
cache:缓存区,读cache 从内存中的缓存区读取数据