flyerblade said:
btw. If anyone comes up with an easy way to do the installation on a Mac, I"d be interested.
Yes - ignore the installers, none of them are for Mac. Get instead the image file, by direct download or by torrent - since this still hasn't appeared on the Downloads page I had to grab it from one of the mirrors, here: http://ftp.snt.utwente.nl/pub/.....6-03-2012/
Once you've got the file raspberrypi-fedora-remix-14-r1.img.gz onto your Mac, you can move it to your desktop and doubleclick it to unzip it to the actual image file which is called raspberrypi-fedora-remix-14-r1.img.
Now open a command prompt. We need to figure out which disk device at the BSD Unix level is our SD card. So, with your SD card reader NOT inserted, type 'diskutil list' in the command prompt window, it'll probably list one or two disk entries and the partitions on it. Now insert your SD card into your USB card reader and insert that into your Mac, and wait a few moments till the system's mounted the SD card and you can see it pop up as a drive. In the command prompt window, type 'diskutil list' again - it should be obvious from comparing the two that there's a new entry, for me it was /dev/disk2 (because disk0 was my internal HD and disk1 was my external Firewire drive) - but, depending on your arrangement of disks, you ought to be able to tell which /dev/disk{n} is your SD card, it should also be reporting the right capacity for your SD card, say it's got an FDisk partition scheme and FAT32 partition.
So, having worked out which /dev/disk is your SD card (and for the remainder of this let's say it's /dev/disk2 like mine, but substitute your own correct disk number as determined above):
Type in the command prompt 'diskutil unmountdisk /dev/disk2'
- this unmounts the partition from OS X but still leaves the underlying BSD able to see the disk device.
Change directory to your desktop, where we're storing that disk image - type 'cd Desktop'. You can check you're in the right directory and can see the disk image by typing 'ls' to list the directory contents - should see that raspberrypi-fedora-remix-14-r1.img file in amongst the other stuff from your desktop.
Now we're going to blast the contents of the image file onto the SD card. This is pretty slow and doesn't look like it's doing anything, but don't worry. Don't forget to substitute the right disk number, and type 'dd if=raspberrypi-fedora-remix-14-r1.img of=/dev/disk2'
Now wait several minutes for dd to finish. If you need convincing that it's doing something, you can press Ctrl-T to cause it to spit out some text about how many bytes it's done so far.
When it eventually finishes, type 'sync' to make sure it's written everything, and then 'diskutil unmount /dev/disk2' to unmount the whole of the disk, and then unplug it and plug it in again.
This time when the disk mounts it should have a FAT32 partition with a kernel and some configuration files, and a big Linux partition ready for when you put it in a Raspberry Pi. Job done!
flyerblade said:
RorschachUK, you're a star - thanks for that. Excellent
Slightly curious as to if it can be done in Disk Utility - Restore but it's not important. I suspect not as that seems to restore to an existing partition.
Thanks in advance