How to install wget on CentOS 7/8

The procedure to install wget command is as follows on CentOS Linux 7/8:

  1. Open a terminal window.
  2. Search for wget package on CentOS Enterprise Linux 8, run:
    sudo yum search wget
  3. Run to install wget :
    sudo yum install wget
  4. Verify wget installation, run:
    wget https://www.cyberciti.biz/files/hello-linux-module.zip
  5. Check wget version by running:
    wget --version

Let us see all commands and steps in details to install wget in CentOS 8.

  • centos, wget, linux-server, server
  • 1 användare blev hjälpta av detta svar
Hjälpte svaret dig?

Related Articles

Change HostName in CentOS 7 / RHEL 7

Method 1 : nmcli To view the current hostname : # nmcli general hostname...

How to delete terminal history in Linux

You can clear your bash history like this: cat /dev/null > ~/.bash_history && history...

How to change SSH Port in Linux

# vi /etc/ssh/sshd_configYou have to change port 22 to whatever you want#Port 22 #ta delete kore...

How to install Webuzo on CentOS 7

Requirements Newly installed CentOS 6.x / 7.x or Red Hat Enterprise Linux 6.x / 7.x or...

How to block IP address on a Linux Server

To block an IP on your Linux server you need to use iptables tools  and netfilter firewall. First...