qemu-system-x86_64 boot failed











up vote
3
down vote

favorite
2












I tried to boot ubuntu.iso on qemu-system-x86_64 with command "qemu-system-x86_64 -cdrom ubuntu-16.04-desktop-amd64.iso" but failed, here is warning "TCG doesn't support requested feature: CPUID.01H:ECX.vmx [bit 5]":



question img1



How to solve this problem?










share|improve this question




























    up vote
    3
    down vote

    favorite
    2












    I tried to boot ubuntu.iso on qemu-system-x86_64 with command "qemu-system-x86_64 -cdrom ubuntu-16.04-desktop-amd64.iso" but failed, here is warning "TCG doesn't support requested feature: CPUID.01H:ECX.vmx [bit 5]":



    question img1



    How to solve this problem?










    share|improve this question


























      up vote
      3
      down vote

      favorite
      2









      up vote
      3
      down vote

      favorite
      2






      2





      I tried to boot ubuntu.iso on qemu-system-x86_64 with command "qemu-system-x86_64 -cdrom ubuntu-16.04-desktop-amd64.iso" but failed, here is warning "TCG doesn't support requested feature: CPUID.01H:ECX.vmx [bit 5]":



      question img1



      How to solve this problem?










      share|improve this question















      I tried to boot ubuntu.iso on qemu-system-x86_64 with command "qemu-system-x86_64 -cdrom ubuntu-16.04-desktop-amd64.iso" but failed, here is warning "TCG doesn't support requested feature: CPUID.01H:ECX.vmx [bit 5]":



      question img1



      How to solve this problem?







      boot 16.04 virtualization kvm qemu






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 2 '16 at 5:55

























      asked Nov 2 '16 at 5:34









      coconut

      165




      165






















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          2
          down vote













          You did not specify the guest startup RAM size with the -m option, so the default RAM size is 128M, which is insufficient. For ubuntu-16.04.2-desktop-amd64.iso, the minimum size that works is -m 277. To be safe, add -m 512 to the qemu-system-x86_64 options, it should solve this problem.






          share|improve this answer





















          • This causes a lot of operating systems to not load, so use -m 1G (if you can spare) to be safe
            – cat
            Aug 9 at 19:16


















          up vote
          0
          down vote













          I had this problem, or something very similar. It gave the same warning and, while it would then boot, it was unusably slow.



          I fixed it it by adding -machine ubuntu,accel=kvm to the qemu-system-x86_64 command line.






          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',
            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%2f844496%2fqemu-system-x86-64-boot-failed%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








            up vote
            2
            down vote













            You did not specify the guest startup RAM size with the -m option, so the default RAM size is 128M, which is insufficient. For ubuntu-16.04.2-desktop-amd64.iso, the minimum size that works is -m 277. To be safe, add -m 512 to the qemu-system-x86_64 options, it should solve this problem.






            share|improve this answer





















            • This causes a lot of operating systems to not load, so use -m 1G (if you can spare) to be safe
              – cat
              Aug 9 at 19:16















            up vote
            2
            down vote













            You did not specify the guest startup RAM size with the -m option, so the default RAM size is 128M, which is insufficient. For ubuntu-16.04.2-desktop-amd64.iso, the minimum size that works is -m 277. To be safe, add -m 512 to the qemu-system-x86_64 options, it should solve this problem.






            share|improve this answer





















            • This causes a lot of operating systems to not load, so use -m 1G (if you can spare) to be safe
              – cat
              Aug 9 at 19:16













            up vote
            2
            down vote










            up vote
            2
            down vote









            You did not specify the guest startup RAM size with the -m option, so the default RAM size is 128M, which is insufficient. For ubuntu-16.04.2-desktop-amd64.iso, the minimum size that works is -m 277. To be safe, add -m 512 to the qemu-system-x86_64 options, it should solve this problem.






            share|improve this answer












            You did not specify the guest startup RAM size with the -m option, so the default RAM size is 128M, which is insufficient. For ubuntu-16.04.2-desktop-amd64.iso, the minimum size that works is -m 277. To be safe, add -m 512 to the qemu-system-x86_64 options, it should solve this problem.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Apr 3 '17 at 0:54









            Gilles Bardoux

            212




            212












            • This causes a lot of operating systems to not load, so use -m 1G (if you can spare) to be safe
              – cat
              Aug 9 at 19:16


















            • This causes a lot of operating systems to not load, so use -m 1G (if you can spare) to be safe
              – cat
              Aug 9 at 19:16
















            This causes a lot of operating systems to not load, so use -m 1G (if you can spare) to be safe
            – cat
            Aug 9 at 19:16




            This causes a lot of operating systems to not load, so use -m 1G (if you can spare) to be safe
            – cat
            Aug 9 at 19:16












            up vote
            0
            down vote













            I had this problem, or something very similar. It gave the same warning and, while it would then boot, it was unusably slow.



            I fixed it it by adding -machine ubuntu,accel=kvm to the qemu-system-x86_64 command line.






            share|improve this answer

























              up vote
              0
              down vote













              I had this problem, or something very similar. It gave the same warning and, while it would then boot, it was unusably slow.



              I fixed it it by adding -machine ubuntu,accel=kvm to the qemu-system-x86_64 command line.






              share|improve this answer























                up vote
                0
                down vote










                up vote
                0
                down vote









                I had this problem, or something very similar. It gave the same warning and, while it would then boot, it was unusably slow.



                I fixed it it by adding -machine ubuntu,accel=kvm to the qemu-system-x86_64 command line.






                share|improve this answer












                I had this problem, or something very similar. It gave the same warning and, while it would then boot, it was unusably slow.



                I fixed it it by adding -machine ubuntu,accel=kvm to the qemu-system-x86_64 command line.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 25 at 10:55









                Ben Aveling

                1726




                1726






























                    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.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • 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%2f844496%2fqemu-system-x86-64-boot-failed%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?