Make a bootable usb for an iso file greater than 4 GB?
How can I make the bootable USB for the greater ISO file, greater than 4 GB?
I tried a lot of programs like woeusb and startup creator
enter image description here
kubuntu format
add a comment |
How can I make the bootable USB for the greater ISO file, greater than 4 GB?
I tried a lot of programs like woeusb and startup creator
enter image description here
kubuntu format
@C.La Mosca which command I should write in uppercase?
– Elsaid Younes
Jan 29 at 21:37
add a comment |
How can I make the bootable USB for the greater ISO file, greater than 4 GB?
I tried a lot of programs like woeusb and startup creator
enter image description here
kubuntu format
How can I make the bootable USB for the greater ISO file, greater than 4 GB?
I tried a lot of programs like woeusb and startup creator
enter image description here
kubuntu format
kubuntu format
edited Jan 28 at 20:53
Elsaid Younes
asked Jan 28 at 19:30
Elsaid YounesElsaid Younes
88
88
@C.La Mosca which command I should write in uppercase?
– Elsaid Younes
Jan 29 at 21:37
add a comment |
@C.La Mosca which command I should write in uppercase?
– Elsaid Younes
Jan 29 at 21:37
@C.La Mosca which command I should write in uppercase?
– Elsaid Younes
Jan 29 at 21:37
@C.La Mosca which command I should write in uppercase?
– Elsaid Younes
Jan 29 at 21:37
add a comment |
2 Answers
2
active
oldest
votes
You are trying to make a bootable USB from an ISO file (Maybe a Windows installation ISO?) using WoeUSB, and the error message said that you can not copy the file install.wim in the the partition because the parameters by default in WoeUSB for the target filesystem (USB stick) are FAT32. That is what i saw in the link posted by you: WoeUSB Installation failed ERROR
Now, from the man page of WoeUSB (WoeUSB man page) the options
`--target-filesystem`
and
`--device`
will help you.
To accomplish the task you should type in the command line something like this:
sudo woeusb --target-filesystem NTFS --device /media/pathtothe/isofile.iso /dev/sdX
whith the option --target-filesystem NTFS you make possible copy into the USB files greater than 4GiB. In your case the install.wim file.
/dev/sdX is the target device (your USB stick unmounted). Change the X according to your needs.
That should work.
Hope this can help you.
1
Comments are not for extended discussion; this conversation has been moved to chat.
– Thomas Ward♦
Feb 1 at 21:34
add a comment |
I think you might be running into the 4GB file size restriction when using FAT16/32 partitions.
Try wiping the USB stick and re-partitioning it at an ext4 partition on your USB stick (assuming your USB stick is /dev/USB0 ):
sudo mkfs.ext4 /dev/USB0
If UEFI, you have to have a FAT32 partition for UEFI boot. If BIOS boot you may need to use grub in separate /boot partition. Do your really need that large of an ISO, or can you add another partition with scripts to add changes you want?
– oldfred
Jan 28 at 20:04
I did format it to ntfs successfully. The problem is to write the ISO file, which is greater than 4GB.
– Elsaid Younes
Jan 28 at 20:07
@oldfred the size of the ISO file is 5.1 GB
– Elsaid Younes
Jan 28 at 20:10
add a comment |
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',
autoActivateHeartbeat: false,
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1113608%2fmake-a-bootable-usb-for-an-iso-file-greater-than-4-gb%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You are trying to make a bootable USB from an ISO file (Maybe a Windows installation ISO?) using WoeUSB, and the error message said that you can not copy the file install.wim in the the partition because the parameters by default in WoeUSB for the target filesystem (USB stick) are FAT32. That is what i saw in the link posted by you: WoeUSB Installation failed ERROR
Now, from the man page of WoeUSB (WoeUSB man page) the options
`--target-filesystem`
and
`--device`
will help you.
To accomplish the task you should type in the command line something like this:
sudo woeusb --target-filesystem NTFS --device /media/pathtothe/isofile.iso /dev/sdX
whith the option --target-filesystem NTFS you make possible copy into the USB files greater than 4GiB. In your case the install.wim file.
/dev/sdX is the target device (your USB stick unmounted). Change the X according to your needs.
That should work.
Hope this can help you.
1
Comments are not for extended discussion; this conversation has been moved to chat.
– Thomas Ward♦
Feb 1 at 21:34
add a comment |
You are trying to make a bootable USB from an ISO file (Maybe a Windows installation ISO?) using WoeUSB, and the error message said that you can not copy the file install.wim in the the partition because the parameters by default in WoeUSB for the target filesystem (USB stick) are FAT32. That is what i saw in the link posted by you: WoeUSB Installation failed ERROR
Now, from the man page of WoeUSB (WoeUSB man page) the options
`--target-filesystem`
and
`--device`
will help you.
To accomplish the task you should type in the command line something like this:
sudo woeusb --target-filesystem NTFS --device /media/pathtothe/isofile.iso /dev/sdX
whith the option --target-filesystem NTFS you make possible copy into the USB files greater than 4GiB. In your case the install.wim file.
/dev/sdX is the target device (your USB stick unmounted). Change the X according to your needs.
That should work.
Hope this can help you.
1
Comments are not for extended discussion; this conversation has been moved to chat.
– Thomas Ward♦
Feb 1 at 21:34
add a comment |
You are trying to make a bootable USB from an ISO file (Maybe a Windows installation ISO?) using WoeUSB, and the error message said that you can not copy the file install.wim in the the partition because the parameters by default in WoeUSB for the target filesystem (USB stick) are FAT32. That is what i saw in the link posted by you: WoeUSB Installation failed ERROR
Now, from the man page of WoeUSB (WoeUSB man page) the options
`--target-filesystem`
and
`--device`
will help you.
To accomplish the task you should type in the command line something like this:
sudo woeusb --target-filesystem NTFS --device /media/pathtothe/isofile.iso /dev/sdX
whith the option --target-filesystem NTFS you make possible copy into the USB files greater than 4GiB. In your case the install.wim file.
/dev/sdX is the target device (your USB stick unmounted). Change the X according to your needs.
That should work.
Hope this can help you.
You are trying to make a bootable USB from an ISO file (Maybe a Windows installation ISO?) using WoeUSB, and the error message said that you can not copy the file install.wim in the the partition because the parameters by default in WoeUSB for the target filesystem (USB stick) are FAT32. That is what i saw in the link posted by you: WoeUSB Installation failed ERROR
Now, from the man page of WoeUSB (WoeUSB man page) the options
`--target-filesystem`
and
`--device`
will help you.
To accomplish the task you should type in the command line something like this:
sudo woeusb --target-filesystem NTFS --device /media/pathtothe/isofile.iso /dev/sdX
whith the option --target-filesystem NTFS you make possible copy into the USB files greater than 4GiB. In your case the install.wim file.
/dev/sdX is the target device (your USB stick unmounted). Change the X according to your needs.
That should work.
Hope this can help you.
answered Jan 28 at 21:42
C. La MoscaC. La Mosca
364
364
1
Comments are not for extended discussion; this conversation has been moved to chat.
– Thomas Ward♦
Feb 1 at 21:34
add a comment |
1
Comments are not for extended discussion; this conversation has been moved to chat.
– Thomas Ward♦
Feb 1 at 21:34
1
1
Comments are not for extended discussion; this conversation has been moved to chat.
– Thomas Ward♦
Feb 1 at 21:34
Comments are not for extended discussion; this conversation has been moved to chat.
– Thomas Ward♦
Feb 1 at 21:34
add a comment |
I think you might be running into the 4GB file size restriction when using FAT16/32 partitions.
Try wiping the USB stick and re-partitioning it at an ext4 partition on your USB stick (assuming your USB stick is /dev/USB0 ):
sudo mkfs.ext4 /dev/USB0
If UEFI, you have to have a FAT32 partition for UEFI boot. If BIOS boot you may need to use grub in separate /boot partition. Do your really need that large of an ISO, or can you add another partition with scripts to add changes you want?
– oldfred
Jan 28 at 20:04
I did format it to ntfs successfully. The problem is to write the ISO file, which is greater than 4GB.
– Elsaid Younes
Jan 28 at 20:07
@oldfred the size of the ISO file is 5.1 GB
– Elsaid Younes
Jan 28 at 20:10
add a comment |
I think you might be running into the 4GB file size restriction when using FAT16/32 partitions.
Try wiping the USB stick and re-partitioning it at an ext4 partition on your USB stick (assuming your USB stick is /dev/USB0 ):
sudo mkfs.ext4 /dev/USB0
If UEFI, you have to have a FAT32 partition for UEFI boot. If BIOS boot you may need to use grub in separate /boot partition. Do your really need that large of an ISO, or can you add another partition with scripts to add changes you want?
– oldfred
Jan 28 at 20:04
I did format it to ntfs successfully. The problem is to write the ISO file, which is greater than 4GB.
– Elsaid Younes
Jan 28 at 20:07
@oldfred the size of the ISO file is 5.1 GB
– Elsaid Younes
Jan 28 at 20:10
add a comment |
I think you might be running into the 4GB file size restriction when using FAT16/32 partitions.
Try wiping the USB stick and re-partitioning it at an ext4 partition on your USB stick (assuming your USB stick is /dev/USB0 ):
sudo mkfs.ext4 /dev/USB0
I think you might be running into the 4GB file size restriction when using FAT16/32 partitions.
Try wiping the USB stick and re-partitioning it at an ext4 partition on your USB stick (assuming your USB stick is /dev/USB0 ):
sudo mkfs.ext4 /dev/USB0
answered Jan 28 at 19:38
JackspaceJackspace
1336
1336
If UEFI, you have to have a FAT32 partition for UEFI boot. If BIOS boot you may need to use grub in separate /boot partition. Do your really need that large of an ISO, or can you add another partition with scripts to add changes you want?
– oldfred
Jan 28 at 20:04
I did format it to ntfs successfully. The problem is to write the ISO file, which is greater than 4GB.
– Elsaid Younes
Jan 28 at 20:07
@oldfred the size of the ISO file is 5.1 GB
– Elsaid Younes
Jan 28 at 20:10
add a comment |
If UEFI, you have to have a FAT32 partition for UEFI boot. If BIOS boot you may need to use grub in separate /boot partition. Do your really need that large of an ISO, or can you add another partition with scripts to add changes you want?
– oldfred
Jan 28 at 20:04
I did format it to ntfs successfully. The problem is to write the ISO file, which is greater than 4GB.
– Elsaid Younes
Jan 28 at 20:07
@oldfred the size of the ISO file is 5.1 GB
– Elsaid Younes
Jan 28 at 20:10
If UEFI, you have to have a FAT32 partition for UEFI boot. If BIOS boot you may need to use grub in separate /boot partition. Do your really need that large of an ISO, or can you add another partition with scripts to add changes you want?
– oldfred
Jan 28 at 20:04
If UEFI, you have to have a FAT32 partition for UEFI boot. If BIOS boot you may need to use grub in separate /boot partition. Do your really need that large of an ISO, or can you add another partition with scripts to add changes you want?
– oldfred
Jan 28 at 20:04
I did format it to ntfs successfully. The problem is to write the ISO file, which is greater than 4GB.
– Elsaid Younes
Jan 28 at 20:07
I did format it to ntfs successfully. The problem is to write the ISO file, which is greater than 4GB.
– Elsaid Younes
Jan 28 at 20:07
@oldfred the size of the ISO file is 5.1 GB
– Elsaid Younes
Jan 28 at 20:10
@oldfred the size of the ISO file is 5.1 GB
– Elsaid Younes
Jan 28 at 20:10
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1113608%2fmake-a-bootable-usb-for-an-iso-file-greater-than-4-gb%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
@C.La Mosca which command I should write in uppercase?
– Elsaid Younes
Jan 29 at 21:37