Changes between Version 3 and Version 4 of vnc3d/details


Ignore:
Timestamp:
05/11/16 17:17:59 (8 years ago)
Author:
Jens Henrik Goebbert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • vnc3d/details

    v3 v4  
    2424(attention: __without__ VirtualGL software, rendering using the CPU instead of the GPU must be used (if available), which is much slower).
    2525
     26
     27==== e.g. ParaView
     28Open a terminal in your VNC session and:
     29{{{ #!sh
     30# What versions of ParaView are available?
     31module spider ParaView
     32
     33# load ParaView dependency
     34module load intel-para
     35
     36# load ParaView
     37module load ParaView
     38}}}
     39
     40{{{ #!sh
     41# start ParaView Server and GUI using VirtualGL for hardware acceleration
     42srun -n 24 vglrun pvserver
     43vglrun ParaView
     44}}}
     45Connect to the pvservers on localhost:11111
     46
     47==== e.g. !VisIt
     48Open a terminal in your VNC session and:
     49{{{ #!sh
     50# change Stage
     51module use /usr/local/software/jureca/OtherStages
     52module load Stages/.Stage1
     53
     54# What versions of VisIt are available?
     55module spider VisIt
     56
     57# load VisIt dependency
     58module load intel-para/2015.07
     59
     60# load VisIt
     61module load VisIt/2.10.0
     62}}}
     63
     64{{{ #!sh
     65# start VisIt using VirtualGL for hardware acceleration
     66vglrun visit -hw-accel
     67}}}
     68
     69
     70== Hints
     71
     72* press F8 to enter VNC-Viewer Options (example: toggle to full screen)
     73
     74* sync clipboard between client and server
     75{{{ #!ShellExample
     76    vncconfig -poll=100
     77}}}
     78
     79* To reset your VNC-password delete ~/.vnc/passwd
     80
    2681----
    2782any feedback welcomed - [mailto:h.zilken@fz.juelich.de], [mailto:j.goebbert@fz-juelich.de]