After upgrading from Fedora 10 to 11 using the following instructions, I encountered the errors detailed below.
http://www.cyberciti.biz/faq/upgrade-fedora-11/
Upon boot, immediately encountered the following error.
?Traceback (most recent call last): |
Upon trying to run #yum update , I encountered the following error.
There was a problem importing one of the Python modules required to run yum. The error leading to this problem was: ?? No module named yum Please install a package which provides this module, or It’s possible that the above module doesn’t match the If you cannot solve this problem yourself, please go to |
The following rpm -qa output reveals that the Fedora upgrade left remnants of the yum for Fedora 10.? By downloading the Fedora 11 yum rpm’s and installing them, the problem was resolved.
# rpm -qa | grep yum —- Below command, where you prefix each rpm file with the location of the repository where you’re downloading them from. Then, install the downloaded rpm’s. # rpm -Uvh yum*.rpm Preparing…??????????????? ########################################### [100%] |
But alas, there was one more error encountered with yum when running a #yum update.
ERROR : File /var/cache/yum/updates/metalink.xml does not exist
Had to do a #yum clean all
which fixed that error message.
Comments are closed.