I want to use GNU DDD (gdb graphic shell) to debug Linux kernel, that is running (in some distro) inside qemu.

I have vmlinux image outside of qemu, and launch qemu with -s -S, so it acts like gdbserver (stops at start and waits for debuging commands). Now, how to connect DDD to that gdbserver using local vmlinux image?

Should I just open image and tell gdb 'target remote'?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted
+50

You basically answered your own question - yes, use target remote gdb command in ddd to connect:

$ gdb qemuKernelFile
(gdb) target remote localhost:1234
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.