How to configure Grub4dos menu to boot 16.04.5 i386 iso on non- PAE CPU (forcepae)












0















After you properly configure Grub4dos entry to boot from an iso image (i.e. in such a way that it allows to boot on modern machines with PAE) for i386 iso of ubuntu 12.04.5 or more recent, you might face the following problem - after loading kernel you get the message:



This kernel requires the following features not present on the CPU:
pae
Unable to boot - please use a kernel appropriate for your CPU.


What modification should be done to the (almost working) grub4dos menu.lst entry:



title Run Ubuntu 16.04.5 x86
find --set-root /ubuntu-16.04.5-desktop-i386.iso
map --read-only --heads=0 --sectors-per-track=0 /ubuntu-16.04.5-desktop-i386.iso (0xff)
map --hook
root (0xff)
kernel /casper/vmlinuz file=/cdrom/preseed/ubuntu.seed boot=casper iso-scan/filename=/ubuntu-16.04.5-desktop-i386.iso splash
initrd /casper/initrd









share|improve this question





























    0















    After you properly configure Grub4dos entry to boot from an iso image (i.e. in such a way that it allows to boot on modern machines with PAE) for i386 iso of ubuntu 12.04.5 or more recent, you might face the following problem - after loading kernel you get the message:



    This kernel requires the following features not present on the CPU:
    pae
    Unable to boot - please use a kernel appropriate for your CPU.


    What modification should be done to the (almost working) grub4dos menu.lst entry:



    title Run Ubuntu 16.04.5 x86
    find --set-root /ubuntu-16.04.5-desktop-i386.iso
    map --read-only --heads=0 --sectors-per-track=0 /ubuntu-16.04.5-desktop-i386.iso (0xff)
    map --hook
    root (0xff)
    kernel /casper/vmlinuz file=/cdrom/preseed/ubuntu.seed boot=casper iso-scan/filename=/ubuntu-16.04.5-desktop-i386.iso splash
    initrd /casper/initrd









    share|improve this question



























      0












      0








      0


      1






      After you properly configure Grub4dos entry to boot from an iso image (i.e. in such a way that it allows to boot on modern machines with PAE) for i386 iso of ubuntu 12.04.5 or more recent, you might face the following problem - after loading kernel you get the message:



      This kernel requires the following features not present on the CPU:
      pae
      Unable to boot - please use a kernel appropriate for your CPU.


      What modification should be done to the (almost working) grub4dos menu.lst entry:



      title Run Ubuntu 16.04.5 x86
      find --set-root /ubuntu-16.04.5-desktop-i386.iso
      map --read-only --heads=0 --sectors-per-track=0 /ubuntu-16.04.5-desktop-i386.iso (0xff)
      map --hook
      root (0xff)
      kernel /casper/vmlinuz file=/cdrom/preseed/ubuntu.seed boot=casper iso-scan/filename=/ubuntu-16.04.5-desktop-i386.iso splash
      initrd /casper/initrd









      share|improve this question
















      After you properly configure Grub4dos entry to boot from an iso image (i.e. in such a way that it allows to boot on modern machines with PAE) for i386 iso of ubuntu 12.04.5 or more recent, you might face the following problem - after loading kernel you get the message:



      This kernel requires the following features not present on the CPU:
      pae
      Unable to boot - please use a kernel appropriate for your CPU.


      What modification should be done to the (almost working) grub4dos menu.lst entry:



      title Run Ubuntu 16.04.5 x86
      find --set-root /ubuntu-16.04.5-desktop-i386.iso
      map --read-only --heads=0 --sectors-per-track=0 /ubuntu-16.04.5-desktop-i386.iso (0xff)
      map --hook
      root (0xff)
      kernel /casper/vmlinuz file=/cdrom/preseed/ubuntu.seed boot=casper iso-scan/filename=/ubuntu-16.04.5-desktop-i386.iso splash
      initrd /casper/initrd






      boot iso menu pae grub4dos






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Feb 4 at 20:04









      pomsky

      32.8k11103135




      32.8k11103135










      asked Feb 4 at 19:17









      ZKCZKC

      12




      12






















          1 Answer
          1






          active

          oldest

          votes


















          0














          In case you need to be able to boot Ubuntu 12.04.5, 14.04 or more recent from an .iso image (up to last i386 iso available) on an older machine from eg. USB pendrive and want to use Grub4dos your entry in menu.lst should be modified to include forcepae parameter at the end of kernel line like this:



          title Run Ubuntu 16.04.5 x86
          find --set-root /ubuntu-16.04.5-desktop-i386.iso
          map --read-only --heads=0 --sectors-per-track=0 /ubuntu-16.04.5-desktop-i386.iso (0xff)
          map --hook
          root (0xff)
          kernel /casper/vmlinuz file=/cdrom/preseed/ubuntu.seed boot=casper iso-scan/filename=/ubuntu-16.04.5-desktop-i386.iso splash forcepae -- forcepae
          initrd /casper/initrd


          Hope this helps somebody in the future, I had some beginners problems with making the entire Grub4dos entry work. You may be also interested in this thread:
          How can I install on a non-PAE CPU? (error “Kernel requires features not present on the CPU: PAE”)






          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%2f1115613%2fhow-to-configure-grub4dos-menu-to-boot-16-04-5-i386-iso-on-non-pae-cpu-forcepa%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            In case you need to be able to boot Ubuntu 12.04.5, 14.04 or more recent from an .iso image (up to last i386 iso available) on an older machine from eg. USB pendrive and want to use Grub4dos your entry in menu.lst should be modified to include forcepae parameter at the end of kernel line like this:



            title Run Ubuntu 16.04.5 x86
            find --set-root /ubuntu-16.04.5-desktop-i386.iso
            map --read-only --heads=0 --sectors-per-track=0 /ubuntu-16.04.5-desktop-i386.iso (0xff)
            map --hook
            root (0xff)
            kernel /casper/vmlinuz file=/cdrom/preseed/ubuntu.seed boot=casper iso-scan/filename=/ubuntu-16.04.5-desktop-i386.iso splash forcepae -- forcepae
            initrd /casper/initrd


            Hope this helps somebody in the future, I had some beginners problems with making the entire Grub4dos entry work. You may be also interested in this thread:
            How can I install on a non-PAE CPU? (error “Kernel requires features not present on the CPU: PAE”)






            share|improve this answer






























              0














              In case you need to be able to boot Ubuntu 12.04.5, 14.04 or more recent from an .iso image (up to last i386 iso available) on an older machine from eg. USB pendrive and want to use Grub4dos your entry in menu.lst should be modified to include forcepae parameter at the end of kernel line like this:



              title Run Ubuntu 16.04.5 x86
              find --set-root /ubuntu-16.04.5-desktop-i386.iso
              map --read-only --heads=0 --sectors-per-track=0 /ubuntu-16.04.5-desktop-i386.iso (0xff)
              map --hook
              root (0xff)
              kernel /casper/vmlinuz file=/cdrom/preseed/ubuntu.seed boot=casper iso-scan/filename=/ubuntu-16.04.5-desktop-i386.iso splash forcepae -- forcepae
              initrd /casper/initrd


              Hope this helps somebody in the future, I had some beginners problems with making the entire Grub4dos entry work. You may be also interested in this thread:
              How can I install on a non-PAE CPU? (error “Kernel requires features not present on the CPU: PAE”)






              share|improve this answer




























                0












                0








                0







                In case you need to be able to boot Ubuntu 12.04.5, 14.04 or more recent from an .iso image (up to last i386 iso available) on an older machine from eg. USB pendrive and want to use Grub4dos your entry in menu.lst should be modified to include forcepae parameter at the end of kernel line like this:



                title Run Ubuntu 16.04.5 x86
                find --set-root /ubuntu-16.04.5-desktop-i386.iso
                map --read-only --heads=0 --sectors-per-track=0 /ubuntu-16.04.5-desktop-i386.iso (0xff)
                map --hook
                root (0xff)
                kernel /casper/vmlinuz file=/cdrom/preseed/ubuntu.seed boot=casper iso-scan/filename=/ubuntu-16.04.5-desktop-i386.iso splash forcepae -- forcepae
                initrd /casper/initrd


                Hope this helps somebody in the future, I had some beginners problems with making the entire Grub4dos entry work. You may be also interested in this thread:
                How can I install on a non-PAE CPU? (error “Kernel requires features not present on the CPU: PAE”)






                share|improve this answer















                In case you need to be able to boot Ubuntu 12.04.5, 14.04 or more recent from an .iso image (up to last i386 iso available) on an older machine from eg. USB pendrive and want to use Grub4dos your entry in menu.lst should be modified to include forcepae parameter at the end of kernel line like this:



                title Run Ubuntu 16.04.5 x86
                find --set-root /ubuntu-16.04.5-desktop-i386.iso
                map --read-only --heads=0 --sectors-per-track=0 /ubuntu-16.04.5-desktop-i386.iso (0xff)
                map --hook
                root (0xff)
                kernel /casper/vmlinuz file=/cdrom/preseed/ubuntu.seed boot=casper iso-scan/filename=/ubuntu-16.04.5-desktop-i386.iso splash forcepae -- forcepae
                initrd /casper/initrd


                Hope this helps somebody in the future, I had some beginners problems with making the entire Grub4dos entry work. You may be also interested in this thread:
                How can I install on a non-PAE CPU? (error “Kernel requires features not present on the CPU: PAE”)







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Feb 4 at 20:12

























                answered Feb 4 at 20:00









                ZKCZKC

                12




                12






























                    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%2f1115613%2fhow-to-configure-grub4dos-menu-to-boot-16-04-5-i386-iso-on-non-pae-cpu-forcepa%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

                    Human spaceflight

                    Can not write log (Is /dev/pts mounted?) - openpty in Ubuntu-on-Windows?

                    File:DeusFollowingSea.jpg