Skip to content

Instantly share code, notes, and snippets.

@geotheory
Created December 14, 2025 22:19
Show Gist options
  • Select an option

  • Save geotheory/7e2072dd7ccd2be08a19ebafa3f7f601 to your computer and use it in GitHub Desktop.

Select an option

Save geotheory/7e2072dd7ccd2be08a19ebafa3f7f601 to your computer and use it in GitHub Desktop.
# 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