Last active
November 12, 2016 05:45
-
-
Save everaldo/a237f131b9a5d4f503b09f93c914fa0f to your computer and use it in GitHub Desktop.
Create Bootable USB Windows
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
| sudo cfdisk /dev/sdc | |
| sudo mkfs.ntfs -f /dev/sdc1 | |
| sudo apt-get install mbr | |
| sudo install-mbr -i n -p D -t 0 /dev/sdc | |
| mkdir iso | |
| sudo mount -o loop arquivo.iso iso/ | |
| sudo mount /dev/sdc1 /media/everaldo/ | |
| cp -r iso/* /media/everaldo/ | |
| sudo sync | |
| sudo umount /media/everaldo | |
| sudo umount iso/ | |
| rmdir iso/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here is the tutorial "How to bootable usb pendrive with CMD step by step easy tutorial".
in this tutorial i was show , how you can make your pendrive bootable for windows setup with easy step .
Watch it and comment blew . its easy or not . video => https://www.youtube.com/watch?v=dd69WxjlWkc
Thanks.