查看进程详情
命令:ps -aux
查看进程
能够观察所有系统的数据
命令:ps la | head -5
命令:ps axjf | head -20
仅查看自己的bash相关的进程
命令:ps l
观察系统所有进程
命令:ps aux
观察进程变化命令 - top
每隔三秒更新一次数据
命令:top -d 3
进行两次top的输出结果
命令:top -b -n 2
查看进程树命令 - pstree
安装pstree
命令:pstree 默认没有安装
命令:yum -y install psmisc
命令:pstree -Aup
杀死进程 - kill命令
命令:pstree -aup | grep sshd
命令:kill -1 910 并未杀死
命令:kill -9 910
系统资源监控
free命令
uname命令
uptime命令
netstat命令
CentOS7默认没有安装netstat,需要自行安装
命令:yum -y install net-tools
命令:netstat -atp
命令:netstat -antp
命令:netstat -lntp
vmstat命令
命令:vmstat 1 4
任务管理
命令:tail -F anaconda-ks.cfg &
命令:jobs -r
命令:jobs -s