Created
November 30, 2022 19:02
-
-
Save amrutprabhu/90ab2ab4c4cc582785ccb8b4ee3e0d5e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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