1. 程式人生 > >解決WinDbg除錯VMWare虛擬機器連線不上

解決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