PDA

View Full Version : RedHat X-Server shutdown problems...


andipandi
05-08-03, 07:29 AM
Hi

I am an absolute newbie to Linux.

Problem: The installer tells me, that I have to shutdown the X-Server first if I wanna install the NVidia Driver.
If I do with Ctrl+Alt+Backspace, my startup screen appears.
If I use another console, login in Textmode and type "killall X", something happens, but the startscreen appears again, and this startscreen uses X-Server.

So how can I shutdown the X-Server and work in Textmode to install the driver.

Thanxs for help!!

CRS

ixp1200
05-08-03, 09:32 AM
You need to switch to runlevel 3 (a non-graphical-login runlevel) so init won't keep respawning gdm (or xdm or whatever Redhat uses for a graphical login these days)...

Switch to a text console (CTRL-ATL-F1), log in as root, and type 'telinit 3'. You'll probably see it shut down a couple of services, and your graphical login will go away. You should be set to install the driver or whatever else you want to do. To go back to runlevel 5, type 'telinit 5'.

In case you're curious about runlevels and init, take a look at /etc/inittab, or the manpages for init and inittab.

Good Luck!

--mgm