How do I make a bootable harddisk on Ubuntu?
Hey everyone I just moved away from Windows you can guess,
I'm running Ubuntu 15.04 on my HDD located /dev/sda1
on. How do I make a Linux Mint Cinnamon x64 ISO bootable on my harddisk located on /dev/sdb1
?
I can't use the tool called Universal USB Installer – Easy as 1, 2, 3, because this is made for Windows but I know this tool can do the job.
I don't know how to use Linux, so can you tell me step by step what/how to open and what/how to install.
I thank you with all respect and support.
Please only answer if you know how my older was moved away because someone false answered.
hard-drive 15.04 iso
add a comment |
Hey everyone I just moved away from Windows you can guess,
I'm running Ubuntu 15.04 on my HDD located /dev/sda1
on. How do I make a Linux Mint Cinnamon x64 ISO bootable on my harddisk located on /dev/sdb1
?
I can't use the tool called Universal USB Installer – Easy as 1, 2, 3, because this is made for Windows but I know this tool can do the job.
I don't know how to use Linux, so can you tell me step by step what/how to open and what/how to install.
I thank you with all respect and support.
Please only answer if you know how my older was moved away because someone false answered.
hard-drive 15.04 iso
i want to install linux mint from my secondarry hdd
– gast33
Sep 24 '15 at 23:14
UNetBootin might be what you need.
– TheWanderer
Sep 24 '15 at 23:31
add a comment |
Hey everyone I just moved away from Windows you can guess,
I'm running Ubuntu 15.04 on my HDD located /dev/sda1
on. How do I make a Linux Mint Cinnamon x64 ISO bootable on my harddisk located on /dev/sdb1
?
I can't use the tool called Universal USB Installer – Easy as 1, 2, 3, because this is made for Windows but I know this tool can do the job.
I don't know how to use Linux, so can you tell me step by step what/how to open and what/how to install.
I thank you with all respect and support.
Please only answer if you know how my older was moved away because someone false answered.
hard-drive 15.04 iso
Hey everyone I just moved away from Windows you can guess,
I'm running Ubuntu 15.04 on my HDD located /dev/sda1
on. How do I make a Linux Mint Cinnamon x64 ISO bootable on my harddisk located on /dev/sdb1
?
I can't use the tool called Universal USB Installer – Easy as 1, 2, 3, because this is made for Windows but I know this tool can do the job.
I don't know how to use Linux, so can you tell me step by step what/how to open and what/how to install.
I thank you with all respect and support.
Please only answer if you know how my older was moved away because someone false answered.
hard-drive 15.04 iso
hard-drive 15.04 iso
edited Jun 3 at 9:41
LFC_Red
3203517
3203517
asked Sep 24 '15 at 23:13
gast33
2116
2116
i want to install linux mint from my secondarry hdd
– gast33
Sep 24 '15 at 23:14
UNetBootin might be what you need.
– TheWanderer
Sep 24 '15 at 23:31
add a comment |
i want to install linux mint from my secondarry hdd
– gast33
Sep 24 '15 at 23:14
UNetBootin might be what you need.
– TheWanderer
Sep 24 '15 at 23:31
i want to install linux mint from my secondarry hdd
– gast33
Sep 24 '15 at 23:14
i want to install linux mint from my secondarry hdd
– gast33
Sep 24 '15 at 23:14
UNetBootin might be what you need.
– TheWanderer
Sep 24 '15 at 23:31
UNetBootin might be what you need.
– TheWanderer
Sep 24 '15 at 23:31
add a comment |
5 Answers
5
active
oldest
votes
Here's how I solved this:
First, I installed unetbootin
. Then, I opened it via terminal with sudo
. Then, I used the command unetbootin installtype=HDD targetdrive=/dev/sdb1
. Then, I selected the iso file and it worked.
I installed Linux Mint, but i went back to Ubuntu. This time, though, I used my pendrive
rather than being rude in your post, actually posting what you did to fix it as an answer is a better thing to do.
– Thomas Ward♦
Oct 7 '15 at 22:56
"you all was wrong thanks for trying" is a rude way of saying that.
– Thomas Ward♦
Oct 7 '15 at 23:02
add a comment |
You should be able to use the "Startup Disk Creator" feature built into ubuntu to make a USB key that installs ubuntu. Either this or a livecd can be used to install mint. Just remember to update grub bootloader when you are done :)
add a comment |
- Download the ISO you want.
- Put it in an easy to access directory.
Open Terminal and run:
cd /path/to/iso/directory/
sudo dd if=example.iso of=/dev/sdb
Reboot and choose to boot from /dev/sdb
I hope this helps, good luck!!!
add a comment |
I just went through this whole process, so maybe I can shed some light on the situation:
Put in a USB drive and download either the universal boot loader or the YUMI multiboot loader from pendrivelinux.com.
The program now will tell you what to do: onto the drive, it will tell you to identify the USB drive, then simply identify the iso you want to boot from.
Either press F12 at the start up on your computer or go to "advanced options" from the grub (linux boot page), and tell it to boot from the USB storage device.
the rest is up to you! The other option is to burn the ISO onto a cd through one of the many image burner programs (imgburn, freeisoburner, ect.) and tell the computer to boot through the cd drive, but for me this created problems and was not as smooth as the USB option.
add a comment |
From what i understand you want to boot from an iso file that exists on your /dev/sdb1 volume,
First make sure grub is installed
sudo update-grub
sudo grub-install /dev/sda
Find uuid of /dev/sdb1
sudo blkid | grep /dev/sdb1
Take note of uuid and fs type.
Then open your grub.cfg file for editing
sudo gedit /boot/grub/grub.cfg
Go to line where you start seeing your menuentries they will be in format
menuentry Ubuntu Linux
{
some commands
}
DONT edit existing entries just add a new one before END
menuentry "Linux Mint" {
insmod xxxx
set root='(hd1,msdos0)'
search --no-floppy --fs-uuid --set=root yyyy
loopback loop /linuxmint-16-mate-dvd-64bit.iso
set gfxpayload=keep
linux (loop)/casper/vmlinuz file=/cdrom/preseed/linuxmint.seed boot=casper iso-scan/filename=/linuxmint-16-mate-dvd-64bit.iso noeject noprompt --
initrd (loop)/casper/initrd.lz
}
You will have to change /linuxmint-16-mate-dvd-64bit.iso
with path to your iso file
Change xxxx
to your fs type
Change yyyy
to your uuid
Reboot
Choose Linux Mint entry in grub at startup
This will boot your computer from iso, you can install it or use it as live cd.
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%2f678098%2fhow-do-i-make-a-bootable-harddisk-on-ubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
Here's how I solved this:
First, I installed unetbootin
. Then, I opened it via terminal with sudo
. Then, I used the command unetbootin installtype=HDD targetdrive=/dev/sdb1
. Then, I selected the iso file and it worked.
I installed Linux Mint, but i went back to Ubuntu. This time, though, I used my pendrive
rather than being rude in your post, actually posting what you did to fix it as an answer is a better thing to do.
– Thomas Ward♦
Oct 7 '15 at 22:56
"you all was wrong thanks for trying" is a rude way of saying that.
– Thomas Ward♦
Oct 7 '15 at 23:02
add a comment |
Here's how I solved this:
First, I installed unetbootin
. Then, I opened it via terminal with sudo
. Then, I used the command unetbootin installtype=HDD targetdrive=/dev/sdb1
. Then, I selected the iso file and it worked.
I installed Linux Mint, but i went back to Ubuntu. This time, though, I used my pendrive
rather than being rude in your post, actually posting what you did to fix it as an answer is a better thing to do.
– Thomas Ward♦
Oct 7 '15 at 22:56
"you all was wrong thanks for trying" is a rude way of saying that.
– Thomas Ward♦
Oct 7 '15 at 23:02
add a comment |
Here's how I solved this:
First, I installed unetbootin
. Then, I opened it via terminal with sudo
. Then, I used the command unetbootin installtype=HDD targetdrive=/dev/sdb1
. Then, I selected the iso file and it worked.
I installed Linux Mint, but i went back to Ubuntu. This time, though, I used my pendrive
Here's how I solved this:
First, I installed unetbootin
. Then, I opened it via terminal with sudo
. Then, I used the command unetbootin installtype=HDD targetdrive=/dev/sdb1
. Then, I selected the iso file and it worked.
I installed Linux Mint, but i went back to Ubuntu. This time, though, I used my pendrive
edited Oct 7 '15 at 23:10
Thomas Ward♦
43.4k23120172
43.4k23120172
answered Oct 7 '15 at 22:51
gast33
2116
2116
rather than being rude in your post, actually posting what you did to fix it as an answer is a better thing to do.
– Thomas Ward♦
Oct 7 '15 at 22:56
"you all was wrong thanks for trying" is a rude way of saying that.
– Thomas Ward♦
Oct 7 '15 at 23:02
add a comment |
rather than being rude in your post, actually posting what you did to fix it as an answer is a better thing to do.
– Thomas Ward♦
Oct 7 '15 at 22:56
"you all was wrong thanks for trying" is a rude way of saying that.
– Thomas Ward♦
Oct 7 '15 at 23:02
rather than being rude in your post, actually posting what you did to fix it as an answer is a better thing to do.
– Thomas Ward♦
Oct 7 '15 at 22:56
rather than being rude in your post, actually posting what you did to fix it as an answer is a better thing to do.
– Thomas Ward♦
Oct 7 '15 at 22:56
"you all was wrong thanks for trying" is a rude way of saying that.
– Thomas Ward♦
Oct 7 '15 at 23:02
"you all was wrong thanks for trying" is a rude way of saying that.
– Thomas Ward♦
Oct 7 '15 at 23:02
add a comment |
You should be able to use the "Startup Disk Creator" feature built into ubuntu to make a USB key that installs ubuntu. Either this or a livecd can be used to install mint. Just remember to update grub bootloader when you are done :)
add a comment |
You should be able to use the "Startup Disk Creator" feature built into ubuntu to make a USB key that installs ubuntu. Either this or a livecd can be used to install mint. Just remember to update grub bootloader when you are done :)
add a comment |
You should be able to use the "Startup Disk Creator" feature built into ubuntu to make a USB key that installs ubuntu. Either this or a livecd can be used to install mint. Just remember to update grub bootloader when you are done :)
You should be able to use the "Startup Disk Creator" feature built into ubuntu to make a USB key that installs ubuntu. Either this or a livecd can be used to install mint. Just remember to update grub bootloader when you are done :)
edited Sep 24 '15 at 23:37
answered Sep 24 '15 at 23:26
Aedazan
18713
18713
add a comment |
add a comment |
- Download the ISO you want.
- Put it in an easy to access directory.
Open Terminal and run:
cd /path/to/iso/directory/
sudo dd if=example.iso of=/dev/sdb
Reboot and choose to boot from /dev/sdb
I hope this helps, good luck!!!
add a comment |
- Download the ISO you want.
- Put it in an easy to access directory.
Open Terminal and run:
cd /path/to/iso/directory/
sudo dd if=example.iso of=/dev/sdb
Reboot and choose to boot from /dev/sdb
I hope this helps, good luck!!!
add a comment |
- Download the ISO you want.
- Put it in an easy to access directory.
Open Terminal and run:
cd /path/to/iso/directory/
sudo dd if=example.iso of=/dev/sdb
Reboot and choose to boot from /dev/sdb
I hope this helps, good luck!!!
- Download the ISO you want.
- Put it in an easy to access directory.
Open Terminal and run:
cd /path/to/iso/directory/
sudo dd if=example.iso of=/dev/sdb
Reboot and choose to boot from /dev/sdb
I hope this helps, good luck!!!
edited Sep 24 '15 at 23:46
answered Sep 24 '15 at 23:41
taserman21
12
12
add a comment |
add a comment |
I just went through this whole process, so maybe I can shed some light on the situation:
Put in a USB drive and download either the universal boot loader or the YUMI multiboot loader from pendrivelinux.com.
The program now will tell you what to do: onto the drive, it will tell you to identify the USB drive, then simply identify the iso you want to boot from.
Either press F12 at the start up on your computer or go to "advanced options" from the grub (linux boot page), and tell it to boot from the USB storage device.
the rest is up to you! The other option is to burn the ISO onto a cd through one of the many image burner programs (imgburn, freeisoburner, ect.) and tell the computer to boot through the cd drive, but for me this created problems and was not as smooth as the USB option.
add a comment |
I just went through this whole process, so maybe I can shed some light on the situation:
Put in a USB drive and download either the universal boot loader or the YUMI multiboot loader from pendrivelinux.com.
The program now will tell you what to do: onto the drive, it will tell you to identify the USB drive, then simply identify the iso you want to boot from.
Either press F12 at the start up on your computer or go to "advanced options" from the grub (linux boot page), and tell it to boot from the USB storage device.
the rest is up to you! The other option is to burn the ISO onto a cd through one of the many image burner programs (imgburn, freeisoburner, ect.) and tell the computer to boot through the cd drive, but for me this created problems and was not as smooth as the USB option.
add a comment |
I just went through this whole process, so maybe I can shed some light on the situation:
Put in a USB drive and download either the universal boot loader or the YUMI multiboot loader from pendrivelinux.com.
The program now will tell you what to do: onto the drive, it will tell you to identify the USB drive, then simply identify the iso you want to boot from.
Either press F12 at the start up on your computer or go to "advanced options" from the grub (linux boot page), and tell it to boot from the USB storage device.
the rest is up to you! The other option is to burn the ISO onto a cd through one of the many image burner programs (imgburn, freeisoburner, ect.) and tell the computer to boot through the cd drive, but for me this created problems and was not as smooth as the USB option.
I just went through this whole process, so maybe I can shed some light on the situation:
Put in a USB drive and download either the universal boot loader or the YUMI multiboot loader from pendrivelinux.com.
The program now will tell you what to do: onto the drive, it will tell you to identify the USB drive, then simply identify the iso you want to boot from.
Either press F12 at the start up on your computer or go to "advanced options" from the grub (linux boot page), and tell it to boot from the USB storage device.
the rest is up to you! The other option is to burn the ISO onto a cd through one of the many image burner programs (imgburn, freeisoburner, ect.) and tell the computer to boot through the cd drive, but for me this created problems and was not as smooth as the USB option.
answered Sep 25 '15 at 1:24
thinksinbinary
3841617
3841617
add a comment |
add a comment |
From what i understand you want to boot from an iso file that exists on your /dev/sdb1 volume,
First make sure grub is installed
sudo update-grub
sudo grub-install /dev/sda
Find uuid of /dev/sdb1
sudo blkid | grep /dev/sdb1
Take note of uuid and fs type.
Then open your grub.cfg file for editing
sudo gedit /boot/grub/grub.cfg
Go to line where you start seeing your menuentries they will be in format
menuentry Ubuntu Linux
{
some commands
}
DONT edit existing entries just add a new one before END
menuentry "Linux Mint" {
insmod xxxx
set root='(hd1,msdos0)'
search --no-floppy --fs-uuid --set=root yyyy
loopback loop /linuxmint-16-mate-dvd-64bit.iso
set gfxpayload=keep
linux (loop)/casper/vmlinuz file=/cdrom/preseed/linuxmint.seed boot=casper iso-scan/filename=/linuxmint-16-mate-dvd-64bit.iso noeject noprompt --
initrd (loop)/casper/initrd.lz
}
You will have to change /linuxmint-16-mate-dvd-64bit.iso
with path to your iso file
Change xxxx
to your fs type
Change yyyy
to your uuid
Reboot
Choose Linux Mint entry in grub at startup
This will boot your computer from iso, you can install it or use it as live cd.
add a comment |
From what i understand you want to boot from an iso file that exists on your /dev/sdb1 volume,
First make sure grub is installed
sudo update-grub
sudo grub-install /dev/sda
Find uuid of /dev/sdb1
sudo blkid | grep /dev/sdb1
Take note of uuid and fs type.
Then open your grub.cfg file for editing
sudo gedit /boot/grub/grub.cfg
Go to line where you start seeing your menuentries they will be in format
menuentry Ubuntu Linux
{
some commands
}
DONT edit existing entries just add a new one before END
menuentry "Linux Mint" {
insmod xxxx
set root='(hd1,msdos0)'
search --no-floppy --fs-uuid --set=root yyyy
loopback loop /linuxmint-16-mate-dvd-64bit.iso
set gfxpayload=keep
linux (loop)/casper/vmlinuz file=/cdrom/preseed/linuxmint.seed boot=casper iso-scan/filename=/linuxmint-16-mate-dvd-64bit.iso noeject noprompt --
initrd (loop)/casper/initrd.lz
}
You will have to change /linuxmint-16-mate-dvd-64bit.iso
with path to your iso file
Change xxxx
to your fs type
Change yyyy
to your uuid
Reboot
Choose Linux Mint entry in grub at startup
This will boot your computer from iso, you can install it or use it as live cd.
add a comment |
From what i understand you want to boot from an iso file that exists on your /dev/sdb1 volume,
First make sure grub is installed
sudo update-grub
sudo grub-install /dev/sda
Find uuid of /dev/sdb1
sudo blkid | grep /dev/sdb1
Take note of uuid and fs type.
Then open your grub.cfg file for editing
sudo gedit /boot/grub/grub.cfg
Go to line where you start seeing your menuentries they will be in format
menuentry Ubuntu Linux
{
some commands
}
DONT edit existing entries just add a new one before END
menuentry "Linux Mint" {
insmod xxxx
set root='(hd1,msdos0)'
search --no-floppy --fs-uuid --set=root yyyy
loopback loop /linuxmint-16-mate-dvd-64bit.iso
set gfxpayload=keep
linux (loop)/casper/vmlinuz file=/cdrom/preseed/linuxmint.seed boot=casper iso-scan/filename=/linuxmint-16-mate-dvd-64bit.iso noeject noprompt --
initrd (loop)/casper/initrd.lz
}
You will have to change /linuxmint-16-mate-dvd-64bit.iso
with path to your iso file
Change xxxx
to your fs type
Change yyyy
to your uuid
Reboot
Choose Linux Mint entry in grub at startup
This will boot your computer from iso, you can install it or use it as live cd.
From what i understand you want to boot from an iso file that exists on your /dev/sdb1 volume,
First make sure grub is installed
sudo update-grub
sudo grub-install /dev/sda
Find uuid of /dev/sdb1
sudo blkid | grep /dev/sdb1
Take note of uuid and fs type.
Then open your grub.cfg file for editing
sudo gedit /boot/grub/grub.cfg
Go to line where you start seeing your menuentries they will be in format
menuentry Ubuntu Linux
{
some commands
}
DONT edit existing entries just add a new one before END
menuentry "Linux Mint" {
insmod xxxx
set root='(hd1,msdos0)'
search --no-floppy --fs-uuid --set=root yyyy
loopback loop /linuxmint-16-mate-dvd-64bit.iso
set gfxpayload=keep
linux (loop)/casper/vmlinuz file=/cdrom/preseed/linuxmint.seed boot=casper iso-scan/filename=/linuxmint-16-mate-dvd-64bit.iso noeject noprompt --
initrd (loop)/casper/initrd.lz
}
You will have to change /linuxmint-16-mate-dvd-64bit.iso
with path to your iso file
Change xxxx
to your fs type
Change yyyy
to your uuid
Reboot
Choose Linux Mint entry in grub at startup
This will boot your computer from iso, you can install it or use it as live cd.
edited Sep 25 '15 at 4:10
answered Sep 24 '15 at 23:43
H. Freeze
43829
43829
add a comment |
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.
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.
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%2f678098%2fhow-do-i-make-a-bootable-harddisk-on-ubuntu%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
i want to install linux mint from my secondarry hdd
– gast33
Sep 24 '15 at 23:14
UNetBootin might be what you need.
– TheWanderer
Sep 24 '15 at 23:31