Start up Ubuntu












1















When I start up Ubuntu there is a message 'Advanced format for Ubuntu'as the second choice for the startup. Should I use that or just keep on using the top one? I am an 80-year-old slowbee!!!!










share|improve this question























  • You're not a 'slowbee', Peter! You're vintage.

    – Benjamin R
    Jan 22 at 19:27











  • Whenever someone calls me that I let out a little wine.

    – jdv
    Feb 11 at 20:11
















1















When I start up Ubuntu there is a message 'Advanced format for Ubuntu'as the second choice for the startup. Should I use that or just keep on using the top one? I am an 80-year-old slowbee!!!!










share|improve this question























  • You're not a 'slowbee', Peter! You're vintage.

    – Benjamin R
    Jan 22 at 19:27











  • Whenever someone calls me that I let out a little wine.

    – jdv
    Feb 11 at 20:11














1












1








1








When I start up Ubuntu there is a message 'Advanced format for Ubuntu'as the second choice for the startup. Should I use that or just keep on using the top one? I am an 80-year-old slowbee!!!!










share|improve this question














When I start up Ubuntu there is a message 'Advanced format for Ubuntu'as the second choice for the startup. Should I use that or just keep on using the top one? I am an 80-year-old slowbee!!!!







xubuntu






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jan 21 at 22:43









Peter RakePeter Rake

61




61













  • You're not a 'slowbee', Peter! You're vintage.

    – Benjamin R
    Jan 22 at 19:27











  • Whenever someone calls me that I let out a little wine.

    – jdv
    Feb 11 at 20:11



















  • You're not a 'slowbee', Peter! You're vintage.

    – Benjamin R
    Jan 22 at 19:27











  • Whenever someone calls me that I let out a little wine.

    – jdv
    Feb 11 at 20:11

















You're not a 'slowbee', Peter! You're vintage.

– Benjamin R
Jan 22 at 19:27





You're not a 'slowbee', Peter! You're vintage.

– Benjamin R
Jan 22 at 19:27













Whenever someone calls me that I let out a little wine.

– jdv
Feb 11 at 20:11





Whenever someone calls me that I let out a little wine.

– jdv
Feb 11 at 20:11










2 Answers
2






active

oldest

votes


















1














You can use the first one, the other advanced options (that's how it's called when I start my pc) give you the possibility to boot with a different kernel in case your current environment just doesn't work and you can't seem to get it to work, or you can go into recovery options from there.



You can check them out if you click on it, but in most cases you won't need to do that.



In case you want to customize it (like delete entries etc.), there are some possibilities listed in this tutorial for grub 1 here and grub 2 here, depending on the version displayed on the top of that screen.






share|improve this answer































    1














    You can ignore the "Advanced options for Ubuntu" menu for now. It may be needed if things "go wrong", and you need to boot earlier versions of the Ubuntu Linux kernel, or boot with different options. This is a rare event, and may never happen.



    In a terminal window, on MY system, I did:



    grep -E 'menuentry|submenu' /boot/grub/grub.cfg
    if [ x"${feature_menuentry_id}" = xy ]; then
    menuentry_id_option="--id"
    menuentry_id_option=""
    export menuentry_id_option
    menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-7e2beb8f-393b-4445-ab82-69824a812d6c' {
    submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-7e2beb8f-393b-4445-ab82-69824a812d6c' {
    menuentry 'Ubuntu, with Linux 4.15.0-43-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-43-generic-advanced-7e2beb8f-393b-4445-ab82-69824a812d6c' {
    menuentry 'Ubuntu, with Linux 4.15.0-43-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-43-generic-init-upstart-7e2beb8f-393b-4445-ab82-69824a812d6c' {
    menuentry 'Ubuntu, with Linux 4.15.0-43-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-43-generic-recovery-7e2beb8f-393b-4445-ab82-69824a812d6c' {
    menuentry 'Ubuntu, with Linux 4.15.0-42-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-42-generic-advanced-7e2beb8f-393b-4445-ab82-69824a812d6c' {
    menuentry 'Ubuntu, with Linux 4.15.0-42-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-42-generic-init-upstart-7e2beb8f-393b-4445-ab82-69824a812d6c' {
    menuentry 'Ubuntu, with Linux 4.15.0-42-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-42-generic-recovery-7e2beb8f-393b-4445-ab82-69824a812d6c' {
    menuentry 'Memory test (memtest86+)' {
    menuentry 'Memory test (memtest86+, serial console 115200)' {


    to see what my choices were.



    I found a better solution at this AskUbuntu answer:



    $ awk -F' '/menuentry / {print $2}' /boot/grub/grub.cfg
    Ubuntu
    Ubuntu, with Linux 4.15.0-45-generic
    Ubuntu, with Linux 4.15.0-45-generic (upstart)
    Ubuntu, with Linux 4.15.0-45-generic (recovery mode)
    Ubuntu, with Linux 4.15.0-43-generic
    Ubuntu, with Linux 4.15.0-43-generic (upstart)
    Ubuntu, with Linux 4.15.0-43-generic (recovery mode)
    Memory test (memtest86+)
    Memory test (memtest86+, serial console 115200)





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


      }
      });














      draft saved

      draft discarded


















      StackExchange.ready(
      function () {
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1111788%2fstart-up-ubuntu%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









      1














      You can use the first one, the other advanced options (that's how it's called when I start my pc) give you the possibility to boot with a different kernel in case your current environment just doesn't work and you can't seem to get it to work, or you can go into recovery options from there.



      You can check them out if you click on it, but in most cases you won't need to do that.



      In case you want to customize it (like delete entries etc.), there are some possibilities listed in this tutorial for grub 1 here and grub 2 here, depending on the version displayed on the top of that screen.






      share|improve this answer




























        1














        You can use the first one, the other advanced options (that's how it's called when I start my pc) give you the possibility to boot with a different kernel in case your current environment just doesn't work and you can't seem to get it to work, or you can go into recovery options from there.



        You can check them out if you click on it, but in most cases you won't need to do that.



        In case you want to customize it (like delete entries etc.), there are some possibilities listed in this tutorial for grub 1 here and grub 2 here, depending on the version displayed on the top of that screen.






        share|improve this answer


























          1












          1








          1







          You can use the first one, the other advanced options (that's how it's called when I start my pc) give you the possibility to boot with a different kernel in case your current environment just doesn't work and you can't seem to get it to work, or you can go into recovery options from there.



          You can check them out if you click on it, but in most cases you won't need to do that.



          In case you want to customize it (like delete entries etc.), there are some possibilities listed in this tutorial for grub 1 here and grub 2 here, depending on the version displayed on the top of that screen.






          share|improve this answer













          You can use the first one, the other advanced options (that's how it's called when I start my pc) give you the possibility to boot with a different kernel in case your current environment just doesn't work and you can't seem to get it to work, or you can go into recovery options from there.



          You can check them out if you click on it, but in most cases you won't need to do that.



          In case you want to customize it (like delete entries etc.), there are some possibilities listed in this tutorial for grub 1 here and grub 2 here, depending on the version displayed on the top of that screen.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Jan 21 at 22:57









          mxoxmxox

          714




          714

























              1














              You can ignore the "Advanced options for Ubuntu" menu for now. It may be needed if things "go wrong", and you need to boot earlier versions of the Ubuntu Linux kernel, or boot with different options. This is a rare event, and may never happen.



              In a terminal window, on MY system, I did:



              grep -E 'menuentry|submenu' /boot/grub/grub.cfg
              if [ x"${feature_menuentry_id}" = xy ]; then
              menuentry_id_option="--id"
              menuentry_id_option=""
              export menuentry_id_option
              menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-7e2beb8f-393b-4445-ab82-69824a812d6c' {
              submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-7e2beb8f-393b-4445-ab82-69824a812d6c' {
              menuentry 'Ubuntu, with Linux 4.15.0-43-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-43-generic-advanced-7e2beb8f-393b-4445-ab82-69824a812d6c' {
              menuentry 'Ubuntu, with Linux 4.15.0-43-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-43-generic-init-upstart-7e2beb8f-393b-4445-ab82-69824a812d6c' {
              menuentry 'Ubuntu, with Linux 4.15.0-43-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-43-generic-recovery-7e2beb8f-393b-4445-ab82-69824a812d6c' {
              menuentry 'Ubuntu, with Linux 4.15.0-42-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-42-generic-advanced-7e2beb8f-393b-4445-ab82-69824a812d6c' {
              menuentry 'Ubuntu, with Linux 4.15.0-42-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-42-generic-init-upstart-7e2beb8f-393b-4445-ab82-69824a812d6c' {
              menuentry 'Ubuntu, with Linux 4.15.0-42-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-42-generic-recovery-7e2beb8f-393b-4445-ab82-69824a812d6c' {
              menuentry 'Memory test (memtest86+)' {
              menuentry 'Memory test (memtest86+, serial console 115200)' {


              to see what my choices were.



              I found a better solution at this AskUbuntu answer:



              $ awk -F' '/menuentry / {print $2}' /boot/grub/grub.cfg
              Ubuntu
              Ubuntu, with Linux 4.15.0-45-generic
              Ubuntu, with Linux 4.15.0-45-generic (upstart)
              Ubuntu, with Linux 4.15.0-45-generic (recovery mode)
              Ubuntu, with Linux 4.15.0-43-generic
              Ubuntu, with Linux 4.15.0-43-generic (upstart)
              Ubuntu, with Linux 4.15.0-43-generic (recovery mode)
              Memory test (memtest86+)
              Memory test (memtest86+, serial console 115200)





              share|improve this answer






























                1














                You can ignore the "Advanced options for Ubuntu" menu for now. It may be needed if things "go wrong", and you need to boot earlier versions of the Ubuntu Linux kernel, or boot with different options. This is a rare event, and may never happen.



                In a terminal window, on MY system, I did:



                grep -E 'menuentry|submenu' /boot/grub/grub.cfg
                if [ x"${feature_menuentry_id}" = xy ]; then
                menuentry_id_option="--id"
                menuentry_id_option=""
                export menuentry_id_option
                menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-7e2beb8f-393b-4445-ab82-69824a812d6c' {
                submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-7e2beb8f-393b-4445-ab82-69824a812d6c' {
                menuentry 'Ubuntu, with Linux 4.15.0-43-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-43-generic-advanced-7e2beb8f-393b-4445-ab82-69824a812d6c' {
                menuentry 'Ubuntu, with Linux 4.15.0-43-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-43-generic-init-upstart-7e2beb8f-393b-4445-ab82-69824a812d6c' {
                menuentry 'Ubuntu, with Linux 4.15.0-43-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-43-generic-recovery-7e2beb8f-393b-4445-ab82-69824a812d6c' {
                menuentry 'Ubuntu, with Linux 4.15.0-42-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-42-generic-advanced-7e2beb8f-393b-4445-ab82-69824a812d6c' {
                menuentry 'Ubuntu, with Linux 4.15.0-42-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-42-generic-init-upstart-7e2beb8f-393b-4445-ab82-69824a812d6c' {
                menuentry 'Ubuntu, with Linux 4.15.0-42-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-42-generic-recovery-7e2beb8f-393b-4445-ab82-69824a812d6c' {
                menuentry 'Memory test (memtest86+)' {
                menuentry 'Memory test (memtest86+, serial console 115200)' {


                to see what my choices were.



                I found a better solution at this AskUbuntu answer:



                $ awk -F' '/menuentry / {print $2}' /boot/grub/grub.cfg
                Ubuntu
                Ubuntu, with Linux 4.15.0-45-generic
                Ubuntu, with Linux 4.15.0-45-generic (upstart)
                Ubuntu, with Linux 4.15.0-45-generic (recovery mode)
                Ubuntu, with Linux 4.15.0-43-generic
                Ubuntu, with Linux 4.15.0-43-generic (upstart)
                Ubuntu, with Linux 4.15.0-43-generic (recovery mode)
                Memory test (memtest86+)
                Memory test (memtest86+, serial console 115200)





                share|improve this answer




























                  1












                  1








                  1







                  You can ignore the "Advanced options for Ubuntu" menu for now. It may be needed if things "go wrong", and you need to boot earlier versions of the Ubuntu Linux kernel, or boot with different options. This is a rare event, and may never happen.



                  In a terminal window, on MY system, I did:



                  grep -E 'menuentry|submenu' /boot/grub/grub.cfg
                  if [ x"${feature_menuentry_id}" = xy ]; then
                  menuentry_id_option="--id"
                  menuentry_id_option=""
                  export menuentry_id_option
                  menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-7e2beb8f-393b-4445-ab82-69824a812d6c' {
                  submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-7e2beb8f-393b-4445-ab82-69824a812d6c' {
                  menuentry 'Ubuntu, with Linux 4.15.0-43-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-43-generic-advanced-7e2beb8f-393b-4445-ab82-69824a812d6c' {
                  menuentry 'Ubuntu, with Linux 4.15.0-43-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-43-generic-init-upstart-7e2beb8f-393b-4445-ab82-69824a812d6c' {
                  menuentry 'Ubuntu, with Linux 4.15.0-43-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-43-generic-recovery-7e2beb8f-393b-4445-ab82-69824a812d6c' {
                  menuentry 'Ubuntu, with Linux 4.15.0-42-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-42-generic-advanced-7e2beb8f-393b-4445-ab82-69824a812d6c' {
                  menuentry 'Ubuntu, with Linux 4.15.0-42-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-42-generic-init-upstart-7e2beb8f-393b-4445-ab82-69824a812d6c' {
                  menuentry 'Ubuntu, with Linux 4.15.0-42-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-42-generic-recovery-7e2beb8f-393b-4445-ab82-69824a812d6c' {
                  menuentry 'Memory test (memtest86+)' {
                  menuentry 'Memory test (memtest86+, serial console 115200)' {


                  to see what my choices were.



                  I found a better solution at this AskUbuntu answer:



                  $ awk -F' '/menuentry / {print $2}' /boot/grub/grub.cfg
                  Ubuntu
                  Ubuntu, with Linux 4.15.0-45-generic
                  Ubuntu, with Linux 4.15.0-45-generic (upstart)
                  Ubuntu, with Linux 4.15.0-45-generic (recovery mode)
                  Ubuntu, with Linux 4.15.0-43-generic
                  Ubuntu, with Linux 4.15.0-43-generic (upstart)
                  Ubuntu, with Linux 4.15.0-43-generic (recovery mode)
                  Memory test (memtest86+)
                  Memory test (memtest86+, serial console 115200)





                  share|improve this answer















                  You can ignore the "Advanced options for Ubuntu" menu for now. It may be needed if things "go wrong", and you need to boot earlier versions of the Ubuntu Linux kernel, or boot with different options. This is a rare event, and may never happen.



                  In a terminal window, on MY system, I did:



                  grep -E 'menuentry|submenu' /boot/grub/grub.cfg
                  if [ x"${feature_menuentry_id}" = xy ]; then
                  menuentry_id_option="--id"
                  menuentry_id_option=""
                  export menuentry_id_option
                  menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-7e2beb8f-393b-4445-ab82-69824a812d6c' {
                  submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-7e2beb8f-393b-4445-ab82-69824a812d6c' {
                  menuentry 'Ubuntu, with Linux 4.15.0-43-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-43-generic-advanced-7e2beb8f-393b-4445-ab82-69824a812d6c' {
                  menuentry 'Ubuntu, with Linux 4.15.0-43-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-43-generic-init-upstart-7e2beb8f-393b-4445-ab82-69824a812d6c' {
                  menuentry 'Ubuntu, with Linux 4.15.0-43-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-43-generic-recovery-7e2beb8f-393b-4445-ab82-69824a812d6c' {
                  menuentry 'Ubuntu, with Linux 4.15.0-42-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-42-generic-advanced-7e2beb8f-393b-4445-ab82-69824a812d6c' {
                  menuentry 'Ubuntu, with Linux 4.15.0-42-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-42-generic-init-upstart-7e2beb8f-393b-4445-ab82-69824a812d6c' {
                  menuentry 'Ubuntu, with Linux 4.15.0-42-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-42-generic-recovery-7e2beb8f-393b-4445-ab82-69824a812d6c' {
                  menuentry 'Memory test (memtest86+)' {
                  menuentry 'Memory test (memtest86+, serial console 115200)' {


                  to see what my choices were.



                  I found a better solution at this AskUbuntu answer:



                  $ awk -F' '/menuentry / {print $2}' /boot/grub/grub.cfg
                  Ubuntu
                  Ubuntu, with Linux 4.15.0-45-generic
                  Ubuntu, with Linux 4.15.0-45-generic (upstart)
                  Ubuntu, with Linux 4.15.0-45-generic (recovery mode)
                  Ubuntu, with Linux 4.15.0-43-generic
                  Ubuntu, with Linux 4.15.0-43-generic (upstart)
                  Ubuntu, with Linux 4.15.0-43-generic (recovery mode)
                  Memory test (memtest86+)
                  Memory test (memtest86+, serial console 115200)






                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Feb 11 at 20:07

























                  answered Jan 21 at 23:01









                  waltinatorwaltinator

                  22.6k74169




                  22.6k74169






























                      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%2f1111788%2fstart-up-ubuntu%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

                      Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

                      ComboBox Display Member on multiple fields

                      Is it possible to collect Nectar points via Trainline?