红联Linux门户
Linux帮助

VMware下两台Ubuntu虚拟机串口通讯

发布时间:2012-06-04 11:14:28来源:Ubuntu社区作者:linux使用者

  1)、在一个VMware下安装两个Ubuntu系统。


  2)、开启VMware,但不要开启Ubuntu系统,在VM->Setting......->点击ADD,把串口(serial port)加进来,选择this end is the sever,以及the other end is the virtual machine;另一台Ubuntu也同样设置,但选择this end is the client。这样,“物理”上的串口我们就建立起来了。


  3)、同时在两台机的终端下输入命令

  stty ispeed 115200 ospeed 115200 -F /dev/ttyS0


  4)、测试两台机的串口是否连通:

  在A上输入 cat /dev/ttyS0

  在B上输入 echo hello > /dev/ttyS0

  如果在A的终端上可以弹出hello的消息的话,证明B→A连通了。将A、B角色互换再试一次,若都成功的话,恭喜你,虚拟串口线的配置算是完成了。