我正在尝试通过执行“安装”下的说明将 Arch Linux ARM 安装到我的 RasPi 2 上,但命令是 Linux 命令,我正在尝试用我的 Mac 格式化 SD,因此我的程序存在差异我试图绕过。例如sudo fdisk /dev/sdX
,在 linux 上会导致交互式提示,在 OSX 上会有所不同,相反我必须执行 fdisk -ie /dev/sdX 才能获得交互式提示,然后命令不同。
我想在我的 mac 上做的与 linux 上的这个过程相同:
启动 fdisk 对 SD 卡进行分区: fdisk /dev/sdX 在 fdisk 提示符下,删除旧分区并创建一个新分区:
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.
但我不确定如何使用 OSX 的 fdisk 来实现这一点。