Linux yum command deleted

by Vivek Gite on April 18, 2008 · 4 comments

Q. By accident my yum command was deleted under Red Hat Enterprise Linux version 5.x. Now I'm not able to download and update system using RHN. How do I fix this issue without reinstalling RHEL again?

A. You can try any one of the following solutions to restore yum:

(a) Copy yum command (/usr/bin/yum) from other working system (same version and architecture) using ssh / scp command.

(b) Download yum rpm itself from RHN. First, log into RHN. Select the "Channels" tab then select the "Red Hat Enterprise Linux" channel for your system in the channel name table. You can search RPM and then select "Package" link. Once downloaded just run rpm command over yum command.
# rpm -ivh --force rpm*

(c) Download yum source rpm from public Red Hat ftp server and rebuild yum rpm:
# wget http://ftp.redhat.com/pub/redhat/linux/enterprise/5Server/en/os/SRPMS/yum-3.0.1-5.el5.src.rpm
# rpm -ivh yum-3.0.1-5.el5.src.rpm
# cd /usr/src/redhat/SPECS
# rpmbuild -bb yum.spec
# rpm -ivh --force /usr/src/redhat/RPMS/noarch/yum-3.0.1-5.noarch.rpm
# yum --version

(d) Grab yum rpm from one of the CentOS mirror and just install it.

(e) Copy yum binary from your backup tape device.

(f) Copy yum RPM from updated media CD / DVD and install the same using rpm command.

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

{ 4 comments… read them below or add one }

1 flynets April 19, 2008

is it possible install yum on red hat enterprise linux 4 with this methode?
thx

Reply

2 vivek April 19, 2008

no, it is not recommended to mix up2date with yum. This is RHEL5/CentOS 5 specific issue

Reply

3 Alex February 27, 2010

Very helpful, thank you!

I used method (c) on my CentOS 5 :D

Reply

4 Josh November 11, 2010

Thank you for the tutorial.
Yum was broken on a VM someone else created a few years back and I’ve been trying to figure out how to fix it. Reinstalling didn’t ‘fix’ the problem, but did let me work around it.

This is exactly what I was looking for:
# wget http://ftp.redhat.com/pub/redhat/linux/enterprise/5Server/en/os/SRPMS/yum-3.0.1-5.el5.src.rpm
# rpm -ivh yum-3.0.1-5.el5.src.rpm
# cd /usr/src/redhat/SPECS
# rpmbuild -bb yum.spec
# rpm -ivh –force /usr/src/redhat/RPMS/noarch/yum-3.0.1-5.noarch.rpm

Thanks again.

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 8 + 10 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.




Previous post:

Next post: