Created
July 26, 2012 06:52
-
-
Save schappim/3180641 to your computer and use it in GitHub Desktop.
Burning Commands
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
# Unmount the Disks | |
diskutil unmount /dev/disk1s1 | |
diskutil unmount /dev/disk2s1; | |
diskutil unmount /dev/disk3s1; | |
diskutil unmount /dev/disk4s1; | |
diskutil unmount /dev/disk5s1; | |
diskutil unmount /dev/disk6s1; | |
diskutil unmount /dev/disk7s1; | |
diskutil unmount /dev/disk8s1; | |
diskutil unmount /dev/disk9s1; | |
diskutil unmount /dev/disk10s1; | |
###################### Burning the disks ###################### | |
dd bs=16777216 if=/Users/admin/Desktop/ninja_20120726.img | pv -s 3600M | dd bs=16777216 of=/dev/rdisk1 | |
##### Split your window | |
dd bs=16777216 if=/Users/admin/Desktop/ninja_20120726.img | pv -s 3600M | dd bs=16777216 of=/dev/rdisk2 | |
##### Split your window | |
dd bs=16777216 if=/Users/admin/Desktop/ninja_20120726.img | pv -s 3600M | dd bs=16777216 of=/dev/rdisk3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment