Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Install 'yum' in Centos7

I've deleted yum from my server and I did wget to download yum again and extract it. In this folder, I have a lot of files:

AUTHORS      completion-helper.py  Makefile   shell.py  yumcommands.py
bin          COPYING               output.py  test      yum-cron
callback.py  docs                  po         TODO      yummain.py
ChangeLog    etc                   README     utils.py  yum.spec
cli.py       INSTALL               rpmUtils   yum       yum-updatesd.py

How can I install it?

like image 308
Mhammad Al Abdullah Avatar asked Nov 19 '22 01:11

Mhammad Al Abdullah


1 Answers

Another solution to install packages is to use the RPM command. You first need to download the rpm file and then install it. For more infos: RPM man page

So, to install yum, simply run those two commands:

wget https://dl.fedoraproject.org/pub/epel/7/x86_64/Packages/e/epel-release-7-11.noarch.rpm
rpm -ivh yum-3.4.3-154.el7.centos.noarch.rpm
like image 180
Kevin Lemaire Avatar answered Dec 05 '22 12:12

Kevin Lemaire