vote up 5 vote down star
1

I have a Ubuntu (Hardy Heron) sever that currenlty boots up and runs gnome. I would like to make it so that when it boots it only goes into text-mode (e.g. the x server never starts)

I tried:

sudo update-rc.d -f gdm remove

without any avail...how can I do this?

flag

54% accept rate
2  
I have concerns about this question, in that the title ask an entirely different question to the real question in the body of the question! (Both are answered below). This isn't good for anyone searching later. Please update the title. – Mark Baker Oct 14 '08 at 8:42

8 Answers

vote up 5 vote down check

Messing with the runlevel, through /etc/inittab or /etc/event.d (replacement for inittab) or the kernel boot options, won't help. The default runlevel on Ubuntu is 2 (check with the runlevel command), and there is no runlevel which is configured to be multi-user and text mode by default.

Actually, I think your solution

sudo update-rc.d -f gdm remove

should have worked (and it works for me on 8.04)... Is there still a script named something like S30gdm in your /etc/rc2.d folder?

link|flag
it did work, I was an idiot and must have mistyped something...thanks. – mmattax Sep 17 '08 at 0:46
vote up 1 vote down

Using sysv-rc-conf and telling gdm not to load works here with Jaunty Jackalope.

link|flag
vote up 1 vote down

On Ubuntu 8.04, I used sysv-rc-conf to remove gdm from all runlevels. Upon restarting the system, X did not start. So, you should do the same!

link|flag
vote up 0 vote down

I am with @dF, update-rc.d should have worked. Do you have another login manager installed? Are you sure it is gdm that you are using? In /etc/init.d/ are all the start up scripts, do you see xdm or kdm in there?

link|flag
vote up 5 vote down

You need to do this:

mv /etc/rc2.d/S30gdm /etc/rc2.d/K70gdm

See, /etc/rc2.d/README. There's README files in all the /etc/rc?.d directories, as well as /etc/init.d.

Edit: The update-rc.d tool is not for editing these links. From the update-rc.d man page:

Please note that this program was designed for use in package maintainer scripts and, accordingly, has only the very limited functionality required by such scripts. System administrators are not encouraged to use update-rc.d to manage runlevels. They should edit the links directly or use runlevel editors such as sysv-rc-conf and bum instead.

link|flag
vote up -1 vote down

You should be able to set it as a command line argument in your bootloader. If you're using grub, you'd change your grub.conf file (which should exist somewhere like /boot/grub/grub.conf).

If your old file looked like this:

...
root (hd1,0)
kernel /linux-2.6.23-r8 root=/dev/md2
...

Then you'd want to change it to look like this:

...
root(hd1,0)
kernel /linux-2.6.23-r8 root=/dev/md2 3
...

That tells the kernel you want it to enter runlevel 3 instead of 5.

link|flag
This wont work currently as runlevels 2-5 are setup exactly the same. – Mez Sep 22 '08 at 6:17
vote up 1 vote down

I know this is slightly unrelated, but have you tried the server edition of Ubuntu? I believe it installs without X11 by default, and is a far cleaner base for a server. This also has the added benefit of making it boot really really fast!

link|flag
yes, I have actually used the server version in the past, but i am converting another computer from dev computer to server, and I have apache installed with several mods that I don't want to recompile ;) – mmattax Sep 16 '08 at 23:52
Yep, the old if it works, don't touch it rule! :) – Patrick_O Sep 17 '08 at 1:30
vote up 1 vote down

I've never dwelt into the internal configurations of initd for Ubuntu in particular, but for other linux flavours it's usually in /etc/inittab.

You'll find there, very up the top, a line that defines your default run-level. Hopefully you'll have some comments to help you decide which one it is. I'll bet it's 3.

link|flag
ubuntu and debian don't use inittab – mgb Oct 2 '08 at 18:03
Yes they do. What they don't do is use the runlevel to determine what software to use. All of 2-5 are configured to be exactly the same by default, so that you can use them yourself if you want. – Mark Baker Oct 13 '08 at 15:21
i.e. this answer is an absolutely correct answer to the question in the title. It just won't help the original poster get rid of X. – Mark Baker Oct 13 '08 at 15:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.