I currently have two VMs communicating with each other. One is XP, the other is QNX. I added a serial port to each of the VMs that maps to /tmp/com_1. So each VM thinks it's communicating over its serial port. This communication works great, but the XP VM is super slow. So I thought I'd try Wine. So far it seems to work, but the communication doesn't.
How can I get this communication working with Wine? I would like the XP software to think it's communicating over com1, but have it mapped to /tmp/com_1 in linux. This way the QNX VM will receive the communication like before. Is this supported in Wine? Has anyone done something similar or have an idea?
Jared
Wine - VM serial communication
Re: Wine - VM serial communication
At a minimum you need to create this symlink:jared wrote:I added a serial port to each of the VMs that maps to /tmp/com_1. So each VM thinks it's communicating over its serial port. This communication works great, but the XP VM is super slow. So I thought I'd try Wine. So far it seems to work, but the communication doesn't.
Code: Select all
ln -s /tmp/com_1 ~/.wine/dosdevices/com1
Re: Wine - VM serial communication
Thanks! Yes, this is what I thought would work. But it doesn't seem to be work. So I tried testing it by first getting into the cmd asvitamin wrote:At a minimum you need to create this symlink:Code: Select all
ln -s /tmp/com_1 ~/.wine/dosdevices/com1
Code: Select all
wine cmd
Code: Select all
echo test > com1
Jared