-
Notifications
You must be signed in to change notification settings - Fork 58
Setting up Raspbian
tim edited this page May 28, 2017
·
1 revision
#Setting up Raspbian
diskutil list
find your SD card in there. It will be something like /dev/disk2
diskutil unmountDisk /dev/disk2
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
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