How to check if ubuntu has booted in uefi mode?












1















I have installed ubuntu 18.04 in my pc in dual boot with windows 10. I need to check if ubuntu is booting in uefi mode or legacy mode. I found a few sources online to check this, but I'm getting ambiguous results.



To be specific, this page, section "Identifying if an Ubuntu has been installed in UEFI mode" gives 3 ways to check this.





  1. its /etc/fstab file contains an UEFI partition (mount point: /boot/efi)

  2. it uses the grub-efi bootloader (not grub-pc)

  3. from the installed Ubuntu, open a terminal (Ctrl+Alt+T) then type the following command:
    [ -d /sys/firmware/efi ] && echo "Installed in UEFI mode" || echo "Installed in Legacy mode"




I tried 1st and 3rd ways.
My fstab file contains the below entry:



UUID=xxx    /boot/efi    ntfs    defaults    0   1


So, that means ubuntu has booted in uefi mode.
But running the command given in 3rd method



[ -d /sys/firmware/efi ] && echo "Installed in UEFI mode" || echo "Installed in Legacy mode"


prints Installed in Legacy mode



So, my question is which is correct? Which is a reliable method for ubuntu 18.04?










share|improve this question







New contributor




Nagabhushan S N is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

























    1















    I have installed ubuntu 18.04 in my pc in dual boot with windows 10. I need to check if ubuntu is booting in uefi mode or legacy mode. I found a few sources online to check this, but I'm getting ambiguous results.



    To be specific, this page, section "Identifying if an Ubuntu has been installed in UEFI mode" gives 3 ways to check this.





    1. its /etc/fstab file contains an UEFI partition (mount point: /boot/efi)

    2. it uses the grub-efi bootloader (not grub-pc)

    3. from the installed Ubuntu, open a terminal (Ctrl+Alt+T) then type the following command:
      [ -d /sys/firmware/efi ] && echo "Installed in UEFI mode" || echo "Installed in Legacy mode"




    I tried 1st and 3rd ways.
    My fstab file contains the below entry:



    UUID=xxx    /boot/efi    ntfs    defaults    0   1


    So, that means ubuntu has booted in uefi mode.
    But running the command given in 3rd method



    [ -d /sys/firmware/efi ] && echo "Installed in UEFI mode" || echo "Installed in Legacy mode"


    prints Installed in Legacy mode



    So, my question is which is correct? Which is a reliable method for ubuntu 18.04?










    share|improve this question







    New contributor




    Nagabhushan S N is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.























      1












      1








      1








      I have installed ubuntu 18.04 in my pc in dual boot with windows 10. I need to check if ubuntu is booting in uefi mode or legacy mode. I found a few sources online to check this, but I'm getting ambiguous results.



      To be specific, this page, section "Identifying if an Ubuntu has been installed in UEFI mode" gives 3 ways to check this.





      1. its /etc/fstab file contains an UEFI partition (mount point: /boot/efi)

      2. it uses the grub-efi bootloader (not grub-pc)

      3. from the installed Ubuntu, open a terminal (Ctrl+Alt+T) then type the following command:
        [ -d /sys/firmware/efi ] && echo "Installed in UEFI mode" || echo "Installed in Legacy mode"




      I tried 1st and 3rd ways.
      My fstab file contains the below entry:



      UUID=xxx    /boot/efi    ntfs    defaults    0   1


      So, that means ubuntu has booted in uefi mode.
      But running the command given in 3rd method



      [ -d /sys/firmware/efi ] && echo "Installed in UEFI mode" || echo "Installed in Legacy mode"


      prints Installed in Legacy mode



      So, my question is which is correct? Which is a reliable method for ubuntu 18.04?










      share|improve this question







      New contributor




      Nagabhushan S N is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      I have installed ubuntu 18.04 in my pc in dual boot with windows 10. I need to check if ubuntu is booting in uefi mode or legacy mode. I found a few sources online to check this, but I'm getting ambiguous results.



      To be specific, this page, section "Identifying if an Ubuntu has been installed in UEFI mode" gives 3 ways to check this.





      1. its /etc/fstab file contains an UEFI partition (mount point: /boot/efi)

      2. it uses the grub-efi bootloader (not grub-pc)

      3. from the installed Ubuntu, open a terminal (Ctrl+Alt+T) then type the following command:
        [ -d /sys/firmware/efi ] && echo "Installed in UEFI mode" || echo "Installed in Legacy mode"




      I tried 1st and 3rd ways.
      My fstab file contains the below entry:



      UUID=xxx    /boot/efi    ntfs    defaults    0   1


      So, that means ubuntu has booted in uefi mode.
      But running the command given in 3rd method



      [ -d /sys/firmware/efi ] && echo "Installed in UEFI mode" || echo "Installed in Legacy mode"


      prints Installed in Legacy mode



      So, my question is which is correct? Which is a reliable method for ubuntu 18.04?







      boot dual-boot 18.04 uefi






      share|improve this question







      New contributor




      Nagabhushan S N 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 question







      New contributor




      Nagabhushan S N 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 question




      share|improve this question






      New contributor




      Nagabhushan S N is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 1 hour ago









      Nagabhushan S NNagabhushan S N

      1085




      1085




      New contributor




      Nagabhushan S N is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Nagabhushan S N is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Nagabhushan S N is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















          2 Answers
          2






          active

          oldest

          votes


















          3














          The easiest way to find out if you are running UEFI or BIOS is to look for a folder /sys/firmware/efi.



          The folder will be missing if your system is using BIOS.



          Execute:



          $ ls /sys/firmware/efi


          Example of UEFI boot output :enter image description here






          share|improve this answer


























          • This directory is not present. But fstab file has boot/efi mount-point. Ambiguous right?

            – Nagabhushan S N
            1 hour ago






          • 2





            You boot in BIOS mode

            – Carlos Dagorret
            1 hour ago



















          0














          You can use the following command line,



          test -d /sys/firmware/efi && echo efi || echo bios


          or longer but easier to understand



          if test -d /sys/firmware/efi;then echo efi;else echo bios;fi


          See the following link,



          help.ubuntu.com/community/Installation/FromUSBStick#Test_if_running_in_UEFI_mode






          share|improve this answer























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


            }
            });






            Nagabhushan S N is a new contributor. Be nice, and check out our Code of Conduct.










            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1111045%2fhow-to-check-if-ubuntu-has-booted-in-uefi-mode%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














            The easiest way to find out if you are running UEFI or BIOS is to look for a folder /sys/firmware/efi.



            The folder will be missing if your system is using BIOS.



            Execute:



            $ ls /sys/firmware/efi


            Example of UEFI boot output :enter image description here






            share|improve this answer


























            • This directory is not present. But fstab file has boot/efi mount-point. Ambiguous right?

              – Nagabhushan S N
              1 hour ago






            • 2





              You boot in BIOS mode

              – Carlos Dagorret
              1 hour ago
















            3














            The easiest way to find out if you are running UEFI or BIOS is to look for a folder /sys/firmware/efi.



            The folder will be missing if your system is using BIOS.



            Execute:



            $ ls /sys/firmware/efi


            Example of UEFI boot output :enter image description here






            share|improve this answer


























            • This directory is not present. But fstab file has boot/efi mount-point. Ambiguous right?

              – Nagabhushan S N
              1 hour ago






            • 2





              You boot in BIOS mode

              – Carlos Dagorret
              1 hour ago














            3












            3








            3







            The easiest way to find out if you are running UEFI or BIOS is to look for a folder /sys/firmware/efi.



            The folder will be missing if your system is using BIOS.



            Execute:



            $ ls /sys/firmware/efi


            Example of UEFI boot output :enter image description here






            share|improve this answer















            The easiest way to find out if you are running UEFI or BIOS is to look for a folder /sys/firmware/efi.



            The folder will be missing if your system is using BIOS.



            Execute:



            $ ls /sys/firmware/efi


            Example of UEFI boot output :enter image description here







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited 1 hour ago

























            answered 1 hour ago









            Carlos DagorretCarlos Dagorret

            48326




            48326













            • This directory is not present. But fstab file has boot/efi mount-point. Ambiguous right?

              – Nagabhushan S N
              1 hour ago






            • 2





              You boot in BIOS mode

              – Carlos Dagorret
              1 hour ago



















            • This directory is not present. But fstab file has boot/efi mount-point. Ambiguous right?

              – Nagabhushan S N
              1 hour ago






            • 2





              You boot in BIOS mode

              – Carlos Dagorret
              1 hour ago

















            This directory is not present. But fstab file has boot/efi mount-point. Ambiguous right?

            – Nagabhushan S N
            1 hour ago





            This directory is not present. But fstab file has boot/efi mount-point. Ambiguous right?

            – Nagabhushan S N
            1 hour ago




            2




            2





            You boot in BIOS mode

            – Carlos Dagorret
            1 hour ago





            You boot in BIOS mode

            – Carlos Dagorret
            1 hour ago













            0














            You can use the following command line,



            test -d /sys/firmware/efi && echo efi || echo bios


            or longer but easier to understand



            if test -d /sys/firmware/efi;then echo efi;else echo bios;fi


            See the following link,



            help.ubuntu.com/community/Installation/FromUSBStick#Test_if_running_in_UEFI_mode






            share|improve this answer




























              0














              You can use the following command line,



              test -d /sys/firmware/efi && echo efi || echo bios


              or longer but easier to understand



              if test -d /sys/firmware/efi;then echo efi;else echo bios;fi


              See the following link,



              help.ubuntu.com/community/Installation/FromUSBStick#Test_if_running_in_UEFI_mode






              share|improve this answer


























                0












                0








                0







                You can use the following command line,



                test -d /sys/firmware/efi && echo efi || echo bios


                or longer but easier to understand



                if test -d /sys/firmware/efi;then echo efi;else echo bios;fi


                See the following link,



                help.ubuntu.com/community/Installation/FromUSBStick#Test_if_running_in_UEFI_mode






                share|improve this answer













                You can use the following command line,



                test -d /sys/firmware/efi && echo efi || echo bios


                or longer but easier to understand



                if test -d /sys/firmware/efi;then echo efi;else echo bios;fi


                See the following link,



                help.ubuntu.com/community/Installation/FromUSBStick#Test_if_running_in_UEFI_mode







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 19 mins ago









                sudodussudodus

                23.4k32874




                23.4k32874






















                    Nagabhushan S N is a new contributor. Be nice, and check out our Code of Conduct.










                    draft saved

                    draft discarded


















                    Nagabhushan S N is a new contributor. Be nice, and check out our Code of Conduct.













                    Nagabhushan S N is a new contributor. Be nice, and check out our Code of Conduct.












                    Nagabhushan S N is a new contributor. Be nice, and check out our Code of Conduct.
















                    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%2f1111045%2fhow-to-check-if-ubuntu-has-booted-in-uefi-mode%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

                    サソリ

                    広島県道265号伴広島線

                    Setup Asymptote in Texstudio