当前位置: 首页 > 工具软件 > GNU Wget > 使用案例 >

Linux安装wget问题总结

冯玮
2023-12-01

概述

Wget是一个十分常用命令行下载工具,多数Linux发行版本都默认包含这个工具。如果没有安装可在如下地址下载最新版本。http://www.gnu.org/software/wget/wget.html

安装步骤

按步骤使用如下命令编译安装即可:

# tar zxvf wget-1.14.tar.gz
# cd wget-1.14
# ./configure
# make
# make install

问题描述

在执行 ./configure 的时候报错了,错误如下:

configure: error: --with-ssl was given, but GNUTLS is not available.

解决方法:
在执行 ./configure 的时候加个参数就行了。

[root@VM-0-2-centos weizh]# ./configure  --with-ssl=openssl

执行的时候又报错了,错误如下:

configure: error: --with-ssl=openssl was given, but SSL is not available.

原因:
根据提示,问题应该是没安装openssl,先安装:

yum -y install openssl

还是出现问题,又双报错了。虽然openssl安装了,但是动态库和相关的头文件并没有安装,而这些是编译的时候需要的,安装即可:

yum -y install openssl-devel

安装完继续执行: ./configure --with-ssl=openssl
ok,./configure可以了,接着下一步执行 make
又双叒报错了。。。。。
错误信息如下:

cms.pod around line 470: Expected text after =item, not a number
cms.pod around line 474: Expected text after =item, not a number
POD document had syntax errors at /usr/bin/pod2man line 69.
make: *** [install_docs] Error 1

解决方法:
先执行一下这个命令就好了:
rm -f /usr/bin/pod2man

继续 make

ok,搞定。继续下一步:
make install

安装完成,验证一下:

[root@VM-0-2-centos weizh]# wget --version
GNU Wget 1.14 built on linux-gnu.

+digest +https +ipv6 -iri +large-file +nls +ntlm +opie +ssl/openssl 

ok,没问题。

 类似资料: