Skip to content

Instantly share code, notes, and snippets.

@smoser
Last active January 23, 2025 14:52
Show Gist options
  • Save smoser/9daa655e0c809f6d1c93fa1ab0348a5e to your computer and use it in GitHub Desktop.
Save smoser/9daa655e0c809f6d1c93fa1ab0348a5e to your computer and use it in GitHub Desktop.
virtio serial information hvc0, virtio-ports, ...

virtio serial information that I know

I played with virtio-serial today and don't want to lose the information that I had.

Here is an example of booting with multiple

   -chardev socket,wait=off,id=mychardev0,server=on,path=/tmp/.sock0
   -chardev socket,wait=off,id=mychardev1,server=on,path=/tmp/.sock1
   -device virtio-serial-pci
   -device virtserialport,name=smoser0,chardev=mychardev1
   -device virtconsole,chardev=mychardev0
   -serial unix:$(dir $<)/.socket.ttyS1,wait=off,server=on 

Also something I learned was that you can "mux" up to 4 devices on stdio . Normally in -nographic, you get 2 (qemu-monitor and serial port).

links

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment