* Download latest Raspbian Lite from [here](https://www.raspberrypi.org/downloads/raspbian/). * Plug SD card into computer. * Unzip Raspbian image and [install on SD card](https://www.raspberrypi.org/documentation/installation/installing-images/mac.md). ``` diskutil list # make note of disk, not partition, of SD card; eg. `disk4` diskutil unmountDisk /dev/disk4 sudo dd bs=1m if= of=/dev/rdisk4 conv=sync # using rdisk4 is much faster then disk4 ``` * Touch `ssh` file on boot partition: `touch ssh /Volumes/boot` (to [enable ssh](https://www.raspberrypi.org/documentation/remote-access/ssh/README.md) on raspberry pi). * Eject card: `diskutil eject /dev/disk4` * Install card in Raspberry Pi. * Plug Raspberry Pi into power. * Connect Raspberry Pi to router via ethernet cable. * `ssh pi@raspberrypi.local` (password: `raspberry`)