What I've also learned is that whatever Raspi-Config says, you can't enable VNC on boot without TightVNC. RealVNC won't work.
On to the next stage in my project!

Code: Select all
[Install]
WantedBy=multi-user.target
[Unit]
Description=tightvncserver target
Requires=multi-user.target
After=multi-user.target
AllowIsolate=yes
Code: Select all
[Unit]
Description=TightVNCServer :9
PartOf=tightvncserver.target
[Service]
Type=forking
User=pi
PIDFile=/home/pi/.vnc/%H:9.pid
PAMName=login
ExecStartPre=-/usr/bin/vncserver -kill :2 > /dev/null 2>&1
ExecStart=/usr/bin/tightvncserver :9 -geometry 1280x790 -depth 16
ExecStop=/usr/bin/vncserver -kill :9
Restart=on-failure
[Install]
WantedBy=tightvncserver.target
Code: Select all
sudo systemctl enable *****
Code: Select all
sudo systemctl start/stop/restart tightvncserver.target
If connecting at varying resolutions is your main concern, you may want to try XRDP.notorious.dds wrote: ↑Sat Oct 26, 2019 4:43 pmI like to have multiple VNC displays running at any giving time so that I can connect at varying resolutions.