Centos系统使用记录
Posted 龙行天下之Sky
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos系统使用记录相关的知识,希望对你有一定的参考价值。
1、安装htop(ubuntu下:sudo apt-get install htop即可)
直接安装:
# yum -y install epel-release
# yum -y update
# yum -y install htop
源码安装:
安裝编译htop所需的編譯器:
# yum groupinstall “Development Tools”
# yum install ncurses-devel
下載及編譯安裝 Htop:
# cd /usr/local/src
# wget http://hisham.hm/htop/releases/1.0.3/htop-1.0.3.tar.gz
# tar -xvf htop-1.0.3.tar.gz
# cd htop-1.0.3
# ./configure
# make && make install
以上是关于Centos系统使用记录的主要内容,如果未能解决你的问题,请参考以下文章