Created
October 23, 2015 21:44
-
-
Save paraggupta1993/395b63a319922b488924 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
#!/bin/bash | |
umount /dev/sdb1 | |
sudo mkdosfs -n 'USB-Drive-Name' -I /dev/sdb -F 32 | |
sudo dd if=filename.iso of=/dev/sdb bs=4k | |
sync | |
sudo eject /dev/sdc | |
# isohybrid filename.iso # only if there is "Missing Operating System" error in booting |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment