I want to disable GUI at boot time. I followed these steps:
sudo nano /etc/default/grub
- Find out this line:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
- Change it to:
GRUB_CMDLINE_LINUX_DEFAULT="text"
- Update Grub:
sudo update-grub
- Reboot
but nothing happened! I can access GUI remotely using xrdp. What I'm missing here?
quiet splash
and leave""
. http://askubuntu.com/questions/33416/how-do-i-disable-the-boot-splash-screen-and-only-show-kernel-and-boot-text-inst – desgua May 04 '14 at 21:34