0

How can i make a windows installation USB? I already have the iso file, and i need to install windows 7 dual boot as i have to install my company software.

I am using netbook.

I used unetbootin, but failed.

Any quick and easy solution?

Shah Rizan
  • 19
  • 1
  • 4

2 Answers2

1

You have to install a software for this purpose known as winUsb using following commands

sudo add-apt-repository ppa:colingille/freshlight sudo apt-get update sudo apt-get install winusb

else download a .deb file from this link and then run following command

sudo dpkg -i [filename].deb if you get any dependency problem or errors due to dependency problems use following command to resolve it

sudo apt-get install -f

check this for more info on .deb packages

you can check this link

for more details on installation and winusb check this website

Chinmaya B
  • 6,122
  • 7
  • 24
  • 43
0

If you have the iso image you can use the dd command in terminal, check this link: Burning a ISO image to USB device

Danilo
  • 127