| It might be useful here for you to learn to use the 'yum' and 'rpm' command line tools - check their man pages.
You can uninstall packages with 'yum remove <package_name>' which goes through the dependency thing, and might resolve your issue, or you can use 'rpm -e <package_name>' which just barfs if there are dependency issues. They both work on the same package database, rpm gives you a more fine grained control, but is harder to use because of it.
Try removing the original mkinitrd package - it could be conflicting because of something stupid, e.g. you might have an architecture error in the installed package, where it's installed the i386 instead of the x64 version, or summat like that. |