第一单元
1.用student用户登陆系统图形界面
2.打开一个bash
3.修改student的密码,把密码更新成"T3st1ngtlme"(主机字母和数字)
4.显示当前系统时间
[root@localhost Desktop]# date 2017年 09月 25日 星期一 18:29:47 CST |
5.显示当前系统时间,显示格式为:"小时:分钟:秒 AM/PM"(AM/PM为上下午标识)
[root@localhost ~]# date +%r 下午 04时30分46秒 |
6.显示“/usr/bin/clean-binary-files”的文件类型
[root@localhost ~]# file /usr/bin/clean-binary-files /usr/bin/clean-binary-files: POSIX shell script text executable |
7.统计“/usr/bin/clean-binary-files”的文件大小
[root@localhost ~]# wc -c /usr/bin/clean-binary-files 13219 /usr/bin/clean-binary-file |
8.用快捷方式在shell中调用已经执行过的第4条命令
9.用快捷方式执行最近一条含有"date"关键字的命令
第二单元
1.用命令和正则表达式按照要求建立文件
*)用一条命令建立12个文件WESTOS_classX_linuxY(X的数值范围为1-2,Y的数值范围为1-6)
[root@localhost Desktop]# touch WESTOS_classX{1..2}linuxY{1..6} [root@localhost Desktop]# ls study WESTOS_classX1linuxY5 WESTOS_classX2linuxY4 WESTOS_classX1linuxY1 WESTOS_classX1linuxY6 WESTOS_classX2linuxY5 WESTOS_classX1linuxY2 WESTOS_classX2linuxY1 WESTOS_classX2linuxY6 WESTOS_classX1linuxY3 WESTOS_classX2linuxY2 WESTOS_classX1linuxY4 WESTOS_classX2linuxY3 |
*)这些文件都包含在root用户桌面的study目录中
[root@localhost Desktop]# pwd /root/Desktop [root@localhost Desktop]# mv ./WEST* ./study [root@localhost Desktop]# ls ./study WESTOS_classX1linuxY1 WESTOS_classX1linuxY5 WESTOS_classX2linuxY3 WESTOS_classX1linuxY2 WESTOS_classX1linuxY6 WESTOS_classX2linuxY4 WESTOS_classX1linuxY3 WESTOS_classX2linuxY1 WESTOS_classX2linuxY5 WESTOS_classX1linuxY4 WESTOS_classX2linuxY2 WESTOS_classX2linuxY6 |
*)用一条命令建立8个文件redhat_versionX(x的范围为1-8)
[root@localhost Desktop]# touch redhat_version{1..8} [root@localhost Desktop]# ls redhat_version1 redhat_version3 redhat_version5 redhat_version7 study redhat_version2 redhat_version4 redhat_version6 redhat_version8 |
*)redhat_virsionX这些文件都包含在/mnt目录中的VERSION中
[root@localhost Desktop]# mkdir /mnt/VERSION [root@localhost Desktop]# cp ./redhat* /mnt/VERSION [root@localhost Desktop]# ls /mnt/VERSION redhat_version1 redhat_version3 redhat_version5 redhat_version7 redhat_version2 redhat_version4 redhat_version6 redhat_version8 |
2.管理刚才信建立的文件要求如下
*)用一条命令把redhat_versionX中的带有奇数的文件复制到桌面的SINGLE中
[root@localhost Desktop]# ls redhat_version1 redhat_version3 redhat_version5 redhat_version7 SINGLE redhat_version2 redhat_version4 redhat_version6 redhat_version8 study [root@localhost Desktop]# cp ./*{1,3,5,7} ./SINGLE [root@localhost Desktop]# ls ./SINGLE redhat_version1 redhat_version3 redhat_version5 redhat_version7 |
*)用一条命令把redhat_versionX中的带偶数数的文件复制到/DOUBLE中
[root@localhost Desktop]# cp ./*{2,4,6,8} /DOUBLE [root@localhost Desktop]# ls /DOUBLE redhat_version2 redhat_version4 redhat_version6 redhat_version8 |
*)用一条命令把WESTOS_classX_linuxY中class1的文件一动到当前用户桌面的CLASS1中
[root@localhost Desktop]# cp ./study/*classX1* ./CLASS1 [root@localhost Desktop]# ls CLASS1 WESTOS_classX1linuxY1 WESTOS_classX1linuxY3 WESTOS_classX1linuxY5 WESTOS_classX1linuxY2 WESTOS_classX1linuxY4 WESTOS_classX1linuxY6 |
*)用一条命令把WESTOS_classX_linuxY中class2的文件一动到当前用户桌面的CLASS2中
[root@localhost Desktop]# mkdir CLASS2 [root@localhost Desktop]# cp ./study/*classX2* ./CLASS2 [root@localhost Desktop]# ls CLASS2 WESTOS_classX2linuxY1 WESTOS_classX2linuxY3 WESTOS_classX2linuxY5 WESTOS_classX2linuxY2 WESTOS_classX2linuxY4 WESTOS_classX2linuxY6 |
3.备份/etc目录中所有带有名字带有数字并且以.conf结尾的文件到桌面上的confdir中
[root@localhost Desktop]# cd /etc [root@localhost etc]# cp *[[:digit:]]*.conf /root/Desktop/confdir [root@localhost etc]# cd /root/Desktop [root@localhost Desktop]# ls ./confdir krb5.conf mke2fs.conf |
5.删掉刚才建立或者备份的所有文件
[root@localhost Desktop]# rm -rf * |