Some progress, for any poor saps who follow me: I was able to solve a lot, but far from all problems with
to upgrade most FC16 packages to FC17. Most -- but not all. The next step was
Code:
yum list installed | grep fc16
to find all my installed FC16 packages. Here I found that I could install packages from this list individually to get those, too, up to FC17. So far, so good. My next thought was to use the output and feed it back into yum to upgrade those packages:
Code:
yum list installed | grep fc16 | cut -d " " -f 1 | xargs yum upgrade -y
This might have worked, but I still had the libcups problem. In an attempt to isolate the problem, I installed the other packages from this list a few at a time (which may have been unnecessary), but was still stuck with the libcups problem.
To get around that, I ended up removing the i686 (fc16) version of gtk2:
Code:
yum remove gtk2.i686
I was subsequently able to reinstall it, which I did mostly out of curiosity:
Code:
yum install gtk2.i686
This got me the fc17 version. (It was a dependency of only one package anyway, nspluginwrapper, which I don’t think I need at all these days.)
yum upgrade now succeeds (or rather, has nothing to upgrade)! We’ll see if my system survives a reboot, I suppose...
---------- Post added at 09:43 PM ---------- Previous post was at 09:32 PM ----------
Quote:
Originally Posted by haggholm
yum upgrade now succeeds (or rather, has nothing to upgrade)! We’ll see if my system survives a reboot, I suppose...
|
Kernel panic on
reboot, for some reason or other, but although I had to do a hard shutdown, it seems to have started well enough. All appears well -- for now -- after those various ifs and buts.