How Setup And Install A Vnc Server With Gnome On R
sudo dnf update -y
sudo dnf group install -y "Server with GUI"
sudo systemctl set-default graphical
sudo reboot
sudo dnf install -y tigervnc-server
sudo cp /usr/lib/systemd/system/vncserver@.service /etc/systemd/system/vncserver@:3.service
sudo tee -a /etc/tigervnc/vncserver.users <<EOF
:3=howard
EOF
vncpasswd
- Select
ntoWould you like to enter a view-only password?echo gnome-session > ~/.sessionmkdir ~/.vnctee -a ~/.vnc/config <<EOF session=gnome securitytypes=vncauth,tlsvnc geometry=1920x1080 EOFsudo systemctl enable --now vncserver@:3.servicesudo firewall-cmd --permanent --add-service=vnc-server sudo firewall-cmd --permanent --add-port=5902/tcpsudo firewall-cmd --reload