查看帮助命令(2.2,P30-33)
一、命令的长格式和短格式
长格式:man --help
短格式:man -h
二、man命令
$man [某命令]
查看某命令的帮助信息
详见P32-33
10个常用系统工作命令(2.3,P33-39)
命令预览:echo,date,reboot,poweroff,wget,ps ,top,pidof,kill,killall
掌握情况:ps
一、echo
1. $echo "任意字符"
输出任意字符
2. $echo "??" > ./test.txt
保存文本信息到./test.txt
二、date
显示、设置日期
1. $date
输出当前时间
2. $date "+%Y-%m-%d %H:%M:%S"
格式化时间并输出
3. $date -s "yyyymmdd hh:mm:ss"
设定时间
三、reboot
$reboot
重启系统
注:ssh连接服务器时慎用!
四、poweroff
$poweroff
关闭系统
同上
五、wget
$wegt url
下载该url下的文件
六、ps
查看某进程ID
ps aux | grep [进程名]
七、top
$top
查看各项进程状态(CPU使用率,内存使用率,PID,用户等)(任务管理器)
发现的规律👇
PID为1开始的连续进程,是系统进程,杀不死
八、pidof
$pidof 服务名
获取某服务的所有进程的pid
九、kill
$kill 进程号
杀死某进程号的进程
十、killall
$killall 服务名
杀死某服务的所有进程