qemu -kernel linux-3.18.6/arch/x86/boot/bzImage -initrd rootfs.img -s -S
另开 shell
gdb
(gdb) file linux-3.18.6/vmlinux #在 gdb 界面中 target remote之前加载符号表
(gdb) target remote :1234 #建立连接
(gdb) break start_kernel #设置断点
(gbd)b sys_chmod
(gbd) s
(gbd) c
版权声明:本文为博主原创文章,未经博主允许不得转载。
版权声明:本文为博主原创文章,未经博主允许不得转载。
原文地址:http://blog.csdn.net/luoyhang003/article/details/46952649