Skip to content

Instantly share code, notes, and snippets.

@schappim
Created July 26, 2012 06:52
Show Gist options
  • Save schappim/3180641 to your computer and use it in GitHub Desktop.
Save schappim/3180641 to your computer and use it in GitHub Desktop.
Burning Commands
# 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