Sunday, January 12, 2014

Creating Raspbian Wheezy Bootable SD Card on OS-X Mavericks



Creating Raspbian Wheezy bootable SD card on a Mac


  1. Open terminal on your mac
  2. sudo diskutil list
  3. Find the disk you’re after (/dev/disk5 for example).  It probably is the only small disk/partition mounted:
  4. use mount command to see what’s mounted from this disk (/dev/disk5s1 for example):  
  5. sudo diskutil umount /dev/disk5s1  [unmounts the volume]
  6. mount command should not show the disk anymore
  7. Now you can burn the image (make sure you unzipped it) to the disk
  8. sudo dd bs=1m if=~/Downloads/2012-07-15-wheezy-raspbian.img of=/dev/disk3
  9. To check status midstream, you can do killall -INFO dd
  10. Terminal with the dd operation in it will stop when it's done.
  11. Disk will re-mount. So you have to do step 3-7 again to unmount the disk.
  12. Then you can put it in the Pi and boot up!

No comments:

Post a Comment