IGate: Difference between revisions
No edit summary |
No edit summary |
||
Line 20: | Line 20: | ||
$ diskutil unmountDisk /dev/disk4 | $ diskutil unmountDisk /dev/disk4 | ||
</pre> | </pre> | ||
Plug the SD card in to the Raspberry Pi and boot with a screen and keyboard | |||
Select the following options: | |||
* 1. Expand filesystem | |||
* 2. Change User Password | |||
* 3. Enable Boot to Desktop/Scratch - select "Console Text console" | |||
* 4. Internationalization Options | |||
** I2 - Change Timezone - Pick an appropriate location. For example, America/Vancouver | |||
Finish and reboot. |
Revision as of 02:59, 24 March 2014
The following instructions are for creating an SD card using OSX. The process is similar with other operating systems.
Download http://downloads.raspberrypi.org/raspbian_latest and unzip
Obtain an SD card of at least 4Gb in size
Determine the device name of your SD card reader on your mac by running the following command before and after inserting the SD card. Look for the newly added disk drive. It is important that you get the correct disk name. If you pick the wrong name, you could wipe out the hard drive in your Mac.
$ diskutil list
In this example, the drive name is /dev/disk4
Copy the Raspbian image you downloaded to the SD card. Note that I've added an 'r' to the front of 'disk' in the 'dd' command line. This is the unbuffered device and will result in a quicker copy.
$ diskutil unmountDisk /dev/disk4 $ sudo dd if=2014-01-07-wheezy-raspbian.img of=/dev/rdisk4
This will take some time to finish. Once done, unmount the volume, then remove the SD card.
$ diskutil unmountDisk /dev/disk4
Plug the SD card in to the Raspberry Pi and boot with a screen and keyboard
Select the following options:
- 1. Expand filesystem
- 2. Change User Password
- 3. Enable Boot to Desktop/Scratch - select "Console Text console"
- 4. Internationalization Options
- I2 - Change Timezone - Pick an appropriate location. For example, America/Vancouver
Finish and reboot.