Note that this is Kubuntu (KDE Ubuntu)
I've been having a problem for a while where if I turn on the computer, it just takes me to a black screen. It sticks there with no output and no hint of what's going on except that the Caps Lock indicator light on my keyboard flashes on and off (weird, right?)
If I then turn off the computer (by holding down the power button for a few seconds), and turn it back on, I get a boot menu where I can choose 'Advanced options for Ubuntu', and that lists different versions, recovery modes, some of which work just fine.
That's what I've bee doing for the two weeks or so I've had this problem, and it worked until just now. The alternative options only booted me into the command line. I was able to fix this with this solution, so now I'm typing this from my desktop.
I'm reluctant to turn off the computer in case it happens again, and I'd like to just tear out the root of the problem.
/etc/default/grub
with a text editor as root and changeGRUB_CMDLINE_LINUX_DEFAULT="splash quiet"
toGRUB_CMDLINE_LINUX_DEFAULT="nosplash debug --verbose"
. That way you can see exactly what's causing the panic during boot. Then run in terminalsudo update-grub
and shut it off. When you turn it back on you should see messages about everything the kernel is doing. See what errors you get just before the crash. – darksky Mar 22 '17 at 01:28