How do I make a bootable USB flash disk of Windows setup on my Kali Linux system?











up vote
1
down vote

favorite












I have Kali Linux currently running on my laptop. I want to install Windows 7. I don't have CD ROM ,how do I make bootable USB having Windows ISO?



Which software will help me? Or just how to make usb bootable? I want to install Windows 7 again.










share|improve this question
























  • please somebody answer ..
    – KaliLINUX
    Jul 25 '14 at 5:17















up vote
1
down vote

favorite












I have Kali Linux currently running on my laptop. I want to install Windows 7. I don't have CD ROM ,how do I make bootable USB having Windows ISO?



Which software will help me? Or just how to make usb bootable? I want to install Windows 7 again.










share|improve this question
























  • please somebody answer ..
    – KaliLINUX
    Jul 25 '14 at 5:17













up vote
1
down vote

favorite









up vote
1
down vote

favorite











I have Kali Linux currently running on my laptop. I want to install Windows 7. I don't have CD ROM ,how do I make bootable USB having Windows ISO?



Which software will help me? Or just how to make usb bootable? I want to install Windows 7 again.










share|improve this question















I have Kali Linux currently running on my laptop. I want to install Windows 7. I don't have CD ROM ,how do I make bootable USB having Windows ISO?



Which software will help me? Or just how to make usb bootable? I want to install Windows 7 again.







windows usb-flash-drive kali-linux






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jul 25 '14 at 5:16









Sathya

52.5k29153252




52.5k29153252










asked Jul 25 '14 at 4:28









KaliLINUX

612




612












  • please somebody answer ..
    – KaliLINUX
    Jul 25 '14 at 5:17


















  • please somebody answer ..
    – KaliLINUX
    Jul 25 '14 at 5:17
















please somebody answer ..
– KaliLINUX
Jul 25 '14 at 5:17




please somebody answer ..
– KaliLINUX
Jul 25 '14 at 5:17










4 Answers
4






active

oldest

votes

















up vote
2
down vote













If you like to use terminal, use the command: sudo dd if=your_iso_here of=your_drive_here bs=512k. That will make a live win7 usb.






share|improve this answer




























    up vote
    2
    down vote













    Use unetbootin in kali linux which helps you to make a window 7 bootable USB.



    Steps to make bootable USB:




    1. Open applications button situated in top of the kali screen then go to system tools option after that click on unetbootin option in last.


    2. Choose a OS or distribution which you want to make bootable if it is not in option then usually click on disk image option in bottom of dialog box after that browse ISO file from browse option, after selecting then select the USB which you want to make bootable.


    3. Use Next or Ok then the USB will become bootable after given time.







    share|improve this answer






























      up vote
      1
      down vote













      You probably already answered this, but look into winusb. it will make a bootable windows disc. It also depends on the bootloader you have installed on your machine. Depending on whether you want dual boot or not, you may be better off making a bootable usb stick from a windows machine, making it on linux can be a pain.






      share|improve this answer






























        up vote
        1
        down vote













        WinUSB is a tool for creating a bootable USB flash drive used for installing Windows. Native UEFI booting is supported for Windows 7 and later images. WoeUSB is an updated fork of the WinUSB project.



        Some third-party installers feature Windows installation images (/sources/install.wim) greater than 4GB making FAT32 as target filesystem impossible. NTFS filesystem support has been added to WoeUSB 3.0.0 and later.



        To install WoeUSB (updated fork of WinUSB project) for releases based on Ubuntu 14.04 and later:



        sudo add-apt-repository ppa:nilarimogard/webupd8 
        sudo apt-get update
        sudo apt-get install woeusb


        To install WinUSB in Kali Linux:



        sudo add-apt-repository ppa:nilarimogard/webupd8 
        sudo apt-get update
        sudo apt-get install winusb


        This will install the WinUSB graphical interface and the WinUSB command line tool. The WinUSB GUI is much easier to use than the WinUSB command line tool.



        Installing WinUSB/WoeUSB on EFI-loaded Kali Linux will uninstall the grub-efi packages in order to install the grub-pc packages, so before you reboot run the following commands to repair grub:



        sudo update-grub
        sudo grub-install /dev/sdX # replace X with the letter of the partition where grub is located
        sudo update-grub
        sudo reboot





        share|improve this answer























          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "3"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f787826%2fhow-do-i-make-a-bootable-usb-flash-disk-of-windows-setup-on-my-kali-linux-system%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          4 Answers
          4






          active

          oldest

          votes








          4 Answers
          4






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          2
          down vote













          If you like to use terminal, use the command: sudo dd if=your_iso_here of=your_drive_here bs=512k. That will make a live win7 usb.






          share|improve this answer

























            up vote
            2
            down vote













            If you like to use terminal, use the command: sudo dd if=your_iso_here of=your_drive_here bs=512k. That will make a live win7 usb.






            share|improve this answer























              up vote
              2
              down vote










              up vote
              2
              down vote









              If you like to use terminal, use the command: sudo dd if=your_iso_here of=your_drive_here bs=512k. That will make a live win7 usb.






              share|improve this answer












              If you like to use terminal, use the command: sudo dd if=your_iso_here of=your_drive_here bs=512k. That will make a live win7 usb.







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Feb 3 '15 at 18:34









              Steampunkery

              226215




              226215
























                  up vote
                  2
                  down vote













                  Use unetbootin in kali linux which helps you to make a window 7 bootable USB.



                  Steps to make bootable USB:




                  1. Open applications button situated in top of the kali screen then go to system tools option after that click on unetbootin option in last.


                  2. Choose a OS or distribution which you want to make bootable if it is not in option then usually click on disk image option in bottom of dialog box after that browse ISO file from browse option, after selecting then select the USB which you want to make bootable.


                  3. Use Next or Ok then the USB will become bootable after given time.







                  share|improve this answer



























                    up vote
                    2
                    down vote













                    Use unetbootin in kali linux which helps you to make a window 7 bootable USB.



                    Steps to make bootable USB:




                    1. Open applications button situated in top of the kali screen then go to system tools option after that click on unetbootin option in last.


                    2. Choose a OS or distribution which you want to make bootable if it is not in option then usually click on disk image option in bottom of dialog box after that browse ISO file from browse option, after selecting then select the USB which you want to make bootable.


                    3. Use Next or Ok then the USB will become bootable after given time.







                    share|improve this answer

























                      up vote
                      2
                      down vote










                      up vote
                      2
                      down vote









                      Use unetbootin in kali linux which helps you to make a window 7 bootable USB.



                      Steps to make bootable USB:




                      1. Open applications button situated in top of the kali screen then go to system tools option after that click on unetbootin option in last.


                      2. Choose a OS or distribution which you want to make bootable if it is not in option then usually click on disk image option in bottom of dialog box after that browse ISO file from browse option, after selecting then select the USB which you want to make bootable.


                      3. Use Next or Ok then the USB will become bootable after given time.







                      share|improve this answer














                      Use unetbootin in kali linux which helps you to make a window 7 bootable USB.



                      Steps to make bootable USB:




                      1. Open applications button situated in top of the kali screen then go to system tools option after that click on unetbootin option in last.


                      2. Choose a OS or distribution which you want to make bootable if it is not in option then usually click on disk image option in bottom of dialog box after that browse ISO file from browse option, after selecting then select the USB which you want to make bootable.


                      3. Use Next or Ok then the USB will become bootable after given time.








                      share|improve this answer














                      share|improve this answer



                      share|improve this answer








                      edited Jan 21 '16 at 17:56









                      bummi

                      1,50531421




                      1,50531421










                      answered Jan 21 '16 at 16:28









                      ravi sidhu

                      211




                      211






















                          up vote
                          1
                          down vote













                          You probably already answered this, but look into winusb. it will make a bootable windows disc. It also depends on the bootloader you have installed on your machine. Depending on whether you want dual boot or not, you may be better off making a bootable usb stick from a windows machine, making it on linux can be a pain.






                          share|improve this answer



























                            up vote
                            1
                            down vote













                            You probably already answered this, but look into winusb. it will make a bootable windows disc. It also depends on the bootloader you have installed on your machine. Depending on whether you want dual boot or not, you may be better off making a bootable usb stick from a windows machine, making it on linux can be a pain.






                            share|improve this answer

























                              up vote
                              1
                              down vote










                              up vote
                              1
                              down vote









                              You probably already answered this, but look into winusb. it will make a bootable windows disc. It also depends on the bootloader you have installed on your machine. Depending on whether you want dual boot or not, you may be better off making a bootable usb stick from a windows machine, making it on linux can be a pain.






                              share|improve this answer














                              You probably already answered this, but look into winusb. it will make a bootable windows disc. It also depends on the bootloader you have installed on your machine. Depending on whether you want dual boot or not, you may be better off making a bootable usb stick from a windows machine, making it on linux can be a pain.







                              share|improve this answer














                              share|improve this answer



                              share|improve this answer








                              edited Jan 29 '16 at 23:07









                              Pimp Juice IT

                              22.7k113869




                              22.7k113869










                              answered Oct 2 '14 at 23:30









                              solvable

                              263




                              263






















                                  up vote
                                  1
                                  down vote













                                  WinUSB is a tool for creating a bootable USB flash drive used for installing Windows. Native UEFI booting is supported for Windows 7 and later images. WoeUSB is an updated fork of the WinUSB project.



                                  Some third-party installers feature Windows installation images (/sources/install.wim) greater than 4GB making FAT32 as target filesystem impossible. NTFS filesystem support has been added to WoeUSB 3.0.0 and later.



                                  To install WoeUSB (updated fork of WinUSB project) for releases based on Ubuntu 14.04 and later:



                                  sudo add-apt-repository ppa:nilarimogard/webupd8 
                                  sudo apt-get update
                                  sudo apt-get install woeusb


                                  To install WinUSB in Kali Linux:



                                  sudo add-apt-repository ppa:nilarimogard/webupd8 
                                  sudo apt-get update
                                  sudo apt-get install winusb


                                  This will install the WinUSB graphical interface and the WinUSB command line tool. The WinUSB GUI is much easier to use than the WinUSB command line tool.



                                  Installing WinUSB/WoeUSB on EFI-loaded Kali Linux will uninstall the grub-efi packages in order to install the grub-pc packages, so before you reboot run the following commands to repair grub:



                                  sudo update-grub
                                  sudo grub-install /dev/sdX # replace X with the letter of the partition where grub is located
                                  sudo update-grub
                                  sudo reboot





                                  share|improve this answer



























                                    up vote
                                    1
                                    down vote













                                    WinUSB is a tool for creating a bootable USB flash drive used for installing Windows. Native UEFI booting is supported for Windows 7 and later images. WoeUSB is an updated fork of the WinUSB project.



                                    Some third-party installers feature Windows installation images (/sources/install.wim) greater than 4GB making FAT32 as target filesystem impossible. NTFS filesystem support has been added to WoeUSB 3.0.0 and later.



                                    To install WoeUSB (updated fork of WinUSB project) for releases based on Ubuntu 14.04 and later:



                                    sudo add-apt-repository ppa:nilarimogard/webupd8 
                                    sudo apt-get update
                                    sudo apt-get install woeusb


                                    To install WinUSB in Kali Linux:



                                    sudo add-apt-repository ppa:nilarimogard/webupd8 
                                    sudo apt-get update
                                    sudo apt-get install winusb


                                    This will install the WinUSB graphical interface and the WinUSB command line tool. The WinUSB GUI is much easier to use than the WinUSB command line tool.



                                    Installing WinUSB/WoeUSB on EFI-loaded Kali Linux will uninstall the grub-efi packages in order to install the grub-pc packages, so before you reboot run the following commands to repair grub:



                                    sudo update-grub
                                    sudo grub-install /dev/sdX # replace X with the letter of the partition where grub is located
                                    sudo update-grub
                                    sudo reboot





                                    share|improve this answer

























                                      up vote
                                      1
                                      down vote










                                      up vote
                                      1
                                      down vote









                                      WinUSB is a tool for creating a bootable USB flash drive used for installing Windows. Native UEFI booting is supported for Windows 7 and later images. WoeUSB is an updated fork of the WinUSB project.



                                      Some third-party installers feature Windows installation images (/sources/install.wim) greater than 4GB making FAT32 as target filesystem impossible. NTFS filesystem support has been added to WoeUSB 3.0.0 and later.



                                      To install WoeUSB (updated fork of WinUSB project) for releases based on Ubuntu 14.04 and later:



                                      sudo add-apt-repository ppa:nilarimogard/webupd8 
                                      sudo apt-get update
                                      sudo apt-get install woeusb


                                      To install WinUSB in Kali Linux:



                                      sudo add-apt-repository ppa:nilarimogard/webupd8 
                                      sudo apt-get update
                                      sudo apt-get install winusb


                                      This will install the WinUSB graphical interface and the WinUSB command line tool. The WinUSB GUI is much easier to use than the WinUSB command line tool.



                                      Installing WinUSB/WoeUSB on EFI-loaded Kali Linux will uninstall the grub-efi packages in order to install the grub-pc packages, so before you reboot run the following commands to repair grub:



                                      sudo update-grub
                                      sudo grub-install /dev/sdX # replace X with the letter of the partition where grub is located
                                      sudo update-grub
                                      sudo reboot





                                      share|improve this answer














                                      WinUSB is a tool for creating a bootable USB flash drive used for installing Windows. Native UEFI booting is supported for Windows 7 and later images. WoeUSB is an updated fork of the WinUSB project.



                                      Some third-party installers feature Windows installation images (/sources/install.wim) greater than 4GB making FAT32 as target filesystem impossible. NTFS filesystem support has been added to WoeUSB 3.0.0 and later.



                                      To install WoeUSB (updated fork of WinUSB project) for releases based on Ubuntu 14.04 and later:



                                      sudo add-apt-repository ppa:nilarimogard/webupd8 
                                      sudo apt-get update
                                      sudo apt-get install woeusb


                                      To install WinUSB in Kali Linux:



                                      sudo add-apt-repository ppa:nilarimogard/webupd8 
                                      sudo apt-get update
                                      sudo apt-get install winusb


                                      This will install the WinUSB graphical interface and the WinUSB command line tool. The WinUSB GUI is much easier to use than the WinUSB command line tool.



                                      Installing WinUSB/WoeUSB on EFI-loaded Kali Linux will uninstall the grub-efi packages in order to install the grub-pc packages, so before you reboot run the following commands to repair grub:



                                      sudo update-grub
                                      sudo grub-install /dev/sdX # replace X with the letter of the partition where grub is located
                                      sudo update-grub
                                      sudo reboot






                                      share|improve this answer














                                      share|improve this answer



                                      share|improve this answer








                                      edited Dec 1 at 3:56

























                                      answered Oct 3 '14 at 4:09









                                      karel

                                      9,17793138




                                      9,17793138






























                                          draft saved

                                          draft discarded




















































                                          Thanks for contributing an answer to Super User!


                                          • Please be sure to answer the question. Provide details and share your research!

                                          But avoid



                                          • Asking for help, clarification, or responding to other answers.

                                          • Making statements based on opinion; back them up with references or personal experience.


                                          To learn more, see our tips on writing great answers.





                                          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                                          Please pay close attention to the following guidance:


                                          • Please be sure to answer the question. Provide details and share your research!

                                          But avoid



                                          • Asking for help, clarification, or responding to other answers.

                                          • Making statements based on opinion; back them up with references or personal experience.


                                          To learn more, see our tips on writing great answers.




                                          draft saved


                                          draft discarded














                                          StackExchange.ready(
                                          function () {
                                          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f787826%2fhow-do-i-make-a-bootable-usb-flash-disk-of-windows-setup-on-my-kali-linux-system%23new-answer', 'question_page');
                                          }
                                          );

                                          Post as a guest















                                          Required, but never shown





















































                                          Required, but never shown














                                          Required, but never shown












                                          Required, but never shown







                                          Required, but never shown

































                                          Required, but never shown














                                          Required, but never shown












                                          Required, but never shown







                                          Required, but never shown







                                          Popular posts from this blog

                                          flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

                                          Mangá

                                           ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕