0

I use the following rpm syntax in order to install few rpm' syntax that exist under pkgs

rpm -ivh --replacefiles --replacepkgs /home/pkgs/*.rpm

unfortunately in case of rpm dependencies rpm failed , so we want to use yum in order to solve dependencies

in order to use yum , what is the equivalent approach for the above rpm syntax ?

sheffadmin
  • 49
  • 1
  • 7

1 Answers1

1

To reinstall a package with yum is trivial:

yum reinstall <name>
Michael Hampton
  • 237,123
  • 42
  • 477
  • 940