How to: Stop X.Org Server
Q. How do I start or stop X.Org from a command prompt?
A. X.org is open-source implementation of the X11 system. It is an open source X11-based desktop infrastructure. Xorg provides an interface between your hardware and the graphical software you want to run. Besides that, Xorg is also fully network-aware, meaning you are able to run an application on one system while viewing it on a different one.
Start X.Org Server
There are two ways, just type startx:
$ startx
Alternatively, run init script such as /etc/init.d/gdm
# /etc/init.d/gdm start
OR
$ sudo /etc/init.d/gdm start
Ctrl+Alt+Backspace - to stop server
Press Ctrl+Alt+Backspace to immediately kill the server - no questions asked.
Agian, you can use init script to stop session:
# /etc/init.d/gdm stop
OR
$ sudo /etc/init.d/gdm stop
Subscribe to our free e-mail newsletter or RSS feed to get all updates.
You can Email this page to a friend.
Related Linux / UNIX FAQ:
- Ubuntu Linux: How to reconfigure X windows system (X.org server)
- MySQL startup script under BSD/Linux
- Ubuntu Linux: Start / stop / restart OpenSSH / ssh server
- Howto stop or terminate Linux command process with CTRL + C
- FreeBSD start / stop / restart MySQL Server
Discussion on This FAQ
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Please do not use the comment form to ask for help / question. Ask your question on the excellent Linux tech support forum. Thank you very much for stopping by our site!
Tags: command prompt, desktop infrastructure, gdm, graphical software, init script, start x, startx_command, sudo_command, x11 system, xorg ~ Last updated on: November 13, 2007


November 13th, 2007 at 6:10 pm
Another method is to change the runlever…
init 3 - turn off X
init 5 - turn on X