4

Possible Duplicate:
How do I boot to a command line interface instead of a GUI?

I am running Ubuntu 12.10. When my computer boots, I want to log into my computer only using the CLI, not the default GUI given by ubuntu, and use the CLI to choose a window manager after I log in. I am aware of Ctrl+Alt+F*, but that is one more keypress - unless I can default to one of those.

How would I go about disabling the GUI login, and playing with the CLI log in instead?

1 Answers1

1

Modify your file /etc/default/grub with

GRUB_CMDLINE_LINUX_DEFAULT="text"

and do sudo update-grub. The machine will boot in text mode.

To start the graphical interface you do

sudo service lightdm start

Courtesy: https://askubuntu.com/a/52117/11932 and modified for Ubuntu 12.10.

saji89
  • 12,007