Skip to content
Snippets Groups Projects
Commit 3643d8f6 authored by Vojtěch Mrázek's avatar Vojtěch Mrázek
Browse files

Updated VNC connection (ticket #40426)

Updated parameter for VTune (ticket #40401)
parent 70ee65ad
No related branches found
No related tags found
1 merge request!413Updated VNC connection
......@@ -227,25 +227,44 @@ Open a Terminal (_Applications -> System Tools -> Terminal_). Run all the follow
Allow incoming X11 graphics from the compute nodes at the login node:
Get an interactive session on a compute node (for more detailed info [look here][4]). Forward X11 system using `X` option:
```console
$ qsub -I -X -A PROJECT_ID -q qprod -l select=1:ncpus=36
```
Test that the DISPLAY redirection into your VNC session works, by running an X11 application (e.g. XTerm, Intel Advisor, etc.) on the assigned compute node:
```console
$ xhost +
$ xterm
```
Get an interactive session on a compute node (for more detailed info [look here][4]). Use the `-v DISPLAY` option to propagate the DISPLAY on the compute node. In this example, we want a complete node (16 cores in this example) from the production queue:
The example described above:
![](../../img/node_gui_xwindow.png)
### GUI Over VNC and SSH
For the [better performance][1] an ssh connection can be used.
Open two Terminals (_Applications -> System Tools -> Terminal_) as described before.
Get an interactive session on a compute node (for more detailed info [look here][4]). Forward X11 system using `X` option:
```console
$ qsub -I -v DISPLAY=$(uname -n):$(echo $DISPLAY | cut -d ':' -f 2) -A PROJECT_ID -q qprod -l select=1:ncpus=16
$ qsub -I -X -A PROJECT_ID -q qprod -l select=1:ncpus=36
```
Test that the DISPLAY redirection into your VNC session works, by running an X11 application (e.g. XTerm) on the assigned compute node:
In the second terminal connect to the assigned node and run the X11 application
```console
$ ssh -X node_name.barbora.it4i.cz
$ xterm
```
The example described above:
![](../../img/node_gui_sshx.png)
![](../../../img/gnome-compute-nodes-over-vnc.png)
[b]: http://www.tightvnc.com
[c]: http://sourceforge.net/apps/mediawiki/tigervnc/index.php?title=Main_Page
......
docs.it4i/img/node_gui_sshx.png

86.8 KiB

docs.it4i/img/node_gui_xwindow.png

54.1 KiB

......@@ -25,6 +25,8 @@ To profile an application with VTune Profiler, special kernel modules need to be
$ qsub -q qexp -A OPEN-0-0 -I -l select=1,vtune=2020_update3
```
For VTune/2022.2.0-intel-2021b use `vtune=2022_2_0` parameter.
After that, you can verify that the modules `sep*`, `pax`, and `vtsspp` are present in the kernel:
```console
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment