su dnf update rebootAfter that, I do:
su dnf upgrade --refresh (yields: nothing to do) dnf -y system-upgrade download --refresh --releasever=34This gets into trouble with the following error:
Problem 1: package qlandkartegt-1.8.1-28.fc33.x86_64 requires libgdal.so.27()(64bit) Problem 2: package qpdfview-qt4-0.4.18-5.fc33.x86_64 requires libpoppler-qt4.so.4()(64bit)My answer to this is:
dnf erase qlandkartegt dnf erase qpdfview dnf -y system-upgrade download --refresh --releasever=34These are two packages I was sampling and experimenting with, and I can attempt to reinstall them once I am up and running Fedora 34. Now I am off and running installing 4146 packages.
After about 3000 packages it declares that it cannot find the following package.
gstreamer1-plugin-openh264This is some codec or something that I can surely live without, so:
dnf erase gstreamer1-plugin-openh264 dnf -y system-upgrade download --refresh --releasever=34All of this took about 1/2 hour and now the thing to do is:
dnf system-upgrade rebootAnd after a total elapsed time of about 1.5 hours I am running Fedora 34 on my home system.
First we reboot to get us running the latest kernel.
su rebootThen we do the f33 packages. This system was installed as F32, so we need to manually install the dnf upgrade package.
su dnf upgrade --refresh (yields: nothing to do) dnf install dnf-plugin-system-upgrade dnf -y system-upgrade download --refresh --releasever=33 dnf system-upgrade rebootThis system only has 1700 packages installed and has a very fast SSD, so this goes amazingly quickly. Also it hasn't accumulated years of cruft, so there are no package conflicts. The hop to F34 is pretty much the same thing:
su dnf upgrade --refresh (yields: nothing to do) dnf -y system-upgrade download --refresh --releasever=34 dnf system-upgrade reboot
ovend: error while loading shared libraries: libcfitsio.so.7: cannot open shared object file: No such file or directoryUsing "locate" I see this very file where I think it should be:
/usr/lib64/libcfitsio.so.7However, when I type "ldconfig -v | grep fits" I see:
libcfitsio.so.9 -> libcfitsio.so.9.3.49So there is a newer version of the library.
cd newoven make clean make make install
Adventures in Computing / [email protected]