Skip to content
Snippets Groups Projects
Commit 9c8d2606 authored by Martin Schroschk's avatar Martin Schroschk
Browse files

Resolve issue

parent 57b29c8d
No related branches found
No related tags found
3 merge requests!392Merge preview into contrib guide for browser users,!366Merge preview into main,!361Resolve issue
......@@ -68,13 +68,33 @@ have to be generated following these rules:
The generated public key is usually saved at `~/.ssh/id_ed25519` at your local system. To allow for
password-less SSH connection to ZIH systems, it has to be added to the file `.ssh/authorized_keys` within
your home directory `/home/<zih-login>/` at ZIH systems.
your home directory `/home/<zih-login>/` at ZIH systems. The public key can be transferred using
tools like `scp`, `rsync`, or `ssh-copy-id`. Please refer to the corresponding man page. After the
public key is in place, you can connect to ZIH systems via
```console
marie@local$ ssh -i id-ed25519 <zih-login>@taurus.hrsk.tu-dresden.de
Enter passphrase for key 'id-ed25519':
```
### SSH Config
You can make the SSH login process more comfortable by creating an entry in your SSH config file. For
that, you just add en entry like this
```bash
Host <any_name>
HostName taurus.hrsk.tu-dresden.de
User <zih-login>
IdentityFile <path_to_public_key>
```
to your `~/.ssh/config` and afterwards the ssh connection call is shortened to
```console
marie@local$ ssh <any_name>
```
## Connecting from Windows
We recommend one of the following applications:
......
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