TurboVNC is an implementation of VNC optimized for 3D graphics rendering. Like other VNC software, TurboVNC can be used to create a virtual desktop on a remote machine, which can be useful for visualizing CPU-intensive graphics produced remotely.
The versions currently available at OSC are:
Version | Pitzer | Cardinal | Notes |
---|---|---|---|
2.1.90 | X* | ||
3.1.1 | X |
NOTE:
You can use module spider turbovnc
to view available modules for a given cluster. Feel free to contact OSC Help if you need other versions for your work.
TurboVNC is available for use by all OSC users.
https://www.turbovnc.org, Open source
To load the default version of TurboVNC module, use module load turbovnc
.
To start a VNC server on your current host, use the following command:
vncserver
After starting the VNC server you should see output similar to the following:
New 'X' desktop is hostname:display Starting applications specified in /nfs/nn/yourusername/.vnc/xstartup.turbovnc Log file is /nfs/nn/yourusername/.vnc/hotsname:display.log
Make a note of the hostname and display number ("hostname:display"), because you will need this information later in order to connect to the running VNC server.
To establish a standard unencrypted connection to an already running VNC server, X11 forwarding must first be enabled in your SSH connection. This can usually either be done by changing the preferences or settings in your SSH client software application, or by using the -X or -Y option on your ssh command.
Once you are certain that X11 forwarding is enabled, create your VNC desktop using the vncviewer
command in a new shell.
vncviewer
You will be prompted by a dialogue box asking for the VNC server you wish to connect to. Enter "hostname:display".
You may then be prompted for your HPC password. Once the password has been entered your VNC desktop should appear, where you should see all of your home directory contents.
When you are finished with your work on the VNC desktop, you should make sure to close the desktop and kill the VNC server that was originally started. The VNC server can be killed using the following command in the shell where the VNC server was originally started:
vncserver -kill :[display]
For a full explanation of each of the previous commands, type man vncserver
or man vncviewer
at the command line to view the online manual.
Additional information about TurboVNC can be found at the VirtualGL Project's documentation page.