๐Ÿ“ƒManual Steps

Manual steps to prepare Pi

*Below documentation referred user as veerendra, hostname as atom and IP as 192.168.0.120. Please change these values according your requirement

Write OS Image on SD card

Configure hostname, user, wlan and locale like below by clicking โš™๏ธ and click WRITE

ufw ufw

Configure your machine

Below command should run on your machine(that you connect Pi)

  • Copy ssh keys to Pi for password less authentication

    $ PIUSER="veerendra"
    $ PIIP="192.168.0.120"
    
    $ ssh-copy-id $PIUSER@$PIIP
    veerendra@192.168.0.120's password:
    
    Number of key(s) added: 1
    
    Now try logging into the machine, with:   "ssh 'veerendra@192.168.0.120'"
    and check to make sure that only the key(s) you wanted were added.
  • Add ssh config

    cat >> ~/.ssh/config <<EOF
    Host atom
      HostName 192.168.0.120
      user veerendra
    EOF

Configure your Pi

Below command should on Pi

  1. Login into Pi and Set root user password

  2. Make the user sudoer

    • Login into pi and run below commands

  3. (Optional)Set static IPs to interfaces

    • This will also bring up the eth0 internface which some won't come up by default

Last updated