# Note: this setup is the quick and dirty method for lab environments
# Secured environments must follow different methods

sudo apt-get update # update existing system packages prior to an install
sudo apt-get install lightdm xfce4 autocutsel xfce4-clipman # include prerequisites
sudo apt-get install x11vnc -y # add this thing

sudo nano /lib/systemd/system/x11vnc.service

[Unit]
Description=x11vnc service
After=display-manager.service network.target syslog.target

[Service]
Type=simple
ExecStart=/usr/bin/x11vnc -forever -display :0 -auth guess -passwd password
ExecStop=/usr/bin/killall x11vnc
Restart=on-failure

[Install]
WantedBy=multi-user.target

sudo systemctl daemon-reload
sudo systemctl enable x11vnc.service
sudo systemctl start x11vnc.service
sudo systemctl status x11vnc.service

# Screen 0 is the default display, and it must be login by a user for instantiate
# Hence, auto login should be enabled for this to work