前四单元练习题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了前四单元练习题相关的知识,希望对你有一定的参考价值。
##################练习题################
<<<第一单元练习题>>>
1.用student用户登陆系统图形界面
2.打开一个bash
3.修改student的密码,把密码更新成"T3st1ngtlme"(主机字母和数字)
4.显示当前系统时间
5.显示当前系统时间,显示格式为:"小时:分钟:秒 AM/PM"(AM/PM为上下午标识)
6.显示“/usr/bin/clean-binary-files”的文件类型
7.统计“/usr/bin/clean-binary-files”的文件大小
8.用快捷方式在shell中调用已经执行过的第4条命令
9.用快捷方式执行最近一条含有"date"关键字的命令
答案:
1.student 普通用户,密码student
2. Applications>Utilities>Terminal
鼠标右键----->open in terminal
gnome-terminal
3.passwd - student
密码:localhost45
4.date
5.date +%r
6.file /usr/bin/clean-binary-files
7.wc -c /usr/bin/clean-binary-files
8.!4
9.Ctrl + shift + r :date
<<<第二单元练习>>>
1.用命令和正则表达式按照要求建立文件
*)用一条命令建立12个文件WESTOS_classX_linuxY(X的数值范围为1-2,Y的数值范围为1-6)
*)这些文件都包含在root用户桌面的study目录中
*)用一条命令建立8个文件redhat_versionX(x的范围为1-8)
*)redhat_virsionX这些文件都包含在/mnt目录中的VERSION中
2.管理刚才信建立的文件要求如下
*)用一条命令把redhat_versionX中的带有奇数的文件复制到桌面的SINGLE中
*)用一条命令把redhat_versionX中的带偶数数的文件复制到/DOUBLE中
*)用一条命令把WESTOS_classX_linuxY中class1的文件一动到当前用户桌面的CLASS1中
*)用一条命令把WESTOS_classX_linuxY中class2的文件一动到当前用户桌面的CLASS2中
3.备份/etc目录中所有带有名字带有数字并且以.conf结尾的文件到桌面上的confdir中
5.删掉刚才建立或者备份的所有文件
1.(1) touch WESTOS_class{1,2}_linux{1..6}
(2)mkdir /root/Desktop/study
mv WESTOS_class{1,2}_linux{1..6} /root/Desktop/study
(3)touch redhat_version{1..8}
(4)mkdir -p /mnt/VERSION
mv redhat_version{1..8} /mnt/VERSION
2.(1)mkdir /root/Desktop/SINGLE
cp /mnt/VERSION/redhat_version{1,3,5,7} /root/Desktop/SINGLE
(2)mkdir /root/Desktop/DOUBLE
cp /mnt/VERSION/redhat_version{2,4,6,8} /root/Desktop/DOUBLE
(3)mkdir /root/Desktop/CLASS1
mv /root/Desktop/study/WESTOS_class1_linux{1..6} /root/Desktop/CLASS1
(4)mkdir /root/Desktop/CLASS2
mv /root/Desktop/study/WESTOS_class2_linux{1..6} /root/Desktop/CLASS2
3.mkdir /root/Desktop/confdir
cp /etc/*[[:digit:]]*.conf /root/Desktop/confdir
4.rm -fr /root/Desktop/*
<<<第四单元练习>>>
1.在student用户下执行find /etc -name passwd 命令,并管理其输出要求如下:
* 显示所有正确输出,屏蔽错误输出
* 保存正确数出到/mnt/find.out,错误数出到/mnt/find.err中
* 建立/mnt/find.all文件,并且保存所有输出到此文件中
* 再次保存所有输出到/mnt/find.all中,并且保持源文件内容
* 屏蔽此命令的所有输出
* 显示此命令的所有输出并保存输出到桌面上的任意文件中
* 保存正确输出到/mnt/find.out.1中,屏蔽错误输出
2.处理文件在文件/usr/share/mime/packages/freedesktop.org.xml要求如下:
* 找到此文件中包含ich的行,并保存这些行到/root/lines中
* 用vim替换掉/root/lines中的空格,但要保持文件中原有的内容
1.
(1)find /etc -name passwd 2>/dev/null
(2)touch /home/student/Desktop/find.out
touch /home/student/Desktop/find.err
find /etc -name passwd >/home/student/Desktop/find.out 2>/home/student/Desktop/find.err
(3)touch /mnt/find.all
find /etc -name passwd &>find.all
(4)find /etc -name passed &>>find.all
(5)find /etc -name passed &>/dev/null
(6)find /etc -name passwd 2>&1 | tee file
(7)find /etc -name passwd >find.out.1 2>/dev/null
以上是关于前四单元练习题的主要内容,如果未能解决你的问题,请参考以下文章
算法零基础学习关于二维数组的一些基础练习题 | leetcode1672158283248题解