The Wget package contains a utility useful for non-interactive downloading of files from the Web. It is used in pages in this book, BLFS, and SLFS that lump packages together, like downloading Xorg or KDE packages, or when a package depends on a wealth of submodules.
Install Wget by running the following commands:
./configure --prefix=/usr      \
            --sysconfdir=/etc  \
            --with-ssl=openssl &&
make
        
          Now, as the root user:
        
make install
![[Note]](../images/note.png) 
          Run ./configure --help for a full list of options.
          --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.