Results 1 to 3 of 3
HI all
I had typed the command startx is gives me the error Fatal server error :server already running
when I type the command ps -a | grep x I ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 07-27-2006 #1Just Joined!
- Join Date
- Mar 2006
- Posts
- 3
problems in starting the x -server
HI all
I had typed the command startx is gives me the error Fatal server error :server already running
when I type the command ps -a | grep x I get no message.Please tell me how to start the x server
- 07-27-2006 #2
Can't help I'm afraid, but you will probably find it easier to follow the answers you are given if you confine your questions to one thread per problem.
Posting multiple threads with the same question won't get you an answer any quicker.
http://www.linuxforums.org/forum/red...-x-server.html
- 07-27-2006 #3
First off, grep is case-sensitive. The command should be one of the following:
The former correctly searches for 'X', while the latter does a case-insensitive search.Code:ps aux | grep 'X' ps aux | grep -i 'x'
Having said that, is the X server running? Press Ctrl-Alt-F7, which is where X usually runs.


Reply With Quote
