2021-11-01

Suffering VNC in Fedora 34 and up

Four scripts to setup and launch vnc in Fedora 34 Linux and up (may become stale information).  I favor KDE, so I am not a GNOME worshiper. 

$ cat vnc1setup
systemctl enable --now vncserver@:1.service
echo :1=root >>  /etc/tigervnc/vncserver.users
echo session=plasmax11 >> /root/.vnc/config
echo securitytypes=vncauth,tlsvnc >> /root/.vnc/config
echo geometry=1000x850 >> /root/.vnc/config


$ cat vnc1start
systemctl start vncserver@:1.service

$ cat vnc1stop
systemctl stop vncserver@:1.service


$ cat vnc1restart
systemctl restart vncserver@:1.service

No comments:

Post a Comment

Linux NetworkManager command line configuration

 Configure Network Settings Using Network Manager in Linux Last updated: March 25, 2025 Written by:baeldung Network ConfigurationNetworkMana...