[] CentOS Linux shell command to gather some nice shell management (a) continuously updated

查看 系统版本
rpm -q centos-release

[] CentOS Linux shell command to gather some nice shell management (a) continuously updated

查看内核
uname -r

查看目前占用最大内存前10名的进程
ps aux |sort -nrk 4 |head -n 10

查看目前占用cpu 前10名 进程
ps aux |sork -nrk 3 | head -n 10

top 命令

top 命令模式下 输入大写P,则结果按CPU占用降序排序。输入大写M,结果按内存占用降序排序。(注:大写P可以在capslock状态输入p,或者按Shift+p)

[] CentOS Linux shell command to gather some nice shell management (a) continuously updated

nc command

    1 检测端口能否访问
     nc -z -v 47.107.44.58 22

[] CentOS Linux shell command to gather some nice shell management (a) continuously updated

查看系统被尝试登陆
 lastb

[] CentOS Linux shell command to gather some nice shell management (a) continuously updated

查看系统 最近成功登陆系统记录
last

[] CentOS Linux shell command to gather some nice shell management (a) continuously updated

Guess you like

Origin blog.51cto.com/11090700/2426935