Home > Article > Computer Tutorials > Centos7 system installation wget
Installing wget in CentOS 7 system is a daily task. Wget is a command-line download tool that can be used to download files from protocols such as HTTP, HTTPS, and FTP. In this article, we will detail how to install wget on CentOS 7 system.
Step 1: Update package list
Before installing wget, we need to update the package list first. This can be done by running the following command:
sudo yum update
This command will update the available packages in the CentOS 7 package list to ensure that we can get the latest version of the wget package.
Step 2: Install wget
Installing wget is very simple, just run the following command:
sudo yum install wget
This command will use the yum package manager to download and install the wget package and its dependencies from the CentOS 7 software repository.
Step 3: Verify installation
After installing wget, we can use the following command to verify whether the installation is successful:
wget --version
If wget is installed successfully, it will output version information, for example:
GNU Wget 1.14 built on linux-gnu.
So far, we have successfully installed wget on the CentOS 7 system. You can use it to download files from the web.
Summarize
Installing wget on CentOS 7 system is very simple. Just update the package list and install the wget package using the yum package manager. After ensuring that the installation is successful, you can use wget to download files from the web.
The above is the detailed content of Centos7 system installation wget. For more information, please follow other related articles on the PHP Chinese website!