usb-creator-kde fail to install bootable kubuntu
I want to install a bootable kubuntu 12.04.3 LTS on my Kingston flash drive (1,9GB storage). I've already tried it twice so far and the flash drive didn't start from USB, although I made sure that BIOS has USB as the first setting (it's USB, DVD, HDD respectively).
I use usb-creator-kde. I read it is advised to format the flash drive entirely, so I click clear disk content (on the flash drive), then I get a dozen of options to install the system on:
What does it mean, what the heck is that? Just to make it clear - yes, I've got a single USB drive.
Pojemność = capacity, Wolne miejsce = free space.
ubuntu usb installation kubuntu
add a comment |
I want to install a bootable kubuntu 12.04.3 LTS on my Kingston flash drive (1,9GB storage). I've already tried it twice so far and the flash drive didn't start from USB, although I made sure that BIOS has USB as the first setting (it's USB, DVD, HDD respectively).
I use usb-creator-kde. I read it is advised to format the flash drive entirely, so I click clear disk content (on the flash drive), then I get a dozen of options to install the system on:
What does it mean, what the heck is that? Just to make it clear - yes, I've got a single USB drive.
Pojemność = capacity, Wolne miejsce = free space.
ubuntu usb installation kubuntu
add a comment |
I want to install a bootable kubuntu 12.04.3 LTS on my Kingston flash drive (1,9GB storage). I've already tried it twice so far and the flash drive didn't start from USB, although I made sure that BIOS has USB as the first setting (it's USB, DVD, HDD respectively).
I use usb-creator-kde. I read it is advised to format the flash drive entirely, so I click clear disk content (on the flash drive), then I get a dozen of options to install the system on:
What does it mean, what the heck is that? Just to make it clear - yes, I've got a single USB drive.
Pojemność = capacity, Wolne miejsce = free space.
ubuntu usb installation kubuntu
I want to install a bootable kubuntu 12.04.3 LTS on my Kingston flash drive (1,9GB storage). I've already tried it twice so far and the flash drive didn't start from USB, although I made sure that BIOS has USB as the first setting (it's USB, DVD, HDD respectively).
I use usb-creator-kde. I read it is advised to format the flash drive entirely, so I click clear disk content (on the flash drive), then I get a dozen of options to install the system on:
What does it mean, what the heck is that? Just to make it clear - yes, I've got a single USB drive.
Pojemność = capacity, Wolne miejsce = free space.
ubuntu usb installation kubuntu
ubuntu usb installation kubuntu
asked Nov 11 '13 at 18:39
ducinducin
1821214
1821214
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
Try unmounting the partition and creating a new FAT32 filesystem on it, to be sure it's completely clean and empty. You can do it from graphical interface (see there for the howto) or from shell :
sudo umount /dev/sdb1
sudo mkdosfs -F 32 /dev/sdb1
You may also try an other bootable usb creator. I personally use Unetbootin, and it never failed me.
add a comment |
From the Arch Linux USB Installation Media manpage:
UNetbootin can be used on any Linux distribution or Windows to copy your iso to a USB device. However, Unetbootin overwrites syslinux.cfg, so it creates a USB device that does not boot properly. For this reason, Unetbootin is not recommended
Unfortunately this comment applies to other Linux distros, including Kubuntu (trust me, I am writing from Kubuntu 13.10). Instead, the recommended way to create a USB installation medium is to issue, as root, the following command:
dd bs=4M if=/path/to/kubuntu.iso of=/dev/sdX && sync
sdX is your USB device. Three important caveats:
1) You will have to find out which one it is all by yourself, and you must be careful, because the above command, just like unetbootin or any such utility, will wipe everything off sdX.
2) it is /dev/sdb
(if the drive letter is b
), not /dev/sdb1.
3) The flash drive must be inserted but unmounted. If you have a system that automatically mounts USB pens, please use sudo umount ...
to unmount the drive before dd'ing it.
The last command, sync
, just flashes the file system buffers.
add a comment |
So I potentially recently had the same problem trying to make a bootable usb with Linux Mint off of a Linux Mint distribution on my desktop. The problem was that whatever usb creator comes stock with Mint wasn't installing a bootloader that was compatible with UEFI. If instead of BIOS you have a UEFI system this may be your problem. I solved it by installing the gnome version of start-up disk creator usb-creator-gtk
.
add a comment |
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',
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%2fsuperuser.com%2fquestions%2f674521%2fusb-creator-kde-fail-to-install-bootable-kubuntu%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
Try unmounting the partition and creating a new FAT32 filesystem on it, to be sure it's completely clean and empty. You can do it from graphical interface (see there for the howto) or from shell :
sudo umount /dev/sdb1
sudo mkdosfs -F 32 /dev/sdb1
You may also try an other bootable usb creator. I personally use Unetbootin, and it never failed me.
add a comment |
Try unmounting the partition and creating a new FAT32 filesystem on it, to be sure it's completely clean and empty. You can do it from graphical interface (see there for the howto) or from shell :
sudo umount /dev/sdb1
sudo mkdosfs -F 32 /dev/sdb1
You may also try an other bootable usb creator. I personally use Unetbootin, and it never failed me.
add a comment |
Try unmounting the partition and creating a new FAT32 filesystem on it, to be sure it's completely clean and empty. You can do it from graphical interface (see there for the howto) or from shell :
sudo umount /dev/sdb1
sudo mkdosfs -F 32 /dev/sdb1
You may also try an other bootable usb creator. I personally use Unetbootin, and it never failed me.
Try unmounting the partition and creating a new FAT32 filesystem on it, to be sure it's completely clean and empty. You can do it from graphical interface (see there for the howto) or from shell :
sudo umount /dev/sdb1
sudo mkdosfs -F 32 /dev/sdb1
You may also try an other bootable usb creator. I personally use Unetbootin, and it never failed me.
edited Apr 13 '17 at 12:22
Community♦
1
1
answered Dec 4 '13 at 23:16
LevansLevans
1,8201018
1,8201018
add a comment |
add a comment |
From the Arch Linux USB Installation Media manpage:
UNetbootin can be used on any Linux distribution or Windows to copy your iso to a USB device. However, Unetbootin overwrites syslinux.cfg, so it creates a USB device that does not boot properly. For this reason, Unetbootin is not recommended
Unfortunately this comment applies to other Linux distros, including Kubuntu (trust me, I am writing from Kubuntu 13.10). Instead, the recommended way to create a USB installation medium is to issue, as root, the following command:
dd bs=4M if=/path/to/kubuntu.iso of=/dev/sdX && sync
sdX is your USB device. Three important caveats:
1) You will have to find out which one it is all by yourself, and you must be careful, because the above command, just like unetbootin or any such utility, will wipe everything off sdX.
2) it is /dev/sdb
(if the drive letter is b
), not /dev/sdb1.
3) The flash drive must be inserted but unmounted. If you have a system that automatically mounts USB pens, please use sudo umount ...
to unmount the drive before dd'ing it.
The last command, sync
, just flashes the file system buffers.
add a comment |
From the Arch Linux USB Installation Media manpage:
UNetbootin can be used on any Linux distribution or Windows to copy your iso to a USB device. However, Unetbootin overwrites syslinux.cfg, so it creates a USB device that does not boot properly. For this reason, Unetbootin is not recommended
Unfortunately this comment applies to other Linux distros, including Kubuntu (trust me, I am writing from Kubuntu 13.10). Instead, the recommended way to create a USB installation medium is to issue, as root, the following command:
dd bs=4M if=/path/to/kubuntu.iso of=/dev/sdX && sync
sdX is your USB device. Three important caveats:
1) You will have to find out which one it is all by yourself, and you must be careful, because the above command, just like unetbootin or any such utility, will wipe everything off sdX.
2) it is /dev/sdb
(if the drive letter is b
), not /dev/sdb1.
3) The flash drive must be inserted but unmounted. If you have a system that automatically mounts USB pens, please use sudo umount ...
to unmount the drive before dd'ing it.
The last command, sync
, just flashes the file system buffers.
add a comment |
From the Arch Linux USB Installation Media manpage:
UNetbootin can be used on any Linux distribution or Windows to copy your iso to a USB device. However, Unetbootin overwrites syslinux.cfg, so it creates a USB device that does not boot properly. For this reason, Unetbootin is not recommended
Unfortunately this comment applies to other Linux distros, including Kubuntu (trust me, I am writing from Kubuntu 13.10). Instead, the recommended way to create a USB installation medium is to issue, as root, the following command:
dd bs=4M if=/path/to/kubuntu.iso of=/dev/sdX && sync
sdX is your USB device. Three important caveats:
1) You will have to find out which one it is all by yourself, and you must be careful, because the above command, just like unetbootin or any such utility, will wipe everything off sdX.
2) it is /dev/sdb
(if the drive letter is b
), not /dev/sdb1.
3) The flash drive must be inserted but unmounted. If you have a system that automatically mounts USB pens, please use sudo umount ...
to unmount the drive before dd'ing it.
The last command, sync
, just flashes the file system buffers.
From the Arch Linux USB Installation Media manpage:
UNetbootin can be used on any Linux distribution or Windows to copy your iso to a USB device. However, Unetbootin overwrites syslinux.cfg, so it creates a USB device that does not boot properly. For this reason, Unetbootin is not recommended
Unfortunately this comment applies to other Linux distros, including Kubuntu (trust me, I am writing from Kubuntu 13.10). Instead, the recommended way to create a USB installation medium is to issue, as root, the following command:
dd bs=4M if=/path/to/kubuntu.iso of=/dev/sdX && sync
sdX is your USB device. Three important caveats:
1) You will have to find out which one it is all by yourself, and you must be careful, because the above command, just like unetbootin or any such utility, will wipe everything off sdX.
2) it is /dev/sdb
(if the drive letter is b
), not /dev/sdb1.
3) The flash drive must be inserted but unmounted. If you have a system that automatically mounts USB pens, please use sudo umount ...
to unmount the drive before dd'ing it.
The last command, sync
, just flashes the file system buffers.
answered Dec 6 '13 at 11:38
MariusMatutiaeMariusMatutiae
38.8k953100
38.8k953100
add a comment |
add a comment |
So I potentially recently had the same problem trying to make a bootable usb with Linux Mint off of a Linux Mint distribution on my desktop. The problem was that whatever usb creator comes stock with Mint wasn't installing a bootloader that was compatible with UEFI. If instead of BIOS you have a UEFI system this may be your problem. I solved it by installing the gnome version of start-up disk creator usb-creator-gtk
.
add a comment |
So I potentially recently had the same problem trying to make a bootable usb with Linux Mint off of a Linux Mint distribution on my desktop. The problem was that whatever usb creator comes stock with Mint wasn't installing a bootloader that was compatible with UEFI. If instead of BIOS you have a UEFI system this may be your problem. I solved it by installing the gnome version of start-up disk creator usb-creator-gtk
.
add a comment |
So I potentially recently had the same problem trying to make a bootable usb with Linux Mint off of a Linux Mint distribution on my desktop. The problem was that whatever usb creator comes stock with Mint wasn't installing a bootloader that was compatible with UEFI. If instead of BIOS you have a UEFI system this may be your problem. I solved it by installing the gnome version of start-up disk creator usb-creator-gtk
.
So I potentially recently had the same problem trying to make a bootable usb with Linux Mint off of a Linux Mint distribution on my desktop. The problem was that whatever usb creator comes stock with Mint wasn't installing a bootloader that was compatible with UEFI. If instead of BIOS you have a UEFI system this may be your problem. I solved it by installing the gnome version of start-up disk creator usb-creator-gtk
.
answered Dec 9 '13 at 7:11
plattnumplattnum
1163
1163
add a comment |
add a comment |
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.
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%2fsuperuser.com%2fquestions%2f674521%2fusb-creator-kde-fail-to-install-bootable-kubuntu%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