Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Scrolling option in QEMU

I have compiled a kernel successfully and used qemu-system-x86_64 -kernel arch/x86/boot/bzImage -initrd /boot/initrd.img-4.14.41+ -m 512M to boot it. Unfortunately some error throws up and I want to debug it. There are many messages printing but I cannot scroll up to see them. So, how can I get the messages?

SCREENSHOT

like image 901
Jaya Kommuru Avatar asked Sep 03 '25 09:09

Jaya Kommuru


1 Answers

Found out an Alternative for this. Used the command qemu-system-x86_64 -nographic -kernel arch/x86/boot/bzImage -initrd /boot/initrd.img-4.14.41+ -m 512M -append console=ttyS0 and got all the error messages right on the terminal.

like image 93
Jaya Kommuru Avatar answered Sep 04 '25 23:09

Jaya Kommuru