Skip to content

docs: Notify that QEMU/KVM debugging isn't supported in pre5.7 kernels #477

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions content/guides/debugging.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,15 @@ qemu-system-x86_64 -s -S -cpu host -enable-kvm -m 128 -nodefaults -no-acpi -disp

Note that the `-s` parameter is shorthand for `-gdb tcp::1234`.

<Info>
QEMU/KVM can't detect guest debug support in Linux kernels earlier than **v5.7** ([details](https://gitlab.com/qemu-project/qemu/-/issues/2710)).
Running the command above could produce such an error:
```console
gdbstub: current accelerator doesn't support guest debugging
```
Verify your Linux kernel version with `uname -r`.
</Info>

Now connect GDB by using the debug image with:

```console
Expand Down