mirror of
https://github.com/cheat/cheat.git
synced 2024-11-16 17:08:29 +01:00
8dda6a9241
Created cheatsheets package to store the default sheets.
11 lines
250 B
Text
11 lines
250 B
Text
To generate an SSH key:
|
|
ssh-keygen -t rsa
|
|
|
|
To generate a 4096-bit SSH key:
|
|
ssh-keygen -t rsa -b 4096
|
|
|
|
To copy a key to a remote host:
|
|
ssh-copy-id username@host
|
|
|
|
To copy a key to a remote host on a non-standard port:
|
|
ssh-copy-id username@host -p 2222
|