Home VNC setup
Post
Cancel

VNC setup

Install VNC

1
2
3
sudo apt update
sudo reboot
sudo apt install x11vnc

create x11vnc service

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

Copy and paste these in nano while configuring x11vnc.service - note: change the password - then reboot

1
2
3
4
5
6
7
8
9
10
11
12
[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

Save file and run these commands to start service:

1
2
3
4
systemctl daemon-reload
systemctl enable x11vnc.service
systemctl start x11vnc.service
systemctl status x11vnc.service

You can check on the status of this service, like others, using systemctl status x11vnc.service

other information Website: https://bit.ly/2IOJUd8 youtube video: David Bombal

This post is licensed under CC BY 4.0 by the author.