Results 1 to 2 of 2
I am having problems to start the x-server.when i type the command startx i get the message Fatal server error:server already running.when i type the command ps -a | grep ...
- 07-27-2006 #1Just Joined!
- Join Date
- Mar 2006
- Posts
- 3
x-server
I am having problems to start the x-server.when i type the command startx i get the message Fatal server error:server already running.when i type the command ps -a | grep x i dont get any message.please help i am a newbbie
- 07-27-2006 #2Linux Guru
- Join Date
- Nov 2004
- Posts
- 6,110
Try
This give more information in ps, and the 'i' switch in grep makes it case insensitive. You can then kill x by getting the PID from the results, and runningCode:ps aux | grep -i x
Code:killall <pid of X>


Reply With Quote