windbg调试kvm windows虚机

参考:http://m.blog.chinaunix.net/uid-22954220-id-4733247.html

准备2台虚机,一台target目标机,用于运行要调试的windows系统(调试内核),一台debug调试机,用于运行windbg,配置步骤如下:

1.运行target虚机,在kvm命令中添加-serial tcp::9000,server,nowait参数,启动好之后,修改boot.ini(XP)文件,添加

multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Professional- with debug" /noexecute=alwaysoff /fastdetect /debug /debugport=com1 /baudrate=115200_**

Windows 7:

bcdedit /debug ON_
_
bcdedit /dbgsettings SERIAL DEBUGPORT:1 BAUDRATE:115200**_

2.运行debug虚机,在kvm命令中添加-serial tcp:localhost:9000参数,启动好之后,运行windbg,选择“kernel debug...",默认COM1即可;3.重启target虚机,启动菜单选择"Microsoft Windows XP Professional- with debug";4.在windbg中添加,用于加载windows系统的符号表;

posted @ 2022-11-12 12:12  狂客  阅读(86)  评论(0编辑  收藏  举报