Web Hosting Talk







View Full Version : Stopping X System


edesignway
07-13-2004, 12:37 PM
Good Afternoon,

Does anyone know how to stop X from running and to stop it from loading at boot? I never had this problem until my Co-Located server with Pwebtech was moved to their new facility and it is eating my resources!

Inspector Gadget
07-13-2004, 04:43 PM
what OS?

edesignway
07-13-2004, 04:53 PM
Red Hat 9

S2 Web Design
07-13-2004, 05:40 PM
In your /etc/inittab file, look for the following:

id:5:initdefault:

This needs to be changed to the following:

id:3:initdefault:

That will stop the machine from going into run level 5, which is graphical mode. Runlevel 3 is full multiuser mode without graphical mode.

You can switch to runlevel 3 from the command line with `init 3`.

edesignway
07-13-2004, 05:43 PM
Thank you!