Skip to content

Setting up Raspbian

tim edited this page May 28, 2017 · 1 revision

#Setting up Raspbian

1. Get the image file from the interwebs

2. List your drives

diskutil list

find your SD card in there. It will be something like /dev/disk2

3. Unmount that disk

diskutil unmountDisk /dev/disk2

4. Copy the img to the disk

sudo dd bs=1m if=./raspbian.img of=/dev/rdisk2

# if = Input file
# of = the Output file
# use rdisk2 instead of disk2 to make it go faster

5. Setup Raspbian

Go setup the keyboard, update the settings

sudo raspi-config

Get the newest packages

sudo apt-get update 

Upgrade all the packages

sudo apt-get upgrade