Über SSH auf AI-Lab-Rechner zugreifen: Unterschied zwischen den Versionen
Aus exmediawiki
C.heck (Diskussion | Beiträge) (→==) |
C.heck (Diskussion | Beiträge) |
||
Zeile 20: | Zeile 20: | ||
Logout aus Lab-Rechner | Logout aus Lab-Rechner | ||
$ exit | $ exit | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
=Workflows= | =Workflows= | ||
− | |||
==In AI-Lab-Rechner tunneln== | ==In AI-Lab-Rechner tunneln== | ||
− | |||
===Von Linux zu Linux=== | ===Von Linux zu Linux=== | ||
− | |||
====1. eigene ssh Konfigurationsdatei öffnen & editieren==== | ====1. eigene ssh Konfigurationsdatei öffnen & editieren==== | ||
$ sudo [[vi|vim]] /etc/ssh/ssh_config | $ sudo [[vi|vim]] /etc/ssh/ssh_config | ||
Zeile 58: | Zeile 32: | ||
ForwardX11 yes | ForwardX11 yes | ||
ForwardX11Trusted yes | ForwardX11Trusted yes | ||
− | |||
====2. sich über SSH auf Lab-Rechner einwählen (X-Forwarding)==== | ====2. sich über SSH auf Lab-Rechner einwählen (X-Forwarding)==== | ||
$ ssh -X exmedialab-team@194.95.162.14 | $ ssh -X exmedialab-team@194.95.162.14 | ||
Zeile 78: | Zeile 51: | ||
Last login: Fri Mar 29 12:38:20 2019 from 162.13.2.1 | Last login: Fri Mar 29 12:38:20 2019 from 162.13.2.1 | ||
− | |||
===Von Mac zu Linux=== | ===Von Mac zu Linux=== | ||
====1. xquartz downloaden und installieren==== | ====1. xquartz downloaden und installieren==== | ||
Download-URL: https://www.xquartz.org/ | Download-URL: https://www.xquartz.org/ | ||
− | |||
====2. xquatz starten ''(Finder > Programme > Dienstprogramme > XQuartz)''==== | ====2. xquatz starten ''(Finder > Programme > Dienstprogramme > XQuartz)''==== | ||
ein kleines xterm fenster öffnet sich | ein kleines xterm fenster öffnet sich | ||
− | |||
====3. sich über SSH auf Lab-Rechner einwählen (X-Forwarding)==== | ====3. sich über SSH auf Lab-Rechner einwählen (X-Forwarding)==== | ||
type in X-Term Fenster: | type in X-Term Fenster: | ||
Zeile 106: | Zeile 76: | ||
Last login: Fri Mar 29 12:38:20 2019 from 162.13.2.1 | Last login: Fri Mar 29 12:38:20 2019 from 162.13.2.1 | ||
− | |||
===Von Windows zu Linux=== | ===Von Windows zu Linux=== | ||
====1. Putty downloaden und installieren==== | ====1. Putty downloaden und installieren==== | ||
Download URL: https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html | Download URL: https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html | ||
− | |||
====2. Putty starten==== | ====2. Putty starten==== | ||
====3. Verbindung erstellen (Verbindungsdaten eintragen)==== | ====3. Verbindung erstellen (Verbindungsdaten eintragen)==== | ||
Zeile 118: | Zeile 86: | ||
|[[Datei:Putty3.png|300px]] || [[Datei:Putty4.png|300px]] | |[[Datei:Putty3.png|300px]] || [[Datei:Putty4.png|300px]] | ||
|} | |} | ||
− | |||
====4. mit "Connect Once" einloggen und Passwort eintippen==== | ====4. mit "Connect Once" einloggen und Passwort eintippen==== | ||
Willkommensnachricht (Bsp): | Willkommensnachricht (Bsp): | ||
Zeile 128: | Zeile 95: | ||
Last login: Fri Mar 29 12:38:20 2019 from 162.13.2.1 | Last login: Fri Mar 29 12:38:20 2019 from 162.13.2.1 | ||
− | |||
− | |||
− | |||
==Dateien kopieren zwischen Home-Rechner und Lab-Rechner== | ==Dateien kopieren zwischen Home-Rechner und Lab-Rechner== | ||
− | + | ===einfaches Kopieren=== | |
+ | $ scp ''~/Bsp.jpg exmedialab-team@194.95.162.14:/home/exmedialab-team'' | ||
+ | $ scp ''exmedialab-team@194.95.162.14:/home/exmedialab-team/Bsp.jpg ~/'' | ||
+ | ===Rekursives Kopieren (Ordner+Inhalt)=== | ||
+ | $ scp -r ''~/Ordnername exmedialab-team@194.95.162.14:/home/exmedialab-team'' | ||
+ | $ scp -r ''exmedialab-team@194.95.162.14:/home/exmedialab-team/Ordnername ~/'' | ||
=AI-Lab-Rechner Ausstattung= | =AI-Lab-Rechner Ausstattung= | ||
{| class="wikitable" | {| class="wikitable" |
Version vom 29. März 2019, 18:07 Uhr
Inhaltsverzeichnis
notwendige Kommandos
Login Lab-Rechner
$ ssh username@IP-adress
graphical Login (X Forwarding)
$ ssh -X username@IP-adress
(Change Direction) sich durch den Rechner navigieren
$ cd
(list) aktuellen Verzeichnisinhalt anzeigen
$ ls
Ordner anlegen
$ mkdir foldername
Dateien zwischen eigenem und Lab-Rechner kopieren
$ scp ~/Bsp.jpg username@IP-adress:/home/username $ scp username@IP-adress:/home/username/Bsp.jpg ~/
Rekursives Kopieren (Ordner+Inhalt)
$ scp -r ~/Ordnername username@IP-adress:/home/username $ scp -r username@IP-adress:/home/username/Ordnername ~/
Bildschirmorientierter Editor
$ vim
Logout aus Lab-Rechner
$ exit
Workflows
In AI-Lab-Rechner tunneln
Von Linux zu Linux
1. eigene ssh Konfigurationsdatei öffnen & editieren
$ sudo vim /etc/ssh/ssh_config
die zwei zeilen in der Konfigurationsdatei:
# ForwardX11 no # ForwardX11Trusted no
wie folgt umändern:
ForwardX11 yes ForwardX11Trusted yes
2. sich über SSH auf Lab-Rechner einwählen (X-Forwarding)
$ ssh -X exmedialab-team@194.95.162.14
Output mit yes bestätigen
The authenticity of host '194.95.162.14 (194.95.162.14)' can't be established. ECDSA key fingerprint is SHA256:KwHC3VDTosZC1utqoAm6o7H32HLxd7O2kIylld3PFLY. Are you sure you want to continue connecting (yes/no)? Please type 'yes' or 'no': yes
Passwort eintippen (der Cursor bleibt beim Tippen des Passworts still)
Warning: Permanently added '194.95.162.14' (ECDSA) to the list of known hosts. exmedialab-team@194.95.162.14's password:
Willkommensnachricht (Bsp):
Welcome to Ubuntu 16.04.6 LTS (GNU/Linux 4.4.0-142-generic x86_64) * Documentation: https://help.ubuntu.com * Management: https://landscape.canonical.com * Support: https://ubuntu.com/advantage Last login: Fri Mar 29 12:38:20 2019 from 162.13.2.1
Von Mac zu Linux
1. xquartz downloaden und installieren
Download-URL: https://www.xquartz.org/
2. xquatz starten (Finder > Programme > Dienstprogramme > XQuartz)
ein kleines xterm fenster öffnet sich
3. sich über SSH auf Lab-Rechner einwählen (X-Forwarding)
type in X-Term Fenster:
$ ssh -X exmedialab-team@194.95.162.14
Output mit yes bestätigen
The authenticity of host '194.95.162.14 (194.95.162.14)' can't be established. ECDSA key fingerprint is SHA256:KwHC3VDTosZC1utqoAm6o7H32HLxd7O2kIylld3PFLY. Are you sure you want to continue connecting (yes/no)? Please type 'yes' or 'no': yes
Passwort eintippen (der Cursor bleibt beim Tippen des Passworts still)
Warning: Permanently added '194.95.162.14' (ECDSA) to the list of known hosts. exmedialab-team@194.95.162.14's password:
Willkommensnachricht (Bsp):
Welcome to Ubuntu 16.04.6 LTS (GNU/Linux 4.4.0-142-generic x86_64) * Documentation: https://help.ubuntu.com * Management: https://landscape.canonical.com * Support: https://ubuntu.com/advantage Last login: Fri Mar 29 12:38:20 2019 from 162.13.2.1
Von Windows zu Linux
1. Putty downloaden und installieren
Download URL: https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html
2. Putty starten
3. Verbindung erstellen (Verbindungsdaten eintragen)
4. mit "Connect Once" einloggen und Passwort eintippen
Willkommensnachricht (Bsp):
Welcome to Ubuntu 16.04.6 LTS (GNU/Linux 4.4.0-142-generic x86_64) * Documentation: https://help.ubuntu.com * Management: https://landscape.canonical.com * Support: https://ubuntu.com/advantage Last login: Fri Mar 29 12:38:20 2019 from 162.13.2.1
Dateien kopieren zwischen Home-Rechner und Lab-Rechner
einfaches Kopieren
$ scp ~/Bsp.jpg exmedialab-team@194.95.162.14:/home/exmedialab-team $ scp exmedialab-team@194.95.162.14:/home/exmedialab-team/Bsp.jpg ~/
Rekursives Kopieren (Ordner+Inhalt)
$ scp -r ~/Ordnername exmedialab-team@194.95.162.14:/home/exmedialab-team $ scp -r exmedialab-team@194.95.162.14:/home/exmedialab-team/Ordnername ~/
AI-Lab-Rechner Ausstattung
Dell_Ubuntu | |||||
---|---|---|---|---|---|
Typenbezeichnung: | Dell Precision 7820 Tower | ||||
Betriebssystem: | Ubuntu 16.04 LTS - 64Bit | ||||
Prozessor: | Intel(R) Xeon(R) Gold 6134 CPU @ 3.20GHz 3.19 GHz | ||||
RAM- Speicher: | 32Gb | ||||
Grafikkarte: | NVIDIA Quadro P5000 16Gb | ||||
MAC-Adresse 1: | 54:bf:64:6f:04:ef | ||||
MAC-Adresse 2: | b4:96:91:31:02:78 | ||||
MAC-Adresse 3: | b4:96:91:31:02:7a | ||||
Rechnername: | exmedialab-ubuntu | ||||
Installierte Software: | Gimp, ImageMagick, Scribus, Inkscape, LibreOffice, Veracrypt, Seahorse, Signal, Tor-Browser, Onionshare, KeepassX, GnuPG,
Ffmpeg, Kdenlive, Blender, Handbrake, VLC, Audacity, MPlayer, Atom, Vim, Processing, Pure Data, Arduino, Anaconda, Python3.5, |