Export ubuntu/linux from virtual machine to install it on physical machineBack up virtualbox for a fresh install - while migrating to 64 bitCloning a remote virtual ServerConvert Ubuntu Physical machine to Virtual machineHow to install Ubuntu server with UEFI and RAID1 + LVMDo I Need Linux Drivers For Virtual Box?Using a Physical Hard Drive Pariition as a VirtualBox VM and as a Bootable PartitionI can't Install Ubuntu or any Linux distros on my PC

Science fiction book about a generation ship sent to seed or colonize a planet

Why can I not group sed commands after an address in a block?

How to protect assets from being passed to a beneficiary in a will when they are likely to die soon also

Fast cooking bone broth

What are examples of (collections of) papers which "close" a field?

Could a technologically advanced society exist as a feudal monarchy?

Can we violate law of physics in any other planet?

Temporary queue to prevent duplication

Am I overreacting or seeing things where they don't exist?

Why do cargo airlines frequently choose passenger aircraft rather than aircraft designed specifically for cargo?

Did Roger Rabbit exist prior to the film "Who Framed Roger Rabbit?"

Why aren't there attempts to evolve classical musical instruments so that they're easier to play?

Why "alle Tale" and not "alle Täler"?

Did the computer mouse always output relative x/y and not absolute?

How do I use an .img.xz file or get an .img file from it?

Does an action-reaction pair always contain the same kind of force?

How can an employer better accommodate workers on the autism-spectrum to reduce absence from work?

Correct word for "the law does not allow for that"

Can one get into trouble if one doesn't show up at the gate 30 minutes before departure (or whatever time window the boarding pass is indicating)?

Constraint Programming OR-Tools finding Matrix Combinations

What would happen if the Queen died immediately before a general election?

Should user input be validated for its length in PHP (server side) as a security measure?

In OOP, isn't the 'protected' keyword required?

What’s the first use of the term “Downwell”



Export ubuntu/linux from virtual machine to install it on physical machine


Back up virtualbox for a fresh install - while migrating to 64 bitCloning a remote virtual ServerConvert Ubuntu Physical machine to Virtual machineHow to install Ubuntu server with UEFI and RAID1 + LVMDo I Need Linux Drivers For Virtual Box?Using a Physical Hard Drive Pariition as a VirtualBox VM and as a Bootable PartitionI can't Install Ubuntu or any Linux distros on my PC






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;









0


















Is it possible to



  1. configure a linux system on a virtual machine (install software, configure settings, ...)

  2. then export this system including preserving its current state (installed software, configured settings, ...)

  3. and then installing the system with its current state on a physical machine?

EDIT: This would be a comfortable way to test out certain configurations and software on an OS before actually installing it on a physical machine.










share|improve this question































    0


















    Is it possible to



    1. configure a linux system on a virtual machine (install software, configure settings, ...)

    2. then export this system including preserving its current state (installed software, configured settings, ...)

    3. and then installing the system with its current state on a physical machine?

    EDIT: This would be a comfortable way to test out certain configurations and software on an OS before actually installing it on a physical machine.










    share|improve this question



























      0













      0









      0








      Is it possible to



      1. configure a linux system on a virtual machine (install software, configure settings, ...)

      2. then export this system including preserving its current state (installed software, configured settings, ...)

      3. and then installing the system with its current state on a physical machine?

      EDIT: This would be a comfortable way to test out certain configurations and software on an OS before actually installing it on a physical machine.










      share|improve this question














      Is it possible to



      1. configure a linux system on a virtual machine (install software, configure settings, ...)

      2. then export this system including preserving its current state (installed software, configured settings, ...)

      3. and then installing the system with its current state on a physical machine?

      EDIT: This would be a comfortable way to test out certain configurations and software on an OS before actually installing it on a physical machine.







      system-installation virtualbox






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Sep 26 at 18:19









      pogothebearpogothebear

      32 bronze badges




      32 bronze badges























          1 Answer
          1






          active

          oldest

          votes


















          1



















          Yes. I used qemu to accomplish this task for me.



          Run sudo apt install qemu-utils to install qemu and include the source and target directory.



          For example: sudo qemu-img convert -p -O raw '/media/D2/Virtualbox VMs/Ubuntu 16.04 LTS x64 Old Desktops/Ubuntu 16.04 LTS x64 Old Desktops.vhd' /dev/sde.






          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/4.0/"u003ecc by-sa 4.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%2f1176905%2fexport-ubuntu-linux-from-virtual-machine-to-install-it-on-physical-machine%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









            1



















            Yes. I used qemu to accomplish this task for me.



            Run sudo apt install qemu-utils to install qemu and include the source and target directory.



            For example: sudo qemu-img convert -p -O raw '/media/D2/Virtualbox VMs/Ubuntu 16.04 LTS x64 Old Desktops/Ubuntu 16.04 LTS x64 Old Desktops.vhd' /dev/sde.






            share|improve this answer































              1



















              Yes. I used qemu to accomplish this task for me.



              Run sudo apt install qemu-utils to install qemu and include the source and target directory.



              For example: sudo qemu-img convert -p -O raw '/media/D2/Virtualbox VMs/Ubuntu 16.04 LTS x64 Old Desktops/Ubuntu 16.04 LTS x64 Old Desktops.vhd' /dev/sde.






              share|improve this answer





























                1















                1











                1









                Yes. I used qemu to accomplish this task for me.



                Run sudo apt install qemu-utils to install qemu and include the source and target directory.



                For example: sudo qemu-img convert -p -O raw '/media/D2/Virtualbox VMs/Ubuntu 16.04 LTS x64 Old Desktops/Ubuntu 16.04 LTS x64 Old Desktops.vhd' /dev/sde.






                share|improve this answer
















                Yes. I used qemu to accomplish this task for me.



                Run sudo apt install qemu-utils to install qemu and include the source and target directory.



                For example: sudo qemu-img convert -p -O raw '/media/D2/Virtualbox VMs/Ubuntu 16.04 LTS x64 Old Desktops/Ubuntu 16.04 LTS x64 Old Desktops.vhd' /dev/sde.







                share|improve this answer















                share|improve this answer




                share|improve this answer








                edited Sep 26 at 18:56









                Thomas Ward

                52.6k24 gold badges132 silver badges190 bronze badges




                52.6k24 gold badges132 silver badges190 bronze badges










                answered Sep 26 at 18:34









                Freeappbuntu64Freeappbuntu64

                362 bronze badges




                362 bronze badges































                    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%2f1176905%2fexport-ubuntu-linux-from-virtual-machine-to-install-it-on-physical-machine%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

                    Tamil (spriik) Luke uk diar | Nawigatjuun

                    Align equal signs while including text over equalitiesAMS align: left aligned text/math plus multicolumn alignmentMultiple alignmentsAligning equations in multiple placesNumbering and aligning an equation with multiple columnsHow to align one equation with another multline equationUsing \ in environments inside the begintabularxNumber equations and preserving alignment of equal signsHow can I align equations to the left and to the right?Double equation alignment problem within align enviromentAligned within align: Why are they right-aligned?

                    Where does the image of a data connector as a sharp metal spike originate from?Where does the concept of infected people turning into zombies only after death originate from?Where does the motif of a reanimated human head originate?Where did the notion that Dragons could speak originate?Where does the archetypal image of the 'Grey' alien come from?Where did the suffix '-Man' originate?Where does the notion of being injured or killed by an illusion originate?Where did the term “sophont” originate?Where does the trope of magic spells being driven by advanced technology originate from?Where did the term “the living impaired” originate?