This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #---- Create key on client ----# | |
| ssh-keygen -b 2048 -t rsa | |
| #---- Validate creation ----# | |
| ls ~/.ssh | |
| #---- SSH to Pi and create the SSH directory and file ----# | |
| mkdir .ssh | |
| cd .ssh | |
| touch authorized_keys |