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

Script to see network interface connection speed

cat network-speed #!/usr/bin/bash # ethtool enp2s0 | grep Speed ethtool $1 | grep Speed # mii-tool -v enp2s0 mii-tool -v $1   network-speed ...