Ubuntu – Why does switching to the tty give me a blank screen

command linevirtual-console

After booting to the GUI in 12.04, I attempt to move to the virtual terminal (or shell, or tty) via CtrlAltF1 (F1 through F6), and the screen remains blank. I have tried all 6 tty instances and the results are the same. CtrlaltF7 brings me back to the GUI without a problem. Any thoughts?

Best Answer

This is usually caused because the graphical text-mode resolution set at boot up is not compatible with your video card. The solution is to switch to true text-mode by configuring Grub appropriately:

  1. Open the terminal with Ctrl+Alt+T
  2. Paste the below, and enter your password when asked:

    sudo sed -i -e 's/#GRUB_TERMINAL/GRUB_TERMINAL/g' /etc/default/grub
    
  3. Then type sudo update-grub

  4. Reboot and the virtual terminals should now work.