I am running ubuntu 20.04 on an old HP desktop. it works really well except when I shut down (sudo poweroff), it is hung displaying an ubuntu logo. I tried to follow a few related threads but no luck.
I had run other flavors of linux on the same desktop in the past, for example proxmox and it used to shutdown properly.
Am I missing something?
References,
Ubuntu 18.04 stuck at shutdown ubuntu won't shutdown or freezes at splash screen
sudo journalctl -b -1 -xe
to see the end of the log of the previous boot. Readman journalctl
. – waltinator Nov 02 '20 at 14:14sudo shutdown -r now
. When you awaken, login andsudo journalctl -b -1 -e
to show the end of the previous boot's logs. Some ofshutdown
's tasks set a 30 minute timeout, in case they hang, then hang (fail to terminate). In my Ubuntu 16.04, it had to do with encrypted swap. YMMV. – waltinator Nov 04 '20 at 04:50