A aprado New Member Aug 16, 2024 3 1 3 Aug 19, 2024 #1 how can i enable and successfully test serial port passthrough to a windows 11 vm on pve? I've tried to do this without any success.
how can i enable and successfully test serial port passthrough to a windows 11 vm on pve? I've tried to do this without any success.
aaron Proxmox Staff Member Staff member Jun 3, 2019 4,498 1,288 218 Aug 19, 2024 #2 aprado said: serial port passthrough Click to expand... You want to pass through a physical serial port to the Windows VM? That cannot be done through the web UI, but via the CLI: Code: qm set {vmid} --serialX /dev/ttyUSB0 This is just one example. Check which of the /dev/tty devices you want to pass through.
aprado said: serial port passthrough Click to expand... You want to pass through a physical serial port to the Windows VM? That cannot be done through the web UI, but via the CLI: Code: qm set {vmid} --serialX /dev/ttyUSB0 This is just one example. Check which of the /dev/tty devices you want to pass through.
A aprado New Member Aug 16, 2024 3 1 3 Aug 20, 2024 #3 Greetings, Thank you very much for your response. I ran the command qm set 102 --serial0 /dev/ttyUSB0 but now when I try to start the vm it wont start because of the error "Error: no such serial device".
Greetings, Thank you very much for your response. I ran the command qm set 102 --serial0 /dev/ttyUSB0 but now when I try to start the vm it wont start because of the error "Error: no such serial device".
aaron Proxmox Staff Member Staff member Jun 3, 2019 4,498 1,288 218 Aug 20, 2024 #4 You need to adjust the path to the actual serial device you have in your host Reactions: Kingneutron