Difference between revisions of "Raspberry Pi"

From Christoph's Personal Wiki
Jump to: navigation, search
(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...")
(No difference)

Revision as of 22:39, 6 April 2018

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.

External links