Created
December 14, 2025 22:19
-
-
Save geotheory/7e2072dd7ccd2be08a19ebafa3f7f601 to your computer and use it in GitHub Desktop.
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
| # installing a new key on a rpi | |
| cd ~/.ssh | |
| # new key | |
| ssh-keygen -t ed25519 -C "examplepie" | |
| # install on rpi | |
| ssh-copy-id -i examplepie.pub pi@192.168.1.xxx | |
| # add to local agent | |
| ssh-add examplepie | |
| # test | |
| ssh pi@192.168.1.xxx | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment