Last active
December 14, 2017 21:04
-
-
Save mymindwentblvnk/99de3353545739629f1b3da6d223c7f3 to your computer and use it in GitHub Desktop.
ISO to 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
# Find out what the USB drive is named | |
df -h | |
# Unmount it | |
umount /dev/sdb1 | |
# Unmount this too if needed | |
umount /dev/sdb2 | |
# Copy ISO | |
sudo dd bs=4M if=LINK_TO_ISO of=/dev/sdb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment