Arranque una instalación GNU / Linux existente desde un disco duro real en Qemu-Windows


1

Ahora estoy ejecutando Windows 8 y instalé qemu-windows 1.3.1. Tengo dos discos duros. Cuando intento arrancar el Arch GNU / Linux existente desde el segundo disco con el comando:

qemu-system-x86-64w -hda \Device\HarddiskVolume6  

Tengo este error

qemu-system-x86_64w.exe: -hda \Device\HarddiskVolume6: 
could not open disk image \Device\HarddiskVolume6: Invalid argument

puede alguien decirme por que? ¿Necesito montar una partición de Linux en Windows?

La conclusión es:

¿Cómo arranco una instalación existente de GNU / Linux desde un disco duro?

actualizar
cuando uso el comando que respondió Ярослав Рахматуллин

 qemu-system-x86_64w.exe: -hda \\.\PhysicalDrive0  

o

qemu-system-x86_64w.exe: \\.\PhysicalDrive0

Tengo este error

qemu: PC system firmware (pflash) must be a multiple of 0x1000

Respuestas:


0

Su argumento no es válido, es decir, incorrecto. El qemu-doc.html de la página / distribución oficial de qemu-windows indica cómo especificar discos duros físicos en la sección 3.6.7.2 Windows :

Hard disks
    Hard disks can be used with the syntax: \\.\PhysicalDriveN where N is the 
    drive number (0 is the first hard disk). /dev/hda is supported as an alias
    to the first hard disk drive \\.\PhysicalDrive0.

    WARNING: unless you know what you do, it is better to only make READ-ONLY 
    accesses to the hard disk otherwise you may corrupt your host data (use
    the -snapshot command line so that the modifications are written in a 
    temporary file). 
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.