understanding the "export DISPLAY=:0" command
#1
Question 
Often in case there are multiple graphics cards in the system and only one of the cards is detected, executing the "export DISPLAY=:0" command helps. In case of bash, export is the shell built-in which exports the variable DISPLAY:

Code:
root@debian64:~# echo $DISPLAY
:0
root@debian64:~#

As I understand, DISPLAY variable is used by X. However, what does this :0 mean? I mean how does this change the behavior of the X server?


Messages In This Thread
understanding the "export DISPLAY=:0" command - by m4rtin - 01-20-2013, 05:51 AM