Tomas Kouba wrote: > Hello, > is it possible to see and modify guest memory of the guest running under > kvm? > For example when I know the address of a kernel symbol, can I read the > memory > of the symbol in my application running on host? > > (I am quite new to KVM but similar things are possible in XEN via > xenctrl library calls).
Even better: Inherited from QEMU, KVM provides a full-blown gdb backend. So you can do source-level debugging of your guest very comfortably. If you just want to get the content of some memory chunk: QEMU monitor, 'x' (as known from gdb, see also qemu/qemu-doc.html). But modification requires a gdb frontend again. Jan -- Siemens AG, Corporate Technology, CT SE 2 Corporate Competence Center Embedded Linux -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html
