WoeUSB Error Code 256 with NTFS formatted USB











up vote
3
down vote

favorite












I tried to create a Windows 10 USB boot medium with WoeUSB. I formatted a USB drive with an NTFS partition, but WoeUSB complains with:



Installation failed!
Exit code: 256
Log:
WoeUSB v@@WOEUSB_VERSION@@
==============================
Mounting source filesystem...
Error: File "/media/woeusb_source_1543626298_6098/sources/install.wim" in
source image has exceed the FAT32 Filesystem 4GiB Single File Size Limitation
and cannot be installed. You must specify a different --target-filesystem.
Refer: https://github.com/slacka/WoeUSB/wiki/Limitations#fat32-filesystem-4gib-single-file-size-limitation for more info.
Unmounting and removing "/media/woeusb_source_1543626298_6098"...
You may now safely detach the target device


I've also tried to start WoeUSB via command line, did not work.



sudo woeusb --partition Win10_1809Oct_English_x64.iso /dev/sdb


My iso is located in:
home/sawyer/Downloads/Win10_1809Oct_English_x64.iso



Thanks in advance! I've been trying to get windows installed for three nights now, so any help towards that goal is greatly appreciated.










share|improve this question




























    up vote
    3
    down vote

    favorite












    I tried to create a Windows 10 USB boot medium with WoeUSB. I formatted a USB drive with an NTFS partition, but WoeUSB complains with:



    Installation failed!
    Exit code: 256
    Log:
    WoeUSB v@@WOEUSB_VERSION@@
    ==============================
    Mounting source filesystem...
    Error: File "/media/woeusb_source_1543626298_6098/sources/install.wim" in
    source image has exceed the FAT32 Filesystem 4GiB Single File Size Limitation
    and cannot be installed. You must specify a different --target-filesystem.
    Refer: https://github.com/slacka/WoeUSB/wiki/Limitations#fat32-filesystem-4gib-single-file-size-limitation for more info.
    Unmounting and removing "/media/woeusb_source_1543626298_6098"...
    You may now safely detach the target device


    I've also tried to start WoeUSB via command line, did not work.



    sudo woeusb --partition Win10_1809Oct_English_x64.iso /dev/sdb


    My iso is located in:
    home/sawyer/Downloads/Win10_1809Oct_English_x64.iso



    Thanks in advance! I've been trying to get windows installed for three nights now, so any help towards that goal is greatly appreciated.










    share|improve this question


























      up vote
      3
      down vote

      favorite









      up vote
      3
      down vote

      favorite











      I tried to create a Windows 10 USB boot medium with WoeUSB. I formatted a USB drive with an NTFS partition, but WoeUSB complains with:



      Installation failed!
      Exit code: 256
      Log:
      WoeUSB v@@WOEUSB_VERSION@@
      ==============================
      Mounting source filesystem...
      Error: File "/media/woeusb_source_1543626298_6098/sources/install.wim" in
      source image has exceed the FAT32 Filesystem 4GiB Single File Size Limitation
      and cannot be installed. You must specify a different --target-filesystem.
      Refer: https://github.com/slacka/WoeUSB/wiki/Limitations#fat32-filesystem-4gib-single-file-size-limitation for more info.
      Unmounting and removing "/media/woeusb_source_1543626298_6098"...
      You may now safely detach the target device


      I've also tried to start WoeUSB via command line, did not work.



      sudo woeusb --partition Win10_1809Oct_English_x64.iso /dev/sdb


      My iso is located in:
      home/sawyer/Downloads/Win10_1809Oct_English_x64.iso



      Thanks in advance! I've been trying to get windows installed for three nights now, so any help towards that goal is greatly appreciated.










      share|improve this question















      I tried to create a Windows 10 USB boot medium with WoeUSB. I formatted a USB drive with an NTFS partition, but WoeUSB complains with:



      Installation failed!
      Exit code: 256
      Log:
      WoeUSB v@@WOEUSB_VERSION@@
      ==============================
      Mounting source filesystem...
      Error: File "/media/woeusb_source_1543626298_6098/sources/install.wim" in
      source image has exceed the FAT32 Filesystem 4GiB Single File Size Limitation
      and cannot be installed. You must specify a different --target-filesystem.
      Refer: https://github.com/slacka/WoeUSB/wiki/Limitations#fat32-filesystem-4gib-single-file-size-limitation for more info.
      Unmounting and removing "/media/woeusb_source_1543626298_6098"...
      You may now safely detach the target device


      I've also tried to start WoeUSB via command line, did not work.



      sudo woeusb --partition Win10_1809Oct_English_x64.iso /dev/sdb


      My iso is located in:
      home/sawyer/Downloads/Win10_1809Oct_English_x64.iso



      Thanks in advance! I've been trying to get windows installed for three nights now, so any help towards that goal is greatly appreciated.







      windows ntfs mint usb-installation woeusb






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Dec 1 at 1:29

























      asked Dec 1 at 1:14









      SLD

      162




      162






















          3 Answers
          3






          active

          oldest

          votes

















          up vote
          2
          down vote



          +100










          I tested the current woeusb from the PPA (running a persistent live Lubuntu 18.04.1 LTS), and the following command lines work for me.



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

          sudo woeusb --target-filesystem NTFS --device path/windows.iso /dev/sdx


          In my case the iso file was in /media/lubuntu/usbdata/images/ and the target device was /dev/sdb, but in your case check carefully that you will write to the intended drive (avoid destroying valuable data in some other drive),



          sudo woeusb --target-filesystem NTFS --device /media/lubuntu/usbdata/images/windows.iso /dev/sdb


          Notice that all partitions on the target device must be unmounted.





          The created USB boot drive has a small FAT partition (for UEFI boot) and a big NTFS partition with the Windows files. It can install Windows both in BIOS and UEFI mode with woeusb 3.2.10.1 (dated 2018-09-19 (Sept 19 2018) in the PPA).



          Using NTFS makes it is possible to use file size > 4 GiB. Typically the size of install.wim is




          • smaller than 4 GiB for pure Microsoft iso files

          • greater than 4 GiB for some iso files for particular computers, OEM, because of added program packages.




          There is also a GUI version woeusbgui. I don't think is has the option to create a target drive with a FAT file system for UEFI plus an NTFS filesystem, so I would recommend using the command line version woeusb.






          share|improve this answer























          • This answer worked for me recently, and as far as I can tell is the best of the answers thus far.
            – Thomas Ward
            Dec 3 at 16:00


















          up vote
          1
          down vote













          Some third-party installers, like your Win10_1809Oct_English_x64.iso, feature Windows installation images greater than 4GB making FAT32 as target filesystem impossible. NTFS filesystem support has been added to WoeUSB 3.0.0 and later. If your version of WoeUSB is earlier than 3.0 please update it. The latest version of WinUSB at time of posting this answer is 3.2.10.



          For WoeUSB v3.0 and later the --format command-line option is no longer available.






          share|improve this answer



















          • 1




            My USB is 8GB. My interpretation of the warning was that FAT32 formatted USB's can not handle files larger than 4GB, so it's necessary to format in NTFS. Thing is, I have formatted my USB in NTFS, but it's like WoeUSB can't see that.
            – SLD
            Dec 1 at 1:27




















          up vote
          1
          down vote













          Couldn't reproduce the error as running that command produced a different error (check_runtime_parameters: Error: Target media "/dev/sdb" is not an partition!).



          What seemed to work was to wipe and build a boot drive from scratch with:



          sudo woeusb --tgt-fs NTFS -d ~/Downloads/Win10_1809Oct_English_x64.iso /dev/sdb






          share|improve this answer





















            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "89"
            };
            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%2faskubuntu.com%2fquestions%2f1097560%2fwoeusb-error-code-256-with-ntfs-formatted-usb%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            3 Answers
            3






            active

            oldest

            votes








            3 Answers
            3






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            2
            down vote



            +100










            I tested the current woeusb from the PPA (running a persistent live Lubuntu 18.04.1 LTS), and the following command lines work for me.



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

            sudo woeusb --target-filesystem NTFS --device path/windows.iso /dev/sdx


            In my case the iso file was in /media/lubuntu/usbdata/images/ and the target device was /dev/sdb, but in your case check carefully that you will write to the intended drive (avoid destroying valuable data in some other drive),



            sudo woeusb --target-filesystem NTFS --device /media/lubuntu/usbdata/images/windows.iso /dev/sdb


            Notice that all partitions on the target device must be unmounted.





            The created USB boot drive has a small FAT partition (for UEFI boot) and a big NTFS partition with the Windows files. It can install Windows both in BIOS and UEFI mode with woeusb 3.2.10.1 (dated 2018-09-19 (Sept 19 2018) in the PPA).



            Using NTFS makes it is possible to use file size > 4 GiB. Typically the size of install.wim is




            • smaller than 4 GiB for pure Microsoft iso files

            • greater than 4 GiB for some iso files for particular computers, OEM, because of added program packages.




            There is also a GUI version woeusbgui. I don't think is has the option to create a target drive with a FAT file system for UEFI plus an NTFS filesystem, so I would recommend using the command line version woeusb.






            share|improve this answer























            • This answer worked for me recently, and as far as I can tell is the best of the answers thus far.
              – Thomas Ward
              Dec 3 at 16:00















            up vote
            2
            down vote



            +100










            I tested the current woeusb from the PPA (running a persistent live Lubuntu 18.04.1 LTS), and the following command lines work for me.



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

            sudo woeusb --target-filesystem NTFS --device path/windows.iso /dev/sdx


            In my case the iso file was in /media/lubuntu/usbdata/images/ and the target device was /dev/sdb, but in your case check carefully that you will write to the intended drive (avoid destroying valuable data in some other drive),



            sudo woeusb --target-filesystem NTFS --device /media/lubuntu/usbdata/images/windows.iso /dev/sdb


            Notice that all partitions on the target device must be unmounted.





            The created USB boot drive has a small FAT partition (for UEFI boot) and a big NTFS partition with the Windows files. It can install Windows both in BIOS and UEFI mode with woeusb 3.2.10.1 (dated 2018-09-19 (Sept 19 2018) in the PPA).



            Using NTFS makes it is possible to use file size > 4 GiB. Typically the size of install.wim is




            • smaller than 4 GiB for pure Microsoft iso files

            • greater than 4 GiB for some iso files for particular computers, OEM, because of added program packages.




            There is also a GUI version woeusbgui. I don't think is has the option to create a target drive with a FAT file system for UEFI plus an NTFS filesystem, so I would recommend using the command line version woeusb.






            share|improve this answer























            • This answer worked for me recently, and as far as I can tell is the best of the answers thus far.
              – Thomas Ward
              Dec 3 at 16:00













            up vote
            2
            down vote



            +100







            up vote
            2
            down vote



            +100




            +100




            I tested the current woeusb from the PPA (running a persistent live Lubuntu 18.04.1 LTS), and the following command lines work for me.



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

            sudo woeusb --target-filesystem NTFS --device path/windows.iso /dev/sdx


            In my case the iso file was in /media/lubuntu/usbdata/images/ and the target device was /dev/sdb, but in your case check carefully that you will write to the intended drive (avoid destroying valuable data in some other drive),



            sudo woeusb --target-filesystem NTFS --device /media/lubuntu/usbdata/images/windows.iso /dev/sdb


            Notice that all partitions on the target device must be unmounted.





            The created USB boot drive has a small FAT partition (for UEFI boot) and a big NTFS partition with the Windows files. It can install Windows both in BIOS and UEFI mode with woeusb 3.2.10.1 (dated 2018-09-19 (Sept 19 2018) in the PPA).



            Using NTFS makes it is possible to use file size > 4 GiB. Typically the size of install.wim is




            • smaller than 4 GiB for pure Microsoft iso files

            • greater than 4 GiB for some iso files for particular computers, OEM, because of added program packages.




            There is also a GUI version woeusbgui. I don't think is has the option to create a target drive with a FAT file system for UEFI plus an NTFS filesystem, so I would recommend using the command line version woeusb.






            share|improve this answer














            I tested the current woeusb from the PPA (running a persistent live Lubuntu 18.04.1 LTS), and the following command lines work for me.



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

            sudo woeusb --target-filesystem NTFS --device path/windows.iso /dev/sdx


            In my case the iso file was in /media/lubuntu/usbdata/images/ and the target device was /dev/sdb, but in your case check carefully that you will write to the intended drive (avoid destroying valuable data in some other drive),



            sudo woeusb --target-filesystem NTFS --device /media/lubuntu/usbdata/images/windows.iso /dev/sdb


            Notice that all partitions on the target device must be unmounted.





            The created USB boot drive has a small FAT partition (for UEFI boot) and a big NTFS partition with the Windows files. It can install Windows both in BIOS and UEFI mode with woeusb 3.2.10.1 (dated 2018-09-19 (Sept 19 2018) in the PPA).



            Using NTFS makes it is possible to use file size > 4 GiB. Typically the size of install.wim is




            • smaller than 4 GiB for pure Microsoft iso files

            • greater than 4 GiB for some iso files for particular computers, OEM, because of added program packages.




            There is also a GUI version woeusbgui. I don't think is has the option to create a target drive with a FAT file system for UEFI plus an NTFS filesystem, so I would recommend using the command line version woeusb.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Dec 3 at 16:08

























            answered Dec 3 at 15:55









            sudodus

            22.2k32871




            22.2k32871












            • This answer worked for me recently, and as far as I can tell is the best of the answers thus far.
              – Thomas Ward
              Dec 3 at 16:00


















            • This answer worked for me recently, and as far as I can tell is the best of the answers thus far.
              – Thomas Ward
              Dec 3 at 16:00
















            This answer worked for me recently, and as far as I can tell is the best of the answers thus far.
            – Thomas Ward
            Dec 3 at 16:00




            This answer worked for me recently, and as far as I can tell is the best of the answers thus far.
            – Thomas Ward
            Dec 3 at 16:00












            up vote
            1
            down vote













            Some third-party installers, like your Win10_1809Oct_English_x64.iso, feature Windows installation images greater than 4GB making FAT32 as target filesystem impossible. NTFS filesystem support has been added to WoeUSB 3.0.0 and later. If your version of WoeUSB is earlier than 3.0 please update it. The latest version of WinUSB at time of posting this answer is 3.2.10.



            For WoeUSB v3.0 and later the --format command-line option is no longer available.






            share|improve this answer



















            • 1




              My USB is 8GB. My interpretation of the warning was that FAT32 formatted USB's can not handle files larger than 4GB, so it's necessary to format in NTFS. Thing is, I have formatted my USB in NTFS, but it's like WoeUSB can't see that.
              – SLD
              Dec 1 at 1:27

















            up vote
            1
            down vote













            Some third-party installers, like your Win10_1809Oct_English_x64.iso, feature Windows installation images greater than 4GB making FAT32 as target filesystem impossible. NTFS filesystem support has been added to WoeUSB 3.0.0 and later. If your version of WoeUSB is earlier than 3.0 please update it. The latest version of WinUSB at time of posting this answer is 3.2.10.



            For WoeUSB v3.0 and later the --format command-line option is no longer available.






            share|improve this answer



















            • 1




              My USB is 8GB. My interpretation of the warning was that FAT32 formatted USB's can not handle files larger than 4GB, so it's necessary to format in NTFS. Thing is, I have formatted my USB in NTFS, but it's like WoeUSB can't see that.
              – SLD
              Dec 1 at 1:27















            up vote
            1
            down vote










            up vote
            1
            down vote









            Some third-party installers, like your Win10_1809Oct_English_x64.iso, feature Windows installation images greater than 4GB making FAT32 as target filesystem impossible. NTFS filesystem support has been added to WoeUSB 3.0.0 and later. If your version of WoeUSB is earlier than 3.0 please update it. The latest version of WinUSB at time of posting this answer is 3.2.10.



            For WoeUSB v3.0 and later the --format command-line option is no longer available.






            share|improve this answer














            Some third-party installers, like your Win10_1809Oct_English_x64.iso, feature Windows installation images greater than 4GB making FAT32 as target filesystem impossible. NTFS filesystem support has been added to WoeUSB 3.0.0 and later. If your version of WoeUSB is earlier than 3.0 please update it. The latest version of WinUSB at time of posting this answer is 3.2.10.



            For WoeUSB v3.0 and later the --format command-line option is no longer available.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Dec 3 at 5:29

























            answered Dec 1 at 1:21









            karel

            56k11124142




            56k11124142








            • 1




              My USB is 8GB. My interpretation of the warning was that FAT32 formatted USB's can not handle files larger than 4GB, so it's necessary to format in NTFS. Thing is, I have formatted my USB in NTFS, but it's like WoeUSB can't see that.
              – SLD
              Dec 1 at 1:27
















            • 1




              My USB is 8GB. My interpretation of the warning was that FAT32 formatted USB's can not handle files larger than 4GB, so it's necessary to format in NTFS. Thing is, I have formatted my USB in NTFS, but it's like WoeUSB can't see that.
              – SLD
              Dec 1 at 1:27










            1




            1




            My USB is 8GB. My interpretation of the warning was that FAT32 formatted USB's can not handle files larger than 4GB, so it's necessary to format in NTFS. Thing is, I have formatted my USB in NTFS, but it's like WoeUSB can't see that.
            – SLD
            Dec 1 at 1:27






            My USB is 8GB. My interpretation of the warning was that FAT32 formatted USB's can not handle files larger than 4GB, so it's necessary to format in NTFS. Thing is, I have formatted my USB in NTFS, but it's like WoeUSB can't see that.
            – SLD
            Dec 1 at 1:27












            up vote
            1
            down vote













            Couldn't reproduce the error as running that command produced a different error (check_runtime_parameters: Error: Target media "/dev/sdb" is not an partition!).



            What seemed to work was to wipe and build a boot drive from scratch with:



            sudo woeusb --tgt-fs NTFS -d ~/Downloads/Win10_1809Oct_English_x64.iso /dev/sdb






            share|improve this answer

























              up vote
              1
              down vote













              Couldn't reproduce the error as running that command produced a different error (check_runtime_parameters: Error: Target media "/dev/sdb" is not an partition!).



              What seemed to work was to wipe and build a boot drive from scratch with:



              sudo woeusb --tgt-fs NTFS -d ~/Downloads/Win10_1809Oct_English_x64.iso /dev/sdb






              share|improve this answer























                up vote
                1
                down vote










                up vote
                1
                down vote









                Couldn't reproduce the error as running that command produced a different error (check_runtime_parameters: Error: Target media "/dev/sdb" is not an partition!).



                What seemed to work was to wipe and build a boot drive from scratch with:



                sudo woeusb --tgt-fs NTFS -d ~/Downloads/Win10_1809Oct_English_x64.iso /dev/sdb






                share|improve this answer












                Couldn't reproduce the error as running that command produced a different error (check_runtime_parameters: Error: Target media "/dev/sdb" is not an partition!).



                What seemed to work was to wipe and build a boot drive from scratch with:



                sudo woeusb --tgt-fs NTFS -d ~/Downloads/Win10_1809Oct_English_x64.iso /dev/sdb







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Dec 3 at 6:45









                jackw11111

                40617




                40617






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Ask Ubuntu!


                    • 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%2faskubuntu.com%2fquestions%2f1097560%2fwoeusb-error-code-256-with-ntfs-formatted-usb%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

                    Quarter-circle Tiles

                    build a pushdown automaton that recognizes the reverse language of a given pushdown automaton?

                    Mont Emei