1.进程管理工具 htop
#安装所需依赖:
yum install ncurses-devel -y
#下载源码:
wget http://hisham.hm/htop/releases/2.0.2/htop-2.0.2.tar.gz
tar -zxf htop-2.0.2.tar.gz
cd htop-2.0.2
#编译及安装:
./configure
make -j4
make install
2.流量监控工具 iftop
#安装所需依赖:
yum install flex byacc libpcap ncurses ncurses-devel libpcap-devel -y
#下载源码:
wget http://www.ex-parrot.com/~pdw/iftop/download/iftop-0.17.tar.gz
tar -zxf iftop-0.17.tar.gz
cd iftop-0.17
#编译及安装:
./configure
make -j4
make install
3.多线程下载工具 mwget
#安装所需依赖:
yum install gcc-c++ openssl-devel intltool bzip2 -y
#下载源码:
wget http://jaist.dl.sourceforge.net/project/kmphpfm/mwget/0.1/mwget_0.1.0.orig.tar.bz2
tar -jxf mwget_0.1.0.orig.tar.bz2
cd mwget_0.1.0.orig
#编译及安装:
./configure
make -j4
make install
4.测速工具 speedtest
#保存至bin目录下
wget -O /bin/speedtest https://github.com/sivel/speedtest-cli/raw/master/speedtest.py
#设置可执行权限
chmod 777 /bin/speedtest