Last active
October 9, 2016 22:34
Revisions
-
andrusha revised this gist
Apr 16, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,9 @@ hdiutil convert -format UDRW -o destination_file.img source_file.iso # Or re-partition it with Disk Utility with 1 Free Space Partition diskutil partitionDisk /dev/disk2 1 "Free Space" "unused" "100%" # Or copy the image through Disk Utility in Restore menu dd if=destination_file.img.dmg of=/dev/disk2 bs=1m # Or eject manually -
andrusha created this gist
Apr 16, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ hdiutil convert -format UDRW -o destination_file.img source_file.iso # Or re-partition it with Disk Utility diskutil partitionDisk /dev/disk2 1 "Free Space" "unused" "100%" # Or copy the image through Disk Utility dd if=destination_file.img.dmg of=/dev/disk2 bs=1m # Or eject manually diskutil eject /dev/disk2