Raspberry Pi Initial Setup

So I don't forget: In this example, the 2019-09-26-raspbian-buster-lite distribution will be installed.

This is for a Linux system. It should work on MacOS. I don't know about Windows.

Except for the dd command, all the commands can be run as a normal user.

  1. Open terminal

  2. Find out what disks are attached to the computer:

    lsblk -p
  3. Insert SD card or USB stick

  4. Find out the name of the new device:

    lsblk -p
  5. Note the name of the device. Could be /dev/sdb or sdc or /dev/mmcblk0.

  6. cd into the directory where the iso is.

  7. Here be Dragons, make sure the "of=" device is correct!. Run the dd command to copy the image onto the device:

    sudo dd bs=4M if=2019-09-26-raspbian-buster-lite.img of=/dev/sdc conv=fsync status=progress
  8. After it is done. mount boot partition of the device.

  9. cd to the partition

  10. Enable ssh ability by adding an empty file called "ssh" to the boot partition.

  11. Unmount (or eject) the SD card/USB stick.

  12. Run nmap to see what is currently on the network. (ie: nmap -sP 192.168.0.0/24)

  13. Insert it into the Raspberry Pi and turn it on.

  14. Run nmap again to see whats new.

  15. ssh into the RPI using pi@xxx.xxx.xxx.xxx that you got from nmap.