Il 01/01/2015 11:36, Goonie Windy ha
scritto:
Actulally I have,
Âqemu-system-i38[13389]: segfault at 0 ip 00007fd3d166d801 sp
00007ffffc8595d0 error 4 in
libspice-server.so.1.9.0[7fd3d1661000+11b000]
BTW happy new year
spicec is very old and deprecated client and was already removed in
spice git for next version.
there are spicy and virt-viewer, the second is better.
from address seems that you use dom0 as desktop, don't seems good
for me^^''
if you still have the qemu crash install spice debug package and
take a backtrace with gdb.
For use gdb on qemu as it child process is particular.
Small help with gdb of qemu launched by xl:
add the line below in domU's xl cfg:
device_model_override="/usr/lib/xen/bin/qemu-gdb"
vi /usr/lib/xen/bin/qemu-gdb # create the file, change the qemu
path if needed
#!/bin/sh
exec gdbserver 0.0.0.0:1234 /usr/lib/xen/bin/qemu-system-i386 "$@"
# after xl create with (qemu gdb), do it fast
after xl create when arrive on qemu process launch (before timeout
or xl create will fails)
target remote localhost:1234 # prepare this command in other ssh
to the xen dom0 and enter on xl create when arrive on qemu launch
c # press immediatly
bt full # when qemu stops with crash
|