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://shuyeidc.com/wp/199206.html<

(0)
运维的头像运维
上一篇2025-04-04 17:45
下一篇 2025-04-04 17:47

相关推荐

发表回复

您的邮箱地址不会被公开。必填项已用 * 标注