第一单元
1. 用student用户登陆系统图形界面
[[email protected] Desktop]$ rht-vmctl start desktop ####打开虚拟机####
Starting desktop. #####虚拟机开启中###
[[email protected] Desktop]$ rht-vmctl view desktop #####显示desktop####
[[email protected] Desktop]$ rht-vmctl poweroff desktop ####关闭desktop###
Powering off desktop.. ####关闭中。。###
2.打开一个bash
[[email protected] Desktop]$ vim example ###使用vim编辑器建立一个bash文件,名为example###
#################################编辑器中输入内容#################################
#!/bin/bash ### #!确定文件类型 /bin/bash 由bin下bash执行 ##
#This is a example about bash ## #后所加内容为标注 ####
echo Hello World ######echo 把其后面字符串输出到标准输出中##
################################################################################
[[email protected] Desktop]$ bash example ####运行bash文件example######
Hello World #####运行结果################
3.修改student的密码,把密码更新成"T3st1ngtlme"(主机字母和数字)
[[email protected]@Desktop]$ passwd ###修改密码####
Changing password for user student.
Changing password for student.
(current) UNIX password: ###输入原始密码###
New password: ###输入新密码#####
Retype new password: ###再次输入####
4.显示当前系统时间
[[email protected] Desktop]$ date
Wed Sep 28 21:25:37 CST 2016
5.显示当前系统时间,显示格式为:"小时:分钟:秒 AM/PM"(AM/PM为上下午标识)
[[email protected] Desktop]$ date "+%H:%M:%S %p" ##"+% :% :%"设置世界格式,H小时M分钟S秒p上午下午
21:51:39 PM ##########显示结果#######################
6.显示“/usr/bin/clean-binary-files”的文件类型
[[email protected] Desktop]$ file /usr/bin/clean-binary-files
/usr/bin/clean-binary-files: POSIX shell script, ASCII text executable ###运行结果###
7.统计“/usr/bin/clean-binary-files”的文件大小
[[email protected] Desktop]$ ls -s /usr/bin/clean-binary-files
16 /usr/bin/clean-binary-files ###########运行结果###########
8.用快捷方式在shell中调用已经执行过的第4条命令
[[email protected] Desktop]$ !4
rht -vmctl start all ######运行结果###############
bash: rht: command not found... ######运行结果###############
9.用快捷方式执行最近一条含有"date"关键字的命令
(reverse-i-search)`‘: ############(ctl+r 运行打开搜索)
[[email protected] Desktop]$ date "+%H:%M:%S %p" #######搜索到包含到最近一条包含“date”命令
22:27:05 PM ###########运行结果#####################