Created
March 21, 2017 05:47
-
-
Save robinraju/ea422098838be41497fb2bcd3b1039ca to your computer and use it in GitHub Desktop.
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
$ df | |
This will list all mounted devices | |
$ sudo umount /dev/sdc<?> | |
where <?> is a number, look it up. Then, next: | |
$ sudo dd bs=4M if=input.iso of=/dev/sdc<?> | |
where input.iso is the input file, and /dev/sdc<?> is the USB device you're writing to. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment