I’m on a Lenovo thinkpad and the update downloads just fine, either via software or via terminal. But when I then run sudo dnf system-upgrade reboot or reboot via software, nothing seems to happen. I just get the Lenovo logo and a boot like normal.
Or just dnf system-upgrade log --number=-1 to show logs from last upgrade attempt.
You can have a look at dnf history which is not limited to upgrades only. List the entries and then display details of the one you are interested in by providing its number. Passing the output to less makes it easier to scroll and read.
dnf history --reverse
dnf history info NUMBER | less
And you can also check the journal with something like:
journalctl -S 2024-04-24 -u dnf*
-S = since date so you don’t have to list through the whole history
-u = the unit you are interested in, mind the asterisk at the end
Welp, I swear I’ve tried more than 10 times when I made this post. Saw empty logs so figured I’d try one more time and it worked. As far as I know I didnt change anything, but it works now! Thanks anyways!