I am trying to get Arch Linux ARM on my RasPi 2 by following the instructions in the Installation section , but these are Linux commands, I am trying to format the SD with my Mac, and therefore there are differences in the programs that I am trying to work around. For example, sudo fdisk /dev/sdXon linux it will lead to an interactive prompt, but on OSX it will be different, instead I need to do fdisk -ie / dev / sdX to get an interactive prompt, and then the commands are different.
What I want to do on my mac is the same declaration of this process on linux:
Run fdisk to split the SD card: fdisk / dev / sdX On fdisk, invite, delete the old partitions and create a new one:
Type o. This will clear out any partitions on the drive.
Type p to list partitions. There should be no partitions left.
Type n, then p for primary, 1 for the first partition on the drive, press ENTER to accept the default first sector, then type +100M for the last sector.
Type t, then c to set the first partition to type W95 FAT32 (LBA).
Type n, then p for primary, 2 for the second partition on the drive, and then press ENTER twice to accept the default first and last sector.
Write the partition table and exit by typing w.
But I'm not sure how to achieve this using OSD fdisk.