解决WinDbg调试VMWare虚拟机连接不上



/*设定端口*/
在VMware建立系统XPSP2,并正确设定了端口号:
增加"Serial Port",
"\\.\pipe\com_1"
"This end is the server."
"The other end is an application."
选中 "Connect at power on"
选中 "Advanced>>"
"Yield CPU on poll"
设置boot.ini
multi(0)disk(0)rdisk(0)partition(1)\WINNT="Microsoft Windows XP Professional"/noexecute=optin/fastdetect
//增加
multi(0)disk(0)rdisk(0)partition(1)\WINNT="Microsoft Windows XP Professional - debug" /fastdetect /debug /debugport=com1 /baudrate=115200

WinDbg的快捷方式的属性目标"框中,加上参数 -k com:port=\\.\pipe\com_1,baud=11520,pipe

/*开始操作*/

1首先运行 VMware ,启动 Guest OS ,到系统启动选择,选择 "Microsoft Windows 2000 Professional - debug" 项,先不要按回车。
2通过刚才设置好的快捷方式运行WinDbg。
3在 Guest OS 中选择 "Microsoft Windows 2000 Professional - debug" 项,按回车。
\\\\\\\\\\\\\\\\\\\\\\\\
此时WinDbg显示:
Microsoft (R) Windows Debugger  Version 6.2.0013.1
Copyright (c) Microsoft Corporation. All rights reserved.
Opened \\.\pipe\com_1
Waiting to reconnect...
\\\\\\\\\\\\\\\\\\\\\
4 稍等片刻,如果很长时间没有连接上的话,可以按 WinDbg 菜单中的 "Debug"->"Kernel Connection"->"Resynchronize"。

此时WinDbg显示的显示没有变化:
Microsoft (R) Windows Debugger  Version 6.2.0013.1
Copyright (c) Microsoft Corporation. All rights reserved.
Opened \\.\pipe\com_1
Waiting to reconnect...

==================================================================================

原因: VMWare模拟的串口是com2, 所以应该改为: multi(0)disk(0)rdisk(0)partition(1)\WINNT="Microsoft Windows XP Professional - debug" /fastdetect /debug /debugport=com2 /baudrate=115200

你可能感兴趣的:(ReactOS,调试)