Skip to content

Instantly share code, notes, and snippets.

@amrutprabhu
Created November 30, 2022 19:02
Show Gist options
  • Save amrutprabhu/90ab2ab4c4cc582785ccb8b4ee3e0d5e to your computer and use it in GitHub Desktop.
Save amrutprabhu/90ab2ab4c4cc582785ccb8b4ee3e0d5e to your computer and use it in GitHub Desktop.
partition disk.
```
diskutil partitionDisk /dev/disk4 2 MBRFormat "MS-DOS FAT32" P1 10G "MS-DOS FAT32" P2 5.9G
```
clone disk
```
sudo dd if=/dev/disk4 of=usb.img bs=16M status=progres
sudo dd if=usb.img of=/dev/disk3 bs=16M status=progress
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment