Error loop on reboot - Printable Version +- Linux Lite Forums (https://www.linuxliteos.com/forums) +-- Forum: Hardware - Support (https://www.linuxliteos.com/forums/forumdisplay.php?fid=6) +--- Forum: Start up and Shutdown (https://www.linuxliteos.com/forums/forumdisplay.php?fid=27) +--- Thread: Error loop on reboot (/showthread.php?tid=5681) |
Error loop on reboot - MS - 10-15-2018 Oftentimes when issued manually to reboot, the system would close up all the processes but somehow fail to proceed. When given input, the terminal would show up, with the last line telling the system is initiating reboot, but further input returns the original black screen, which we had escaped. Further input rolls back to the same terminal sequence, appearing to load again each time anew. Re: Error loop on reboot - Feainnewedd - 10-21-2018 Same problem. I think I'm rolling back to 3.8. Re: Error loop on reboot - Valtam - 10-21-2018 We'd need to know your hardware profile, boot up logs etc. We can't do anything without this info sorry. Moved to Start up and Shutdown section. Re: Error loop on reboot - MS - 10-23-2018 Sure deal, tell what you want to know and how to get the data. Re: Error loop on reboot - kpanic - 10-23-2018 (10-15-2018, 05:16 PM)MS link Wrote:Oftentimes when issued manually to reboot, the system would close up all the processes but somehow fail to proceed. When given input, the terminal would show up, with the last line telling the system is initiating reboot, but further input returns the original black screen, which we had escaped. Further input rolls back to the same terminal sequence, appearing to load again each time anew. If you are trying to shutdown, reboot or startup and still find out just a black screen, try this: Press CTRL+ALT+F2 You should get a login prompt. Login and type 'sudo su' Then command: Code: mount | grep /dev/sd If it gives some drives still mounted, then try to unmount them and if it fails, remount them read-only by commanding something like: 'sync; mount -o remount,ro /dev/sdX' where X is the partition you are trying to unmount. So, first try to unmount the unmounted partitions, if some or all of them fail, then try to remount them read-only, like said above. Let's say it succeeded, then just command: Code: sync; init 0 But, if it did not succeed, then try: Code: sync; mount -o remount,rw / ; There are certain race-type bugs in Ubuntu systemd services which cause these kinds of problems. But, let's fix them, right? Re: Error loop on reboot - kpanic - 10-23-2018 Actually bug in the order, in which system tries to close processes and unmount directories. When done in inconsistent order, the system shutdown process may hung up, waiting for another process to free the resource it is trying to access Re: Error loop on reboot - MS - 10-24-2018 (10-23-2018, 08:57 PM)kpanic link Wrote:Actually bug in the order, in which system tries to close processes and unmount directories.So you want that information still or not? |