Skip to content

Instantly share code, notes, and snippets.

@lixit
Created January 24, 2022 06:50
Show Gist options
  • Save lixit/818222333151dc35e84c7d7763ad5831 to your computer and use it in GitHub Desktop.
Save lixit/818222333151dc35e84c7d7763ad5831 to your computer and use it in GitHub Desktop.
config VNC on archlinux xfce4
sudo pacman -Syu xfce4 xfce4-goodies

reboot disable firewall

ufw disable

install tigervnc

sudo pacman -S tigervnc

config tigervnc

vncpasswd

vim /etc/tigervnc/vncserver.users

:1=root

vim ~/.vnc/config

session=xfce
geometry=1920x1080
alwaysshared

start and view status

systemctl start vncserver@:1.service
systemctl status vncserver@:1.service

check listen on port 5901

ss -tulpn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment