Is there a way to boot from usb through grub menu? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Can't load Windows 10 after updating Ubuntu 16.04 LTSHow to install ubuntu without access to the BIOSTrying to fully reinstall new version of UbuntuWindows Boot Loader not letting GRUB be default LoaderUbuntu won't boot from usb - Windows 8 - non dual boot relatedCan't boot from USB; no selection option in grub; usb 1st boot choiceBoot from USB: BIOS proceed to Grub 2How to remove an old OS entry from grubCan't boot from USB on Dell InspironUbuntu will only boot from boot menuIssue with booting from USB with GNU Grub2Can't boot into Windows 10 from GRUB menu, even though the option of Windows 10 is there?
What does 丫 mean? 丫是什么意思?
How would you say "es muy psicólogo"?
Printing attributes of selection in ArcPy?
Central Vacuuming: Is it worth it, and how does it compare to normal vacuuming?
NERDTreeMenu Remapping
Tannaka duality for semisimple groups
In musical terms, what properties are varied by the human voice to produce different words / syllables?
If Windows 7 doesn't support WSL, then what is "Subsystem for UNIX-based Applications"?
Can you force honesty by using the Speak with Dead and Zone of Truth spells together?
Tips to organize LaTeX presentations for a semester
two integers one line calculator
Did any compiler fully use 80-bit floating point?
Why weren't discrete x86 CPUs ever used in game hardware?
Co-worker has annoying ringtone
What is the "studentd" process?
Is multiple magic items in one inherently imbalanced?
What are the main differences between Stargate SG-1 cuts?
The Nth Gryphon Number
How much damage would a cupful of neutron star matter do to the Earth?
Would color changing eyes affect vision?
Why complex landing gears are used instead of simple,reliability and light weight muscle wire or shape memory alloys?
Is there public access to the Meteor Crater in Arizona?
Why is std::move not [[nodiscard]] in C++20?
Simple Http Server
Is there a way to boot from usb through grub menu?
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Can't load Windows 10 after updating Ubuntu 16.04 LTSHow to install ubuntu without access to the BIOSTrying to fully reinstall new version of UbuntuWindows Boot Loader not letting GRUB be default LoaderUbuntu won't boot from usb - Windows 8 - non dual boot relatedCan't boot from USB; no selection option in grub; usb 1st boot choiceBoot from USB: BIOS proceed to Grub 2How to remove an old OS entry from grubCan't boot from USB on Dell InspironUbuntu will only boot from boot menuIssue with booting from USB with GNU Grub2Can't boot into Windows 10 from GRUB menu, even though the option of Windows 10 is there?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am using dual boot Ubuntu 16.04 and Windows 10. There is a problem which I cannot boot to my normal Windows, and am trying to recover it via USB stick. However, even if I change the boot order, the grub menu still displaying and I have no option to boot from USB.
dual-boot usb windows-10
add a comment |
I am using dual boot Ubuntu 16.04 and Windows 10. There is a problem which I cannot boot to my normal Windows, and am trying to recover it via USB stick. However, even if I change the boot order, the grub menu still displaying and I have no option to boot from USB.
dual-boot usb windows-10
superuser.com/questions/349633/boot-from-usb-using-grub
– Shayan
Apr 26 '18 at 21:52
add a comment |
I am using dual boot Ubuntu 16.04 and Windows 10. There is a problem which I cannot boot to my normal Windows, and am trying to recover it via USB stick. However, even if I change the boot order, the grub menu still displaying and I have no option to boot from USB.
dual-boot usb windows-10
I am using dual boot Ubuntu 16.04 and Windows 10. There is a problem which I cannot boot to my normal Windows, and am trying to recover it via USB stick. However, even if I change the boot order, the grub menu still displaying and I have no option to boot from USB.
dual-boot usb windows-10
dual-boot usb windows-10
asked Aug 18 '17 at 9:46
WVXWVWVXWV
56117
56117
superuser.com/questions/349633/boot-from-usb-using-grub
– Shayan
Apr 26 '18 at 21:52
add a comment |
superuser.com/questions/349633/boot-from-usb-using-grub
– Shayan
Apr 26 '18 at 21:52
superuser.com/questions/349633/boot-from-usb-using-grub
– Shayan
Apr 26 '18 at 21:52
superuser.com/questions/349633/boot-from-usb-using-grub
– Shayan
Apr 26 '18 at 21:52
add a comment |
2 Answers
2
active
oldest
votes
Yes there is a way.
First make sure you have secure boot disabled from the firmware settings. (The menu that opens when you press f2 during boot)
Then follow the following steps:
- Press c when in grub menu to open command line
- press
lsto list all partitions in all hard drives
my output was as follows:
grub>ls
(hd0) (hd0,gpt1) (hd1) (hd1,gpt8) (hd1,gpt7) (hd1,gpt6) (hd1,gpt5) (hd1,gpt4) (hd1,gpt3) (hd1,gpt2) (hd1,gpt1)
This clearly shows that my usb drive is hd0.
- type
ls (hd0,gpt1)to confirm:
Output is as follows:
grub>ls (hd0,gpt1)
Partition hd0,gpt1: Filesystem type fat - Label `CES_X64FREV`, UUID 4099-DBD9 Partition start-512 Sectors...
Inplace of
(hd0,gpt1)type the address of first partition of usb disk e.g:(hd1,gpt1)or(hd2,gpt1). According to output oflscommand.
We need the UUID shown in the above line
- Note the UUID of you usb drive.
Type the following commands one by one.
insmod part_gpt
insmod fat
insmod search_fs_uuid
insmod chain
search --fs-uuid --set=root 409-DBD9
In place of 4099-DBD9, write UUID which you noted down earlier.
Now we select the efi file to boot from. Type the following:
chainloader /efi/boot/bootx64.efiFinally type
boot
That's it, That should boot the usb drive.
Thanks a lot, how does one learn all this??
– Gibreel Abdullah
Oct 30 '18 at 18:20
1
Google is the answer!
– The_Loud.Speaker
Nov 1 '18 at 6:23
1
Worked for booting a Mint 19 tara USB stick after many other approaches failed! Amazing!
– jcandy
Jan 19 at 23:21
add a comment |
Magic alloc broken at last step, how to fix? :(
New contributor
Octa is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
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%2f947409%2fis-there-a-way-to-boot-from-usb-through-grub-menu%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
Yes there is a way.
First make sure you have secure boot disabled from the firmware settings. (The menu that opens when you press f2 during boot)
Then follow the following steps:
- Press c when in grub menu to open command line
- press
lsto list all partitions in all hard drives
my output was as follows:
grub>ls
(hd0) (hd0,gpt1) (hd1) (hd1,gpt8) (hd1,gpt7) (hd1,gpt6) (hd1,gpt5) (hd1,gpt4) (hd1,gpt3) (hd1,gpt2) (hd1,gpt1)
This clearly shows that my usb drive is hd0.
- type
ls (hd0,gpt1)to confirm:
Output is as follows:
grub>ls (hd0,gpt1)
Partition hd0,gpt1: Filesystem type fat - Label `CES_X64FREV`, UUID 4099-DBD9 Partition start-512 Sectors...
Inplace of
(hd0,gpt1)type the address of first partition of usb disk e.g:(hd1,gpt1)or(hd2,gpt1). According to output oflscommand.
We need the UUID shown in the above line
- Note the UUID of you usb drive.
Type the following commands one by one.
insmod part_gpt
insmod fat
insmod search_fs_uuid
insmod chain
search --fs-uuid --set=root 409-DBD9
In place of 4099-DBD9, write UUID which you noted down earlier.
Now we select the efi file to boot from. Type the following:
chainloader /efi/boot/bootx64.efiFinally type
boot
That's it, That should boot the usb drive.
Thanks a lot, how does one learn all this??
– Gibreel Abdullah
Oct 30 '18 at 18:20
1
Google is the answer!
– The_Loud.Speaker
Nov 1 '18 at 6:23
1
Worked for booting a Mint 19 tara USB stick after many other approaches failed! Amazing!
– jcandy
Jan 19 at 23:21
add a comment |
Yes there is a way.
First make sure you have secure boot disabled from the firmware settings. (The menu that opens when you press f2 during boot)
Then follow the following steps:
- Press c when in grub menu to open command line
- press
lsto list all partitions in all hard drives
my output was as follows:
grub>ls
(hd0) (hd0,gpt1) (hd1) (hd1,gpt8) (hd1,gpt7) (hd1,gpt6) (hd1,gpt5) (hd1,gpt4) (hd1,gpt3) (hd1,gpt2) (hd1,gpt1)
This clearly shows that my usb drive is hd0.
- type
ls (hd0,gpt1)to confirm:
Output is as follows:
grub>ls (hd0,gpt1)
Partition hd0,gpt1: Filesystem type fat - Label `CES_X64FREV`, UUID 4099-DBD9 Partition start-512 Sectors...
Inplace of
(hd0,gpt1)type the address of first partition of usb disk e.g:(hd1,gpt1)or(hd2,gpt1). According to output oflscommand.
We need the UUID shown in the above line
- Note the UUID of you usb drive.
Type the following commands one by one.
insmod part_gpt
insmod fat
insmod search_fs_uuid
insmod chain
search --fs-uuid --set=root 409-DBD9
In place of 4099-DBD9, write UUID which you noted down earlier.
Now we select the efi file to boot from. Type the following:
chainloader /efi/boot/bootx64.efiFinally type
boot
That's it, That should boot the usb drive.
Thanks a lot, how does one learn all this??
– Gibreel Abdullah
Oct 30 '18 at 18:20
1
Google is the answer!
– The_Loud.Speaker
Nov 1 '18 at 6:23
1
Worked for booting a Mint 19 tara USB stick after many other approaches failed! Amazing!
– jcandy
Jan 19 at 23:21
add a comment |
Yes there is a way.
First make sure you have secure boot disabled from the firmware settings. (The menu that opens when you press f2 during boot)
Then follow the following steps:
- Press c when in grub menu to open command line
- press
lsto list all partitions in all hard drives
my output was as follows:
grub>ls
(hd0) (hd0,gpt1) (hd1) (hd1,gpt8) (hd1,gpt7) (hd1,gpt6) (hd1,gpt5) (hd1,gpt4) (hd1,gpt3) (hd1,gpt2) (hd1,gpt1)
This clearly shows that my usb drive is hd0.
- type
ls (hd0,gpt1)to confirm:
Output is as follows:
grub>ls (hd0,gpt1)
Partition hd0,gpt1: Filesystem type fat - Label `CES_X64FREV`, UUID 4099-DBD9 Partition start-512 Sectors...
Inplace of
(hd0,gpt1)type the address of first partition of usb disk e.g:(hd1,gpt1)or(hd2,gpt1). According to output oflscommand.
We need the UUID shown in the above line
- Note the UUID of you usb drive.
Type the following commands one by one.
insmod part_gpt
insmod fat
insmod search_fs_uuid
insmod chain
search --fs-uuid --set=root 409-DBD9
In place of 4099-DBD9, write UUID which you noted down earlier.
Now we select the efi file to boot from. Type the following:
chainloader /efi/boot/bootx64.efiFinally type
boot
That's it, That should boot the usb drive.
Yes there is a way.
First make sure you have secure boot disabled from the firmware settings. (The menu that opens when you press f2 during boot)
Then follow the following steps:
- Press c when in grub menu to open command line
- press
lsto list all partitions in all hard drives
my output was as follows:
grub>ls
(hd0) (hd0,gpt1) (hd1) (hd1,gpt8) (hd1,gpt7) (hd1,gpt6) (hd1,gpt5) (hd1,gpt4) (hd1,gpt3) (hd1,gpt2) (hd1,gpt1)
This clearly shows that my usb drive is hd0.
- type
ls (hd0,gpt1)to confirm:
Output is as follows:
grub>ls (hd0,gpt1)
Partition hd0,gpt1: Filesystem type fat - Label `CES_X64FREV`, UUID 4099-DBD9 Partition start-512 Sectors...
Inplace of
(hd0,gpt1)type the address of first partition of usb disk e.g:(hd1,gpt1)or(hd2,gpt1). According to output oflscommand.
We need the UUID shown in the above line
- Note the UUID of you usb drive.
Type the following commands one by one.
insmod part_gpt
insmod fat
insmod search_fs_uuid
insmod chain
search --fs-uuid --set=root 409-DBD9
In place of 4099-DBD9, write UUID which you noted down earlier.
Now we select the efi file to boot from. Type the following:
chainloader /efi/boot/bootx64.efiFinally type
boot
That's it, That should boot the usb drive.
edited Oct 5 '18 at 10:55
answered Oct 5 '18 at 10:35
The_Loud.SpeakerThe_Loud.Speaker
416
416
Thanks a lot, how does one learn all this??
– Gibreel Abdullah
Oct 30 '18 at 18:20
1
Google is the answer!
– The_Loud.Speaker
Nov 1 '18 at 6:23
1
Worked for booting a Mint 19 tara USB stick after many other approaches failed! Amazing!
– jcandy
Jan 19 at 23:21
add a comment |
Thanks a lot, how does one learn all this??
– Gibreel Abdullah
Oct 30 '18 at 18:20
1
Google is the answer!
– The_Loud.Speaker
Nov 1 '18 at 6:23
1
Worked for booting a Mint 19 tara USB stick after many other approaches failed! Amazing!
– jcandy
Jan 19 at 23:21
Thanks a lot, how does one learn all this??
– Gibreel Abdullah
Oct 30 '18 at 18:20
Thanks a lot, how does one learn all this??
– Gibreel Abdullah
Oct 30 '18 at 18:20
1
1
Google is the answer!
– The_Loud.Speaker
Nov 1 '18 at 6:23
Google is the answer!
– The_Loud.Speaker
Nov 1 '18 at 6:23
1
1
Worked for booting a Mint 19 tara USB stick after many other approaches failed! Amazing!
– jcandy
Jan 19 at 23:21
Worked for booting a Mint 19 tara USB stick after many other approaches failed! Amazing!
– jcandy
Jan 19 at 23:21
add a comment |
Magic alloc broken at last step, how to fix? :(
New contributor
Octa is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Magic alloc broken at last step, how to fix? :(
New contributor
Octa is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Magic alloc broken at last step, how to fix? :(
New contributor
Octa is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Magic alloc broken at last step, how to fix? :(
New contributor
Octa is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Octa is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered 17 mins ago
OctaOcta
1
1
New contributor
Octa is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Octa is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Octa is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
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%2f947409%2fis-there-a-way-to-boot-from-usb-through-grub-menu%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
superuser.com/questions/349633/boot-from-usb-using-grub
– Shayan
Apr 26 '18 at 21:52