1、top是Linux下常用的监控程序,htop相当于其加强版,颜色显示不同参数,且支持鼠标操作。
以前一直是在使用top查看系统的情况,现在发现了一个top的升级程序-htop。吸引我的除了功能上的增强外,就是它支持了鼠标的操作。top和htop主要区别:
In ‘htop’ you can scroll the list vertically and horizontally to see all processes and complete command lines.
In ‘top’ you are subject to a delay for each unassigned key you press (especially annoying when multi-key escape sequences are triggered by accident).
‘htop’ starts faster (‘top’ seems to collect data for a while before displaying anything).
In ‘htop’ you don’t need to type the process number to kill a process, in ‘top’ you do.
In ‘htop’ you don’t need to type the process number or the priority value to renice a process, in ‘top’ you do.
‘htop’ supports mouse operation, ‘top’ doesn’t
‘top’ is older, hence, more used and tested.
2.Ubuntu下软件安装htop
3.htop软件使用(主菜单)
F1 帮助信息 (支持鼠标哦)
记住常用的几个快捷键就行 什么t s P M H K等等
F2 一些设置 (这个比较简单)
F3 是可以搜索 F4是过滤出哪个进程 F5 就是上面的快捷键t F6是选择进程排序的依据(默认是CPU使用率)
F7 F8可以直接修改选中进程的优先级
F9 可以直接kill掉进程
PS 一个 :选中进程 按快捷键s 可以strace 进程 前提是安装了strace。
总结一句话 这个软件很简单 大家玩了就知道 决定比top好用
代替系统自带的top
编辑/root/.bashrc文件:
添加如下代码
if [ -f /usr/local/bin/htop ]; then
alias top=’/usr/local/bin/htop’
fi
更多Ubuntu相关信息见Ubuntu 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=2