Created
August 29, 2013 08:46
-
-
Save maiatoday/6375690 to your computer and use it in GitHub Desktop.
Make iso of a usb
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
#check first if /dev/sdb is correct, this will copy from usb to .iso | |
sudo dd if=/dev/sdb of=usb-image.iso | |
#now to copy the iso back onto a disk | |
sudo dd if=usb-image.iso of=/dev/sdb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment