Skip to main content

noVNC and SUDA web interface

- install noVNC - the open source VNC client


wget -O $HOME/suda-git/noVNCv1.4.0.zip https://github.com/novnc/noVNC/archive/refs/tags/v1.4.0.zip


- unzip the archive to the suda-git directory

unzip -q $HOME/suda-git/noVNCv1.4.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.4.0/


- copy systemd service files to /etc/systemd/system/ - this will enable starting novnc and x11vnc on startup


sudo cp $HOME/suda-git/config/*.service /etc/systemd/system/


- enable service files


sudo systemctl enable novnc-local.service

sudo systemctl enable x11vnc.service

sudo systemctl start novnc-local.service

sudo systemctl start x11vnc.service