Solved How to set blank time

It usually means that you have tried to run a Xorg command from a shell which was not started from Xorg (like a console terminal). Xorg sets the DISPLAY variable, like this
Code:
tingo@kg-core2:~ $ echo $DISPLAY
:0.0
If I do the same from a root shell
Code:
root@kg-core2:~ # echo $DISPLAY
DISPLAY: Undefined variable.
In your specific case, it means that it tries to open display ":0", but it doesn't exist on that machine. Try to check the DISPLAY variable and see what it is set to. Note: ":0" and ":0.0" are different displays.
 
Back
Top