12 lines
173 B
Markdown
12 lines
173 B
Markdown
|
# SSH
|
||
|
|
||
|
Create SSH directory & copy config there.
|
||
|
|
||
|
`mkdir -p ~/.ssh/`
|
||
|
|
||
|
`cp config ~/.ssh/`
|
||
|
|
||
|
Generate SSH key(s)
|
||
|
|
||
|
`ssh-keygen -t rsa -b 4096 -C "comment" -f /path/to/ssh/key`
|