Wget-1.19.5

Introduction to Wget

The Wget package contains a utility useful for non-interactive downloading of files from the Web.

This package is known to build and work properly using an LFS-8.3 platform.

Package Information

Wget Dependencies

Recommended

Optional

GnuTLS-3.5.19, GPGME-1.11.1, HTTP::Daemon-6.01 (for the test suite), IO::Socket::SSL-2.059 (for the test suite), libidn2-2.0.5, PCRE-8.42, Python-2.7.15 (built with ssl; for the test suite), Valgrind-3.13.0 (for the test suite), and libpsl

User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/wget

Installation of Wget

Install Wget by running the following commands:

./configure --prefix=/usr      \
            --sysconfdir=/etc  \
            --with-ssl=openssl &&
make

To test the results, issue: make check. Nine tests fail if python2 was not built with SSL support.

Now, as the root user:

make install

Command Explanations

--sysconfdir=/etc: This relocates the configuration file from /usr/etc to /etc.

--with-ssl=openssl: This allows the program to use openssl instead of GnuTLS-3.5.19.

--enable-valgrind-tests: This allows the tests to be run under valgrind.

Configuring Wget

Config Files

/etc/wgetrc and ~/.wgetrc

Contents

Installed Program: wget
Installed Libraries: None
Installed Directories: None

Short Descriptions

wget

retrieves files from the Web using the HTTP, HTTPS and FTP protocols. It is designed to be non-interactive, for background or unattended operations.

Last updated on 2018-08-26 19:11:51 -0700