Grub EFI USB ISOs unable to find live medium The Next CEO of Stack OverflowHow do I boot an ISO file from my drive using grub2 on UEFI machines?Can I create a dedicated partition for GParted and launch from GRUB?Ubuntu 10.04 and fedora 14 grub conflictproblem with setting up multiboot ISO usb using syslinuxGetting an error on Live USB boot: “(initramfs) Unable to find a medium containing a live file system”How to remove unnecessary EFI entries from GRUB?Unable to reduce Grub boot delayCan't boot Windows 7 from USB, GRUB still therewhen installing in EFI mode GRUB will find the ESP on its own?18.04 dual boot showing grub2 manualMac Mini 2.1 (32bit EFI / 64bit CPU) Ubuntu 18.04.2 Server - GRUB reports unknown filesystemBoot (Ubuntu) from grub manually
Workaholic Formal/Informal
What happens if you roll doubles 3 times then land on "Go to jail?"
Do I need to enable Dev Hub in my PROD Org?
Does it take more energy to get to Venus or to Mars?
Sending manuscript to multiple publishers
Won the lottery - how do I keep the money?
Between two walls
How to make a variable always equal to the result of some calculations?
Received an invoice from my ex-employer billing me for training; how to handle?
How did people program for Consoles with multiple CPUs?
Is it professional to write unrelated content in an almost-empty email?
Why did we only see the N-1 starfighters in one film?
Inappropriate reference requests from Journal reviewers
What is ( CFMCC ) on ILS approach chart?
Limits on contract work without pre-agreed price/contract (UK)
Is HostGator storing my password in plaintext?
Is there an analogue of projective spaces for proper schemes?
WOW air has ceased operation, can I get my tickets refunded?
Rotate a column
Is there a way to save my career from absolute disaster?
Is micro rebar a better way to reinforce concrete than rebar?
How to solve a differential equation with a term to a power?
Are there any unintended negative consequences to allowing PCs to gain multiple levels at once in a short milestone-XP game?
What happened in Rome, when the western empire "fell"?
Grub EFI USB ISOs unable to find live medium
The Next CEO of Stack OverflowHow do I boot an ISO file from my drive using grub2 on UEFI machines?Can I create a dedicated partition for GParted and launch from GRUB?Ubuntu 10.04 and fedora 14 grub conflictproblem with setting up multiboot ISO usb using syslinuxGetting an error on Live USB boot: “(initramfs) Unable to find a medium containing a live file system”How to remove unnecessary EFI entries from GRUB?Unable to reduce Grub boot delayCan't boot Windows 7 from USB, GRUB still therewhen installing in EFI mode GRUB will find the ESP on its own?18.04 dual boot showing grub2 manualMac Mini 2.1 (32bit EFI / 64bit CPU) Ubuntu 18.04.2 Server - GRUB reports unknown filesystemBoot (Ubuntu) from grub manually
My goal:
Install grub2 EFI in a USB to be multiboot with ISOs.
I partition the USB, 1 FAT to install EFI, and another EXT4 for the ISOs.
What works:
Install grub in the USB from a live linux using chroot:
sudo grub-install --force --removable --target=x86_64-efi --efi-directory=/media/user/BOOT/ /dev/sdb1
The USB boots the grub.
What does not work:
I add the menuentry, for example of clonezilla:
menuentry "Clonezilla live (Default settings, VGA 800x600)"
loopback loop (hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
initrd (loop)/live/initrd.img
... but I always get the error
Unable to find a medium containing a live file system
But from the grub console I can check that the paths and names are correct.
I've bee all over the internet and tried many things, other USBs, different computers, different ISOs (Linux Mint, Linux Lite)...but always fall in the same error.
What am I doing wrong or what am I missing?
grub2 live-usb iso grub-efi
add a comment |
My goal:
Install grub2 EFI in a USB to be multiboot with ISOs.
I partition the USB, 1 FAT to install EFI, and another EXT4 for the ISOs.
What works:
Install grub in the USB from a live linux using chroot:
sudo grub-install --force --removable --target=x86_64-efi --efi-directory=/media/user/BOOT/ /dev/sdb1
The USB boots the grub.
What does not work:
I add the menuentry, for example of clonezilla:
menuentry "Clonezilla live (Default settings, VGA 800x600)"
loopback loop (hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
initrd (loop)/live/initrd.img
... but I always get the error
Unable to find a medium containing a live file system
But from the grub console I can check that the paths and names are correct.
I've bee all over the internet and tried many things, other USBs, different computers, different ISOs (Linux Mint, Linux Lite)...but always fall in the same error.
What am I doing wrong or what am I missing?
grub2 live-usb iso grub-efi
Do not know clonezilla live ISO but i686 would be 32 bit in Ubuntu and not UEFI bootable. help.ubuntu.com/community/Grub2/ISOBoot examples gist.github.com/Pysis868/27203177bdef15fbb70c & askubuntu.com/questions/1025656/…
– oldfred
Mar 7 at 4:16
This works for me as a multiboot: askubuntu.com/questions/1025656/… Persistence can be added if desired. The ISO9660 and casper-rw partitions can be removed also.
– C.S.Cameron
Mar 7 at 4:28
@oldfred Thank you. I've been on those links (I've seen every link on the subject he). The clonezilla image has an EFI folder, but I should try with the 64bit version. But... I tried with a Linux Mint 19 64bit and the result was the same. What I haven't tried is with gpt partitions.
– guillermo chamorro
Mar 7 at 12:40
@C.S.Cameron Thank you. It's not just about being able to create a multiboot usb, I can use YUMI (also) for example, but I just want to learn if I can accomplish this without any "extra" software.
– guillermo chamorro
Mar 7 at 12:46
Some of my examples here, but I use a separate configfile in a /ISO folder where I put all the ISO. Biggest issue I always have is getting path correct. And if hard drive getting drive correct. Plugging in flash drive, but booting from HDD, changes my drive order. My hard drive path is different than my flash drive paths so I cannot just copy. askubuntu.com/questions/1025656/… & askubuntu.com/questions/845192/…
– oldfred
Mar 7 at 13:56
add a comment |
My goal:
Install grub2 EFI in a USB to be multiboot with ISOs.
I partition the USB, 1 FAT to install EFI, and another EXT4 for the ISOs.
What works:
Install grub in the USB from a live linux using chroot:
sudo grub-install --force --removable --target=x86_64-efi --efi-directory=/media/user/BOOT/ /dev/sdb1
The USB boots the grub.
What does not work:
I add the menuentry, for example of clonezilla:
menuentry "Clonezilla live (Default settings, VGA 800x600)"
loopback loop (hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
initrd (loop)/live/initrd.img
... but I always get the error
Unable to find a medium containing a live file system
But from the grub console I can check that the paths and names are correct.
I've bee all over the internet and tried many things, other USBs, different computers, different ISOs (Linux Mint, Linux Lite)...but always fall in the same error.
What am I doing wrong or what am I missing?
grub2 live-usb iso grub-efi
My goal:
Install grub2 EFI in a USB to be multiboot with ISOs.
I partition the USB, 1 FAT to install EFI, and another EXT4 for the ISOs.
What works:
Install grub in the USB from a live linux using chroot:
sudo grub-install --force --removable --target=x86_64-efi --efi-directory=/media/user/BOOT/ /dev/sdb1
The USB boots the grub.
What does not work:
I add the menuentry, for example of clonezilla:
menuentry "Clonezilla live (Default settings, VGA 800x600)"
loopback loop (hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
initrd (loop)/live/initrd.img
... but I always get the error
Unable to find a medium containing a live file system
But from the grub console I can check that the paths and names are correct.
I've bee all over the internet and tried many things, other USBs, different computers, different ISOs (Linux Mint, Linux Lite)...but always fall in the same error.
What am I doing wrong or what am I missing?
grub2 live-usb iso grub-efi
grub2 live-usb iso grub-efi
edited Mar 7 at 1:23
zx485
1,47131215
1,47131215
asked Mar 6 at 22:19
guillermo chamorroguillermo chamorro
1063
1063
Do not know clonezilla live ISO but i686 would be 32 bit in Ubuntu and not UEFI bootable. help.ubuntu.com/community/Grub2/ISOBoot examples gist.github.com/Pysis868/27203177bdef15fbb70c & askubuntu.com/questions/1025656/…
– oldfred
Mar 7 at 4:16
This works for me as a multiboot: askubuntu.com/questions/1025656/… Persistence can be added if desired. The ISO9660 and casper-rw partitions can be removed also.
– C.S.Cameron
Mar 7 at 4:28
@oldfred Thank you. I've been on those links (I've seen every link on the subject he). The clonezilla image has an EFI folder, but I should try with the 64bit version. But... I tried with a Linux Mint 19 64bit and the result was the same. What I haven't tried is with gpt partitions.
– guillermo chamorro
Mar 7 at 12:40
@C.S.Cameron Thank you. It's not just about being able to create a multiboot usb, I can use YUMI (also) for example, but I just want to learn if I can accomplish this without any "extra" software.
– guillermo chamorro
Mar 7 at 12:46
Some of my examples here, but I use a separate configfile in a /ISO folder where I put all the ISO. Biggest issue I always have is getting path correct. And if hard drive getting drive correct. Plugging in flash drive, but booting from HDD, changes my drive order. My hard drive path is different than my flash drive paths so I cannot just copy. askubuntu.com/questions/1025656/… & askubuntu.com/questions/845192/…
– oldfred
Mar 7 at 13:56
add a comment |
Do not know clonezilla live ISO but i686 would be 32 bit in Ubuntu and not UEFI bootable. help.ubuntu.com/community/Grub2/ISOBoot examples gist.github.com/Pysis868/27203177bdef15fbb70c & askubuntu.com/questions/1025656/…
– oldfred
Mar 7 at 4:16
This works for me as a multiboot: askubuntu.com/questions/1025656/… Persistence can be added if desired. The ISO9660 and casper-rw partitions can be removed also.
– C.S.Cameron
Mar 7 at 4:28
@oldfred Thank you. I've been on those links (I've seen every link on the subject he). The clonezilla image has an EFI folder, but I should try with the 64bit version. But... I tried with a Linux Mint 19 64bit and the result was the same. What I haven't tried is with gpt partitions.
– guillermo chamorro
Mar 7 at 12:40
@C.S.Cameron Thank you. It's not just about being able to create a multiboot usb, I can use YUMI (also) for example, but I just want to learn if I can accomplish this without any "extra" software.
– guillermo chamorro
Mar 7 at 12:46
Some of my examples here, but I use a separate configfile in a /ISO folder where I put all the ISO. Biggest issue I always have is getting path correct. And if hard drive getting drive correct. Plugging in flash drive, but booting from HDD, changes my drive order. My hard drive path is different than my flash drive paths so I cannot just copy. askubuntu.com/questions/1025656/… & askubuntu.com/questions/845192/…
– oldfred
Mar 7 at 13:56
Do not know clonezilla live ISO but i686 would be 32 bit in Ubuntu and not UEFI bootable. help.ubuntu.com/community/Grub2/ISOBoot examples gist.github.com/Pysis868/27203177bdef15fbb70c & askubuntu.com/questions/1025656/…
– oldfred
Mar 7 at 4:16
Do not know clonezilla live ISO but i686 would be 32 bit in Ubuntu and not UEFI bootable. help.ubuntu.com/community/Grub2/ISOBoot examples gist.github.com/Pysis868/27203177bdef15fbb70c & askubuntu.com/questions/1025656/…
– oldfred
Mar 7 at 4:16
This works for me as a multiboot: askubuntu.com/questions/1025656/… Persistence can be added if desired. The ISO9660 and casper-rw partitions can be removed also.
– C.S.Cameron
Mar 7 at 4:28
This works for me as a multiboot: askubuntu.com/questions/1025656/… Persistence can be added if desired. The ISO9660 and casper-rw partitions can be removed also.
– C.S.Cameron
Mar 7 at 4:28
@oldfred Thank you. I've been on those links (I've seen every link on the subject he). The clonezilla image has an EFI folder, but I should try with the 64bit version. But... I tried with a Linux Mint 19 64bit and the result was the same. What I haven't tried is with gpt partitions.
– guillermo chamorro
Mar 7 at 12:40
@oldfred Thank you. I've been on those links (I've seen every link on the subject he). The clonezilla image has an EFI folder, but I should try with the 64bit version. But... I tried with a Linux Mint 19 64bit and the result was the same. What I haven't tried is with gpt partitions.
– guillermo chamorro
Mar 7 at 12:40
@C.S.Cameron Thank you. It's not just about being able to create a multiboot usb, I can use YUMI (also) for example, but I just want to learn if I can accomplish this without any "extra" software.
– guillermo chamorro
Mar 7 at 12:46
@C.S.Cameron Thank you. It's not just about being able to create a multiboot usb, I can use YUMI (also) for example, but I just want to learn if I can accomplish this without any "extra" software.
– guillermo chamorro
Mar 7 at 12:46
Some of my examples here, but I use a separate configfile in a /ISO folder where I put all the ISO. Biggest issue I always have is getting path correct. And if hard drive getting drive correct. Plugging in flash drive, but booting from HDD, changes my drive order. My hard drive path is different than my flash drive paths so I cannot just copy. askubuntu.com/questions/1025656/… & askubuntu.com/questions/845192/…
– oldfred
Mar 7 at 13:56
Some of my examples here, but I use a separate configfile in a /ISO folder where I put all the ISO. Biggest issue I always have is getting path correct. And if hard drive getting drive correct. Plugging in flash drive, but booting from HDD, changes my drive order. My hard drive path is different than my flash drive paths so I cannot just copy. askubuntu.com/questions/1025656/… & askubuntu.com/questions/845192/…
– oldfred
Mar 7 at 13:56
add a comment |
1 Answer
1
active
oldest
votes
I changed
menuentry "Clonezilla live (Default settings, VGA 800x600)"
loopback loop (hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
initrd (loop)/live/initrd.img
for
set root='hd0,1'
menuentry "Clonezilla live (Default settings, VGA 800x600)"
loopback loop /clonezilla-live-2.6.0-37-i686.iso
linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
initrd (loop)/live/initrd.img
... and it works fine.
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%2f1123619%2fgrub-efi-usb-isos-unable-to-find-live-medium%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I changed
menuentry "Clonezilla live (Default settings, VGA 800x600)"
loopback loop (hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
initrd (loop)/live/initrd.img
for
set root='hd0,1'
menuentry "Clonezilla live (Default settings, VGA 800x600)"
loopback loop /clonezilla-live-2.6.0-37-i686.iso
linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
initrd (loop)/live/initrd.img
... and it works fine.
add a comment |
I changed
menuentry "Clonezilla live (Default settings, VGA 800x600)"
loopback loop (hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
initrd (loop)/live/initrd.img
for
set root='hd0,1'
menuentry "Clonezilla live (Default settings, VGA 800x600)"
loopback loop /clonezilla-live-2.6.0-37-i686.iso
linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
initrd (loop)/live/initrd.img
... and it works fine.
add a comment |
I changed
menuentry "Clonezilla live (Default settings, VGA 800x600)"
loopback loop (hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
initrd (loop)/live/initrd.img
for
set root='hd0,1'
menuentry "Clonezilla live (Default settings, VGA 800x600)"
loopback loop /clonezilla-live-2.6.0-37-i686.iso
linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
initrd (loop)/live/initrd.img
... and it works fine.
I changed
menuentry "Clonezilla live (Default settings, VGA 800x600)"
loopback loop (hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
initrd (loop)/live/initrd.img
for
set root='hd0,1'
menuentry "Clonezilla live (Default settings, VGA 800x600)"
loopback loop /clonezilla-live-2.6.0-37-i686.iso
linux (loop)/live/vmlinuz boot=live iso-scan/filename=(hd0,msdos2)/clonezilla-live-2.6.0-37-i686.iso
initrd (loop)/live/initrd.img
... and it works fine.
answered 1 min ago
guillermo chamorroguillermo chamorro
1063
1063
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.
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%2f1123619%2fgrub-efi-usb-isos-unable-to-find-live-medium%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
Do not know clonezilla live ISO but i686 would be 32 bit in Ubuntu and not UEFI bootable. help.ubuntu.com/community/Grub2/ISOBoot examples gist.github.com/Pysis868/27203177bdef15fbb70c & askubuntu.com/questions/1025656/…
– oldfred
Mar 7 at 4:16
This works for me as a multiboot: askubuntu.com/questions/1025656/… Persistence can be added if desired. The ISO9660 and casper-rw partitions can be removed also.
– C.S.Cameron
Mar 7 at 4:28
@oldfred Thank you. I've been on those links (I've seen every link on the subject he). The clonezilla image has an EFI folder, but I should try with the 64bit version. But... I tried with a Linux Mint 19 64bit and the result was the same. What I haven't tried is with gpt partitions.
– guillermo chamorro
Mar 7 at 12:40
@C.S.Cameron Thank you. It's not just about being able to create a multiboot usb, I can use YUMI (also) for example, but I just want to learn if I can accomplish this without any "extra" software.
– guillermo chamorro
Mar 7 at 12:46
Some of my examples here, but I use a separate configfile in a /ISO folder where I put all the ISO. Biggest issue I always have is getting path correct. And if hard drive getting drive correct. Plugging in flash drive, but booting from HDD, changes my drive order. My hard drive path is different than my flash drive paths so I cannot just copy. askubuntu.com/questions/1025656/… & askubuntu.com/questions/845192/…
– oldfred
Mar 7 at 13:56