Table of Contents

Prev  
 Next
, , , , , , , ,

VNC Server

This section is a bit of a mess and needs a clean up…..

I want a simple server GUI VNC system. Sadly most the instructions on the net do not seem to meet my needs.

After setting up a basic Debian server I do the following.

Some additional confusing notes:

I had a lot of problems getting tigervncserver to work with xfce. The site TigerVNC Xfce startup failing on new Debian 12 bookworm install. "Another session manager is already running" This recommended the following ~.vnc/xstartup configuration that simply worked, it took a long time to find a solution:

#!/bin/bash
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
vncconfig -iconic &
dbus-launch --exit-with-session xfce4-session

The parameter vncconfig -iconic is for X clipboard support.

My ~./vnc/config:

The localhost=false parameter means that you do not need ssh to access. As this is on my LAN only I do not see the need for SSH. (If i need WAN access I can Wireguard VPN into my local LAN.)

When I finally got tigervncserver with xfce on Debian 12 the XFCE session came up with an annoying authorisation request that I found a resolution at How to fix “Authentication is required to create a color profile/managed device”

Newer references

Old, tl;dr;

Some preferred graphical programs:

Home Server Index

Prev  
 Next