Find the answer to your Linux question:
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 ...
  1. #1
    Just 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

  2. #2
    Linux Guru
    Join Date
    Nov 2004
    Posts
    6,110
    Try
    Code:
    ps aux | grep -i x
    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 running
    Code:
    killall <pid of X>

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...