Is there a way to boot from usb through grub menu? Announcing the arrival of Valued Associate...

License to disallow distribution in closed source software, but allow exceptions made by owner?

What is the difference between a "ranged attack" and a "ranged weapon attack"?

Did Mueller's report provide an evidentiary basis for the claim of Russian govt election interference via social media?

Flight departed from the gate 5 min before scheduled departure time. Refund options

Tannaka duality for semisimple groups

two integers one line calculator

Getting out of while loop on console

Is there public access to the Meteor Crater in Arizona?

New Order #6: Easter Egg

Why are vacuum tubes still used in amateur radios?

Why not send Voyager 3 and 4 following up the paths taken by Voyager 1 and 2 to re-transmit signals of later as they fly away from Earth?

As a dual citizen, my US passport will expire one day after traveling to the US. Will this work?

Found this skink in my tomato plant bucket. Is he trapped? Or could he leave if he wanted?

Delete free apps from library

What is the chair depicted in Cesare Maccari's 1889 painting "Cicerone denuncia Catilina"?

What does Turing mean by this statement?

"klopfte jemand" or "jemand klopfte"?

Should a wizard buy fine inks every time he want to copy spells into his spellbook?

How to force a browser when connecting to a specific domain to be https only using only the client machine?

What does it mean that physics no longer uses mechanical models to describe phenomena?

The Nth Gryphon Number

How to ternary Plot3D a function

Does the Mueller report show a conspiracy between Russia and the Trump Campaign?

Why datecode is SO IMPORTANT to chip manufacturers?



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 18 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

            List of shipwrecks in 1808...

            Is there a lightweight tool to crop images quickly?Cropping Images using Command Line Tools OnlyHow to crop...

            Unit packagekit.service is masked Announcing the arrival of Valued Associate #679: Cesar...