...

FreeBSD Install wget Utility To Download Files From Internet nixCraft Updated Tutorials/Posts

freebsd-install-wget-utility-to-download-files-from-internet-nixcraft-updated-tutorials-posts

How do I install wget the non-interactive network downloader under FreeBSD operating systems? How do I install wget on FreeBSD 8.x/9.x/10.x/11.x/12.x?

You can use any one of the following method to install GNU Wget non-interactive program on a FreeBSD operating system. The wget used to download files from the Internet. It supports HTTP, HTTPS, and FTP protocols, as well as retrieval through HTTP proxies with username and password support.

How to install wget on FreeBSD

  1. Open a terminal window.
  2. Log in to remote FreeBSD server using ssh:
    ssh user@freebsd-ec2-host-ip
  3. To add the package on FreeBSD, run:
    pkg install wget
  4. To add the FreeBSD ports, run:
    cd /usr/ports/ftp/wget/ && make install clean

Let us see all commands and configs in details.

Install wget Using pkg_add (Binary method) Command

Run the following pkg command on the latest version of FreeBSD:
$ sudo pkg update
$ sudo pkg install wget

How to install wget on FreeBSD using pkg command
Type the following command as root user for older version of FreeBSD v8.x or older:
# pkg_add -r -v wget
# rehash

Install wget Using FreeBSD Ports Collection

Type the following command as root user to upgrade ports tree, enter:
# portsnap fetch update
Now, install the wget, enter:
# cd /usr/ports/ftp/wget
# make install clean
# rehash

How do I use wget command on FreeBSD?

You can use the wget command as follows:
$ wget http://example.com/file.pdf
$ wget ftp://ftp.example.com/dir/foo.tbz
$ wget ftp://ftp.freebsd.org/pub/FreeBSD/ports/amd64/packages-8.0-release/All/qt4-doc-4.5.2.tbz

For more info see “Linux wget: Your Ultimate Command Line Downloader.

How do I resume file downloads on wget?

The syntax is:
wget -c url
wget --continue url

Conclusion

This page demonstrated how to install the wget command on a FreeBSD based operating system using both binary pkg and ports methods. GNU/wget is easy and can be used from your shell scripts, cron jobs, terminals without GUI or X-Windows support, and more. GNU wget has many features to make retrieving large files or mirroring
entire web or FTP sites easy. For more info see GNU/wget homepage here.

Posted by: Vivek Gite

The author is the creator of nixCraft and a seasoned sysadmin, DevOps engineer, and a trainer for the Linux operating system/Unix shell scripting. Get the latest tutorials on SysAdmin, Linux/Unix and open source topics via RSS/XML feed or weekly email newsletter.

Discover more from WIREDGORILLA

Subscribe now to keep reading and get access to the full archive.

Continue reading