VirtualBox+Windbg 双机调试配置

VirtualBox+Windbg 双机调试配置
1、关闭虚拟机的操作系统
选设置,在设置选项卡中选择串口,在端口1中选中启用串口,端口模式设置为Host Pipe
选中上面的创建通道,在Port/File Path: 中输入 \.\pipe\com_1
2、主机 增加windbg快捷方式 ,在快捷方式的属性中,在目标后面加入下面的内容
-b -k com:pipe,port=\.\pipe\com_1,baud=115200,reconnect -y

3、被调试机 在boot.ini中增加一行
multi(0)disk(0)rdisk(0)partition(1)\WINDOWS=”WinDBG 双机调试” /noexecute=optin /fastdetect /debug /debugport=com1 /baudrate=115200

你可能感兴趣的:(VirtualBox+Windbg 双机调试配置)