noVNC
- install noVNC - the open source VNC client
wget -O $HOME/suda-git/noVNCv1.3.0.zip https://github.com/novnc/noVNC/archive/refs/tags/v1.3.0.zip
- unzip the archive to the suda-git directory
unzip -q $HOME/suda-git/noVNCv1.3.0.zip -d $HOME/suda-git/
- set up SUDA web interface by copying web files to the newly installed noVNC directory
cp -r $HOME/suda-git/art/web/* $HOME/suda-git/noVNC-1.3.0/
- copy systemd service files to /etc/systemd/system/ - this will enable starting novnc and x11vnc
sudo cp $HOME/suda-git/config/*.service /etc/systemd/system/
sudo systemctl enable novnc.service
sudo systemctl enable x11vnc.service
sudo systemctl start novnc.service
sudo systemctl start x11vnc.service