CentOS 7下使用mwget加速wget
使用wget下载文件时可能十分缓慢,你也可使用mwget进行加速,其中m代表多线程的意思。
安装环境:CentOS 7
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.8.0/Python-3.8.0b4.tgz
下面的截图为wget
版权声明:
作者:后浪云
链接:https://idc.net/help/15931/
文章版权归作者所有,未经允许请勿转载。
THE END
