首页 > 编程语言 > 详细

wget转换成多线程mwget

时间:2020-12-07 09:38:38      阅读:45      评论:0      收藏:0      [点我收藏+]

linux中的wget是一个常用的下载命令,但它是单线程的场景
使用 wget 和 mwget 进行下载测试,各测试了5次,从平均结果看,mwget 的确更快,较wget快了3倍左右



安装过程

# 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
# make
# make install



错误集合

1.一般在tar解压安装环境的时候,执行make时出现这种错误

  原因    I. 没有执行 ./configure  所以没能生成makefile
         II. 执行 ./configure 时出错 如  ./configure: line 2370: config.log: Permission denied
        III. 即是 config.log的访问权限被拒绝

   解决方法: sudo chmod 777 文件名, sudo ./configure

2.执行./configure   时的状况

①error: C++ compiler cannot create executables 说明没有安装c++编译器 
yum install gcc-c++

②error: Your intltool is too old.  You need intltool 0.35.0 or later.  说明intltool太老了
yum install intltool



参考博客

https://cloud.tencent.com/developer/article/1083094
https://www.linuxidc.com/Linux/2019-09/160541.htm

wget转换成多线程mwget

原文:https://www.cnblogs.com/xwdzj/p/14095154.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!