I don't know what's going on, sorry.
You may find out something by looking at the shutdown messages. You can see some of them using, in a konsole,
If you're using the default pager you can press G to go to the end, then page backwards. I wrote "some of them" because the messages stop when the journal stops. There's hundreds of entries, but something going wrong may be coloured yellow or red.
Another approach is to edit /etc/default/grub and remove the words "quiet splash" where they appear:
becomes
then run
The next boot will show the details of the system starting, then the details of the system shutting down. Very nerdy, but I have, not often, identified shutdown problems by looking at these.
Another thing... you've got the removable drive in /etc/fstab. This can cause problems, such as delaying startup, if the drive is not plugged in. There at least these ways to avoid problems:
You may find out something by looking at the shutdown messages. You can see some of them using, in a konsole,
Code:
journalctl -b-1
Another approach is to edit /etc/default/grub and remove the words "quiet splash" where they appear:
Code:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
Code:
GRUB_CMDLINE_LINUX_DEFAULT=""
Code:
sudo update-grub
Another thing... you've got the removable drive in /etc/fstab. This can cause problems, such as delaying startup, if the drive is not plugged in. There at least these ways to avoid problems:
- I prefer to mount removable drives by clicking on them in dolphin, but if you don't like where they get mounted, under /media somewhere, I suggest leaving them in /etc/fstab and adding "noauto,user" to the options (so that it reads "defaults,noauto,user"). Then, if you click on a drive in dolphin it will mount according to the fstab.
- One can add "nofail" to the options.
- Don't use /etc/fstab, rather use system settings, removable storage, removable devices.
Comment