1.用student用户登陆系统图形界面
2.打开一个bash
3.修改student的密码,把密码更新成"T3st1ngtlme"(主机字母和数字)
【root@localhost Desktop】 passwd student
New password:T3st1ngtlme
Retype new passwrod:T3st1ngtlme
4.显示当前系统时间
【root@localhost Desktop】#date
5.显示当前系统时间,显示格式为:"小时:分钟:秒 AM/PM"(AM/PM为上下午标识)
【root@localhost Desktop】#date +%r
6.显示“/usr/bin/clean-binary-files”的文件类型
1.用命令和正则表达式按照要求建立文件
*)file /usr/bin/clean-binary-files
7.统计“/usr/bin/clean-binary-files”的文件大小
*)#wc /usr/bin/clean-binary-files
8.用快捷方式在shell中调用已经执行过的第4条命令
【root@localhost Desktop】#history
【root@localhost Desktop】#!4
9.用快捷方式执行最近一条含有"date"关键字的命令
Ctrl+R
搜索date
《《 第二单元》》
1.用命令和正则表达式按照要求建立文件
*)
用一条命令建立12个文件WESTOS_classX_linuxY(X的数值范围为1-2,Y的数值范围为1-6)
*)
【root@localhost Desktop】#: WESTOS_class{1..2}linux{1..6}
这些文件都包含在root用户桌面的study目录中
*)
【root@localhost Desktop】#mkder study
【root@localhost Desktop】#mv WESTOS_class{1..2}linux{1..6} /study
用一条命令建立8个文件redhat_versionX(x的范围为1-8)
*)
【root@localhost Desktop】#touch redhat_version{1..8}
redhat_virsionX这些文件都包含在/mnt目录中的VERSION中
【root@localhost Desktop】#mkder /mnt/VERSION
【root@localhost Desktop】#mv redhat_version{1..8} /mnt/VERSION
2.管理刚才信建立的文件要求如下
*)用一条命令把redhat_versionX中的带有奇数的文件复制到桌面的SINGLE中
*)
【root@localhost Desktop】#mkder SINGLE
【root@localhost Desktop】#cp renhat_version[[:1.3.5.7:]] . /SINGLE/
用一条命令把redhat_versionX中的带偶数数的文件复制到/DOUBLE中
*)
【root@localhost Desktop】#mkder DOUBLE
【root@localhost Desktop】#cp tenhat_version[[:2.4.6.8:]] ./DOUBLE/
用一条命令把WESTOS_classX_linuxY中class1的文件一动到当前用户桌面的CLASS1中
*)
【root@localhost Desktop】#mkder CLASS1
【root@localhost Desktop】#mv ./WESTOS/class1_linux? ./CLASS1
用一条命令把WESTOS_classX_linuxY中class2的文件一动到当前用户桌面的CLASS2中
【root@localhost Desktop】#mv ./WESTOS/class2_linux? ./CLASS2
备份/etc目录中所有带有名字带有数字并且以.conf结尾的文件到桌面上的confdir中
【root@localhost Desktop】#mkder confdir
【root@localhost Desktop】#mv /etc/*[[:dight:]]*conf ./confdir/
删掉刚才建立或者备份的所有文件
【root@localhost Desktop】# rm -fr *