Fedora 25 Tigervnc displays Black screen

dan sawyer picture dan sawyer · Feb 21, 2017 · Viewed 9.1k times · Source

The system is Fedora 25. The issue is vncviewer is displaying a black screen. By comparison the vnc package list is the same as those in a Fedora 24 system where vnc viewer is displaying correctly.The same client system is used to access the server.

Other threads with this issue have been reviewed and tried, specifically vnc package requirements, $HOME//.vnc/xstartup permissions, and suggestions for the xstartup script.

Below is the xstartup script:

#!/bin/sh
# Uncomment the following two lines for normal desktop:
unset SESSION_MANAGER
exec gnome-session 
# --session=gnome-fallback
# exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic & 
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
startx &

Below is the output from systemctl status vncserver:

vncserver@:2.service - Remote desktop service (VNC)
Loaded: loaded (/etc/systemd/system/vncserver@:2.service; enabled; vendor 
preset: disabled)
Active: active (running) since Fri 2017-01-13 07:05:58 PST; 1h 18min ago
Process: 25119 ExecStop=/usr/bin/vncserver -kill %i (code=exited, 
status=0/SUCCESS)
Process: 25152 ExecStart=/usr/bin/vncserver %i (code=exited, 
status=0/SUCCESS)
Process: 25147 ExecStartPre=/usr/bin/vncserver -kill %i (code=exited, 
status=2)
Main PID: 25161 (Xvnc)
Tasks: 186 (limit: 4915)
CGroup: /system.slice/system-vncserver.slice/vncserver@:2.service
   ├─25161 /usr/bin/Xvnc :2 -auth /home/dan/.Xauthority -desktop server:2 
   (dan) -fp catalogue:/etc/X11/fontpath.d -geometry 1024x
   ├─25168 /usr/bin/vncconfig -nowin
   ├─25170 /usr/libexec/gnome-session-binary
   ├─25177 dbus-launch --autolaunch 98c684d1ace64647a9df44e5b61d8590 --
binary-syntax --close-stderr
   ├─25178 /usr/bin/dbus-daemon --syslog-only --fork --print-pid 5 --
print-address 7 --session
   ├─25182 dbus-launch --exit-with-session /usr/libexec/gnome-session binary
   ├─25183 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-
address 7 --session
   ├─25191 /usr/libexec/at-spi-bus-launcher
   ├─25196 /bin/dbus-daemon --config-file=/usr/share/defaults/at-
spi2/accessibility.conf --nofork --print-address 3
   ├─25199 /usr/libexec/at-spi2-registryd --use-gnome-session
   ├─25203 /usr/libexec/gvfsd
   ├─25222 /usr/bin/gnome-keyring-daemon --start --components=secrets
   ├─25242 /usr/libexec/gnome-settings-daemon
   ├─25252 /usr/bin/pulseaudio --start --log-target=syslog
   ├─25296 /usr/libexec/tracker-extract
   ├─25301 /usr/libexec/tracker-store
   ├─25318 /usr/libexec/tracker-miner-apps
   ├─25320 /usr/libexec/evolution/evolution-alarm-notify
   ├─25324 /usr/libexec/deja-dup/deja-dup-monitor
   ├─25329 /usr/libexec/gsd-printer
   ├─25335 /usr/libexec/imsettings-daemon
   ├─25336 /usr/libexec/tracker-miner-user-guides
   ├─25378 abrt-applet
   ├─25418 /usr/libexec/tracker-miner-fs
   ├─25438 /usr/libexec/gvfs-udisks2-volume-monitor
   ├─25462 /usr/bin/seapplet
   ├─25529 /usr/libexec/gvfs-gphoto2-volume-monitor
   ├─25559 /usr/bin/ibus-daemon -r --xim

There were several threads a few years back. Those have been reviewed and tried. They do not seem applicable to this situation.

Answer

jo elegolo picture jo elegolo · Oct 11, 2017

You can find an answer here: https://www.server-world.info/en/note?os=Fedora_25&p=desktop&f=6 - on my case the replacement at /home/USER/.vnc/xstartup

...
# end line: comment out and add like follows
#exec /etc/X11/xinit/xinitrc
#exec /usr/bin/mate-session
exec /usr/bin/gnome-session

so I used gnome-session instead of mate-session as I am using gnome-desktop. No more blank screen (wait some time until transmitted).