day4、Linux基础题目
第一题
我想在/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 从内存中的缓存区读取数据
day4、Linux基础题目的更多相关文章
- Linux 基础(5)
Linux 基础 (五) 一.shell相关知识 shell一般代表两个层面的意思,一个是命令解释器,比如BASH,另外一个就是shell脚本.通过解释器的角度来理解shel 命令分为: ==> ...
- Linux基础(4)
Linux基础(四) 通过前面的知识的学习,来现学现卖咯! 1.题目:集群搭建 1.1.部署nginx反向代理三个web服务,调度算法使用加权轮询: 1.2.所有web服务使用共享存储nfs,保证所有 ...
- linux 基础 文件系统 用户权限
描述Linux系统的启动过程? 1.开机自检 BIOS 2.MBR引导 3.GRUB菜单 4.加载内核 5.运行init进程 6.从/etc/inittab读取运行级别 7.根据/etc/rc.sys ...
- Linux基础练习题(二)
Linux基础练习题(二) 1.复制/etc/skel目录为/home/tuer1,要求/home/tuser1及其内部文件的属组和其它用户均没有任何访问权限. [root@www ~]# cp -r ...
- 大数据每日干货第四天(linux基础之一目录结构与常用命令)
为了和qq空间同步,也写的第四天,前面几天明天会发布,本来打算把每天学的东西记录下来,通过朋友给的建议要发的话稍微系统化下,从大数据需要的linux基础,到离线数据分析包括hadoop. ...
- Linux课程实践一:Linux基础实践(SSH)
一.SSH服务 1. 安装SSH (1)查看是否已经安装过ssh服务 rpm -qa |grep ssh (2)进行安装 sudo apt-get install openssh-server Ubu ...
- java基础题目总结
有些基础题目由于工作中用的比较少但却又是不可少的,这样回答起来就会反应慢,不确定,不准确,特此开了文章记录遇到的不确定或者回答比较拗口的问题. 1.servlet是单例的吗,是安全的吗,是多线程吗 s ...
- 还是不想改报告,伊阿忆啊哟-Linux基础继续
hi 虽然今天是最最美好的周六(前不着工作日后不着工作日),但老子还要来改报告,但额就是不想改,你拿我有啥办法啊... 争取完结Linux基础 一.Linux常用命令(三) 4.帮助命令 4.1 帮助 ...
- 原来今天是感恩节-Linux基础继续&MySQL和PHP
hi 原来今天是感恩节.虽然一直没有过这个节日的习惯,但仅仅是听到感恩的消息,都能想到一幅幅画面.愿大家安好! 下午开题会议还是有所收获,悄悄的,就变向那个不喜欢自己的人了. 一.Linux基础(二) ...
随机推荐
- Brave Game(裸的巴什博弈)
Brave Game Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Su ...
- Android 开发笔记___SQLite__基本用法
SQLiteOpenHelper package com.example.alimjan.hello_world.dataBase; import android.content.ContentVal ...
- C# join子句
join 子句可用于将来自不同源序列并且在对象模型中没有直接关系的元素相关联. 唯一的要求是每个源中的元素需要共享某个可以进行比较以判断是否相等的值. 例如,食品经销商可能拥有某种产品的供应商列表以及 ...
- C# 取Visio模型信息的简易方法
最近的一个项目,要求导出Visio图纸,因为是建筑类的,所以,需要设置墙壁,门,房间等信息的参数. 拿墙壁为例,选中墙壁模型,右键属性,会弹出以下对话框. 需要设置墙长.墙壁厚度等一些列信息. 现在C ...
- java Mybatis框架动态SQL
1.if+where <select id="getgoods" resultType="Goods" > select * from goods ...
- 《Python数据分析常用手册》一、NumPy和Pandas篇
一.常用链接: 1.Python官网:https://www.python.org/ 2.各种库的whl离线安装包:http://www.lfd.uci.edu/~gohlke/pythonlibs/ ...
- Attribute在.NET编程中的应用(三)
用于参数的Attribute 在编写多层应用程序的时候,你是否为每次要写大量类似的数据访问代码而感到枯燥无味?比如我们需要编写调用存储过程的代码,或者编写T_SQL代码,这些代码往往需要传递各种参数, ...
- 基础教程:ASP.NET Core 2.0 MVC筛选器
问题 如何在ASP.NET Core的MVC请求管道之前和之后运行代码. 解 在一个空的项目中,更新 Startup 类以添加MVC的服务和中间件. publicvoid ConfigureServi ...
- 手工搭建基于ABP的框架(3) - 登录,权限控制与日志
为了防止不提供原网址的转载,特在这里加上原文链接: http://www.cnblogs.com/skabyy/p/7695258.html 本篇将实现登录.权限控制.日志配置与审计日志的功能.首先我 ...
- Redis学习-内存优化
以下为个人学习Redis的备忘录--内存优化 1.随时查看info memory,了解内存使用状况:127.0.0.1:6379> info memory# Memoryused_memory: ...