Skip to content

Tag: qemu

qom-type is missing when running qemu/kvm

I’m trying to set up QEMU/KVM and faced the following issue: So I tried to specify this as a format as Searching for qom-type at QEMU manual page didn’t give any results. How to specify the correct qom-type for that case? Answer “-object format=raw” says “create a QOM object, who…

Why does the Qemu run differ from the native run?

What did i do? I ran qemu-x86_64 -singlestep -d nochain,cpu ./dummy to dump all the registers of a dummy program after each instruction and used grep to save all the RIP values into a text file (qemu_rip_dump.txt). I then singlestepped the dummy program with ptrace and dumped the RIP values after each instruc…

Kernel debugging – gdb step jumps out of function

I’m trying to do understand the kernel network stack for a security research for my university. That’s why I try to debug the linux kernel. So far I’m doing quite well but I ran in a problem when trying to use qemu and gdb for debugging. The problem is as follows: I boot my linux system: mak…

How to run Linux on a QEMU ARM Versatile machine?

I’m trying to run linux on qemu, especially the versatile version. I downloaded qemu and linux from github. (qemu : https://github.com/qemu/qemu.git, linux : https://github.com/torvalds/linux.git) I think these two repositorys are the main project of them. Anyway, I compiled linux with 2 steps. make ARC…