CentOS 7下使用mwget加速wget

使用wget下载文件时可能十分缓慢,你也可使用mwget进行加速,其中m代表多线程的意思。

1.安装mwget

wget http://jaist.dl.sourceforge.net/project/kmphpfm/mwget/0.1/mwget_0.1.0.orig.tar.bz2

tar -xjvf mwget_0.1.0.orig.tar.bz2

cd mwget_0.1.0.orig

执行./configure

./configure

如果出现 error: C++ compiler cannot create executables 说明没有安装c++编译器 安装一个c++编译器就可以了

yum install gcc-c++

如果执行./configure 出现 configure: error: Your intltool is too old.  You need intltool 0.35.0 or later.

需要安装0.35.0以上的版本

yum install intltool

然后做最后的安装

make

make install

安装完毕后 可以使用mwget下载

CentOS 7下使用mwget加速wget

下面的截图为wget

CentOS 7下使用mwget加速wget 

猜你喜欢

转载自www.linuxidc.com/Linux/2019-09/160541.htm