> I understand the config files description - they do not give file locations > - I tried bunch of places in /etc - systemctl start failed - I am not sure > if the issue was not found configs or missing > /etc/systemd/system/vncserver.service file. > > Do you have vncserver.service file - what executable is it supposed to > start, and dependencies?
The service file should be `/usr/lib/systemd/system/[email protected]`; unit files from packages are in `/usr/lib/systemd/{system,user}/` (or `/lib/systemd/..` on Debian). The @ indicates it is a template unit [1]. You can also use `systemctl cat vncserver@` to view the entire service as systemd sees it, and it will include the path in a comment. Here's the service file in upstream source [2]: [1] https://fedoramagazine.org/systemd-template-unit-files/ [2] https://github.com/TigerVNC/tigervnc/blob/master/unix/vncserver/vncserver%40.service.in
