赞
踩
[root@zinix-fedora /]# find / ls > /dev/null &
[1] 6557
[root@zinix-fedora /]# find: ‘/run/user/42/gvfs’: Permission denied
find: ‘ls’: No such file or directory
[1]+ 退出 1 find / ls > /dev/null
[root@zinix-fedora /]# find / zinix > /dev/null &
[1] 6838
[root@zinix-fedora /]# find: ‘/run/user/42/gvfs’: Permission denied
job
bash: job: 未找到命令...
[1]+ 退出 1 find / zinix > /dev/null
[1]+ 退出 1 find / zinix > /dev/null
ps aux --sort -pcpu # 按照CPU占用率排序
ps aux --sort -pmem # 按照内存占用率排序
ps aux --sort -pcpu,+pmem | head -n 10 # 同时按照CPU和内存占用率排序,并通过管道显示前10个结果
watch -n 1 'ps aux --sort -pmem,+pcpu | head -n 20' # 按照CPU和内存占用率查询前20个进程,每秒刷新一次
ps aux | grep 'zinix' # 在全部进程信息中查找指定的字符串
kill -9 pid # 9表示无条件终止,pid表示进程ID
kill -l
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。