start qemu by giving it a path to a linux root

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP












2















Good evening,



I installed ArchLinux on a USB stick, and I would like to boot it in qemu. Unfortunately, most examples I found boot an image (iso..).



The stick is definitely bootable as if I restart my computer, it shows a grub that can successfully start ArchLinux.



I have tried things such as




sudo qemu-system-x86_64 -usb -usbdevice disk:/media/louis/FlyinBaboon/boot/initramfs-linux.img -boot menu=on




only to get boot errors.



What is the correct way to start qemu by giving it a path to a linux root? (/media/louis/FlyingBaboon corresponding to my USB stick's root)










share|improve this question


























    2















    Good evening,



    I installed ArchLinux on a USB stick, and I would like to boot it in qemu. Unfortunately, most examples I found boot an image (iso..).



    The stick is definitely bootable as if I restart my computer, it shows a grub that can successfully start ArchLinux.



    I have tried things such as




    sudo qemu-system-x86_64 -usb -usbdevice disk:/media/louis/FlyinBaboon/boot/initramfs-linux.img -boot menu=on




    only to get boot errors.



    What is the correct way to start qemu by giving it a path to a linux root? (/media/louis/FlyingBaboon corresponding to my USB stick's root)










    share|improve this question
























      2












      2








      2








      Good evening,



      I installed ArchLinux on a USB stick, and I would like to boot it in qemu. Unfortunately, most examples I found boot an image (iso..).



      The stick is definitely bootable as if I restart my computer, it shows a grub that can successfully start ArchLinux.



      I have tried things such as




      sudo qemu-system-x86_64 -usb -usbdevice disk:/media/louis/FlyinBaboon/boot/initramfs-linux.img -boot menu=on




      only to get boot errors.



      What is the correct way to start qemu by giving it a path to a linux root? (/media/louis/FlyingBaboon corresponding to my USB stick's root)










      share|improve this question














      Good evening,



      I installed ArchLinux on a USB stick, and I would like to boot it in qemu. Unfortunately, most examples I found boot an image (iso..).



      The stick is definitely bootable as if I restart my computer, it shows a grub that can successfully start ArchLinux.



      I have tried things such as




      sudo qemu-system-x86_64 -usb -usbdevice disk:/media/louis/FlyinBaboon/boot/initramfs-linux.img -boot menu=on




      only to get boot errors.



      What is the correct way to start qemu by giving it a path to a linux root? (/media/louis/FlyingBaboon corresponding to my USB stick's root)







      boot qemu disk






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Apr 4 '14 at 15:39









      Louis KottmannLouis Kottmann

      11315




      11315




















          2 Answers
          2






          active

          oldest

          votes


















          3














          What kind of errors do you get?



          Ex:



          user@marconi ~ $ sudo qemu-system-x86_64 -usb -usbdevice disk:/mnt/usbdrive
          qemu-system-x86_64: -usbdevice disk:/mnt/usbdrive: could not open disk image /mnt/usbdrive: Is a directory
          qemu: could not add USB device 'disk:/mnt/usbdrive'


          If you see something similar, the problem is that you are providing a filesystem path, but 'qemu' wants a reference to a block device.



          Here is an example. I have a USB drive attached to my system. The block device is /dev/sdb, and the device is mounted at '/mnt/usbdrive' in the filesystem. You can see the relationship by looking at the system mount table:



          user@marconi ~ $ cat /proc/mounts |grep sdb
          /dev/sdb /mnt/usbdrive vfat rw,relatime,fmask=0022,dmask=0022,codepage=cp437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro 0 0


          If you give qemu the block device name, instead of a path in the filesystem, it should boot as you desire. For my example, the correct invocation would be:



          user@marconi ~ $ sudo qemu-system-x86_64 -usb -usbdevice disk:/dev/sdb


          Hope this helps.






          share|improve this answer























          • Thanks, I was trying to boot on the mount point instead of /dev/sdb

            – Louis Kottmann
            Apr 7 '14 at 8:32


















          2














          I have image of Fedora-netinstall on my USB drive, and I tried this two, and both works fine for me:



          $ sudo qemu-system-x86_64 -cdrom /dev/sdb
          $ sudo qemu-system-x86_64 -hda /dev/sdb





          share|improve this answer
























            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "106"
            ;
            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: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            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%2funix.stackexchange.com%2fquestions%2f123152%2fstart-qemu-by-giving-it-a-path-to-a-linux-root%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














            What kind of errors do you get?



            Ex:



            user@marconi ~ $ sudo qemu-system-x86_64 -usb -usbdevice disk:/mnt/usbdrive
            qemu-system-x86_64: -usbdevice disk:/mnt/usbdrive: could not open disk image /mnt/usbdrive: Is a directory
            qemu: could not add USB device 'disk:/mnt/usbdrive'


            If you see something similar, the problem is that you are providing a filesystem path, but 'qemu' wants a reference to a block device.



            Here is an example. I have a USB drive attached to my system. The block device is /dev/sdb, and the device is mounted at '/mnt/usbdrive' in the filesystem. You can see the relationship by looking at the system mount table:



            user@marconi ~ $ cat /proc/mounts |grep sdb
            /dev/sdb /mnt/usbdrive vfat rw,relatime,fmask=0022,dmask=0022,codepage=cp437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro 0 0


            If you give qemu the block device name, instead of a path in the filesystem, it should boot as you desire. For my example, the correct invocation would be:



            user@marconi ~ $ sudo qemu-system-x86_64 -usb -usbdevice disk:/dev/sdb


            Hope this helps.






            share|improve this answer























            • Thanks, I was trying to boot on the mount point instead of /dev/sdb

              – Louis Kottmann
              Apr 7 '14 at 8:32















            3














            What kind of errors do you get?



            Ex:



            user@marconi ~ $ sudo qemu-system-x86_64 -usb -usbdevice disk:/mnt/usbdrive
            qemu-system-x86_64: -usbdevice disk:/mnt/usbdrive: could not open disk image /mnt/usbdrive: Is a directory
            qemu: could not add USB device 'disk:/mnt/usbdrive'


            If you see something similar, the problem is that you are providing a filesystem path, but 'qemu' wants a reference to a block device.



            Here is an example. I have a USB drive attached to my system. The block device is /dev/sdb, and the device is mounted at '/mnt/usbdrive' in the filesystem. You can see the relationship by looking at the system mount table:



            user@marconi ~ $ cat /proc/mounts |grep sdb
            /dev/sdb /mnt/usbdrive vfat rw,relatime,fmask=0022,dmask=0022,codepage=cp437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro 0 0


            If you give qemu the block device name, instead of a path in the filesystem, it should boot as you desire. For my example, the correct invocation would be:



            user@marconi ~ $ sudo qemu-system-x86_64 -usb -usbdevice disk:/dev/sdb


            Hope this helps.






            share|improve this answer























            • Thanks, I was trying to boot on the mount point instead of /dev/sdb

              – Louis Kottmann
              Apr 7 '14 at 8:32













            3












            3








            3







            What kind of errors do you get?



            Ex:



            user@marconi ~ $ sudo qemu-system-x86_64 -usb -usbdevice disk:/mnt/usbdrive
            qemu-system-x86_64: -usbdevice disk:/mnt/usbdrive: could not open disk image /mnt/usbdrive: Is a directory
            qemu: could not add USB device 'disk:/mnt/usbdrive'


            If you see something similar, the problem is that you are providing a filesystem path, but 'qemu' wants a reference to a block device.



            Here is an example. I have a USB drive attached to my system. The block device is /dev/sdb, and the device is mounted at '/mnt/usbdrive' in the filesystem. You can see the relationship by looking at the system mount table:



            user@marconi ~ $ cat /proc/mounts |grep sdb
            /dev/sdb /mnt/usbdrive vfat rw,relatime,fmask=0022,dmask=0022,codepage=cp437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro 0 0


            If you give qemu the block device name, instead of a path in the filesystem, it should boot as you desire. For my example, the correct invocation would be:



            user@marconi ~ $ sudo qemu-system-x86_64 -usb -usbdevice disk:/dev/sdb


            Hope this helps.






            share|improve this answer













            What kind of errors do you get?



            Ex:



            user@marconi ~ $ sudo qemu-system-x86_64 -usb -usbdevice disk:/mnt/usbdrive
            qemu-system-x86_64: -usbdevice disk:/mnt/usbdrive: could not open disk image /mnt/usbdrive: Is a directory
            qemu: could not add USB device 'disk:/mnt/usbdrive'


            If you see something similar, the problem is that you are providing a filesystem path, but 'qemu' wants a reference to a block device.



            Here is an example. I have a USB drive attached to my system. The block device is /dev/sdb, and the device is mounted at '/mnt/usbdrive' in the filesystem. You can see the relationship by looking at the system mount table:



            user@marconi ~ $ cat /proc/mounts |grep sdb
            /dev/sdb /mnt/usbdrive vfat rw,relatime,fmask=0022,dmask=0022,codepage=cp437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro 0 0


            If you give qemu the block device name, instead of a path in the filesystem, it should boot as you desire. For my example, the correct invocation would be:



            user@marconi ~ $ sudo qemu-system-x86_64 -usb -usbdevice disk:/dev/sdb


            Hope this helps.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Apr 4 '14 at 20:39









            Aaron HansonAaron Hanson

            835




            835












            • Thanks, I was trying to boot on the mount point instead of /dev/sdb

              – Louis Kottmann
              Apr 7 '14 at 8:32

















            • Thanks, I was trying to boot on the mount point instead of /dev/sdb

              – Louis Kottmann
              Apr 7 '14 at 8:32
















            Thanks, I was trying to boot on the mount point instead of /dev/sdb

            – Louis Kottmann
            Apr 7 '14 at 8:32





            Thanks, I was trying to boot on the mount point instead of /dev/sdb

            – Louis Kottmann
            Apr 7 '14 at 8:32













            2














            I have image of Fedora-netinstall on my USB drive, and I tried this two, and both works fine for me:



            $ sudo qemu-system-x86_64 -cdrom /dev/sdb
            $ sudo qemu-system-x86_64 -hda /dev/sdb





            share|improve this answer





























              2














              I have image of Fedora-netinstall on my USB drive, and I tried this two, and both works fine for me:



              $ sudo qemu-system-x86_64 -cdrom /dev/sdb
              $ sudo qemu-system-x86_64 -hda /dev/sdb





              share|improve this answer



























                2












                2








                2







                I have image of Fedora-netinstall on my USB drive, and I tried this two, and both works fine for me:



                $ sudo qemu-system-x86_64 -cdrom /dev/sdb
                $ sudo qemu-system-x86_64 -hda /dev/sdb





                share|improve this answer















                I have image of Fedora-netinstall on my USB drive, and I tried this two, and both works fine for me:



                $ sudo qemu-system-x86_64 -cdrom /dev/sdb
                $ sudo qemu-system-x86_64 -hda /dev/sdb






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Apr 4 '14 at 18:47









                slm

                251k69529685




                251k69529685










                answered Apr 4 '14 at 15:49









                Artur SzymczakArtur Szymczak

                1,483611




                1,483611



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Unix & Linux Stack Exchange!


                    • 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%2funix.stackexchange.com%2fquestions%2f123152%2fstart-qemu-by-giving-it-a-path-to-a-linux-root%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

                    How to check contact read email or not when send email to Individual?

                    Bahrain

                    Postfix configuration issue with fips on centos 7; mailgun relay