由买买提看人间百态

topics

全部话题 - 话题: bugcheck
(共0页)
n*w
发帖数: 3393
1
来自主题: Hardware版 - USB 驱动有问题?还是硬件?
最近机器stand by后常蓝屏。用windbg显示如下结果。
Use !analyze -v to get detailed debugging information.
BugCheck 9F, {3, fffffa8007b954a0, fffffa80080d1050, fffffa80062aac60}
Probably caused by : usb8023x.sys
Followup: MachineOwner
****************************************************************************
***
*
*
* Bugcheck Analysis
*
*
s****r
发帖数: 342
2
来自主题: Security版 - [转载] NT help
【 以下文字转载自 Software 讨论区 】
【 原文由 songer 所发表 】
one NT station always gets itself rebooted.
event log shows: this computer has rebooted from a bugcheck. the bugcheck
was: 0x0000050(0xc618c61c,0x000000.....blah blah..). the full dump was not
saved.
very troublesome. any one can help? 3x.
v**t
发帖数: 49
3
来自主题: Windows版 - HELP! weird win2000 auto reboot bug?
Occured twice in this two days when I am not using the
computer.
Any gurus here know anout this? 3x a lot!
Event Type: Information
Event Source: Save Dump
Event Category: None
Event ID: 1001
Date: 1/1/2001
Time: 3:22:36 AM
User: N/A
Computer:
Description:
The computer has rebooted from a bugcheck. The bugcheck
was: 0x000000d1 (0x011d7510, 0x00000002, 0x00000000,
0x011d7510). Microsoft Windows 2000 [v15.2195]. A dump was
saved in: E:\WINNT\Minidump\Mini010101-01.dmp.
Event Type: Information
E
l******g
发帖数: 636
4
来自主题: Seattle版 - 如何速成windbg?
那个help file。里面有各种bugcheck,怎么开始。。。实例比较麻烦,好多root
cause都不一样。 组里没有mentor吗?
w*****n
发帖数: 25
5
There is no much infomation in the minidump file.
1: kd> !analyze -v
****************************************************************************
***
*
*
* Bugcheck Analysis
*
*
*
****************************************************************************
***
KERNEL_DATA_INPAGE_ERROR (7a)... 阅读全帖
g******n
发帖数: 253
6
来自主题: Hardware版 - 电脑经常蓝屏是什么原因?
其实这个蓝屏还是很有信息量的。
bugcheck code: 7A ->KERNEL_DATA_INPAGE_ERROR
parameter 1 is not 1,2,3 or 4, so parameter 1 is address of PET
so parameter 2 is important because 2 is for IO error code. and in this case
it is 0xC000009D (NTSTATUS) 0xc000009d - STATUS_DEVICE_NOT_CONNECTED.
为啥设备没有连接呢?很简单,坏了呗(不是玩笑)。建议,真爱数据,远离就要坏掉
的硬盘。赶快备份你的数据。换一块硬盘。你要是查system event log,应该看到硬盘
在尖叫。呵呵
赶快备份吧。
r**a
发帖数: 630
7
来自主题: Software版 - [转载] compaq真tnnd弱智!
【 以下文字转载自 Hardware 讨论区 】
【 原文由 raja 所发表 】
俺的笔记本是2001年买的compaq presario 17XL4,前几天给它装了一个winxp
professional(学校提供的免费正版),然后更新了所有sp和compaq提供的所有最新驱动
程序,结果发现在运行java web start时就会出现蓝屏,具体如下:
The bugcheck was: 0x000000c2 (0x00000007, 0x00000cd4, 0x01040431, 0xe17887e8)
虽然俺用不上这个java web start,但是机器在运行某些东东时会死掉是无法忍受的事情,
于是俺检查windows log文件,发现有个acpi warning,于是更新了bios(虽然这个更新
只是把打印机口的设置改动了一下,但是它对于系统的运行实质上是不会有任何影响的),
然后发现问题依旧,而且这个acpi warning并没有消除,不过它不影响俺的机机standby和
hibernate,所以就不管它了,总之acpi这个错就是bios有问题。最后俺终于受不了了,决
r**a
发帖数: 630
8
来自主题: Windows版 - [转载] compaq真tnnd弱智!
【 以下文字转载自 Hardware 讨论区 】
【 原文由 raja 所发表 】
俺的笔记本是2001年买的compaq presario 17XL4,前几天给它装了一个winxp
professional(学校提供的免费正版),然后更新了所有sp和compaq提供的所有最新驱动
程序,结果发现在运行java web start时就会出现蓝屏,具体如下:
The bugcheck was: 0x000000c2 (0x00000007, 0x00000cd4, 0x01040431, 0xe17887e8)
虽然俺用不上这个java web start,但是机器在运行某些东东时会死掉是无法忍受的事情,
于是俺检查windows log文件,发现有个acpi warning,于是更新了bios(虽然这个更新
只是把打印机口的设置改动了一下,但是它对于系统的运行实质上是不会有任何影响的),
然后发现问题依旧,而且这个acpi warning并没有消除,不过它不影响俺的机机standby和
hibernate,所以就不管它了,总之acpi这个错就是bios有问题。最后俺终于受不了了,决
s******y
发帖数: 121
9
The system bugchecked. It's mostly due to some faulty device drivers. If you
can get a crash dump file and use windbg to dump its stack and post it here
, I may be able to tell you what's going on.
l*******o
发帖数: 669
10
来自主题: Windows版 - 安装windows问题
hook up kernel debugger and get a call stack when it bugchecks.
p**5
发帖数: 2544
11
4: kd> !analyze -v
****************************************************************************
***
*
*
* Bugcheck Analysis
*
*
*
****************************************************************************
***
CRITICAL_PROCESS_DIED (ef)
A critical system process died
Arguments:
Ar... 阅读全帖
(共0页)