wget command not found on linux server

From kernel version, it looks like you are using RHEL/Centos 6. Please check - https://centos.pkgs.org/6/centos-x86_64/wget-1.12-10.el6.x86_64.rpm.html

If the mentioned dependencies exist in your system, you can directly fire the rpm command

rpm command guide - https://docs.fedoraproject.org/ro/Fedora_Draft_Documentation/0.1/html/RPM_Guide/ch02s03.html

If it doesn't work, you need to use yum command. (You need to configure yum command first, if not configured already) yum install wget

To configure yum command in centos6 - https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/6/html/deployment_guide/sec-configuring_yum_and_yum_repositories

Note - you need to be root user for above activities.


Given your kernel version, it looks like your Linux distribution is CentOS 6 or RHEL 6. Try installing wget with this command:

yum install wget

You must be root when you run this command.


Incase you using Debian version of Linux, use the following:

sudo apt-get install wget