Posted On September 10, 2024

How To Install X11VNC on Ubuntu

kimconnect 0 comments
blog.KimConnect.com >> Linux >> How To Install X11VNC on Ubuntu
# 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

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Linux: Disks & Memory Management

Step 1: Discovery of Disks on a System # Using List hardware to gather general…

Crontab Maintenance

vim /home/diskAlert ----  #!/bin/sh df -H | grep -vE '^Filesystem|tmpfs|cdrom' | awk '{ print $5…

Ubuntu 20.04 Initial Setup

Basic Setup: # Set hostname and ip nmtui # remember to deactive/reactive a connection after…