A short command on how to change Ubuntu so that it will only start in text mode, no X11 (graphical) mode. The following removes the graphical greeter from the runlevels :
sudo update-rc.d -f gdm remove
A short command on how to change Ubuntu so that it will only start in text mode, no X11 (graphical) mode. The following removes the graphical greeter from the runlevels :
cool thanks
Hello
and for LiveCD? Sorry, but I have no idea
Thanks for your information, i have read it, very goodï¼
thx for your info. it’s work!
Unfortunately, This command no longer take effect for Ubuntu 11.04. Instead, you could do like below:
sudo vim /etc/default/grub
change the following lines:
GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash”
GRUB_CMDLINE_LINUX_DEFAULT=”"
to:
# GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash”
GRUB_CMDLINE_LINUX_DEFAULT=”text”
user@ubuntu:~#sudo update-grub
user@ubuntu:~#sudo reboot
enjoy text mode only
BTW, in text mode, you can invoke “startx” command to enter graphic mode.