Linux: Boot to text mode instead of graphical interface
by Ali on Feb.16, 2009, under Linux
So you installed your Linux server with gnome or kde and now want to boot to text mode, mostly to save some resources that are being used by your X server…
Debian:
go to /etc/init.d and execute:
update-rc.d -f gdm remove
for kde:
update-rc.d -f kdm remove
to restore:
update-rc.d -f gdm/kdm defaults
The above command works for pretty much any script you want loaded during boot. Simply copy your script to /etc/init.d or make a symbolic link and execute the command.
CentOS/REHL:
Edit your GRUB
nano /boot/grub/menu.lst
and add runlevel you need to the boot line. Text mode is usually runlevel 3:
kernel /vmlinuz-2.6.9-78.0.1.EL ro root=LABEL=/ rhgb quiet 3
SuSE:
Edit grub and add level 3 to your boot line:
kernel /vmlinuz-2.6.27.21-0.1-pae root=/dev/sda5 resume=/dev/sda9 splash=silent crashkernel=128M-:64M@16M showopts vga=0x317 level 3
You can always run to graphical mode by using the command:
startx
Other distros: google it 😛
To the extent possible under law, the creator has waived all copyright and related or neighboring rights to this work.
4 Comments for this entry
1 Trackback or Pingback for this entry
-
CPU-Auslastung mit und ohne X | alexthinking.com
January 4th, 2013 on 11:04 PM[…] Vielleicht bin ich damit ja alleine, aber manchmal packt mich einfach das Verlangen unter Linux (beinahe) ausschließlich mit der Konsole zu arbeiten. Was braucht man dann natürlich nicht? Klar, die grafische Oberfläche. Deswegen hab ich die auf meinem Laptop unter Debian direkt spaßeshalber vollständig deaktiviert. […]
March 10th, 2009 on 12:39 AM
now in my rss reader)))
March 10th, 2009 on 7:08 AM
Hello, I can’t understand how to add your blog in my rss reader
March 13th, 2009 on 8:59 PM
Click on the RSS icon on top right and select your RSS/Atom reader from the drop down menu.
April 27th, 2009 on 11:14 AM
works great. thanks.