centos下使用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下载

mwget https://www.python.org/ftp/python/3.7.0/Python-3.7.0.tgz
———————
作者:lu2322
来源:CSDN
原文:https://blog.csdn.net/luhengchang/article/details/81365484
版权声明:本文为博主原创文章,转载请附上博文链接!