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

Linux DHCP server bind eth0

So I installed VMWare server and wanted to know how to set my DHCP server to listen on just eth0.

Simple answer on Fedora is to edit

/etc/sysconfig/dhcpd

add

DHCPARGS=eth0

Posted in Linux. Tags: . Leave a Comment »