Changes
Page history
Update Documentation
authored
Jul 11, 2025
by
Peter Heger
Show whitespace changes
Inline
Side-by-side
Documentation.md
View page @
8754c3fa
...
@@ -78,13 +78,13 @@ ssh-add -l # list managed identities (should show at least on
...
@@ -78,13 +78,13 @@ ssh-add -l # list managed identities (should show at least on
```
```
|
`ssh-keygen -t ed25519 -C "<YOUR NAME>"`
|
#
generate private+public key pair |
|
`ssh-keygen -t ed25519 -C "<YOUR NAME>"`
| generate private+public key pair |
|
`cat ~/.ssh/id_ed25519.pub`
|
#
copy-paste and send to hpc-mgr@uni-koeln.de |
|
`cat ~/.ssh/id_ed25519.pub`
| copy-paste and send to hpc-mgr@uni-koeln.de |
#
Procedure for circumventing passphrase at ssh-login (optional):
Procedure for circumventing passphrase at ssh-login (optional):
|
`eval "$(ssh-agent -s)"`
|
#
set ssh-agent's environment variables |
|
`eval "$(ssh-agent -s)"`
| set ssh-agent's environment variables |
|
`ssh-add ~/.ssh/id_ed25519`
|
#
provide private-key identity to agent |
|
`ssh-add ~/.ssh/id_ed25519`
| provide private-key identity to agent |
|
`ssh-add -l`
|
#
list managed identities (should show at least one entry) |
|
`ssh-add -l`
| list managed identities (should show at least one entry) |
#
Done, or keep reading below for more details
Done, or keep reading below for more details
.
...
...
...
...