qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [Bug 899143] [NEW] Raw img not recognized by Windows
@ 2011-12-02 13:00 Vincent Autefage
  2011-12-02 13:35 ` Stefan Hajnoczi
  2012-02-18 18:35 ` [Qemu-devel] [Bug 899143] " Stefan Weil
  0 siblings, 2 replies; 6+ messages in thread
From: Vincent Autefage @ 2011-12-02 13:00 UTC (permalink / raw)
  To: qemu-devel

Public bug reported:

Hi,

The installation process of Windows (XP/Vista/7) doesn’t seem to recognize a raw img generated by qemu-img.
The installer does not see any hard drive...

The problem exists only with a raw img but not with a vmdk for instance.

Thanks

** Affects: qemu
     Importance: Undecided
         Status: New

** Description changed:

  Hi,
  
  The installation process of Windows (XP/Vista/7) doesn’t seem to recognize a raw img generated by qemu-img.
- The installer do not see any hard drive...
+ The installer does not see any hard drive...
  
  The problem exists only with a raw img but not with a vmdk for instance.
  
  Thanks

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/899143

Title:
  Raw img not recognized by Windows

Status in QEMU:
  New

Bug description:
  Hi,

  The installation process of Windows (XP/Vista/7) doesn’t seem to recognize a raw img generated by qemu-img.
  The installer does not see any hard drive...

  The problem exists only with a raw img but not with a vmdk for
  instance.

  Thanks

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/899143/+subscriptions

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] [Bug 899143] [NEW] Raw img not recognized by Windows
  2011-12-02 13:00 [Qemu-devel] [Bug 899143] [NEW] Raw img not recognized by Windows Vincent Autefage
@ 2011-12-02 13:35 ` Stefan Hajnoczi
  2011-12-02 14:45   ` Vincent Autefage
  2012-02-18 18:35 ` [Qemu-devel] [Bug 899143] " Stefan Weil
  1 sibling, 1 reply; 6+ messages in thread
From: Stefan Hajnoczi @ 2011-12-02 13:35 UTC (permalink / raw)
  To: Bug 899143; +Cc: qemu-devel

On Fri, Dec 2, 2011 at 1:00 PM, Vincent Autefage
<899143@bugs.launchpad.net> wrote:
> The installation process of Windows (XP/Vista/7) doesn’t seem to recognize a raw img generated by qemu-img.
> The installer does not see any hard drive...
>
> The problem exists only with a raw img but not with a vmdk for instance.

Please post your QEMU command-line so it is possible to reproduce this
and see which emulated devices you have configured.

Stefan

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] [Bug 899143] [NEW] Raw img not recognized by Windows
  2011-12-02 13:35 ` Stefan Hajnoczi
@ 2011-12-02 14:45   ` Vincent Autefage
  2011-12-03 18:45     ` Stefan Hajnoczi
  0 siblings, 1 reply; 6+ messages in thread
From: Vincent Autefage @ 2011-12-02 14:45 UTC (permalink / raw)
  To: qemu-devel

Hi,*

$ qemu-img create -f raw root.img 100GB
$ mkntfs -F root.img
$ qemu -name W -sdl -m 2048 -enable-kvm -localtime -k fr -hda root.img 
-cdrom windows7.iso -boot d -net nic,macaddr=a0:00:00:00:00:01 -net 
user,vlan=0
*

Vincent Autefage


Le 02/12/2011 14:35, Stefan Hajnoczi a écrit :
> On Fri, Dec 2, 2011 at 1:00 PM, Vincent Autefage
> <899143@bugs.launchpad.net>  wrote:
>> The installation process of Windows (XP/Vista/7) doesn’t seem to recognize a raw img generated by qemu-img.
>> The installer does not see any hard drive...
>>
>> The problem exists only with a raw img but not with a vmdk for instance.
> Please post your QEMU command-line so it is possible to reproduce this
> and see which emulated devices you have configured.
>
> Stefan
>

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/899143

Title:
  Raw img not recognized by Windows

Status in QEMU:
  New

Bug description:
  Hi,

  The installation process of Windows (XP/Vista/7) doesn’t seem to recognize a raw img generated by qemu-img.
  The installer does not see any hard drive...

  The problem exists only with a raw img but not with a vmdk for
  instance.

  Thanks

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/899143/+subscriptions

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] [Bug 899143] [NEW] Raw img not recognized by Windows
  2011-12-02 14:45   ` Vincent Autefage
@ 2011-12-03 18:45     ` Stefan Hajnoczi
  2011-12-04 15:45       ` Vincent Autefage
  0 siblings, 1 reply; 6+ messages in thread
From: Stefan Hajnoczi @ 2011-12-03 18:45 UTC (permalink / raw)
  To: Bug 899143; +Cc: qemu-devel

On Fri, Dec 2, 2011 at 2:45 PM, Vincent Autefage
<899143@bugs.launchpad.net> wrote:
> $ qemu-img create -f raw root.img 100GB
> $ mkntfs -F root.img
> $ qemu -name W -sdl -m 2048 -enable-kvm -localtime -k fr -hda root.img
> -cdrom windows7.iso -boot d -net nic,macaddr=a0:00:00:00:00:01 -net
> user,vlan=0

QEMU does recognize the raw image.  You can check this by running
'info block' at the QEMU monitor (Ctrl-Alt-2) and you'll see ide-hd0
is the raw image file you specified.  Press Ctrl-Alt-1 to get back to
the VM display.

The problem is that the Windows installer does not like the disk image
you have prepared.  A normal harddisk has a master boot record but you
created a raw image without a master boot record.  The Windows
installer is being picky/careful and not displaying this non-standard
disk you created.

Skip the mkntfs step and the installer works fine.  There's no need to
create the file system because the installer will do it for you.

Stefan

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] [Bug 899143] [NEW] Raw img not recognized by Windows
  2011-12-03 18:45     ` Stefan Hajnoczi
@ 2011-12-04 15:45       ` Vincent Autefage
  0 siblings, 0 replies; 6+ messages in thread
From: Vincent Autefage @ 2011-12-04 15:45 UTC (permalink / raw)
  To: qemu-devel

Ok thanks a lot :)

Vincent Autefage
Le 03/12/2011 19:45, Stefan Hajnoczi a écrit :
> On Fri, Dec 2, 2011 at 2:45 PM, Vincent Autefage
> <899143@bugs.launchpad.net>  wrote:
>> $ qemu-img create -f raw root.img 100GB
>> $ mkntfs -F root.img
>> $ qemu -name W -sdl -m 2048 -enable-kvm -localtime -k fr -hda root.img
>> -cdrom windows7.iso -boot d -net nic,macaddr=a0:00:00:00:00:01 -net
>> user,vlan=0
> QEMU does recognize the raw image.  You can check this by running
> 'info block' at the QEMU monitor (Ctrl-Alt-2) and you'll see ide-hd0
> is the raw image file you specified.  Press Ctrl-Alt-1 to get back to
> the VM display.
>
> The problem is that the Windows installer does not like the disk image
> you have prepared.  A normal harddisk has a master boot record but you
> created a raw image without a master boot record.  The Windows
> installer is being picky/careful and not displaying this non-standard
> disk you created.
>
> Skip the mkntfs step and the installer works fine.  There's no need to
> create the file system because the installer will do it for you.
>
> Stefan
>

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/899143

Title:
  Raw img not recognized by Windows

Status in QEMU:
  New

Bug description:
  Hi,

  The installation process of Windows (XP/Vista/7) doesn’t seem to recognize a raw img generated by qemu-img.
  The installer does not see any hard drive...

  The problem exists only with a raw img but not with a vmdk for
  instance.

  Thanks

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/899143/+subscriptions

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Qemu-devel] [Bug 899143] Re: Raw img not recognized by Windows
  2011-12-02 13:00 [Qemu-devel] [Bug 899143] [NEW] Raw img not recognized by Windows Vincent Autefage
  2011-12-02 13:35 ` Stefan Hajnoczi
@ 2012-02-18 18:35 ` Stefan Weil
  1 sibling, 0 replies; 6+ messages in thread
From: Stefan Weil @ 2012-02-18 18:35 UTC (permalink / raw)
  To: qemu-devel

** Changed in: qemu
       Status: New => Invalid

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/899143

Title:
  Raw img not recognized by Windows

Status in QEMU:
  Invalid

Bug description:
  Hi,

  The installation process of Windows (XP/Vista/7) doesn’t seem to recognize a raw img generated by qemu-img.
  The installer does not see any hard drive...

  The problem exists only with a raw img but not with a vmdk for
  instance.

  Thanks

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/899143/+subscriptions

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-02-18 18:40 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-02 13:00 [Qemu-devel] [Bug 899143] [NEW] Raw img not recognized by Windows Vincent Autefage
2011-12-02 13:35 ` Stefan Hajnoczi
2011-12-02 14:45   ` Vincent Autefage
2011-12-03 18:45     ` Stefan Hajnoczi
2011-12-04 15:45       ` Vincent Autefage
2012-02-18 18:35 ` [Qemu-devel] [Bug 899143] " Stefan Weil

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).