Last active
December 15, 2015 15:29
-
-
Save mariojunior/5282663 to your computer and use it in GitHub Desktop.
How to create .iso files using Terminal on MacOS
This file contains 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
First: Discovery where your Volume disk running: | |
-- sudo df -k /Volumes/* | |
Second: umount your Volume disk without remove the disk: | |
-- sudo umount /dev/disk3 ('dev/disk3' may be different, you must replace it according previous command) | |
Third: Create an ISO file mirroring the disc on specified path: | |
--- dd if=/dev/disk3/ of=PATH_TO_ISO_FILE.iso bs=2048 (remember about the 'dev/disk3' argument) | |
Wait some several minutes. You can open the Finder on your destiny ISO file to monitoring the growing of file, but sometimes the file size take some minutes to show the real size. Keep calm, take a coffee and relax. :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment