* [Qemu-devel] Re: KQEMU bus errors
2005-02-13 1:49 ` Julian Chesterfield
@ 2005-02-21 22:24 ` bri3d
2005-02-21 23:04 ` Hetz Ben Hamo
0 siblings, 1 reply; 6+ messages in thread
From: bri3d @ 2005-02-21 22:24 UTC (permalink / raw)
To: qemu-devel
>
> I have the same experience running WinXP, SP2 image over latest CVS build
> of KQemu, however testing with both kernel support enabled and disabled
> seems to produce the same error regardless. Anyone else experiencing this with
> XP images?
>
> - Julian
Yes. Just for kicks I tried the XP SP2 installer CD too(XP SP1 CD slipstreamed
to SP2+February 2005 patches, ISO not real CD). It crashes at the "formatting
disk" step with all disk image types until I make ram less then /dev/shm. Then
it formats OK.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] Re: KQEMU bus errors
2005-02-21 22:24 ` [Qemu-devel] " bri3d
@ 2005-02-21 23:04 ` Hetz Ben Hamo
2005-02-21 23:30 ` Darryl Dixon
0 siblings, 1 reply; 6+ messages in thread
From: Hetz Ben Hamo @ 2005-02-21 23:04 UTC (permalink / raw)
To: qemu-devel
> Yes. Just for kicks I tried the XP SP2 installer CD too(XP SP1 CD slipstreamed
> to SP2+February 2005 patches, ISO not real CD). It crashes at the "formatting
> disk" step with all disk image types until I make ram less then /dev/shm. Then
> it formats OK.
How do I setup the /dev/shm and with what parameters?
Thanks,
Hetz
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] Re: KQEMU bus errors
2005-02-21 23:04 ` Hetz Ben Hamo
@ 2005-02-21 23:30 ` Darryl Dixon
0 siblings, 0 replies; 6+ messages in thread
From: Darryl Dixon @ 2005-02-21 23:30 UTC (permalink / raw)
To: qemu-devel, Hetz Ben Hamo
[-- Attachment #1: Type: text/plain, Size: 712 bytes --]
The line from your /etc/fstab should be:
none /dev/shm tmpfs defaults 0 0
Cheers,
D
On Tue, 2005-02-22 at 01:04 +0200, Hetz Ben Hamo wrote:
>> Yes. Just for kicks I tried the XP SP2 installer CD too(XP SP1 CD slipstreamed
>> to SP2+February 2005 patches, ISO not real CD). It crashes at the "formatting
>> disk" step with all disk image types until I make ram less then /dev/shm. Then
>> it formats OK.
>
>How do I setup the /dev/shm and with what parameters?
>
>Thanks,
>Hetz
>
>
>_______________________________________________
>Qemu-devel mailing list
>Qemu-devel@nongnu.org
>http://lists.nongnu.org/mailman/listinfo/qemu-devel
--
Darryl Dixon <esrever_otua@pythonhacker.is-a-geek.net>
[-- Attachment #2: Type: text/html, Size: 1683 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Qemu-devel] Re: KQEMU bus errors
[not found] <4212FD03009B56CF@mail-mx-4.tiscali.it>
@ 2005-02-22 8:36 ` Kevin F. Quinn
2005-02-22 21:16 ` Phil Krylov
0 siblings, 1 reply; 6+ messages in thread
From: Kevin F. Quinn @ 2005-02-22 8:36 UTC (permalink / raw)
To: qemu-devel
I also get the bus error, when trying to install Windows 2000 Professional.
It occurs, as described before, when the install tries to format the drive.
If I build with --disable-kqemu, the bus error does not occur, but when built with kqemu support it occurs whether or not the kernel module is in use. Once installed (after building with --disable-kqemu), if I then try to run it with the kqemu version (again, with or without the module) it generates a bus error at variable points - geenrally it'll boot, get through the login but die shortly afterwards.
I have the shm device in fstab:
none /dev/shm tmpfs defaults 0 0
as mentioned earlier.
Any suggestions would be appreciated.
Also, I've tried to install SP4, but it doesn't like it. Could someone give me some hints/tricks on how to track down what the problem is?
(btw using latest cvs at time of writing)
Thanks,
Kev.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] Re: KQEMU bus errors
2005-02-22 8:36 ` [Qemu-devel] Re: KQEMU bus errors Kevin F. Quinn
@ 2005-02-22 21:16 ` Phil Krylov
2005-02-23 8:37 ` Kevin F. Quinn
0 siblings, 1 reply; 6+ messages in thread
From: Phil Krylov @ 2005-02-22 21:16 UTC (permalink / raw)
To: qemu-devel
> I have the shm device in fstab:
>
> none /dev/shm tmpfs defaults 0 0
>
> as mentioned earlier.
>
> Any suggestions would be appreciated.
Your guest memory size (-m option to qemu) should be a little smaller than free
space on /dev/shm (as reported by df command). For example, here
/dev/shm is 256MB, but QEMU crashes if I specify more than 244 MB for
the guest OS.
-- Ph.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] Re: KQEMU bus errors
2005-02-22 21:16 ` Phil Krylov
@ 2005-02-23 8:37 ` Kevin F. Quinn
0 siblings, 0 replies; 6+ messages in thread
From: Kevin F. Quinn @ 2005-02-23 8:37 UTC (permalink / raw)
To: qemu-devel
Phil Krylov (phil.krylov@gmail.com) wrote:
> Your guest memory size (-m option to qemu) should be a little smaller > than free space on /dev/shm (as reported by df command). For example, > here
> /dev/shm is 256MB, but QEMU crashes if I specify more than 244 MB for
> the guest OS.
Ah; thanks. I had tried -m 126 before (/dev/shm is 128MB) but I guess it needs to be perhaps -m 120. I did manage to get it working yesterday by doing QEMU_TMPDIR=/tmp qemu <...>, so that it didn't use /dev/shm; presumably that's slower however.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2005-02-23 8:52 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <4212FD03009B56CF@mail-mx-4.tiscali.it>
2005-02-22 8:36 ` [Qemu-devel] Re: KQEMU bus errors Kevin F. Quinn
2005-02-22 21:16 ` Phil Krylov
2005-02-23 8:37 ` Kevin F. Quinn
2005-02-11 1:48 [Qemu-devel] " Darryl Dixon
2005-02-13 1:49 ` Julian Chesterfield
2005-02-21 22:24 ` [Qemu-devel] " bri3d
2005-02-21 23:04 ` Hetz Ben Hamo
2005-02-21 23:30 ` Darryl Dixon
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).