How to re-install a package using YUM

If you use may distros you probably think ‘why hasnt yum got a re-install’..

me too

But i found a work-around

rpm -e --justdb --nodeps %packagename%
yum install %packagename%

Thats a way to ensure you only remove the specified package allowing you to use yum to reinstall it again.

Found the original article and info here

Enjoy

Leave a Reply

You must be logged in to post a comment.