> Host cpu type, host bitness, guest bitness, and qemu command line please.
>

Oh sorry, forgot about that stuff.

[EMAIL PROTECTED]:~# cat /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 14
model name      : Genuine Intel(R) CPU           U2500  @ 1.20GHz
stepping        : 8
cpu MHz         : 1200.000
cache size      : 2048 KB
physical id     : 0
siblings        : 2
core id         : 0
cpu cores       : 2
fdiv_bug        : no
hlt_bug         : no
f00f_bug        : no
coma_bug        : no
fpu             : yes
fpu_exception   : yes
cpuid level     : 10
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge
mca cmov pat clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx
constant_tsc pni monitor vmx est tm2 xtpr
bogomips        : 2396.92
clflush size    : 64

processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 14
model name      : Genuine Intel(R) CPU           U2500  @ 1.20GHz
stepping        : 8
cpu MHz         : 1200.000
cache size      : 2048 KB
physical id     : 0
siblings        : 2
core id         : 1
cpu cores       : 2
fdiv_bug        : no
hlt_bug         : no
f00f_bug        : no
coma_bug        : no
fpu             : yes
fpu_exception   : yes
cpuid level     : 10
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge
mca cmov pat clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx
constant_tsc pni monitor vmx est tm2 xtpr
bogomips        : 2394.67
clflush size    : 64

[EMAIL PROTECTED]:~# uname -a
Linux dmlb2010-lappy 2.6.20.10 #1 SMP Mon Apr 30 03:17:41 PDT 2007
i686 GNU/Linux
[EMAIL PROTECTED]:~#

And the guest OS is also an i686, and this is the little script I use
to start the debian guest.

[EMAIL PROTECTED]:~# cat /root/bin/start-debian
#!/bin/bash

KVER="2.6.18-4-686"
INITRD_BASE="initrd"
INITRD_APPEND=".img"
APPEND="ro root=/dev/hda1"
DEV=mapper/VolGroup00-debian
BOOT=mapper/VolGroup00-debian--boot

qemu -kernel "/root/boot/vmlinuz-${KVER}" \
    -initrd "/root/boot/${INITRD_BASE}${INITRD_APPEND}-${KVER}" \
    -append "${APPEND}" \
    -m 512 --no-rtc \
    \
    -usb \
    -soundhw es1370 \
    -net nic,vlan0,macaddr=52:54:56:34:12:00 \
    -net tap,vlan=0,ifname=tap0 \
    -hdb "/dev/$BOOT" \
    /dev/$DEV
[EMAIL PROTECTED]:~#

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
kvm-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/kvm-devel

Reply via email to