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;








7















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.










share|improve this question






















  • superuser.com/questions/349633/boot-from-usb-using-grub

    – Shayan
    Apr 26 '18 at 21:52

















7















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.










share|improve this question






















  • superuser.com/questions/349633/boot-from-usb-using-grub

    – Shayan
    Apr 26 '18 at 21:52













7












7








7


3






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.










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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

















  • 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










2 Answers
2






active

oldest

votes


















3














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 ls to 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 of ls command.




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.efi


  • Finally type boot


That's it, That should boot the usb drive.






share|improve this answer

























  • 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


















0














Magic alloc broken at last step, how to fix? :(






share|improve this answer








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.




















    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
    );



    );













    draft saved

    draft discarded


















    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









    3














    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 ls to 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 of ls command.




    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.efi


    • Finally type boot


    That's it, That should boot the usb drive.






    share|improve this answer

























    • 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















    3














    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 ls to 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 of ls command.




    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.efi


    • Finally type boot


    That's it, That should boot the usb drive.






    share|improve this answer

























    • 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













    3












    3








    3







    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 ls to 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 of ls command.




    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.efi


    • Finally type boot


    That's it, That should boot the usb drive.






    share|improve this answer















    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 ls to 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 of ls command.




    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.efi


    • Finally type boot


    That's it, That should boot the usb drive.







    share|improve this answer














    share|improve this answer



    share|improve this answer








    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

















    • 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













    0














    Magic alloc broken at last step, how to fix? :(






    share|improve this answer








    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.
























      0














      Magic alloc broken at last step, how to fix? :(






      share|improve this answer








      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.






















        0












        0








        0







        Magic alloc broken at last step, how to fix? :(






        share|improve this answer








        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? :(







        share|improve this answer








        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.









        share|improve this answer



        share|improve this answer






        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.



























            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Are there any comparative studies done between Ashtavakra Gita and Buddhim?How is it wrong to believe that a self exists, or that it doesn't?Can you criticise or improve Ven. Bodhi's description of MahayanaWas the doctrine of 'Anatta', accepted as doctrine by modern Buddhism, actually taught by the Buddha?Relationship between Buddhism, Hinduism and Yoga?Comparison of Nirvana, Tao and Brahman/AtmaIs there a distinction between “ego identity” and “craving/hating”?Are there many differences between Taoism and Buddhism?Loss of “faith” in buddhismSimilarity between creation in Abrahamic religions and beginning of life in Earth mentioned Agganna Sutta?Are there studies about the difference between meditating in the morning versus in the evening?Can one follow Hinduism and Buddhism at the same time?Are there any prohibitions on participating in other religion's practices?Psychology of 'flow'

            Where else does the Shulchan Aruch quote an authority by name?Parashat Metzora+HagadolPesach/PassoverShulchan Aruch UTF-8Anonymous glosses in the Shulchan AruchWhy is the Shulchan Aruch definitive?Siman 32, Kitzur Shulchan Aruch: UntranslatedLitvaks/Yeshivish and Shulchan AruchBuying a Shulchan AruchEnglish version of SHULCHAN ARUCHIs there any place where Shulchan Aruch rules with the Rosh against the Rif and Rambam?Are there practices where Sepharadim do not hold by Shulchan Aruch?5th part of the shulchan aruch

            fallocate: fallocate failed: Text file busy in Ubuntu 17.04? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)defragmenting and increasing performance of old lubuntu system with swap partitionIssue with increasing the root partition from the swapthis /usr/bin/dpkg returned error || ubuntu-16.04, 64bitDefault 17.04 swap file locationHow to Resize Ubuntu 17.04 Zesty Swap file size?Ubuntu freezes from online formsMy Laptop is not starting after upgrade ubuntu 16.04 (Kernel 4.8.0-38 to 04.10.0-36)hcp: ERROR: FALLOCATE FAILED!Not sure my swap is being usedWine 3.0 asking for more virtual free swap