Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pankajpatel/8ec0d7362ab602cd90d7dfd5968b85bc to your computer and use it in GitHub Desktop.
Save pankajpatel/8ec0d7362ab602cd90d7dfd5968b85bc to your computer and use it in GitHub Desktop.
SSH to raspberry pi
# determine your computers local IP address
ifconfig
# scan all devices on your network (if your computer's IP is 192.168.1.49, for example)
sudo nmap -sP 192.168.1.*
# the raspbery pi may show up as manufacturer "unknown" if you are using wireless.
# Try sshing to each device you think may be the pi
ssh pi@192.168.1.144
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment