Host机:一个装有Ubuntu12.04-x86-64的主机
Target机:运行在vmware上的 Ubuntu12.04-server-x86-64 的Linux.
Target机器配置
- 配置好VMware对外串口, 详情见:http://my.oschina.net/u/139611/blog/110052
- 下载源码到/usr/src/linux-source-3.2.0下, 解压.
- make menuconfig
- 进入General setup,把Local version设置一下(-kgdb)
- 进入Kernel hacking,选"Compile the kernel with debug info"为*
- 选"KGDB: kernel debugging with remote gdb"为*
- 选"Write protect kernel read-only data structures"为空 (否则在断下来继续执行的时候可能会报错:Cannot remove breakpoints because program is no longer writable)
- 进入"KGDB: … “ 选"KGDB: use KGDB over the serial console"为*,选"KGDB: internal test suite“为空,否则kgdboc会注册不了
- 保存,编译: make -j4 && make modules install && make install
- 把vmliunux和System.map拷贝到host机器上
- 修改/boot/grub/grub.cfg中menuentry为kgdb的项,在kernel后面添加参数: kgdboc=ttyS1,115200 kgdbwait
- 重启,系统进入等待状态。
Host机:
- 安装好GDB,配好串口等。 2.运行 socat TCP-LISTEN:5555,fork /tmp/ttyS1 & , 链接到vmware对外的串口文件
- gdb vmlinux
- 在GDB中: (gdb) target remote 0:5555 就可以进入调试状态了
- (gdb) c ,则target进入Linux系统