To install wget on a Debian or Ubuntu Linux system, you can use the apt-get package manager. Here’s how to install wget:
- Update the package list:
sudo apt-get update
- Install
wget:sudo apt-get install wget
- Verify the installation by checking the version of
wget:wget --version
Now, wget is installed on your Debian or Ubuntu Linux system, and you can use it to download files from the internet using the command line.