文章目录
解决安装mwget时遇到的问题及解决方法
mwget是linux的一款多线程下载工具,类似于为windows下的IDM(全称internet download managet)。在linux下使用wget下载文件时下载速度慢时,可以使用mwget来下载所需的文件。mwget可以大大提升下载速度。
使用命令
mwget url
命令会自动开启多线程下载URL地址的内容。
- 错误 pkg-config
方法:apt-get install pkg-config
- no package ‘openssl’ found
方法:apt-get install libssl-dev
- configure: error: Your intltool is too old. You need intltool 0.35.0 or later.
方法:apt-get install intltool
- config 配置完成后,执行make命令时出现以下错误。
错误提示:httpplugin.cpp:149:14: error 'strstr' was not deslared in this scope
表示在httpplugin.cpp文件的第149行的第14个字符开始的strstr在所用域不能使用,需要添加头文件。
方法:在httpplugin.cpp文件的头部添加#include <string.h>
mwget中原文件的部分截图:
make编译文件时,会依次提示错误,只需在文件头部添加 #include <string.h>就可以了。