Skip to content

Instantly share code, notes, and snippets.

@everaldo
Last active November 12, 2016 05:45
Show Gist options
  • Select an option

  • Save everaldo/a237f131b9a5d4f503b09f93c914fa0f to your computer and use it in GitHub Desktop.

Select an option

Save everaldo/a237f131b9a5d4f503b09f93c914fa0f to your computer and use it in GitHub Desktop.
Create Bootable USB Windows
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/
Copy link
Copy Markdown

ghost commented Nov 12, 2016

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment