-
-
Save pankajpatel/8ec0d7362ab602cd90d7dfd5968b85bc to your computer and use it in GitHub Desktop.
SSH to raspberry pi
This file contains 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
# 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 [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment