Raspberry Pi
From Christoph's Personal Wiki
Revision as of 22:39, 6 April 2018 by Christoph (Talk | contribs) (Created page with "This article will be all about my '''Raspberry Pi''' projects. ==Miscellaneous== * Find Raspberry Pi IP address on your local WiFi network: $ arp-scan --interface=eth0 --lo...")
This article will be all about my Raspberry Pi projects.
Miscellaneous
- Find Raspberry Pi IP address on your local WiFi network:
$ arp-scan --interface=eth0 --localnet | grep b8:27:eb
- Store the following in your
~/.ssh/config
file:
Host rpi HostName 10.x.x.x User pi ProxyCommand none TCPKeepAlive yes ServerAliveInterval 5 PubkeyAuthentication no PreferredAuthentications keyboard-interactive,password
Then,
$ ssh rpi
Or, better yet, use SSH keys.