I've been trying out QEMU to play around with some VMs. It's working well, but I keep wanting to be able to view the text (Linux boot process) that quickly scrolls by in the QEMU window on startup of my Linux virtual machine. Is there a way to retrieve this via QEMU?
Asked
Active
Viewed 1.0k times
1 Answers
3
Assuming that gets sent to a virtual serial port - this may need some setup on the guest OS end.
try appending -serial file:FILENAME to the command you use to start QEMU.
Journeyman Geek
- 127,463
- 52
- 260
- 430
-
Fantastic. Thank you. I ended up appending the following: -append console=ttyS0,38400 -serial file:serial.out – Brad Apr 11 '11 at 19:07
-
1The first link is dead – lucidbrot Apr 02 '20 at 15:43