码迷,mamicode.com
首页 > 系统相关 > 详细

Linux练习题及解答

时间:2016-09-26 00:59:49      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:练习题   关键字   表达式   linux   file   

       <<<第一单元练习题>>>

  1. 用student用户登陆系统图形界面

  2. 打开一个bash

技术分享

3.修改student的密码,把密码更新成"T3st1ngtlme"(主机字母和数字)

技术分享

4.显示当前系统时间,显示格式为:"小时:分钟:秒 AM/PM"(AM/PM为上下午标识)

技术分享

5.显示“/usr/bin/clean-binary-files”的文件类型

6.统计“/usr/bin/clean-binary-files”的文件大小

       5、6用file命令

7.用快捷方式在shell中调用已经执行过的第4条命令

       用!命令数字

8.用快捷方式执行最近一条含有"date"关键字的命令

 

<<<第二单元练习>>>

  1. 用命令和正则表达式按照要求建立文件

(1)      用一条命令建立12个文件WESTOS_classX_linuxY(X的数值范围为1-2,Y的数值范围为1-6)

(2)      这些文件都包含在root用户桌面的study目录中

[root@localhost Desktop]# mkdir study

[root@localhost study]# touchWESTOS_class{1..2}_linux{1..6}

[root@localhost study]# mvWESTOS_class*_linux* study/

(3)      用一条命令建立8个文件redhat_versionX(x的范围为1-8)

(4)      redhat_virsionX这些文件都包含在/mnt目录中的VERSION中

[root@localhost Desktop]# touchredhat_versionX{1..8}

[root@localhost mnt]# mkdir VERSION

[root@localhost Desktop]# mvredhat_versionX* /mnt/VERSION/##这样会产生每一句都会问一下你是否同意移动,用以下的方法比较好

-------------------------mv redhat*/mnt/VERSION/

 

  1. 管理刚才新建立的文件要求如下

(1)      用一条命令把redhat_versionX中的带有奇数的文件复制到桌面的SINGLE中

[root@localhost Desktop]# mkdir SINGLE/

[root@localhost Desktop]# cp/mnt/VERSION/redhat_versionX{1,3,5,7,9} SINGLE/

[root@localhost Desktop]# cd SINGLE/

[root@localhost SINGLE]# ls

redhat_versionX1  redhat_versionX3  redhat_versionX5  redhat_versionX7

 

(2)      用一条命令把redhat_versionX中的带偶数数的文件复制到/DOUBLE中

[root@localhost Desktop]# mkdir DOUBLE/

[root@localhost Desktop]# cp/mnt/VERSION/redhat_versionX{2,4,6,8} DOUBLE/

[root@localhost Desktop]# cd DOUBLE/

[root@localhost DOUBLE]# ls

redhat_versionX2  redhat_versionX4  redhat_versionX6  redhat_versionX8

[root@localhost DOUBLE]#

技术分享

(3)      用一条命令把WESTOS_classX_linuxY中class1的文件移动到当前用户桌面的CLASS1中

mkdir CLASS1

mkdir CLASS2

mv WESTOS_class1* CLASS1

mv WESTOS_class2* CLASS2

--------------------------------------------------

[root@localhost study]# mvWESTOS_classX1_linuxY{1..6} /root/Desktop/CLASS1

[root@localhost study]# ls

WESTOS_classX2_linuxY1  WESTOS_classX2_linuxY3  WESTOS_classX2_linuxY5

WESTOS_classX2_linuxY2  WESTOS_classX2_linuxY4  WESTOS_classX2_linuxY6

 

(4)      用一条命令把WESTOS_classX_linuxY中class2的文件移动到当前用户桌面的CLASS2中

 

[root@localhost study]# mvWESTOS_classX2_linuxY{1..6} /root/Desktop/CLASS2

[root@localhost study]# cd ..

[root@localhost Desktop]# cd CLASS2

[root@localhost CLASS2]# ls

WESTOS_classX2_linuxY1  WESTOS_classX2_linuxY3  WESTOS_classX2_linuxY5

WESTOS_classX2_linuxY2  WESTOS_classX2_linuxY4  WESTOS_classX2_linuxY6

 

 

  1. 备份/etc目录中所有名字带有数字并且以.conf结尾的文件到桌面上的confdir中

cp /etc/*[[:digit:]]*.conf comfdir/

 

  1. 删掉刚才建立或者备份的所有文件

[root@localhost Desktop]# rm -fr CLASS*

[root@localhost Desktop]# rm -fr SINGLE

[root@localhost Desktop]# rm -fr confdir

[root@localhost Desktop]# rm -fr DOUBLE

[root@localhost Desktop]# rm -fr study

技术分享

<<<第四单元练习>>>

  1. 在student用户下执行find /etc -name passwd 命令,并管理其输出要求如下:

(1)      显示所有正确输出,屏蔽错误输出

find /etc/ -namepasswd 2> /dev/null

--------------------------------------------------------------------

find /etc/ -namepasswd 2> file

 

(2)      保存正确输出到/mnt/find.out,错误输出到/mnt/find.err中

[student@foundation22Desktop]$ find /etc/ -name passwd >/mnt/file.out 2> /mnt/file.err

bash:/mnt/file.out:Persion denied     ##出错,原因是权限不够

      

[student@foundation22Desktop]$ su -           ##改权限

Passwd:

[root@foundation22Desktop]$ chmod 777 /mnt/

[root@foundation22Desktop]$ chmod ugo+rwx /mnt/  ##给mnt最大的权限

[root@foundation22Desktop]$ logout

[student@foundation22Desktop]$ find /etc/ -name passwd >/mnt/file.out 2> /mnt/file.err ##student有了权限翻身农民把歌唱

 

(3)      建立/mnt/find.all文件,并且保存所有输出到此文件中

find /etc/ -namepasswd &>/mnt/file.all

 

(4)      再次保存所有输出到/mnt/find.all中,并且保持源文件内容 

find /etc/ -namepasswd &>>/mnt/file.all

                     ##即将所有的内容再次保存到file。all里,不覆盖原有的内容

 

(5)      屏蔽此命令的所有输出

find /etc/ -namepasswd &>> filee

              ##将所有的输出都保存在指定的文件里就好,因为输出只有一份,如果用户指定了输出存放的位置,那就不会再显示在输出界面上

 

(6)      显示此命令的所有输出并保存输出到桌面上的任意文件中

find /etc/ -namepasswd    ##未对输出界面的输出作干涉

 

(7)      保存正确输出到/mnt/find.out.1中,屏蔽错误输出

find /etc/ -namepasswd > /mnt/file.out.1 2> /dev/null

 

  1. 处理文件在文件/usr/share/mime/packages/freedesktop.org.xml要求如下:

       *找到此文件中包含ich的行,并保存这些行到/root/lines中

       *用vim替换掉/root/lines中的空格,但要保持文件中原有的内容


Linux练习题及解答

标签:练习题   关键字   表达式   linux   file   

原文地址:http://vidyaliee.blog.51cto.com/12087072/1856451

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!