Install rpi image to microsd card
Date: July 3rd 2016
Last updated: July 3rd 2016
Instructions from https://www.raspberrypi.org/documentation/installation/installing-images/linux.md.
# connect sd card reader
# insert sd card
# id the device name
df -h
# mine was... /dev/sdd1
umount /dev/sdd1
# install using dd
# note the 1 is removed in the output file name
sudo dd bs=4M if=Downloads/2016-05-27-raspbian-jessie.img of=/dev/sdd
# get updates to terminal
# press ctrl-shift-t #--> opens new terminal window
sudo pkill -USR1 -n -x dd