Skip to content
Snippets Groups Projects
Commit 6cbcef12 authored by Jan Frenzel's avatar Jan Frenzel
Browse files

Simplified some ssh commands in visualization.md.

parent f1ba2573
No related branches found
No related tags found
2 merge requests!478Automated merge from preview to main,!466Resolve "Use simplified ssh commands"
...@@ -183,9 +183,14 @@ The SSH tunnel has to be created from the user's localhost. The following exampl ...@@ -183,9 +183,14 @@ The SSH tunnel has to be created from the user's localhost. The following exampl
forward SSH tunnel to localhost on port 22222 (or what ever port is preferred): forward SSH tunnel to localhost on port 22222 (or what ever port is preferred):
```console ```console
marie@local$ ssh -L 22222:172.24.140.229:11111 <zihlogin>@taurus.hrsk.tu-dresden.de marie@local$ ssh -L 22222:172.24.140.229:11111 taurus
``` ```
!!! important "SSH command"
The previous SSH command requires that you have already set up your [SSH configuration
](../access/ssh_login.md#configuring-default-parameters-for-ssh).
The final step is to start ParaView locally on your own machine and add the connection The final step is to start ParaView locally on your own machine and add the connection
- File -> Connect... - File -> Connect...
...@@ -234,10 +239,13 @@ it into thinking your provided GL rendering version is higher than what it actua ...@@ -234,10 +239,13 @@ it into thinking your provided GL rendering version is higher than what it actua
??? example ??? example
The following lines requires that you have already set up your [SSH configuration
](../access/ssh_login.md#configuring-default-parameters-for-ssh).
```console ```console
# 1st, connect to ZIH systems using X forwarding (-X). # 1st, connect to ZIH systems using X forwarding (-X).
# It is a good idea to also enable compression for such connections (-C): # It is a good idea to also enable compression for such connections (-C):
marie@local$ ssh -XC taurus.hrsk.tu-dresden.de marie@local$ ssh -XC taurus
# 2nd, load the ParaView module and override the GL version (if necessary): # 2nd, load the ParaView module and override the GL version (if necessary):
marie@login$ module Paraview/5.7.0 marie@login$ module Paraview/5.7.0
......
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