start qemu by giving it a path to a linux root
Clash Royale CLAN TAG#URR8PPP
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
add a comment |
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
add a comment |
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
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
boot qemu disk
asked Apr 4 '14 at 15:39
Louis KottmannLouis Kottmann
11315
11315
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
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.
Thanks, I was trying to boot on the mount point instead of /dev/sdb
– Louis Kottmann
Apr 7 '14 at 8:32
add a comment |
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Thanks, I was trying to boot on the mount point instead of /dev/sdb
– Louis Kottmann
Apr 7 '14 at 8:32
add a comment |
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.
Thanks, I was trying to boot on the mount point instead of /dev/sdb
– Louis Kottmann
Apr 7 '14 at 8:32
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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
add a comment |
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
add a comment |
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
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
edited Apr 4 '14 at 18:47
slm♦
251k69529685
251k69529685
answered Apr 4 '14 at 15:49
Artur SzymczakArtur Szymczak
1,483611
1,483611
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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