As the title suggests, I downloaded the upgrade packages for fedora 44 (from f43) using dnf system-upgrade download and then performed dnf system-upgrade reboot. Following that, I am receiving a black screen with cursor and no GUI.
Upon trying Ctrl Alt F2, the console window would open for some time and then automatically go back to the black screen.
Edit: GPU is nvidia Gt 1030 and drivers are latest ones provided by F43 repos.
Any suggestions to get me out of this pickle highly appreciated!
I am not sure about the driver version but I installed it using akmods and ran an update earlier today, so it should be on the latest version provided by f43 repos?
Please post screen output as preformatted text. Before retiring I worked with a big scientific app suite and spent a lot of time looking for replacements when libraries were removed from linux distros. In most cases, libraries are dropped because there are new-improved alternatives, but also rare cases when the package author has died or is driving a taxi for a living.
If your projects don’t need cobalt right away, try removing the package.
You upgraded from f43 to f44, and had the driver for f43 installed before the upgrade. That usually means the driver gets updated to the version with f44 (595) and that card is only supported by the 580 driver. 595 dropped support for older cards (maxwell, pasqual, etc).
Try running dnf list --installed \*nvidia\* and see what it returns. May be the 595 versions of all packages shown.
If so there are a couple things needed to recover.
sudo dnf remove \*nvidia\* --exclude nvidia-gpu-firmware which removes all the installed nvidia packages but keeps the firmware package which is required for the nouveau driver.
dnf repolist to see what repos you currently have enabled. If that shows the rpmfusion-nonfree and rpmfusion-nonfree-updates repo in the listing then skip step 3 below
install the rpmfusion-nonfree and rpmfusion-free repos. sudo dnf install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
Install the 580xx driver for f44. sudo dnf install akmod-nvidia-580xx xorg-x11-drv-nvidia-580xx-cuda
Wait about 5 minutes then reboot.
If all went well then the nvidia drivers should now load and things should be back to normal.