opensuse leap15.1 vncserver -blank screen problem solved.
When i start visit leap15.1 from win10 with vncviewer, it always gives black screen.
the problem is solved by modify "xstarup" file in ".vnc" directory.
if [ -x "$client" ]; then
# exec "$client"
dbus-launch --exit-with-session "$client"
fi
if [ -f "$client" ]; then
# exec sh "$client"
dbus-launch --exit-with-session sh "$client"
fi
the problem is solved by modify "xstarup" file in ".vnc" directory.
if [ -x "$client" ]; then
# exec "$client"
dbus-launch --exit-with-session "$client"
fi
if [ -f "$client" ]; then
# exec sh "$client"
dbus-launch --exit-with-session sh "$client"
fi
Then, it works smoothly.
The problem can also be solved by start the nvcserver with root.
Comments
Post a Comment