Re: [Qemu-devel] qemu disk on vfat

2006-05-08 Thread Jan Marten Simons
Am Montag, 8. Mai 2006 21:44 schrieb Yann Le Doaré: With : qemu-img create /mnt/partitions/windows0/qmeu-disk 4M qemu -hda /mnt/partitions/windows0/qmeu-disk qemu: could not open hard disk image'/mnt/partitions/windows0/qmeu-disk' but with on ext3/ext2 or tmpfs, there is no problem. Did

Re: [Qemu-devel] qemu disk on vfat

2006-05-08 Thread Yann Le Doaré
with -snapshot I have the same error. vfat options are : rw,nodiratime,fmask=0022,dmask=0022,codepage=cp437,iocharset=iso8859-1 It can use my ext3 partitions, so it is not a problem for me. Thanks for you responses. Le lundi 08 mai 2006 à 16:57 +0200, Jan Marten Simons a écrit : Am Montag, 8.

[Qemu-devel] qemu disk on vfat

2006-05-07 Thread Yann Le Doaré
Hi, It seems like qemu 0.8.0 does not accept image file from a vfat partition. Is it a bug ? Greetings. Yann Le Doaré. strace : open(/mnt/partitions/windows0/qmeu-disk, O_RDONLY|O_LARGEFILE) = 7 read(7, , 1024) = 0 close(7)= 0

Re: [Qemu-devel] qemu disk on vfat

2006-05-07 Thread André Braga
It's more likely a typo in your command line. qmeu-disk? On 5/8/06, Yann Le Doaré [EMAIL PROTECTED] wrote: Hi, It seems like qemu 0.8.0 does not accept image file from a vfat partition. Is it a bug ? Greetings. Yann Le Doaré. strace : open(/mnt/partitions/windows0/qmeu-disk,

Re: [Qemu-devel] qemu disk on vfat

2006-05-07 Thread NyOS
On Mon, 08 May 2006 12:04:50 +0200, Yann Le Doaré [EMAIL PROTECTED] wrote: Hi, It seems like qemu 0.8.0 does not accept image file from a vfat partition. Is it a bug ? Greetings. Yann Le Doaré. strace : open(/mnt/partitions/windows0/qmeu-disk, O_RDONLY|O_LARGEFILE) = 7 read(7, , 1024)

Re: [Qemu-devel] qemu disk on vfat

2006-05-07 Thread Johannes Schindelin
Hi, On Mon, 8 May 2006, Yann Le Doaré wrote: It seems like qemu 0.8.0 does not accept image file from a vfat partition. Is it a bug ? No. You cannot emulate a whole disk by providing only a partition. Ciao, Dscho ___ Qemu-devel mailing list

Re: [Qemu-devel] qemu disk on vfat

2006-05-07 Thread Jernej Simončič
On Sunday, May 7, 2006, 13:00:32, NyOS wrote: What size is it? Linux only supports vfat (FAT32) partitions with at most 4GB files. A disc image can easily reach that. 4GB per file is actually a FAT32 limitation - it can't store larger files (and there's nothing you can do about it). --

Re: [Qemu-devel] qemu disk on vfat

2006-05-07 Thread Yann Le Doaré
With : qemu-img create /mnt/partitions/windows0/qmeu-disk 4M qemu -hda /mnt/partitions/windows0/qmeu-disk qemu: could not open hard disk image'/mnt/partitions/windows0/qmeu-disk' but with on ext3/ext2 or tmpfs, there is no problem. Le dimanche 07 mai 2006 à 13:00 +0200, NyOS a écrit : On