使用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://www.linuxidc.com/Linux/2019-09/160541.htm