向VMWare虚拟机添加一个串口设备(serial port)

Shutdown the VM and add this to the vmx file and then restart the VM, if the host OS is Linux:

serial0.present = "true"
serial0.fileType = "device"
serial0.fileName = "/dev/ttyS0"

If host is Windows:

serial0.present = "true"
serial0.fileType = "device"
serial0.fileName = "COM1"
这里的设备名称取决运行vm的主机的操作系统,所以设备名称也来自这个操作系统的命名方式。

vmware默认安装的虚拟机是不带串口(com1)的,这里简明说明怎样在vmware 虚拟机下设置串口:
1.保证虚拟机是关机状态(添加或删除虚拟机的设备,都需要保证虚拟机是关闭的)。
2.在VM > Settings > Hardware 中,Add一个串口com1吧

3.选择Use physical serial port 


这样虚拟机就实际使用的host的串口。ok, 去试试吧

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/autofei/archive/2008/06/10/2529138.aspx

你可能感兴趣的:(向VMWare虚拟机添加一个串口设备(serial port))