12

What's the simplest way to download/install software on Red Hat Linux (from bash command line)?

Renan
  • 17,136
ripper234
  • 31,763

5 Answers5

14

For Red Hat Enterprise Linux and derivatives:

$ yum install foo

For Fedora:

$ dnf install foo

For Debian and derivatives such as Ubuntu (run this as root) :

# apt-get install foo
Stephen Kitt
  • 434,908
sudobash
  • 646
2

For Debian/Ubuntu

aptitude install firefox

For Fedora i think it is

yum install firefox

[note] Run these as root.

Johan
  • 4,583
2

If you are using Red Hat Enterprise Linux, it happens that the package you are looking for is in EPEL, so you can install that:

sudo rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-4.noarch.rpm

and then you can yum install ncdu.

If you are using ancient Red Hat Linux, the answer is for the love of all that is holy, time to upgrade to Fedora.

mattdm
  • 40,245
  • Upgrading is not always possible. Have some compassion :) – spemble May 30 '18 at 13:30
  • @spemble Well, sure, but even at the time I wrote that, Red Hat Linux 9 (the last release) had been out of support for almost seven years. Now, it's been fourteen. The number of unpatched local and remote exploits is horrifying to consider. – mattdm May 30 '18 at 13:41
  • My job has me working on RHEL 4.6 and SCO Unix v5. You can imagine the frustration. Just saying. – spemble Jun 02 '18 at 17:47
0

In debian based system you can use sudo apt-get install foo to download you can use wget

Keshan
  • 109
0

For RHEL distrib for remote installation and repositories installation to yum OK, Here we have some additional details :

RHEL2, RHEL3 and RHEL4 :

    up2date -i pkg-name

RHEL5, RHEL6, RHEL7, RHEL8 :

    yum install pkg-name

Note RHEL8 can also : dnf install pkg-name

think about module appstream for apps in RHEL8 : for instance : mariadb

      #use the default module version
      yum module install mariadb
  #select module version
  yum module install mariadb:10.5

  #select the profile
  yum module install mariadb:10.5/Client

RHEL7/RHEL8 : yum group install group-pkg-name

RHEL5, RHEL6,RHEL7 and RHEL8 :

    yum groupinstall group-pkg-name 

RHEL2,RHEL3,RHEL4 : up2date "@group-pkg-name"

If you have to install any rpm package local, avoid to use :

    rpm -ivh http://... 

and prefer use :

    OBSOLETE : yum localinstall http://... 
    now : yum install http://mywebiste/mypackage.rpm

or

Legacy distribution RHEL2, RHEL3, RHEL4 :

    up2date -k pkg-name 

Note : maybe http://... if not wget -0 http://... after up2date -k pkg-name

All of this to keep your metainformation yum (or up2date) ok and sync with rpm.

GnuTux95
  • 29
  • 4