about !dbgprint to analyze BSOD dump file.】的更多相关文章

基本规则: 只有debug mode enable的机器,产生的dump file才会保存dbgprint的buffer. 默认!dbgprint的buffer size是4k. 增加buffer size: ...\Windows Kits\8.1\Debuggers\x86\kdbgctrl.exe 比如设成 1M大小,kdbgctrl.exe -sdb 0x100000 设置每次重启之后都会失效,所以重启后都需要敲这个命令. Take care: 当我把buffer设置成0x100000(…
dump file is a snapshot of the processs memeory. to debug it, we need use its corresponding executive to help restore the scenariopdb and source file are also needed to help analyze it. create dump file // header file, to generate a dll that will cau…
1. Task manager, -> find the process for the program which crashed. 2. Right click the process -> select "Create dump file". 3. Dump file will be saved in "C:\Users\<UserName>\appdata\local\Temp" 4. Debug with VS 2013 参考:ht…
使用WinDBG这个工具,可以在应用程序异常终止或者无响应时获取它的尸体,以用来解剖研究. Creating Dump File      在Vista环境中抓取Dump文件很方便,在task manager(Ctrl-Shift-Esc)中,选中要生成dump文件的进程,点击context menu中的"Creat Dump File"就可以了. 通常,使用WinDBG目录下(C:/Program Files/Debugging Tools for Windows (x86))的ad…
Linux core dump file详解 http://www.cnblogs.com/langqi250/archive/2013/03/05/2944931.html…
ORA-39142: incompatible version number 5.1 in dump file http://blog.itpub.net/26664718/viewspace-2148486/…
ORA-39095: Dump file space has been exhausted Table of Contents 1. 简述 2. 错误信息 3. 分析 4. 解决 5. 扩展 1 简述 一个朋友在导数据的时候,突然遇到ORA-39095错误.随即查看磁盘空间,发现才使用了60%多.而导出的数据只有几个G. 明明有空间,为什么会报空间耗尽呢?百爪搔心的问我~ 下面是分析和解决过程. 2 错误信息 $ oerr ora 39095 39095, 00000, "Dump file s…
pg_restore -C -d postgres db.dump…
最近遇到了一个奇怪的问题. linux系统的pc搭建nfs server,开发板作为nfs client,开发板中全程root权限操作,执行的程序放到 nfs server 中 exports 出的目录中. 1. 开发板中已经设置了 ulimit -c unlimited 2. 将程序copy到 开发板的 /tmp 目录下执行,可以正常生成 core 文件,提示 core dumped. 3. 程序放到 nfs 上执行,生成空的 core 文件,不提示 core dumped. 4. 因为在nf…
使用mysql命令导入mysqldump生成的sql文件时,为了提高导入速度,往往需要修改dump文件,但是面对一个几十GB的文件,这事儿就太崩溃了,最快速的方法是这么做: ( echo "SET AUTOCOMMIT=0;" echo "SET UNIQUE_CHECKS=0;" echo "SET FOREIGN_KEY_CHECKS=0;" cat cc_jiecao.sql echo "SET FOREIGN_KEY_CHECK…