Memory debugging

I'm trying to analysis the runtime memory profiling of a program I wrote based on a parameter (N=1, 10, 100, etc). The program is a fairly complex multi-threaded one. Runtime.totalMemory() and Runtime.freeMemory are useless as the numbers are not consistent (not surprising as the garbage collector is unpredictable).
Does any one know of a way to analysis a java program memory usage based on object creations (without changing every single "new" call in the program)? I know Jprobe can do something like that but I have no idea how they are doing this.
Thanks,
Yair.

You can buy JProbe but if you need the free solution check this link:
http://developer.java.sun.com/developer/technicalArticles/Programming/perfanal/

Similar Messages

  • How do debug an application in Shared Memory debug mode using JDev

    I don't see the option of using "Shared memory" debug mode in JDev. There is only socket debug option(Attach/Listen) in debugger but no shared memory debug option.
    Is it missing or is it hidden somewhere.
    Can anyone let me know as all IDEs provide that.

    Any updates?

  • JProbe memory debugging help.

    Hi,
    I have a swing application, with some complicated dialogs, with a lot of listeners, and i realized that they are not being gc'd. So i have started using WeakReferences for listeners and inner classes, however, i am still having trouble.
    I am using JProbe's memory debugger, but i am having trouble reading the referrer tree.
    is anyone familiar with this application that could lend a helping hand.
    my problem is that looking at the tree, i dont know which referrers i need to explicitly take care of, and which of them will be taken care of by the gc.
    In addition, i am having trouble reading the tree....for example:
    here is a copy of my referrer tree:
    http://www.cs.ucsb.edu/~arash/mem.htm
    I don't know where to go from here. I am pretty sure i can ignore recursive items, and items marked referent....but from there i am lost.
    any help is greatly appreciated. thanks!

    WeakReferences are cleaned up whenever the gc feels like it not just when it needs to. Use SoftReferences instead.
    However in you case I would not use them at all as the GC can still remove object you still need,
    You cannot assume the GC will clean up references. If there is a reference to the object it keeps it. YOU need to remove the reference when it is no longer required.
    For the objects you expect to be gced but are not, you need to ensure there are no references to them.

  • Memory leak on the native side

    Hello,
    I am hoping someone here can offer some troubleshooting advice, as I am completely stumped. I am running JBoss 5.1 with JDK 1.6_u18 (same problem with u17 and u16 too)
    - 32-bit, Linux (RHEL 5).
    - min/max heap setting of 1024M
    - permgen max of 256M
    - Thread stack size of 128K
    - No JNI
    My problem: The memory footprint of the JVM slowly grows until it hits the 3G OS limit. This takes about 8 hours under moderate load. At this time, it of course dies as it has no more addressable memory left.
    Here is the strange part: I have used every possible memory debugging tool (jmap, Eclipse MAT, etc) and nothing looks out of the ordinary in my Java heap. Thread count stays at a reasonable 350 threads, Java heap size stabilizes at about 500M. For the first hour or so, the JVM footprint stays at about 1.7G, which makes sense. After that it starts to slowly grow until in exceeds the 3G limit.
    What can I do to figure out where the leak is occurring? There is clearly some native resource that is being allocated but not freed. As I indicated, all the Java analysis tools report a healthy, stable heap and thread count.
    Thanks in advance.
    Jon

    Thanks for the reply.
    I have confirmed with -verbose:jni that the only JNI libraries getting loaded are those belonging to the JDK. My application does make heavy use of the ProcessClassLoader from the Jboss JBPM library, but classes all seem to be unloading normally, and my Permgen usage stays very low and stable. Is there anything I should look at in regards to this class loader? I have tried both a lack of GC parameters and specified the concurrent mark sweep collector, with the same results.

  • Leak memory in xerces DomParser

    Hey,
    I have " leak memory " in my Java application (Stand alone).
    I suspect that this leak caused by xerces DomParser.
    i reached to this conculsion after using in Jprobe as a memory debuger.
    Does any one has a similar problem?
    Thank you.
    code:
    DOMParser parser = new DOMParser();
    parser.parse(new InputSource(new FileInputStream(schemaFile)));

    Hey, which Version of Xerces do you use?

  • How to test the memory..?

    Hi friends.. Iam created java application Multithreaded socket server... I need to check the size of the memory of before and after execution of the program..... Is there any tool for memory debugging......?thanks in advance.....

    You can check continuously during operation using JVMStat from Sun. It's a beautiful tool that will show you the entire memory model: eden and perm spaces, etc. Very nice UI.
    %

  • Out Of Memory Error - Weblogic server

    Hi,
    We are facing following errors in our production environment frequently...
    Please guide us how can we identify root cause.. because every time this error come in different functionalities so we can not blame one functionality (Code)...
    Error # 1
    ======
    <Jun 18, 2009 4:24:41 PM IST> <Error> <Socket> <BEA-000405> <Uncaught Throwable in processSockets
    java.lang.OutOfMemoryError: .
    java.lang.OutOfMemoryError:
    >
    <Jun 18, 2009 4:24:45 PM IST> <Error> <Server> <BEA-002608> <The ListenThread because of an error: java.lang.OutOfMemoryError: memsystemAllocObject - Object size: 24
    java.lang.OutOfMemoryError: memsystemAllocObject - Object size: 24
         at java.net.PlainSocketImpl.socketAccept(Native Method)
         at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:384)
         at java.net.ServerSocket.implAccept(ServerSocket.java:450)
         at java.net.ServerSocket.accept(ServerSocket.java:421)
         at weblogic.socket.WeblogicServerSocket.accept(WeblogicServerSocket.java:34)
         Truncated. see log file for complete stacktrace
    >
    Error # 2
    ======
    <Jun 18, 2009 7:32:27 PM IST> <Error> <Server> <BEA-002608> <The ListenThread because of an error: java.lang.OutOfMemoryError:
    java.lang.OutOfMemoryError:
    >
    <Jun 18, 2009 7:32:27 PM IST> <Error> <Server> <BEA-002608> <The ListenThread because of an error: java.lang.OutOfMemoryError: memsystemAllocObject - Object size: 24
    java.lang.OutOfMemoryError: memsystemAllocObject - Object size: 24
         at java.net.PlainSocketImpl.socketAccept(Native Method)
         at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:384)
         at java.net.ServerSocket.implAccept(ServerSocket.java:450)
         at java.net.ServerSocket.accept(ServerSocket.java:421)
         at weblogic.socket.WeblogicServerSocket.accept(WeblogicServerSocket.java:34)
         Truncated. see log file for complete stacktrace
    >
    Thanks in Advance.
    Edited by: Rushang.Kansara on Jul 1, 2009 6:46 AM

    Once you get to the state where you're out of memory, you'll get any number of possible variations on the error message. These variations will give you absolutely zero help for why you've run out of memory. Without more information, it's impossible to tell whether you have a memory leak, or whether you simply have too small a value for "maxmem" in the JVM.
    Typically, I would assume that if the server has been running for a "while" (whatever that means) without error, then it probably isn't a simple issue with setting the "maxmem" value high enough. If it does fail pretty quickly after startup (and processing of initial messages), then it very well could be a maxmem problem. This is done by adding or changing the "-Xmxnnn" command-line parameter to the JVM. For instance, if you wanted to give it 2g of max heap, you would put "-Xmx2048m" on the command line. That value won't work on Windows (not sure about Vista or 64-bit), but it will work perfectly well on Unix/Linux.
    If you have a memory leak, it's good to first verify this by sitting on the "Server"->"Performance" page in the WebLogic console. If you watch the "memory free" (or "memory inuse") percentage, you'll see that it varies by a wide margin over time. What you want to do is to be able to force a GC (there should still be a button there to do that) and then note the percent free immediately after that. You should do this every few minutes while the server is actively working. If the percent free value (after the GC) is consistently going down, even slowly, then you likely have a memory leak. This is where it gets a little more difficult. You could look at the free VisualVM tool which provides some memory debugging features, but they are somewhat limited (I only know this from reading some literature, I haven't tried it), or you could look at the commercial tools JProfiler, JProbe, or YourKit (in decreasing order of my personal preference).

  • Memory Corruption?

    Hi there, recently I reinstalled Windows and upgraded from 7 to 8.1. Back on Windows 7 I had a strange bsod every so often when playing this one game I like called Dungeon Defenders: Eternity. Part of the reason I switched from 7 to 8.1 was to get a fresh
    install of Windows and some driver compatibility so I could play it bug free. It worked for about 4 days too! On Win 7 the bsod was 'probably caused by nwifi.sys' but if you look down at the new Windows 8.1 dump it says that it's a 'memory_corruption'. How
    should I go about fixing this? I have some unused RAM from ages ago, never opened so I guess I could replace it, but it would be a downgrade. I guess what I'm trying to figure out is... Do I need new RAM? Is it faulty?
    Oh ya, before I forget, due to this bsod only being caused by ONE game and my pc running perfectly everywhere else, I can't help but feel like my RAM is not the issue here.
    Somebody save me!
    Microsoft (R) Windows Debugger Version 6.3.9600.17237 AMD64
    Copyright (c) Microsoft Corporation. All rights reserved.
    Loading Dump File [C:\Windows\Minidump\082614-16890-01.dmp]
    Mini Kernel Dump File: Only registers and stack trace are available
    ************* Symbol Path validation summary **************
    Response                         Time (ms)     Location
    Deferred                                       srv*D:\Symbols*http://msdl.microsoft.com/download/symbols
    Symbol search path is: srv*D:\Symbols*http://msdl.microsoft.com/download/symbols
    Executable search path is: 
    Windows 8 Kernel Version 9600 MP (8 procs) Free x64
    Product: WinNt, suite: TerminalServer SingleUserTS
    Built by: 9600.17085.amd64fre.winblue_gdr.140330-1035
    Machine Name:
    Kernel base = 0xfffff800`a0283000 PsLoadedModuleList = 0xfffff800`a054d2d0
    Debug session time: Mon Aug 25 22:10:40.540 2014 (UTC - 6:00)
    System Uptime: 0 days 2:58:59.267
    Loading Kernel Symbols
    Loading User Symbols
    Loading unloaded module list
    *                        Bugcheck Analysis                                    *
    Use !analyze -v to get detailed debugging information.
    BugCheck A, {fffff6fb40069d88, 0, 0, fffff800a02f858b}
    Probably caused by : memory_corruption ( nt!MiAgeWorkingSet+2cb )
    Followup: MachineOwner
    5: kd> !analyze -v
    *                        Bugcheck Analysis                                    *
    IRQL_NOT_LESS_OR_EQUAL (a)
    An attempt was made to access a pageable (or completely invalid) address at an
    interrupt request level (IRQL) that is too high.  This is usually
    caused by drivers using improper addresses.
    If a kernel debugger is available get the stack backtrace.
    Arguments:
    Arg1: fffff6fb40069d88, memory referenced
    Arg2: 0000000000000000, IRQL
    Arg3: 0000000000000000, bitfield :
    bit 0 : value 0 = read operation, 1 = write operation
    bit 3 : value 0 = not an execute operation, 1 = execute operation (only on chips which support this level of status)
    Arg4: fffff800a02f858b, address which referenced memory
    Debugging Details:
    READ_ADDRESS: GetPointerFromAddress: unable to read from fffff800a05d7138
    unable to get nt!MmNonPagedPoolStart
    unable to get nt!MmSizeOfNonPagedPoolInBytes
     fffff6fb40069d88 
    CURRENT_IRQL:  0
    FAULTING_IP: 
    nt!MiAgeWorkingSet+2cb
    fffff800`a02f858b 498b1e          mov     rbx,qword ptr [r14]
    CUSTOMER_CRASH_COUNT:  1
    DEFAULT_BUCKET_ID:  WIN8_DRIVER_FAULT
    BUGCHECK_STR:  AV
    PROCESS_NAME:  DUNDEFGAME.EXE
    ANALYSIS_VERSION: 6.3.9600.17237 (debuggers(dbg).140716-0327) amd64fre
    TRAP_FRAME:  ffffd000c7cb76d0 -- (.trap 0xffffd000c7cb76d0)
    NOTE: The trap frame does not contain all registers.
    Some register values may be zeroed or incorrect.
    rax=0000800000000000 rbx=0000000000000000 rcx=0000ffffffffffff
    rdx=0000000000000008 rsi=0000000000000000 rdi=0000000000000000
    rip=fffff800a02f858b rsp=ffffd000c7cb7860 rbp=ffffd000c7cb7960
     r8=0000000fffffffff  r9=8000000000000000 r10=0000007ffffffff8
    r11=0000098000000000 r12=0000000000000000 r13=0000000000000000
    r14=0000000000000000 r15=0000000000000000
    iopl=0         nv up ei ng nz na po cy
    nt!MiAgeWorkingSet+0x2cb:
    fffff800`a02f858b 498b1e          mov     rbx,qword ptr [r14] ds:00000000`00000000=????????????????
    Resetting default scope
    LAST_CONTROL_TRANSFER:  from fffff800a03e2ae9 to fffff800a03d6fa0
    STACK_TEXT:  
    ffffd000`c7cb7588 fffff800`a03e2ae9 : 00000000`0000000a fffff6fb`40069d88 00000000`00000000 00000000`00000000 : nt!KeBugCheckEx
    ffffd000`c7cb7590 fffff800`a03e133a : 00000000`00000000 ffff0000`00000000 00000000`00001000 ffffd000`c7cb76d0 : nt!KiBugCheckDispatch+0x69
    ffffd000`c7cb76d0 fffff800`a02f858b : 00000000`00017608 00000000`0000012b 00000003`00000000 00000000`73576d4d : nt!KiPageFault+0x23a
    ffffd000`c7cb7860 fffff800`a030bfa5 : ffffe000`bb4c6ad8 00000000`00000002 00000000`00000002 00000000`ffffffff : nt!MiAgeWorkingSet+0x2cb
    ffffd000`c7cb7b70 fffff800`a030bbba : 00000000`00000000 ffffd000`c7cb7c39 ffffe000`bb4c6af0 00000000`00000000 : nt!MiTrimOrAgeWorkingSet+0xc1
    ffffd000`c7cb7bb0 fffff800`a0346b92 : 00000000`00000000 ffffe000`b655f880 00000000`00000001 ffffe000`b655f880 : nt!MiProcessWorkingSets+0x1a6
    ffffd000`c7cb7ca0 fffff800`a03bd81e : 00000000`00000008 00000000`00000001 ffffe000`b655f880 00000000`00000000 : nt!MmWorkingSetManager+0x4a
    ffffd000`c7cb7cd0 fffff800`a0352794 : ffffe000`b655f880 00000000`00000000 00000000`00000080 00000000`00000000 : nt!KeBalanceSetManager+0x11e
    ffffd000`c7cb7d40 fffff800`a03dd5c6 : ffffd000`c7aaa180 ffffe000`b655f880 ffffd000`c7ab63c0 00000000`00000000 : nt!PspSystemThreadStartup+0x58
    ffffd000`c7cb7da0 00000000`00000000 : ffffd000`c7cb8000 ffffd000`c7cb2000 00000000`00000000 00000000`00000000 : nt!KiStartSystemThread+0x16
    STACK_COMMAND:  kb
    FOLLOWUP_IP: 
    nt!MiAgeWorkingSet+2cb
    fffff800`a02f858b 498b1e          mov     rbx,qword ptr [r14]
    SYMBOL_STACK_INDEX:  3
    SYMBOL_NAME:  nt!MiAgeWorkingSet+2cb
    FOLLOWUP_NAME:  MachineOwner
    MODULE_NAME: nt
    DEBUG_FLR_IMAGE_TIMESTAMP:  53388e13
    IMAGE_VERSION:  6.3.9600.17085
    IMAGE_NAME:  memory_corruption
    BUCKET_ID_FUNC_OFFSET:  2cb
    FAILURE_BUCKET_ID:  AV_nt!MiAgeWorkingSet
    BUCKET_ID:  AV_nt!MiAgeWorkingSet
    ANALYSIS_SOURCE:  KM
    FAILURE_ID_HASH_STRING:  km:av_nt!miageworkingset
    FAILURE_ID_HASH:  {a2dd9c19-c4fc-761b-f40a-b8172b183d05}
    Followup: MachineOwner
    5: kd> .trap 0xffffd000c7cb76d0
    NOTE: The trap frame does not contain all registers.
    Some register values may be zeroed or incorrect.
    rax=0000800000000000 rbx=0000000000000000 rcx=0000ffffffffffff
    rdx=0000000000000008 rsi=0000000000000000 rdi=0000000000000000
    rip=fffff800a02f858b rsp=ffffd000c7cb7860 rbp=ffffd000c7cb7960
     r8=0000000fffffffff  r9=8000000000000000 r10=0000007ffffffff8
    r11=0000098000000000 r12=0000000000000000 r13=0000000000000000
    r14=0000000000000000 r15=0000000000000000
    iopl=0         nv up ei ng nz na po cy
    nt!MiAgeWorkingSet+0x2cb:
    fffff800`a02f858b 498b1e          mov     rbx,qword ptr [r14] ds:00000000`00000000=????????????????
    5: kd> .trap 0xffffd000c7cb76d0
    NOTE: The trap frame does not contain all registers.
    Some register values may be zeroed or incorrect.
    rax=0000800000000000 rbx=0000000000000000 rcx=0000ffffffffffff
    rdx=0000000000000008 rsi=0000000000000000 rdi=0000000000000000
    rip=fffff800a02f858b rsp=ffffd000c7cb7860 rbp=ffffd000c7cb7960
     r8=0000000fffffffff  r9=8000000000000000 r10=0000007ffffffff8
    r11=0000098000000000 r12=0000000000000000 r13=0000000000000000
    r14=0000000000000000 r15=0000000000000000
    iopl=0         nv up ei ng nz na po cy
    nt!MiAgeWorkingSet+0x2cb:
    fffff800`a02f858b 498b1e          mov     rbx,qword ptr [r14] ds:00000000`00000000=????????????????

    These crashes were related to memory corruption (probably caused by a driver). We could use the actual DMP file for analysis
    Please run these tests to verify your memory and find which driver is causing the problem.  
    If you are overclocking (pushing the components beyond their design) you should revert to default at least until the crashing is solved. If you don't
    know what it is you probably are not overclocking.
    Since it is more likely to be a driver please run verifier first.
    1-Driver verifier (for complete directions see our wiki here)
    If verifier does not find the issue we can move on to this.
    2-Memtest. (You can read more about running memtest here)
    If you cannot boot after enabling verifier reboot into safe mode
    In Vista & win 7 (F8)
    In win 8 http://www.howtogeek.com/107511/how-to-boot-into-safe-mode-on-windows-8-the-easy-way/
    Co-Authored by  JMH3143
    Wanikiya and Dyami--Team Zigzag

  • Usb 6501 unresponsive causing BSOD(Blue Screen Error)

    There are a lot posts about the same issue but mine is a little peculiar so i decided to post it.
    I am using two usb DAQ in the same pc(usb-6501, usb-6001), connected to the usb port on the back. The usb-6501 is used to obtain digital inputs from read switches, Sensors through an ssr. The usb-6001 is used to control 2 double valve solenoid, 1 dc motor, 2 indicator lamps. usb-6001 is also used to read analog values of current(using hall effect sensor) and voltage(using potentiometer).
    At first i was facing problems with the usb-6001(the usb-6501 was working fine at this point) resetting during operation accompanied by BSOD. Then i learned it was due to my relay, which requires 30 mA of current to switch so i used the ULN2003a to interface the usb-6001 with the relays and after that the application was running perfectly for 4 days.
    Now the usb-6501 is having the same problem and when i perform "Self Test" from NI MAX it shows "Error Code:50405" and i am able to reset the device from NI MAX only sometimes, other times i would have to unplug the USB device then plug it back in. As the application is used for an automated test rig the customer is frustrated by this problem. Once the card becomes unresponsive(or after the card is reset) BSOD occours.
    I have checked all the device drivers and OS for any errors but they are fine. i have even tried changing the ram to solve the BSOD with no use.
    System Details:
    Windows 7 SP1
    NI MAX 14.0
    power saving is disabled 
    I have attached the latest mini dump files as they might help in finding out the reason behind this problem(File extensions changed for the purpouse of uploading).
    I need to know: Is there any permanent solution for this problem? and what is the reason for this problem.
    Attachments:
    060115-12480-01.txt ‏315 KB
    053015-12324-01.txt ‏315 KB
    052615-17440-01.txt ‏315 KB

    Additional info : i did an analysis of the dump files and this is the result
    0: kd> !analyze -v
    * Bugcheck Analysis *
    DRIVER_IRQL_NOT_LESS_OR_EQUAL (d1)
    An attempt was made to access a pageable (or completely invalid) address at an
    interrupt request level (IRQL) that is too high. This is usually
    caused by drivers using improper addresses.
    If kernel debugger is available get stack backtrace.
    Arguments:
    Arg1: fffff88009fe10b1, memory referenced
    Arg2: 0000000000000002, IRQL
    Arg3: 0000000000000000, value 0 = read operation, 1 = write operation
    Arg4: fffff8800657922e, address which referenced memory
    Debugging Details:
    READ_ADDRESS: GetPointerFromAddress: unable to read from fffff800032c30e8
    fffff88009fe10b1
    CURRENT_IRQL: 2
    FAULTING_IP:
    nifslk+822e
    fffff880`0657922e 0fb650ff movzx edx,byte ptr [rax-1]
    CUSTOMER_CRASH_COUNT: 1
    DEFAULT_BUCKET_ID: VISTA_DRIVER_FAULT
    BUGCHECK_STR: 0xD1
    PROCESS_NAME: System
    TRAP_FRAME: fffff80000b9c6b0 -- (.trap 0xfffff80000b9c6b0)
    NOTE: The trap frame does not contain all registers.
    Some register values may be zeroed or incorrect.
    rax=fffff88009fe10b2 rbx=0000000000000000 rcx=0000000000000000
    rdx=fffff80000b9c8e0 rsi=0000000000000000 rdi=0000000000000000
    rip=fffff8800657922e rsp=fffff80000b9c840 rbp=fffff88009fe10b1
    r8=0000000000000000 r9=0000000000000000 r10=0000000000000000
    r11=0000000000000000 r12=0000000000000000 r13=0000000000000000
    r14=0000000000000000 r15=0000000000000000
    iopl=0 nv up ei ng nz na po nc
    nifslk+0x822e:
    fffff880`0657922e 0fb650ff movzx edx,byte ptr [rax-1] ds:c8e0:fffff880`09fe10b1=??
    Resetting default scope
    LAST_CONTROL_TRANSFER: from fffff80003091be9 to fffff80003092640
    STACK_TEXT:
    fffff800`00b9c568 fffff800`03091be9 : 00000000`0000000a fffff880`09fe10b1 00000000`00000002 00000000`00000000 : nt!KeBugCheckEx
    fffff800`00b9c570 fffff800`03090860 : fffffa80`06adc250 fffffa80`05c3a060 fffffa80`06adc250 00000000`0000ffff : nt!KiBugCheckDispatch+0x69
    fffff800`00b9c6b0 fffff880`0657922e : fffff880`05d47468 fffff880`01d91f90 00000000`00000000 fffff880`09fe0770 : nt!KiPageFault+0x260
    fffff800`00b9c840 fffff880`05d47468 : fffff880`01d91f90 00000000`00000000 fffff880`09fe0770 fffff880`09fe17a0 : nifslk+0x822e
    fffff800`00b9c848 fffff880`01d91f90 : 00000000`00000000 fffff880`09fe0770 fffff880`09fe17a0 fffff880`09fe10b1 : 0xfffff880`05d47468
    fffff800`00b9c850 00000000`00000000 : fffff880`09fe0770 fffff880`09fe17a0 fffff880`09fe10b1 fffff800`00b9c8e0 : nipalk+0x75f90
    STACK_COMMAND: kb
    FOLLOWUP_IP:
    nifslk+822e
    fffff880`0657922e 0fb650ff movzx edx,byte ptr [rax-1]
    SYMBOL_STACK_INDEX: 3
    SYMBOL_NAME: nifslk+822e
    FOLLOWUP_NAME: MachineOwner
    MODULE_NAME: nifslk
    IMAGE_NAME: nifslk.dll
    DEBUG_FLR_IMAGE_TIMESTAMP: 51f2daeb
    FAILURE_BUCKET_ID: X64_0xD1_nifslk+822e
    BUCKET_ID: X64_0xD1_nifslk+822e
    Can anyone help me with what this means?

  • Blue screen of death on Toshiba P755-S5375 with ADOBE ENCORE CS6

    I recently purchased a new laptop and installed Adobe Master Collection CS6.  I purchased the laptop for video capture and editing, as well as for blu-ray authoring. 
    Unfortunately, although the computer and software works fine for video capture and editing, I am unable to author a blu-ray.  For authoring, I am using Adobe’s Encore CS6.  After checking and previewing my creation, I attempt to build to disc using Encore.  About 2 seconds after clicking the build disc in Encore, I get the “blue screen of death” (BSOD).  This happens every time I try to build to blu-ray (only blu-ray has this issue; I am able to build to a DVD).  I am using an external blu-ray drive on USB 3.0.  
    I am using Encore version 6.0.0.492
    Here are the blu-ray drive specs:
    Logitec USB 2.0/3.0 Bus powered portable bluray drive unit, LBD-PME6U3VBK
    PIONEER BD-RW BDR-TD05 USB Device
    Driver: 6.1.7601.17514
    C:\windows\system32\DRIVERS\cdrom.sys
    \windows\system32\Drivers\PXHlpa64.sys
    \windows\system32\DRIVERS\tdcmdpst.sys
    \windows\SysWOW64\drivers\Afc.sys
    Renesas USB 3.0 driver also installed
    The computer specs are as follows:
    Manufacturer: Toshiba
    Manufacturer Part Number: PSAY1U-05U027
    Product Line: Satellite
    Product Series: P755
    Product Model: P755-S5375
    Product Name: Satellite P755-S5375 Notebook
    Product Type: Notebook
    Processor Manufacturer: Intel
    Processor Type: Core i7
    Processor Model: i7-2670QM
    Processor Speed: 2.20 GHz
    Processor Core: Quad-core (4 Core)
    Cache: 6 MB
    Chipset Manufacturer: Intel
    Chipset Model: HM65 Express
    Standard Memory: 4 GB
    Memory Technology: DDR3 SDRAM
    Memory Standard: DDR3-1333/PC3-10600
    Number of Total Memory Slots: 2
    Hard Drive Capacity: 500 GB
    Screen Size: 15.6"
    Display Screen Type: Active Matrix TFT Color LCD
    Aspect Ratio: 16:9
    Screen Mode: WXGA
    Backlight Technology: LED
    Screen Resolution: 1366 x 768
    Graphics Controller Manufacturer: Intel
    Graphics Controller Model: HD 3000
    Graphics Memory Capacity: 1.65 GB
    Graphics Memory Accessibility: Shared
    Ethernet Technology: Fast Ethernet
    Wi-Fi: Yes
    Wi-Fi Standard: IEEE 802.11b/g/n
    Webcam: Yes
    Operating System: Genuine Windows 7 Home Premium with SP1
    Operating System Architecture: 64-bit
    Pointing Device Type: TouchPad
    Number of Cells: 6-cell
    Battery Chemistry: Lithium Ion (Li-Ion)
    Width: 15.0"
    Depth: 9.8"
    Weight (Approximate): 5.40 lb
    Package Contents:
    Satellite P755-S5375 Notebook
    Lithium Ion Battery
    AC Adapter
    Green Compliant: Yes
    Green Compliance Certificate/Authority: RoHS
    Installed programs:
    Name                                                            Version          
    Microsoft Application Error Reporting                           12.0.6015.5000   
    Microsoft Office Click-to-Run 2010                              14.0.4763.1000   
    Microsoft Office 2010                                           14.0.4763.1000   
    Windows Live Essentials                                         15.4.3502.0922   
    Apple Application Support                                       2.1.7            
    Windows Live Writer                                             15.4.3502.0922   
    Microsoft_VC90_MFCLOC_x86                                       1.00.0000        
    Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148  9.0.30729.4148   
    TOSHIBA Web Camera Application                                  2.0.3.3          
    Windows Live Messenger                                          15.4.3538.0513   
    Microsoft_VC90_CRT_x86                                          1.00.0000        
    Google Toolbar for Internet Explorer                            1.0.0            
    Microsoft Visual C++ 2010  x64 Redistributable - 10.0.40219     10.0.40219       
    Microsoft Visual C++ 2005 Redistributable (x64)                 8.0.61000        
    Microsoft SQL Server 2005 Compact Edition [ENU]                 3.1.0000         
    Microsoft Visual C++ 2010  x86 Redistributable - 10.0.40219     10.0.40219       
    Toshiba Online Backup                                           2.0.0.31         
    TOSHIBA ReelTime                                                1.7.21.64        
    Windows Live Remote Client Resources                            15.4.5722.2      
    Windows Live SOXE Definitions                                   15.4.3502.0922   
    Adobe AIR                                                       3.1.0.4880       
    Windows Live Mesh ActiveX Control for Remote Connections        15.4.5722.2      
    Windows Live Communications Platform                            15.4.3502.0922   
    Windows Live Movie Maker                                        15.4.3502.0922   
    Apple Software Update                                           2.1.3.127        
    Windows Live UX Platform Language Pack                          15.4.3508.1109   
    Windows Live Photo Gallery                                      15.4.3502.0922   
    bl                                                              1.0.0            
    Windows Live Mail                                               15.4.3502.0922   
    Java(TM) 6 Update 25                                            6.0.250          
    MSVCRT_amd64                                                    15.4.2862.0708   
    TOSHIBA Face Recognition                                        3.1.17.64        
    ph                                                              1.0.0            
    Adobe Widget Browser                                            2.0.348          
    Windows Live Writer                                             15.4.3502.0922   
    Mesh Runtime                                                    15.4.5722.2      
    TOSHIBA Supervisor Password                                     1.63.51.2C       
    Adobe Acrobat X Pro - English, Fran軋is, Deutsch                10.1.1           
    Adobe Reader X MUI                                              10.0.0           
    TOSHIBA Media Controller Plug-in                                1.0.7.5          
    Windows Live Photo Gallery                                      15.4.3502.0922   
    Windows Live Photo Common                                       15.4.3502.0922   
    Label@Once 1.0                                                  1.0              
    PDF Settings CS6                                                11.0             
    Toshiba Book Place                                              2.2.7530         
    Windows Live PIMT Platform                                      15.4.3508.1109   
    TOSHIBA Wireless LAN Indicator                                  1.0.5            
    D3DX10                                                          15.4.2368.0902   
    Utility Common Driver                                           1.0.52.3C        
    Junk Mail filter update                                         15.4.3502.0922   
    Windows Live Movie Maker                                        15.4.3502.0922   
    TOSHIBA HDD/SSD Alert                                           3.1.64.9         
    Windows Live Remote Service                                     15.4.5722.2      
    Toshiba App Place                                               1.0.6.3          
    Windows Live Mesh                                               15.4.3502.0922   
    Windows Live Language Selector                                  15.4.3538.0513   
    QuickTime                                                       7.72.80.56       
    Renesas Electronics USB 3.0 Host Controller Driver              2.0.34.0         
    TOSHIBA Value Added Package                                     1.6.1.64         
    Microsoft_VC80_CRT_x86                                          8.0.50727.4053   
    Google Update Helper                                            1.3.21.111       
    TOSHIBA HDD Protection                                          2.2.2.15         
    7-Zip 9.20 (x64 edition)                                        9.20.00.0        
    TOSHIBA PC Health Monitor                                       1.7.9.64         
    Windows Live Mail                                               15.4.3502.0922   
    Adobe Help Manager                                              4.0.244          
    MSVCRT                                                          15.4.2862.0708   
    Windows Live Remote Client                                      15.4.5722.2      
    Blackmagic ATEM Switchers                                       3.0.1.0          
    Microsoft_VC90_MFC_x86                                          1.00.0000        
    Windows Live Photo Common                                       15.4.3502.0922   
    Windows Live ID Sign-in Assistant                               7.250.4232.0     
    Microsoft Visual C++ 2005 Redistributable                       8.0.61001        
    Windows Live Messenger                                          15.4.3538.0513   
    Windows Live Mesh                                               15.4.3502.0922   
    Windows Live Writer                                             15.4.3502.0922   
    Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148  9.0.30729.4148   
    Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.17    9.0.30729        
    TOSHIBA Hardware Setup                                          1.63.1.37C       
    Microsoft Silverlight                                           4.0.50401.0      
    PlayReady PC Runtime x86                                        1.3.0            
    Intel(R) WiDi                                                   2.1.41.0         
    Windows Live MIME IFilter                                       15.4.3502.0922   
    TOSHIBA Flash Cards Support Utility                             1.63.0.12C       
    TOSHIBA eco Utility                                             1.3.5.64         
    Windows Live UX Platform                                        15.4.3502.0922   
    TOSHIBA Wireless Display Monitor                                1.0.1            
    Debugging Tools for Windows (x64)                               6.12.2.633       
    Windows Live Remote Service Resources                           15.4.5722.2      
    Windows Live Writer Resources                                   15.4.3502.0922   
    Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.17    9.0.30729        
    Intel(R) PROSet/Wireless WiFi Software                          14.01.1000       
    Windows Live Installer                                          15.4.3502.0922   
    TOSHIBA Disc Creator                                            2.1.0.11 for x64 
    PlayReady PC Runtime amd64                                      1.3.0            
    Windows Live SOXE                                               15.4.3502.0922   
    Java Auto Updater                                               2.0.4.1          
    TOSHIBA Bulletin Board                                          1.6.08.64        
    Crash details:
    Problem signature:
      Problem Event Name:            BlueScreen
      OS Version:                           6.1.7601.2.1.0.768.3
      Locale ID:                              1041
    Additional information about the problem:
      BCCode:                               d1
      BCP1:                                   0000000000000001
      BCP2:                                   0000000000000002
      BCP3:                                   0000000000000008
      BCP4:                                   0000000000000001
      OS Version:                           6_1_7601
      Service Pack:                        1_0
      Product:                                768_1
    Files that help describe the problem:
      C:\Windows\Minidump\090312-28516-01.dmp
      C:\Users\xxx\AppData\Local\Temp\WER-62696-0.sysdata.xml
    Read our privacy statement online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
      C:\windows\system32\en-US\erofflps.txt
    DMP file details
    Symbol search path is: SRV*C:\Symbols*http://msdl.microsoft.com/download/symbols
    Executable search path is:
    Windows 7 Kernel Version 7601 (Service Pack 1) MP (8 procs) Free x64
    Product: WinNt, suite: TerminalServer SingleUserTS Personal
    Built by: 7601.17835.amd64fre.win7sp1_gdr.120503-2030
    Machine Name:
    Kernel base = 0xfffff800`02e04000 PsLoadedModuleList = 0xfffff800`03048670
    Debug session time: Mon Sep  3 02:27:16.190 2012 (UTC + 9:00)
    System Uptime: 0 days 0:06:50.096
    Loading Kernel Symbols
    Loading User Symbols
    Loading unloaded module list
    *                        Bugcheck Analysis                                    *
    Use !analyze -v to get detailed debugging information.
    BugCheck D1, {1, 2, 8, 1}
    *** WARNING: Unable to verify timestamp for win32k.sys
    *** ERROR: Module load completed but symbols could not be loaded for win32k.sys
    Probably caused by : ntkrnlmp.exe ( nt!KiPageFault+260 )
    Followup: MachineOwner
    0: kd> !analyze -v
    *                        Bugcheck Analysis                                    *
    DRIVER_IRQL_NOT_LESS_OR_EQUAL (d1)
    An attempt was made to access a pageable (or completely invalid) address at an
    interrupt request level (IRQL) that is too high.  This is usually
    caused by drivers using improper addresses.
    If kernel debugger is available get stack backtrace.
    Arguments:
    Arg1: 0000000000000001, memory referenced
    Arg2: 0000000000000002, IRQL
    Arg3: 0000000000000008, value 0 = read operation, 1 = write operation
    Arg4: 0000000000000001, address which referenced memory
    Debugging Details:
    READ_ADDRESS: GetPointerFromAddress: unable to read from fffff800030b2100
     0000000000000001
    CURRENT_IRQL:  2
    FAULTING_IP:
    +6130613031313361
    00000000`00000001 ??              ???
    PROCESS_NAME:  System
    CUSTOMER_CRASH_COUNT:  1
    DEFAULT_BUCKET_ID:  VISTA_DRIVER_FAULT
    BUGCHECK_STR:  0xD1
    TRAP_FRAME:  fffff80000b9c740 -- (.trap 0xfffff80000b9c740)
    NOTE: The trap frame does not contain all registers.
    Some register values may be zeroed or incorrect.
    rax=fffff80000b9c801 rbx=0000000000000000 rcx=fffffa8004586618
    rdx=fffff80000b9c8d8 rsi=0000000000000000 rdi=0000000000000000
    rip=0000000000000001 rsp=fffff80000b9c8d0 rbp=0000892fc0ba4327
     r8=fffff80000b9c8d0  r9=0000000000000000 r10=0000000004216094
    r11=000000005e040600 r12=0000000000000000 r13=0000000000000000
    r14=0000000000000000 r15=0000000000000000
    iopl=0         nv up ei ng nz na pe nc
    00000000`00000001 ??              ???
    Resetting default scope
    LAST_CONTROL_TRANSFER:  from fffff80002e82769 to fffff80002e831c0
    FAILED_INSTRUCTION_ADDRESS:
    +6130613031313361
    00000000`00000001 ??              ???
    STACK_TEXT: 
    fffff800`00b9c5f8 fffff800`02e82769 : 00000000`0000000a 00000000`00000001 00000000`00000002 00000000`00000008 : nt!KeBugCheckEx
    fffff800`00b9c600 fffff800`02e813e0 : 00000000`00000002 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiBugCheckDispatch+0x69
    fffff800`00b9c740 00000000`00000001 : 00000000`00000000 00000000`5e040600 00000000`00000000 00000000`00000000 : nt!KiPageFault+0x260
    fffff800`00b9c8d0 00000000`00000000 : 00000000`5e040600 00000000`00000000 00000000`00000000 00000000`080e8118 : 0x1
    STACK_COMMAND:  kb
    FOLLOWUP_IP:
    nt!KiPageFault+260
    fffff800`02e813e0 440f20c0        mov     rax,cr8
    SYMBOL_STACK_INDEX:  2
    SYMBOL_NAME:  nt!KiPageFault+260
    FOLLOWUP_NAME:  MachineOwner
    MODULE_NAME: nt
    IMAGE_NAME:  ntkrnlmp.exe
    DEBUG_FLR_IMAGE_TIMESTAMP:  4fa390f3
    FAILURE_BUCKET_ID:  X64_0xD1_CODE_AV_BAD_IP_nt!KiPageFault+260
    BUCKET_ID:  X64_0xD1_CODE_AV_BAD_IP_nt!KiPageFault+260
    Followup: MachineOwner

    Satellite A215-S7422 
    We need to know the Stop code on the blue screen. If there is a file name mentioned, we want that too.
    You can prevent the rapid disappearance of the blue screen during a normal boot by choosing this at the F8 Startup menu.
       Disable automatic restart on system failure
    -Jerry

  • Private nullref symbol in 5.6 but not with 5.5 C++ compiler

    We try to use the libmtmalloc.so library with our project using LD_PRELOAD_32 environment variable:
    export LD_PRELOAD_32=/usr/lib/libmtmalloc.so.1This library provides advanced memory management and memory debugging features.
    We have two Solaris machines named ‘earth2’ and ‘mars’. ‘earth2’ has “CC: Sun C++ 5.6” compiler, while ‘mars’ has an older version “CC: Sun C++ 5.5”.
    If we build our application on ‘earth2’ and load it with libmtmalloc.so library, it crashes inside heap memory management functions invoked from std::basic_string methods. The same application built on ‘mars’ machine runs without problems. It seems that the reason of the crash is a visibility of std::basic_string::__nullref symbol generated differently by each version of compiler. The following little code sample demonstrates the problem
    main.cpp
    =======
    #include <string>
    int main()
           std::string strA = "";
           std::string strB = "aaa";
           strA = strB;
          return 0;
    }If we build this sample on both machines, we can see that each compiler provides a different visibility of std::basic_string::__nullref symbol.
    On ‘earth2’ machine
    ===============
    hsbld33BM@earth2 $ CC -V
    CC: Sun C++ 5.6 2004/07/15
    hsbld33BM@earth2 $ CC -v main.cpp
    hsbld33BM@earth2 $ elfdump -s -C a.out | grep nullref
    [3] 0x00021720 0x00000030 OBJT WEAK D 0 .data std::basic_string<char,std::char_traits<char>,std::allocator<char> >::__nullref
    [13] 0x00021718 0x00000004 OBJT WEAK D 0 .data std::basic_string<char,std::char_traits<char>,std::allocator<char> >::__i_ctl___nullref
    [56] 0x00021720 0x00000030 OBJT WEAK D 0 .data std::basic_string<char,std::char_traits<char>,std::allocator<char> >::__nullref
    [66] 0x00021718 0x00000004 OBJT WEAK D 0 .data std::basic_string<char,std::char_traits<char>,std::allocator<char> >::__i_ctl___nullref
    On ‘mars’ machine
    ==============
    hsbld33BM@mars $ CC –V
    CC: Sun C++ 5.5 2003/03/12
    hsbld33BM@mars $ CC -v main.cpp
    ### command line files and options (expanded):
    ### -v main.cpp
    ### CC: Note: NLSPATH = /opt/SUNWspro/prod/bin/../lib/locale/%L/LC_MESSAGES/%N.cat:/opt/SUNWspro/prod/bin/../../lib/locale/%L/LC_MESSAGES/%N.cat
    /opt/SUNWspro/prod/bin/ccfe -y-o -ymain.o -y-fbe -y/opt/SUNWspro/prod/bin/fbe -y-xarch=generic -y-verbose -O0 -ptf /tmp/29641%1.%2 -ptx /opt/SUNWspro/prod/bin/CC -ptk "-v -xs " -D__SunOS_5_9 -D__SUNPRO_CC=0x550 -Dunix -Dsun -Dsparc -D__sparc -D__unix -D__sun -D__BUILTIN_VA_ARG_INCR -D__SVR4 -D__SUNPRO_CC_COMPAT=5 -xdbggen=no%dwarf2+stabs -y-s -xdbggen=incl -y-xmemalign=4s -I-xbuiltin -xldscope=global -instlib=/opt/SUNWspro/prod/lib/libCstd.a -I/opt/SUNWspro/prod/include/CC/Cstd -I/opt/SUNWspro/prod/include/CC -I/opt/SUNWspro/prod/include/CC/rw7 -I/opt/SUNWspro/prod/include/cc -D__SUN_PREFETCH -xcomdat -y-comdat main.cpp -s /tmp/ccfe.29641.0.s >&/tmp/ccfe.29641.1.err
    rm /tmp/ccfe.29641.0.s
    ### CC: Note: LD_LIBRARY_PATH = (null)
    ### CC: Note: LD_RUN_PATH = (null)
    ### CC: Note: LD_OPTIONS = (null)
    /usr/ccs/bin/ld -u __1cH__CimplKcplus_init6F_v_ -zld32=-S/opt/SUNWspro/prod/lib/libldstab_ws.so -zld64=-S/opt/SUNWspro/prod/lib/v9/libldstab_ws.so -zld32=-S/opt/SUNWspro/prod/lib/libCCexcept.so.1 -zld64=-S/opt/SUNWspro/prod/lib/v9/libCCexcept.so.1 -R/opt/SUNWspro/lib/rw7:/opt/SUNWspro/lib:/usr/ccs/lib:/usr/lib -o a.out /opt/SUNWspro/prod/lib/crti.o /opt/SUNWspro/prod/lib/CCrti.o /opt/SUNWspro/prod/lib/crt1.o /opt/SUNWspro/prod/lib/values-xa.o -Y P,/opt/SUNWspro/lib/rw7:/opt/SUNWspro/lib:/opt/SUNWspro/prod/lib/rw7:/opt/SUNWspro/prod/lib:/usr/ccs/lib:/usr/lib main.o -lCstd -lCrun -lm -lw -lc /opt/SUNWspro/prod/lib/CCrtn.o /opt/SUNWspro/prod/lib/crtn.o >&/tmp/ld.29641.2.err
    rm main.o
    rm /tmp/ccfe.29641.1.err
    rm /tmp/ld.29641.2.err
    hsbld33BM@mars $ elfdump -s -C a.out | grep nullref
    [25] 0x00021300 0x00000030 OBJT GLOB D 0 .bss std::basic_string<char,std::char_traits<char>,std::allocator<char> >::__nullref
    [92] 0x00021300 0x00000030 OBJT GLOB D 0 .bss std::basic_string<char,std::char_traits<char>,std::allocator<char> >::__nullref
    We want to be able to use the libmtmalloc.so with newer compiler version. Please advise what we should do in order to achieve this goal.

    Those old compiler versions probably still have several bugs relating to the string class. Both are End Of Life. No support will be available for C++ 5.5 after this year, and all support ends for C++ 5.6 next year.
    The best solution would be to upgrade to a supported release. If you need to build or run on Solaris 8 (which is also End Of Life), get Sun Studio 11, which is free.
    [http://developers.sun.com/sunstudio/products/previous/11/index.jsp]
    If you don't need to build or run on anything earlier than Solaris 9, get Sun Studio 12, which is also free.
    [http://developers.sun.com/sunstudio/]
    "Free" means there is no license fee, no charge for downloading or use, nor for the distribution of applications created with Sun Studio.
    Next, whatever compilers you wind up using, be sure to get all the current patches. At a minimum, get the patches for the C compiler, C++ compiler, the compiler "back end" (sometimes called "common components"), and the C++ runtime library. You can get all patches here:
    [http://developers.sun.com/sunstudio/downloads/patches/index.jsp]
    The updated C++ runtime libraries need to be installed on the build system and on all target systems.
    You should also be sure that your build processes do not contribute to the problem:
    1. The C++ runtime libraries must be linked dynamically (the .so versions). Static linking can cause program failures when the application consists of other shared (dynamic) libraries, or when you run on a system different from the compilation system.
    2. When you build on one version of Solaris, the application can run on later versions of Solaris, but not on earlier versions.
    3. When you create a binary (.o, .a, .so) using one compiler version, it can be linked into a program created by a later compiler verison, but not into a program created by an earlier compiler version. (Note: the compiler version installed on a computer should not matter, since in a properly-constructed program, there is no runtime dependency on the installed compiler.)
    Information about supported compilers and interactions are listed in the Support Matrix:
    [http://developers.sun.com/sunstudio/support/matrix/index.jsp]

  • BSoD on a new machine

    Hi, people.
    I've just bought and assembled a new computer and I'm having constant BSoDs (usually with disturbing sound effect like looping the last bit of sound, which sounds like "bzzzzz" or "brrrrrr", or even "beeeeep"), game crashes (always
    c0000005 code) and "video driver has stopped responding and recovered" messages at random moments.
    Specs (used Piriform Speccy):
    OS: Windows 7 Ultimate 64-bit SP1 (not activated yet)
    CPU: Intel Core i7 4770 @ 3.40GHz    27 °C Haswell 22nm Technology
    RAM: 16,0GB 2-channel DDR3 @ 799 MHz (9-11-11-29)
    Motherboard: Gigabyte Technology Co., Ltd. Z87X-D3H-CF (SOCKET 0)    28 °C
    GPU: Intel HD Graphics 4600 (Gigabyte)
            4095 МБNVIDIA GeForce GTX 760 (Gigabyte)    32 °C
            4095 МБNVIDIA GeForce GTX 760 (Gigabyte)    29 °C
    Storage: 111GB ATA Samsung SSD 840 SCSI Disk Device (SSD)    32 °C
    Disk drive: Optiarc DVD RW AD-7280S SCSI CdRom Device
    Sound devices: Creative Sound Blaster Z
    Power Supply: ATX Corsair HX 1050, CP-902, 1200W
    DxDiag: DirectX 11, driver version 9.18.13.3182, driver model WDDM 1.1
    GeForce Experience Info: GeForce R331 Game Ready Driver, version 331.82, timestamp 19.11.2013
    BSoD codes:
    driver_irql_not_less_or_equal
    page_fault_in_nonpaged_area
    BSoD driver file: dxgmms1.sys (attempting to corrupt the system, revealed using the Windows Driver Verifier)
    So, I've downloaded and installed the latest motherboard, GPU, SSD and soundcard drivers from their official sites, deinstalling older versions using Driver Cleaner and CCleaner. I've tested my RAM with memtest and found no problems. I've done a stress-test
    using the AIDA64 - no errors. Monitoring the temperature during the stress-test and usual activities revealed no overheat. AHCI mode is set. SLI is configured through the NVidia panel. No overclocked CPU. No problems when rendering with GPU (i.e. no artifacts/hangs).
    BIOS menu displays no voltage problems. No cable connection problems seen at the moment.
    Also, tried with two different Windows - Professional and Ultimate, same errors. HALP PLEASE.
    Minidumps: http://anonymousdelivers.us/97897
    P.S. Forgot to say, the computer is connected through a voltage regulator APC Line-R 1200. Instead of a monitor I use my TV (Samsung) connected via HDMI to the top GPU.
    UPD 1: Okay, tried both of available WHQL driver versions for my GPU (320.49 and 327.23, now using 320.49) Still having random BSoDs with no driver specified (usually 0x0000001E) with weird noises when BSoD (using the motherboard output or the soundcard
    changes nothing).
    Also, the Windows Driver Verifier now does not give a BSoD.
    UPD: Noticed strange temperature changes on the top GPU: fading from 45° to 39° when writing this post. No game or other graphics rendering program is running, only Firefox (both of the NVidia 3d VISION plugins disabled) and Speccy.
    UPD 2: Got another SYSTEM_SERVICE_EXCEPTION BSoD while scrolling a page with Mozilla.
    UPD 3: Experiencing strange application unstability - crashes & hangs (seen crashing AC3, Firefox, Flash Player, Samsung Magician, dwm.exe, all with c0000005 error).

    Dverlik
    These were Related to
    nvlddmkm.sys nVidia Display Driver.  There is a known problem with the current version (which is yours).   I would revert back to a much older one (say a generation).
    Use !analyze -v to get detailed debugging information.
    BugCheck D1, {e1, a, 0, fffff8800f88238f}
    *** WARNING: Unable to verify timestamp for nvlddmkm.sys
    *** ERROR: Module load completed but symbols could not be loaded for nvlddmkm.sys
    Probably caused by : nvlddmkm.sys ( nvlddmkm+738f )
    DRIVER_IRQL_NOT_LESS_OR_EQUAL (d1)
    An attempt was made to access a pageable (or completely invalid) address at an
    interrupt request level (IRQL) that is too high. This is usually
    caused by drivers using improper addresses.
    If kernel debugger is available get stack backtrace.
    Arguments:
    Arg1: 00000000000000e1, memory referenced
    Arg2: 000000000000000a, IRQL
    Arg3: 0000000000000000, value 0 = read operation, 1 = write operation
    Arg4: fffff8800f88238f, address which referenced memory
    Debugging Details:
    READ_ADDRESS: GetPointerFromAddress: unable to read from fffff800034c0100
    GetUlongFromAddress: unable to read from fffff800034c01c0
    00000000000000e1 Nonpaged pool
    CURRENT_IRQL: a
    FAULTING_IP:
    nvlddmkm+738f
    fffff880`0f88238f 4c8bb8e0000000 mov r15,qword ptr [rax+0E0h]
    CUSTOMER_CRASH_COUNT: 1
    DEFAULT_BUCKET_ID: WIN7_DRIVER_FAULT
    BUGCHECK_STR: 0xD1
    PROCESS_NAME: System
    ANALYSIS_VERSION: 6.3.9600.16384 (debuggers(dbg).130821-1623) amd64fre
    DPC_STACK_BASE: FFFFF80000BA2FB0
    TRAP_FRAME: fffff80000b9bf70 -- (.trap 0xfffff80000b9bf70)
    NOTE: The trap frame does not contain all registers.
    Some register values may be zeroed or incorrect.
    rax=0000000000000001 rbx=0000000000000000 rcx=fffffa80146d7000
    rdx=fffff80000b9c4f8 rsi=0000000000000000 rdi=0000000000000000
    rip=fffff8800f88238f rsp=fffff80000b9c100 rbp=fffff80000b9c200
    r8=0000000000000000 r9=0000000000000000 r10=0000000000000001
    r11=0000000000000002 r12=0000000000000000 r13=0000000000000000
    r14=0000000000000000 r15=0000000000000000
    iopl=0 nv up ei pl nz na pe nc
    nvlddmkm+0x738f:
    fffff880`0f88238f 4c8bb8e0000000 mov r15,qword ptr [rax+0E0h] ds:00000000`000000e1=????????????????
    Resetting default scope
    LAST_CONTROL_TRANSFER: from fffff80003288169 to fffff80003288bc0
    STACK_TEXT:
    fffff800`00b9be28 fffff800`03288169 : 00000000`0000000a 00000000`000000e1 00000000`0000000a 00000000`00000000 : nt!KeBugCheckEx
    fffff800`00b9be30 fffff800`03286de0 : 00000001`0000000f 00000002`00000001 00000000`00000003 00000000`00000000 : nt!KiBugCheckDispatch+0x69
    fffff800`00b9bf70 fffff880`0f88238f : 00000438`00000780 00000000`00000000 fffff800`00b9c200 00000000`00000000 : nt!KiPageFault+0x260
    fffff800`00b9c100 00000438`00000780 : 00000000`00000000 fffff800`00b9c200 00000000`00000000 fffffa80`25306640 : nvlddmkm+0x738f
    fffff800`00b9c108 00000000`00000000 : fffff800`00b9c200 00000000`00000000 fffffa80`25306640 fffff880`03974180 : 0x00000438`00000780
    STACK_COMMAND: kb
    FOLLOWUP_IP:
    nvlddmkm+738f
    fffff880`0f88238f 4c8bb8e0000000 mov r15,qword ptr [rax+0E0h]
    SYMBOL_STACK_INDEX: 3
    SYMBOL_NAME: nvlddmkm+738f
    FOLLOWUP_NAME: MachineOwner
    MODULE_NAME: nvlddmkm
    IMAGE_NAME: nvlddmkm.sys
    DEBUG_FLR_IMAGE_TIMESTAMP: 5280da75
    FAILURE_BUCKET_ID: X64_0xD1_nvlddmkm+738f
    BUCKET_ID: X64_0xD1_nvlddmkm+738f
    ANALYSIS_SOURCE: KM
    FAILURE_ID_HASH_STRING: km:x64_0xd1_nvlddmkm+738f
    Wanikiya and Dyami--Team Zigzag

  • "error: command failed to execute correctly" on several packages

    Last night, when I updated before shutting down, I got a few errors, as in the subject. As it was very late, I thought I'd pick it up today.
    Unfortunately, the pacman log only lists one of the ones that failed as libgpg-error. The other one that I remember erroring was gawk. There were a few others, maybe four or five, but I couln't reliably recall them all, so won't guess.
    Here's a new attempt to reinstall gawk with --debug. I did the same with libgpg-error and the error occurred at the same place, with very similar output, so I think the issue is the same for all failures.
    debug: pacman v4.2.1 - libalpm v9.0.1
    debug: parseconfig: options pass
    debug: config: attempting to read file /etc/pacman.conf
    debug: config: finish section '(null)'
    debug: config: new section 'options'
    debug: config: HoldPkg: pacman
    debug: config: HoldPkg: glibc
    debug: config: usedelta (default 0.7)
    debug: config: arch: x86_64
    debug: config: verbosepkglists
    debug: config: chomp
    debug: config: SigLevel: Required
    debug: config: SigLevel: DatabaseOptional
    debug: config: SigLevel: TrustedOnly
    debug: config: LocalFileSigLevel: Optional
    debug: config: finish section 'options'
    debug: config: new section 'core'
    debug: config file /etc/pacman.conf, line 78: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'core'
    debug: config: new section 'extra'
    debug: config file /etc/pacman.conf, line 81: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'extra'
    debug: config: new section 'xyne-x86_64'
    debug: config: finish section 'xyne-x86_64'
    debug: config: new section 'community'
    debug: config file /etc/pacman.conf, line 91: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'community'
    debug: config: new section 'multilib'
    debug: config file /etc/pacman.conf, line 100: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'multilib'
    debug: config: new section 'infinality-bundle'
    debug: config: finish section 'infinality-bundle'
    debug: config: new section 'infinality-bundle-multilib'
    debug: config: finish section 'infinality-bundle-multilib'
    debug: config: new section 'infinality-bundle-fonts'
    debug: config: finish section 'infinality-bundle-fonts'
    debug: config: new section '(null)'
    debug: config: finished parsing /etc/pacman.conf
    debug: setup_libalpm called
    debug: option 'logfile' = /var/log/pacman.log
    debug: option 'gpgdir' = /etc/pacman.d/gnupg/
    debug: option 'cachedir' = /var/cache/pacman/pkg/
    debug: parseconfig: repo pass
    debug: config: attempting to read file /etc/pacman.conf
    debug: config: finish section '(null)'
    debug: config: new section 'options'
    debug: config: finish section 'options'
    debug: config: new section 'core'
    debug: config file /etc/pacman.conf, line 78: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'core'
    debug: registering sync database 'core'
    debug: database path for tree core set to /var/lib/pacman/sync/core.db
    debug: "/var/lib/pacman/sync/core.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/core.db.sig could not be opened
    debug: missing optional signature
    debug: setting usage of 15 for core repoistory
    debug: adding new server URL to database 'core': http://arch.tamcore.eu/core/os/x86_64
    debug: adding new server URL to database 'core': http://mirror.one.com/archlinux/core/os/x86_64
    debug: adding new server URL to database 'core': http://mirror.gnomus.de/core/os/x86_64
    debug: adding new server URL to database 'core': http://mirror.js-webcoding.de/pub/archlinux/core/os/x86_64
    debug: adding new server URL to database 'core': http://archlinux.polymorf.fr/core/os/x86_64
    debug: config: new section 'extra'
    debug: config file /etc/pacman.conf, line 81: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'extra'
    debug: registering sync database 'extra'
    debug: database path for tree extra set to /var/lib/pacman/sync/extra.db
    debug: "/var/lib/pacman/sync/extra.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/extra.db.sig could not be opened
    debug: missing optional signature
    debug: setting usage of 15 for extra repoistory
    debug: adding new server URL to database 'extra': http://arch.tamcore.eu/extra/os/x86_64
    debug: adding new server URL to database 'extra': http://mirror.one.com/archlinux/extra/os/x86_64
    debug: adding new server URL to database 'extra': http://mirror.gnomus.de/extra/os/x86_64
    debug: adding new server URL to database 'extra': http://mirror.js-webcoding.de/pub/archlinux/extra/os/x86_64
    debug: adding new server URL to database 'extra': http://archlinux.polymorf.fr/extra/os/x86_64
    debug: config: new section 'xyne-x86_64'
    debug: config: SigLevel: Required
    debug: config: finish section 'xyne-x86_64'
    debug: registering sync database 'xyne-x86_64'
    debug: database path for tree xyne-x86_64 set to /var/lib/pacman/sync/xyne-x86_64.db
    debug: GPGME version: 1.5.4
    debug: GPGME engine info: file=/usr/bin/gpg2, home=/etc/pacman.d/gnupg/
    debug: checking signature for /var/lib/pacman/sync/xyne-x86_64.db
    debug: 1 signatures returned
    debug: fingerprint: EC3CBE7F607D11E663149E811D1F0DC78F173680
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1430676813
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: EC3CBE7F607D11E663149E811D1F0DC78F173680, Xyne. (key #3) <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: setting usage of 15 for xyne-x86_64 repoistory
    debug: adding new server URL to database 'xyne-x86_64': http://xyne.archlinux.ca/repos/xyne
    debug: config: new section 'community'
    debug: config file /etc/pacman.conf, line 91: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'community'
    debug: registering sync database 'community'
    debug: database path for tree community set to /var/lib/pacman/sync/community.db
    debug: "/var/lib/pacman/sync/community.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/community.db.sig could not be opened
    debug: missing optional signature
    debug: setting usage of 15 for community repoistory
    debug: adding new server URL to database 'community': http://arch.tamcore.eu/community/os/x86_64
    debug: adding new server URL to database 'community': http://mirror.one.com/archlinux/community/os/x86_64
    debug: adding new server URL to database 'community': http://mirror.gnomus.de/community/os/x86_64
    debug: adding new server URL to database 'community': http://mirror.js-webcoding.de/pub/archlinux/community/os/x86_64
    debug: adding new server URL to database 'community': http://archlinux.polymorf.fr/community/os/x86_64
    debug: config: new section 'multilib'
    debug: config file /etc/pacman.conf, line 100: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'multilib'
    debug: registering sync database 'multilib'
    debug: database path for tree multilib set to /var/lib/pacman/sync/multilib.db
    debug: "/var/lib/pacman/sync/multilib.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/multilib.db.sig could not be opened
    debug: missing optional signature
    debug: setting usage of 15 for multilib repoistory
    debug: adding new server URL to database 'multilib': http://arch.tamcore.eu/multilib/os/x86_64
    debug: adding new server URL to database 'multilib': http://mirror.one.com/archlinux/multilib/os/x86_64
    debug: adding new server URL to database 'multilib': http://mirror.gnomus.de/multilib/os/x86_64
    debug: adding new server URL to database 'multilib': http://mirror.js-webcoding.de/pub/archlinux/multilib/os/x86_64
    debug: adding new server URL to database 'multilib': http://archlinux.polymorf.fr/multilib/os/x86_64
    debug: config: new section 'infinality-bundle'
    debug: config: finish section 'infinality-bundle'
    debug: registering sync database 'infinality-bundle'
    debug: database path for tree infinality-bundle set to /var/lib/pacman/sync/infinality-bundle.db
    debug: checking signature for /var/lib/pacman/sync/infinality-bundle.db
    debug: 1 signatures returned
    debug: fingerprint: A9244FB5E93F11F0E975337FAE6866C7962DDE58
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1430276639
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: A9244FB5E93F11F0E975337FAE6866C7962DDE58, bohoomil (dev key) <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: setting usage of 15 for infinality-bundle repoistory
    debug: adding new server URL to database 'infinality-bundle': http://bohoomil.com/repo/x86_64
    debug: config: new section 'infinality-bundle-multilib'
    debug: config: finish section 'infinality-bundle-multilib'
    debug: registering sync database 'infinality-bundle-multilib'
    debug: database path for tree infinality-bundle-multilib set to /var/lib/pacman/sync/infinality-bundle-multilib.db
    debug: checking signature for /var/lib/pacman/sync/infinality-bundle-multilib.db
    debug: 1 signatures returned
    debug: fingerprint: A9244FB5E93F11F0E975337FAE6866C7962DDE58
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1430087321
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: A9244FB5E93F11F0E975337FAE6866C7962DDE58, bohoomil (dev key) <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: setting usage of 15 for infinality-bundle-multilib repoistory
    debug: adding new server URL to database 'infinality-bundle-multilib': http://bohoomil.com/repo/multilib/x86_64
    debug: config: new section 'infinality-bundle-fonts'
    debug: config: finish section 'infinality-bundle-fonts'
    debug: registering sync database 'infinality-bundle-fonts'
    debug: database path for tree infinality-bundle-fonts set to /var/lib/pacman/sync/infinality-bundle-fonts.db
    debug: checking signature for /var/lib/pacman/sync/infinality-bundle-fonts.db
    debug: 1 signatures returned
    debug: fingerprint: A9244FB5E93F11F0E975337FAE6866C7962DDE58
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1430276566
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: A9244FB5E93F11F0E975337FAE6866C7962DDE58, bohoomil (dev key) <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    debug: setting usage of 15 for infinality-bundle-fonts repoistory
    debug: adding new server URL to database 'infinality-bundle-fonts': http://bohoomil.com/repo/fonts
    debug: config: new section '(null)'
    debug: config: finished parsing /etc/pacman.conf
    debug: loading package cache for repository 'core'
    debug: opening archive /var/lib/pacman/sync/core.db
    debug: added 208 packages to package cache for db 'core'
    debug: adding package 'gawk'
    debug: loading package cache for repository 'local'
    debug: added 1122 packages to package cache for db 'local'
    warning: gawk-4.1.2-1 is up to date -- reinstalling
    debug: adding package gawk-4.1.2-1 to the transaction add list
    resolving dependencies...
    debug: resolving target's dependencies
    debug: started resolving dependencies
    debug: checkdeps: package gawk-4.1.2-1
    debug: finished resolving dependencies
    looking for conflicting packages...
    debug: looking for conflicts
    debug: check targets vs targets
    debug: check targets vs targets
    debug: check targets vs db and db vs targets
    debug: check targets vs db
    debug: check db vs targets
    debug: checking dependencies
    debug: checkdeps: package gawk-4.1.2-1
    debug: found cached pkg: /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: setting download size 0 for pkg gawk
    debug: sorting by dependencies
    debug: started sorting dependencies
    debug: sorting dependencies finished
    Package (1) Old Version New Version Net Change
    core/gawk 4.1.2-1 4.1.2-1 0.00 MiB
    Total Installed Size: 2.19 MiB
    Net Upgrade Size: 0.00 MiB
    :: Proceed with installation? [Y/n] y
    debug: using cachedir: /var/cache/pacman/pkg/
    debug: using cachedir: /var/cache/pacman/pkg/
    checking keyring...
    debug: looking up key 771DF6627EDF681F locally
    debug: key lookup success, key exists
    checking package integrity...
    debug: found cached pkg: /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: sig data: iQEcBAABCAAGBQJVQNc+AAoJEHcd9mJ+32gfQZgH/jkRiirmPTb4nE0xgcFGKc8wrxw3k9ooGyMFoeqAthTICB/5dBzNfEQ8b4X74gi8KiYQVYm4WE8kWIidUj5ekJhGwngO6Gk+lwyBq+Uh8rUHDJKw557fImM2bBah2lxNUxqZzxYTA1FByq2lptLB5EPJgAPemyUXACMXITDfqtWMpuHIEPLZi5WW9+cB0eMKz5IeEEfZi4lO2fyfRqxNkRDNSmC5NEDkfhm+XVXBEd4gugSOmYpKzlA67mjw2HP+oOyNheL8st4SjgFr/qVDdbfiBbaTTujC4mF1n73z5qp4K5/xgHqk42ftoo003XFQYVOAg3bDWMvUF5d63D4+HKg=
    debug: checking signature for /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: 1 signatures returned
    debug: fingerprint: 5B7E3FB71B7F10329A1C03AB771DF6627EDF681F
    debug: summary: valid
    debug: summary: green
    debug: status: Success
    debug: timestamp: 1430312766
    debug: exp_timestamp: 0
    debug: validity: full; reason: Success
    debug: key: 5B7E3FB71B7F10329A1C03AB771DF6627EDF681F, Tobias Powalowski <[email protected]>, owner_trust unknown, disabled 0
    debug: signature is valid
    debug: signature is fully trusted
    loading package files...
    debug: found cached pkg: /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: replacing pkgcache entry with package file for target gawk
    debug: opening archive /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: starting package load for /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: found mtree for package /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz, getting file list
    debug: finished mtree reading for /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: sorting package filelist for /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    checking for file conflicts...
    debug: looking for file conflicts
    debug: searching for file conflicts: gawk
    debug: searching for filesystem conflicts: gawk
    checking available disk space...
    debug: checking available disk space
    debug: discovered mountpoint: /tmp
    debug: discovered mountpoint: /sys/kernel/security
    debug: discovered mountpoint: /sys/kernel/debug
    debug: discovered mountpoint: /sys/kernel/config
    debug: discovered mountpoint: /sys/fs/pstore
    debug: discovered mountpoint: /sys/fs/cgroup/systemd
    debug: discovered mountpoint: /sys/fs/cgroup/net_cls
    debug: discovered mountpoint: /sys/fs/cgroup/memory
    debug: discovered mountpoint: /sys/fs/cgroup/freezer
    debug: discovered mountpoint: /sys/fs/cgroup/devices
    debug: discovered mountpoint: /sys/fs/cgroup/cpuset
    debug: discovered mountpoint: /sys/fs/cgroup/cpu,cpuacct
    debug: discovered mountpoint: /sys/fs/cgroup/blkio
    debug: discovered mountpoint: /sys/fs/cgroup
    debug: discovered mountpoint: /sys
    debug: discovered mountpoint: /run/user/1000
    debug: discovered mountpoint: /run
    debug: discovered mountpoint: /proc/sys/fs/binfmt_misc
    debug: discovered mountpoint: /proc
    debug: discovered mountpoint: /home/skanky/personal
    debug: discovered mountpoint: /home
    debug: discovered mountpoint: /dev/shm
    debug: discovered mountpoint: /dev/pts
    debug: discovered mountpoint: /dev/mqueue
    debug: discovered mountpoint: /dev/hugepages
    debug: discovered mountpoint: /dev
    debug: discovered mountpoint: /
    debug: loading fsinfo for /
    debug: partition /, needed 0, cushion 5121, free 1174711
    debug: installing packages
    reinstalling gawk...
    debug: reinstalling package gawk-4.1.2-1
    debug: opening archive /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: extracting: .INSTALL
    debug: removing old package first (gawk-4.1.2-1)
    debug: removing 110 files
    debug: unlinking /usr/share/man/man3/time.3am.gz
    debug: unlinking /usr/share/man/man3/rwarray.3am.gz
    debug: unlinking /usr/share/man/man3/revtwoway.3am.gz
    debug: unlinking /usr/share/man/man3/revoutput.3am.gz
    debug: unlinking /usr/share/man/man3/readfile.3am.gz
    debug: unlinking /usr/share/man/man3/readdir.3am.gz
    debug: unlinking /usr/share/man/man3/ordchr.3am.gz
    debug: unlinking /usr/share/man/man3/inplace.3am.gz
    debug: unlinking /usr/share/man/man3/fork.3am.gz
    debug: unlinking /usr/share/man/man3/fnmatch.3am.gz
    debug: unlinking /usr/share/man/man3/filefuncs.3am.gz
    debug: keeping directory /usr/share/man/man3/ (contains files)
    debug: unlinking /usr/share/man/man1/igawk.1.gz
    debug: unlinking /usr/share/man/man1/gawk.1.gz
    debug: keeping directory /usr/share/man/man1/ (contains files)
    debug: keeping directory /usr/share/man/ (contains files)
    debug: unlinking /usr/share/locale/vi/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/vi/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/vi/ (contains files)
    debug: unlinking /usr/share/locale/sv/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/sv/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/sv/ (contains files)
    debug: unlinking /usr/share/locale/pl/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/pl/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/pl/ (contains files)
    debug: unlinking /usr/share/locale/nl/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/nl/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/nl/ (contains files)
    debug: unlinking /usr/share/locale/ms/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/ms/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/ms/ (contains files)
    debug: unlinking /usr/share/locale/ja/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/ja/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/ja/ (contains files)
    debug: unlinking /usr/share/locale/it/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/it/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/it/ (contains files)
    debug: unlinking /usr/share/locale/fr/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/fr/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/fr/ (contains files)
    debug: unlinking /usr/share/locale/fi/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/fi/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/fi/ (contains files)
    debug: unlinking /usr/share/locale/es/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/es/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/es/ (contains files)
    debug: unlinking /usr/share/locale/de/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/de/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/de/ (contains files)
    debug: unlinking /usr/share/locale/da/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/da/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/da/ (contains files)
    debug: unlinking /usr/share/locale/ca/LC_MESSAGES/gawk.mo
    debug: keeping directory /usr/share/locale/ca/LC_MESSAGES/ (contains files)
    debug: keeping directory /usr/share/locale/ca/ (contains files)
    debug: keeping directory /usr/share/locale/ (contains files)
    debug: unlinking /usr/share/info/gawkinet.info.gz
    debug: unlinking /usr/share/info/gawk.info.gz
    debug: keeping directory /usr/share/info/ (contains files)
    debug: unlinking /usr/share/awk/zerofile.awk
    debug: unlinking /usr/share/awk/walkarray.awk
    debug: unlinking /usr/share/awk/strtonum.awk
    debug: unlinking /usr/share/awk/shellquote.awk
    debug: unlinking /usr/share/awk/round.awk
    debug: unlinking /usr/share/awk/rewind.awk
    debug: unlinking /usr/share/awk/readfile.awk
    debug: unlinking /usr/share/awk/readable.awk
    debug: unlinking /usr/share/awk/quicksort.awk
    debug: unlinking /usr/share/awk/processarray.awk
    debug: unlinking /usr/share/awk/passwd.awk
    debug: unlinking /usr/share/awk/ord.awk
    debug: unlinking /usr/share/awk/noassign.awk
    debug: unlinking /usr/share/awk/libintl.awk
    debug: unlinking /usr/share/awk/join.awk
    debug: unlinking /usr/share/awk/inplace.awk
    debug: unlinking /usr/share/awk/group.awk
    debug: unlinking /usr/share/awk/gettime.awk
    debug: unlinking /usr/share/awk/getopt.awk
    debug: unlinking /usr/share/awk/ftrans.awk
    debug: unlinking /usr/share/awk/ctime.awk
    debug: unlinking /usr/share/awk/cliff_rand.awk
    debug: unlinking /usr/share/awk/bits2str.awk
    debug: unlinking /usr/share/awk/assert.awk
    debug: keeping directory /usr/share/awk/ (in new package)
    debug: keeping directory /usr/share/ (contains files)
    debug: unlinking /usr/lib/gawk/time.so
    debug: unlinking /usr/lib/gawk/testext.so
    debug: unlinking /usr/lib/gawk/rwarray.so
    debug: unlinking /usr/lib/gawk/revtwoway.so
    debug: unlinking /usr/lib/gawk/revoutput.so
    debug: unlinking /usr/lib/gawk/readfile.so
    debug: unlinking /usr/lib/gawk/readdir.so
    debug: unlinking /usr/lib/gawk/ordchr.so
    debug: unlinking /usr/lib/gawk/inplace.so
    debug: unlinking /usr/lib/gawk/fork.so
    debug: unlinking /usr/lib/gawk/fnmatch.so
    debug: unlinking /usr/lib/gawk/filefuncs.so
    debug: keeping directory /usr/lib/gawk/ (in new package)
    debug: unlinking /usr/lib/awk/pwcat
    debug: unlinking /usr/lib/awk/grcat
    debug: keeping directory /usr/lib/awk/ (in new package)
    debug: keeping directory /usr/lib/ (contains files)
    debug: unlinking /usr/include/gawkapi.h
    debug: keeping directory /usr/include/ (contains files)
    debug: unlinking /usr/bin/igawk
    debug: unlinking /usr/bin/gawk-4.1.2
    debug: unlinking /usr/bin/gawk
    debug: unlinking /usr/bin/awk
    debug: keeping directory /usr/bin/ (contains files)
    debug: keeping directory /usr/ (contains files)
    debug: removing database entry 'gawk'
    debug: removing entry 'gawk' from 'local' cache
    debug: extracting files
    debug: opening archive /var/cache/pacman/pkg/gawk-4.1.2-1-x86_64.pkg.tar.xz
    debug: skipping extraction of '.PKGINFO'
    debug: extracting /var/lib/pacman/local/gawk-4.1.2-1/install
    debug: extracting /var/lib/pacman/local/gawk-4.1.2-1/mtree
    debug: extract: skipping dir extraction of /usr/
    debug: extract: skipping dir extraction of /usr/lib/
    debug: extract: skipping dir extraction of /usr/share/
    debug: extract: skipping dir extraction of /usr/include/
    debug: extract: skipping dir extraction of /usr/bin/
    debug: extracting /usr/bin/igawk
    debug: extracting /usr/bin/awk
    debug: extracting /usr/bin/gawk-4.1.2
    debug: extracting /usr/bin/gawk
    debug: extracting /usr/include/gawkapi.h
    debug: extract: skipping dir extraction of /usr/share/locale/
    debug: extract: skipping dir extraction of /usr/share/awk/
    debug: extract: skipping dir extraction of /usr/share/info/
    debug: extract: skipping dir extraction of /usr/share/man/
    debug: extract: skipping dir extraction of /usr/share/man/man3/
    debug: extract: skipping dir extraction of /usr/share/man/man1/
    debug: extracting /usr/share/man/man1/gawk.1.gz
    debug: extracting /usr/share/man/man1/igawk.1.gz
    debug: extracting /usr/share/man/man3/filefuncs.3am.gz
    debug: extracting /usr/share/man/man3/fnmatch.3am.gz
    debug: extracting /usr/share/man/man3/fork.3am.gz
    debug: extracting /usr/share/man/man3/inplace.3am.gz
    debug: extracting /usr/share/man/man3/ordchr.3am.gz
    debug: extracting /usr/share/man/man3/readdir.3am.gz
    debug: extracting /usr/share/man/man3/readfile.3am.gz
    debug: extracting /usr/share/man/man3/revoutput.3am.gz
    debug: extracting /usr/share/man/man3/revtwoway.3am.gz
    debug: extracting /usr/share/man/man3/rwarray.3am.gz
    debug: extracting /usr/share/man/man3/time.3am.gz
    debug: extracting /usr/share/info/gawk.info.gz
    debug: extracting /usr/share/info/gawkinet.info.gz
    debug: extracting /usr/share/awk/zerofile.awk
    debug: extracting /usr/share/awk/walkarray.awk
    debug: extracting /usr/share/awk/strtonum.awk
    debug: extracting /usr/share/awk/shellquote.awk
    debug: extracting /usr/share/awk/round.awk
    debug: extracting /usr/share/awk/rewind.awk
    debug: extracting /usr/share/awk/readfile.awk
    debug: extracting /usr/share/awk/readable.awk
    debug: extracting /usr/share/awk/quicksort.awk
    debug: extracting /usr/share/awk/processarray.awk
    debug: extracting /usr/share/awk/ord.awk
    debug: extracting /usr/share/awk/noassign.awk
    debug: extracting /usr/share/awk/libintl.awk
    debug: extracting /usr/share/awk/join.awk
    debug: extracting /usr/share/awk/inplace.awk
    debug: extracting /usr/share/awk/gettime.awk
    debug: extracting /usr/share/awk/getopt.awk
    debug: extracting /usr/share/awk/ftrans.awk
    debug: extracting /usr/share/awk/ctime.awk
    debug: extracting /usr/share/awk/cliff_rand.awk
    debug: extracting /usr/share/awk/bits2str.awk
    debug: extracting /usr/share/awk/assert.awk
    debug: extracting /usr/share/awk/group.awk
    debug: extracting /usr/share/awk/passwd.awk
    debug: extract: skipping dir extraction of /usr/share/locale/vi/
    debug: extract: skipping dir extraction of /usr/share/locale/sv/
    debug: extract: skipping dir extraction of /usr/share/locale/pl/
    debug: extract: skipping dir extraction of /usr/share/locale/nl/
    debug: extract: skipping dir extraction of /usr/share/locale/ms/
    debug: extract: skipping dir extraction of /usr/share/locale/ja/
    debug: extract: skipping dir extraction of /usr/share/locale/it/
    debug: extract: skipping dir extraction of /usr/share/locale/fr/
    debug: extract: skipping dir extraction of /usr/share/locale/fi/
    debug: extract: skipping dir extraction of /usr/share/locale/es/
    debug: extract: skipping dir extraction of /usr/share/locale/de/
    debug: extract: skipping dir extraction of /usr/share/locale/da/
    debug: extract: skipping dir extraction of /usr/share/locale/ca/
    debug: extract: skipping dir extraction of /usr/share/locale/ca/LC_MESSAGES/
    debug: extracting /usr/share/locale/ca/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/da/LC_MESSAGES/
    debug: extracting /usr/share/locale/da/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/de/LC_MESSAGES/
    debug: extracting /usr/share/locale/de/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/es/LC_MESSAGES/
    debug: extracting /usr/share/locale/es/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/fi/LC_MESSAGES/
    debug: extracting /usr/share/locale/fi/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/fr/LC_MESSAGES/
    debug: extracting /usr/share/locale/fr/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/it/LC_MESSAGES/
    debug: extracting /usr/share/locale/it/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/ja/LC_MESSAGES/
    debug: extracting /usr/share/locale/ja/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/ms/LC_MESSAGES/
    debug: extracting /usr/share/locale/ms/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/nl/LC_MESSAGES/
    debug: extracting /usr/share/locale/nl/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/pl/LC_MESSAGES/
    debug: extracting /usr/share/locale/pl/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/sv/LC_MESSAGES/
    debug: extracting /usr/share/locale/sv/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/share/locale/vi/LC_MESSAGES/
    debug: extracting /usr/share/locale/vi/LC_MESSAGES/gawk.mo
    debug: extract: skipping dir extraction of /usr/lib/gawk/
    debug: extract: skipping dir extraction of /usr/lib/awk/
    debug: extracting /usr/lib/awk/pwcat
    debug: extracting /usr/lib/awk/grcat
    debug: extracting /usr/lib/gawk/filefuncs.so
    debug: extracting /usr/lib/gawk/fnmatch.so
    debug: extracting /usr/lib/gawk/fork.so
    debug: extracting /usr/lib/gawk/inplace.so
    debug: extracting /usr/lib/gawk/ordchr.so
    debug: extracting /usr/lib/gawk/readdir.so
    debug: extracting /usr/lib/gawk/readfile.so
    debug: extracting /usr/lib/gawk/revoutput.so
    debug: extracting /usr/lib/gawk/revtwoway.so
    debug: extracting /usr/lib/gawk/rwarray.so
    debug: extracting /usr/lib/gawk/testext.so
    debug: extracting /usr/lib/gawk/time.so
    debug: updating database
    debug: adding database entry 'gawk'
    debug: writing gawk-4.1.2-1 DESC information back to db
    debug: writing gawk-4.1.2-1 FILES information back to db
    debug: adding entry 'gawk' in 'local' cache
    debug: executing ". /tmp/alpm_r21DA5/.INSTALL; post_upgrade 4.1.2-1 4.1.2-1"
    debug: executing "/usr/bin/bash" under chroot "/"
    debug: call to waitpid succeeded
    error: command failed to execute correctly
    debug: running ldconfig
    debug: executing "/usr/bin/ldconfig" under chroot "/"
    debug: call to waitpid succeeded
    debug: unregistering database 'local'
    debug: freeing package cache for repository 'local'
    debug: unregistering database 'core'
    debug: freeing package cache for repository 'core'
    debug: unregistering database 'extra'
    debug: unregistering database 'xyne-x86_64'
    debug: unregistering database 'community'
    debug: unregistering database 'multilib'
    debug: unregistering database 'infinality-bundle'
    debug: unregistering database 'infinality-bundle-multilib'
    debug: unregistering database 'infinality-bundle-fonts'
    pacman thinks the upgrade/reinstall was successful in that the latest version is installed.
    I did a search on the forums and the only other issue that I thought was connected might be microcode not up to date, but I had followed the update instructions some time back and as far as I can tell, the microcode  is up to date.
    I have two main questions:
    1) How do I work out what's causing the error, from above?
    2) Is there a way I can work out which packages gave the error, so I can make sure they're installed properly?
    Thanks.

    The following packages also had problems
    ( 2/17) upgrading glibc
    error: command failed to execute correctly
    ( 3/17) upgrading binutils
    error: command failed to execute correctly
    ( 4/17) upgrading coreutils
    error: command failed to execute correctly
    ( 8/17) upgrading gcc
    error: command failed to execute correctly
    ( 9/17) upgrading gcc-fortran
    error: command failed to execute correctly
    (10/17) upgrading gcc-libs
    error: command failed to execute correctly
    Does anybody have a clue?
    Thanks,

  • Windows Server 2008 R2 BSOD Various Messages

    Hello All,
    I've got a Windows Server 2008 R2 that's bluescreened twice in a month. Both times different stop error code. Running on a HP DL360 in Proxmox virtual environment. Below are the two dump outputs:
    Microsoft (R) Windows Debugger Version 6.12.0002.633 AMD64
    Copyright (c) Microsoft Corporation. All rights reserved.
    Loading Dump File [C:\Users\Denis.Maybir\Desktop\USTBSOD\021015-10078-01.dmp]
    Mini Kernel Dump File: Only registers and stack trace are available
    Symbol search path is: SRV*c:\symbols*http://msdl.microsoft.com/download/symbols
    Executable search path is: 
    Windows 7 Kernel Version 7601 (Service Pack 1) MP (4 procs) Free x64
    Product: Server, suite: TerminalServer
    Built by: 7601.18409.amd64fre.win7sp1_gdr.140303-2144
    Machine Name:
    Kernel base = 0xfffff800`01650000 PsLoadedModuleList = 0xfffff800`01893890
    Debug session time: Tue Feb 10 00:51:00.633 2015 (UTC + 10:00)
    System Uptime: 4 days 3:05:32.166
    Loading Kernel Symbols
    Loading User Symbols
    Loading unloaded module list
    *                        Bugcheck Analysis                                    *
    Use !analyze -v to get detailed debugging information.
    BugCheck A, {fffff6fb40001de8, 0, 0, fffff800016f8dbc}
    Probably caused by : memory_corruption ( nt!MiDeletePageTableHierarchy+9c )
    Followup: MachineOwner
    1: kd> !analyze -v
    *                        Bugcheck Analysis                                    *
    IRQL_NOT_LESS_OR_EQUAL (a)
    An attempt was made to access a pageable (or completely invalid) address at an
    interrupt request level (IRQL) that is too high.  This is usually
    caused by drivers using improper addresses.
    If a kernel debugger is available get the stack backtrace.
    Arguments:
    Arg1: fffff6fb40001de8, memory referenced
    Arg2: 0000000000000000, IRQL
    Arg3: 0000000000000000, bitfield :
    bit 0 : value 0 = read operation, 1 = write operation
    bit 3 : value 0 = not an execute operation, 1 = execute operation (only on chips which support this level of status)
    Arg4: fffff800016f8dbc, address which referenced memory
    Debugging Details:
    READ_ADDRESS: GetPointerFromAddress: unable to read from fffff800018fd100
     fffff6fb40001de8 
    CURRENT_IRQL:  0
    FAULTING_IP: 
    nt!MiDeletePageTableHierarchy+9c
    fffff800`016f8dbc 498b06          mov     rax,qword ptr [r14]
    CUSTOMER_CRASH_COUNT:  1
    DEFAULT_BUCKET_ID:  DRIVER_FAULT_SERVER_MINIDUMP
    BUGCHECK_STR:  0xA
    PROCESS_NAME:  GoogleUpdate.e
    TRAP_FRAME:  fffff88007a81f00 -- (.trap 0xfffff88007a81f00)
    NOTE: The trap frame does not contain all registers.
    Some register values may be zeroed or incorrect.
    rax=0000000077a00000 rbx=0000000000000000 rcx=0000000fffffffff
    rdx=0000058000000000 rsi=0000000000000000 rdi=0000000000000000
    rip=fffff800016f8dbc rsp=fffff88007a82090 rbp=fffffa8006f41210
     r8=0000007ffffffff8  r9=0000098000000000 r10=fffffa8005401bc0
    r11=fffff88007a82170 r12=0000000000000000 r13=0000000000000000
    r14=0000000000000000 r15=0000000000000000
    iopl=0         nv up ei ng nz na po cy
    nt!MiDeletePageTableHierarchy+0x9c:
    fffff800`016f8dbc 498b06          mov     rax,qword ptr [r14] ds:00000000`00000000=????????????????
    Resetting default scope
    LAST_CONTROL_TRANSFER:  from fffff800016c5169 to fffff800016c5bc0
    STACK_TEXT:  
    fffff880`07a81db8 fffff800`016c5169 : 00000000`0000000a fffff6fb`40001de8 00000000`00000000 00000000`00000000 : nt!KeBugCheckEx
    fffff880`07a81dc0 fffff800`016c3de0 : 00000000`00000000 fffff6fb`40001de8 fffff880`07a82b00 00000000`00000000 : nt!KiBugCheckDispatch+0x69
    fffff880`07a81f00 fffff800`016f8dbc : fffffa80`0428b740 00000000`00000001 fffffa80`00e8f590 fffff6fb`40001000 : nt!KiPageFault+0x260
    fffff880`07a82090 fffff800`016958b6 : fffff700`01080518 fffffa80`06f415a8 fffff700`01080000 fffff8a0`000f8630 : nt!MiDeletePageTableHierarchy+0x9c
    fffff880`07a821a0 fffff800`01696892 : fffffa80`06f41210 fffffa80`0000003d fffff8a0`00000011 00000000`00000000 : nt!MiDeleteAddressesInWorkingSet+0x3fb
    fffff880`07a82a50 fffff800`0199b05a : fffff8a0`0eb74060 00000000`00000001 00000000`00000000 fffffa80`06f4b060 : nt!MmCleanProcessAddressSpace+0x96
    fffff880`07a82aa0 fffff800`0197df48 : 00000000`c0000005 00000000`00000001 00000000`7efdb000 00000000`00000000 : nt!PspExitThread+0x56a
    fffff880`07a82ba0 fffff800`016c4e53 : fffffa80`06f41210 00000000`c0000005 fffffa80`06f4b060 00000000`7efdf000 : nt!NtTerminateProcess+0x138
    fffff880`07a82c20 00000000`77a4157a : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiSystemServiceCopyEnd+0x13
    00000000`001df018 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : 0x77a4157a
    STACK_COMMAND:  kb
    FOLLOWUP_IP: 
    nt!MiDeletePageTableHierarchy+9c
    fffff800`016f8dbc 498b06          mov     rax,qword ptr [r14]
    SYMBOL_STACK_INDEX:  3
    SYMBOL_NAME:  nt!MiDeletePageTableHierarchy+9c
    FOLLOWUP_NAME:  MachineOwner
    MODULE_NAME: nt
    DEBUG_FLR_IMAGE_TIMESTAMP:  531590fb
    IMAGE_NAME:  memory_corruption
    FAILURE_BUCKET_ID:  X64_0xA_nt!MiDeletePageTableHierarchy+9c
    BUCKET_ID:  X64_0xA_nt!MiDeletePageTableHierarchy+9c
    Followup: MachineOwner
    Microsoft (R) Windows Debugger Version 6.12.0002.633 AMD64
    Copyright (c) Microsoft Corporation. All rights reserved.
    Loading Dump File [C:\Users\Denis.Maybir\Desktop\USTBSOD\012215-11078-01.dmp]
    Mini Kernel Dump File: Only registers and stack trace are available
    Symbol search path is: SRV*c:\symbols*http://msdl.microsoft.com/download/symbols
    Executable search path is: 
    Windows 7 Kernel Version 7601 (Service Pack 1) MP (4 procs) Free x64
    Product: Server, suite: TerminalServer
    Built by: 7601.18409.amd64fre.win7sp1_gdr.140303-2144
    Machine Name:
    Kernel base = 0xfffff800`0160f000 PsLoadedModuleList = 0xfffff800`01852890
    Debug session time: Thu Jan 22 14:21:47.853 2015 (UTC + 10:00)
    System Uptime: 6 days 17:17:48.333
    Loading Kernel Symbols
    Loading User Symbols
    Loading unloaded module list
    *                        Bugcheck Analysis                                    *
    Use !analyze -v to get detailed debugging information.
    BugCheck 50, {fffff960001322d8, 8, fffff960001322d8, 7}
    Could not read faulting driver name
    Probably caused by : win32k.sys ( win32k!NtUserMessageCall+30 )
    Followup: MachineOwner
    3: kd> !analyze -v
    *                        Bugcheck Analysis                                    *
    PAGE_FAULT_IN_NONPAGED_AREA (50)
    Invalid system memory was referenced.  This cannot be protected by try-except,
    it must be protected by a Probe.  Typically the address is just plain bad or it
    is pointing at freed memory.
    Arguments:
    Arg1: fffff960001322d8, memory referenced.
    Arg2: 0000000000000008, value 0 = read operation, 1 = write operation.
    Arg3: fffff960001322d8, If non-zero, the instruction address which referenced the bad memory
    address.
    Arg4: 0000000000000007, (reserved)
    Debugging Details:
    Could not read faulting driver name
    WRITE_ADDRESS: GetPointerFromAddress: unable to read from fffff800018bc100
     fffff960001322d8 
    FAULTING_IP: 
    win32k!NtUserMessageCall+30
    fffff960`001322d8 8bac24a8000000  mov     ebp,dword ptr [rsp+0A8h]
    MM_INTERNAL_CODE:  7
    CUSTOMER_CRASH_COUNT:  1
    DEFAULT_BUCKET_ID:  DRIVER_FAULT_SERVER_MINIDUMP
    BUGCHECK_STR:  0x50
    PROCESS_NAME:  Hct14.exe
    CURRENT_IRQL:  0
    TRAP_FRAME:  fffff8800a800660 -- (.trap 0xfffff8800a800660)
    NOTE: The trap frame does not contain all registers.
    Some register values may be zeroed or incorrect.
    rax=fffff900c20cb010 rbx=0000000000000000 rcx=0000000000000000
    rdx=0000000000000000 rsi=0000000000000000 rdi=0000000000000000
    rip=fffff960001322d8 rsp=fffff8800a8007f0 rbp=fffff8800a800960
     r8=fffff8000160f000  r9=0000000000000000 r10=fffffffffffffff7
    r11=fffff8800a800520 r12=0000000000000000 r13=0000000000000000
    r14=0000000000000000 r15=0000000000000000
    iopl=0         nv up ei ng nz na pe nc
    win32k!NtUserMessageCall+0x30:
    fffff960`001322d8 8bac24a8000000  mov     ebp,dword ptr [rsp+0A8h] ss:0018:fffff880`0a800898=0000029e
    Resetting default scope
    LAST_CONTROL_TRANSFER:  from fffff8000170153b to fffff80001684bc0
    STACK_TEXT:  
    fffff880`0a8004f8 fffff800`0170153b : 00000000`00000050 fffff960`001322d8 00000000`00000008 fffff880`0a800660 : nt!KeBugCheckEx
    fffff880`0a800500 fffff800`01682cee : 00000000`00000008 fffff960`001322d8 fffff880`0a800700 00000000`0003029c : nt! ?? ::FNODOBFM::`string'+0x43781
    fffff880`0a800660 fffff960`001322d8 : 00000000`0003029c 00000000`00000020 00000000`00000012 fffff880`0176d9a0 : nt!KiPageFault+0x16e
    fffff880`0a8007f0 fffff800`01683e53 : fffffa80`097a8820 fffff880`0a800960 00000000`000866e8 00000000`00000000 : win32k!NtUserMessageCall+0x30
    fffff880`0a800870 00000000`74aefe4a : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiSystemServiceCopyEnd+0x13
    00000000`000866c8 fffff800`0167c210 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : 0x74aefe4a
    fffff880`0a800ac0 00000547`f9988783 : fffff800`0168b99f 00000000`00000000 00000000`00000000 00000000`00000202 : nt!KiCallUserMode
    fffff880`0a800ac8 fffff800`0168b99f : 00000000`00000000 00000000`00000000 00000000`00000202 fffff880`0a801450 : 0x547`f9988783
    fffff880`0a800ad0 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KeWaitForSingleObject+0x19f
    STACK_COMMAND:  kb
    FOLLOWUP_IP: 
    win32k!NtUserMessageCall+30
    fffff960`001322d8 8bac24a8000000  mov     ebp,dword ptr [rsp+0A8h]
    SYMBOL_STACK_INDEX:  3
    SYMBOL_NAME:  win32k!NtUserMessageCall+30
    FOLLOWUP_NAME:  MachineOwner
    MODULE_NAME: win32k
    IMAGE_NAME:  win32k.sys
    DEBUG_FLR_IMAGE_TIMESTAMP:  54372ef1
    FAILURE_BUCKET_ID:  X64_0x50_win32k!NtUserMessageCall+30
    BUCKET_ID:  X64_0x50_win32k!NtUserMessageCall+30
    Followup: MachineOwner
    Any and all help would be greatly appreciated.
    Thanks in advance!

    Hello All,
    I've got a Windows Server 2008 R2 that's bluescreened twice in a week. Running on a HP DL360 in Proxmox virtual environment. Below are the two dump outputs:
    Microsoft (R) Windows Debugger Version 6.12.0002.633 AMD64
    Copyright (c) Microsoft Corporation. All rights reserved.
    Loading Dump File [C:\Users\Denis.Maybir\Desktop\TRBSOD\021615-22531-01.dmp]
    Mini Kernel Dump File: Only registers and stack trace are available
    Symbol search path is: SRV*c:\symbols*http://msdl.microsoft.com/download/symbols
    Executable search path is: 
    Windows 7 Kernel Version 7601 (Service Pack 1) MP (4 procs) Free x64
    Product: Server, suite: TerminalServer
    Built by: 7601.18700.amd64fre.win7sp1_gdr.141211-1742
    Machine Name:
    Kernel base = 0xfffff800`0160f000 PsLoadedModuleList = 0xfffff800`01852890
    Debug session time: Mon Feb 16 14:57:22.272 2015 (UTC + 10:00)
    System Uptime: 0 days 14:53:11.467
    Loading Kernel Symbols
    Loading User Symbols
    Loading unloaded module list
    *                        Bugcheck Analysis                                    *
    Use !analyze -v to get detailed debugging information.
    BugCheck 50, {fffff900c232b000, 1, fffff800017b8f36, 7}
    Could not read faulting driver name
    Probably caused by : win32k.sys ( win32k!AllocateObject+dd )
    Followup: MachineOwner
    2: kd> !analyze -v
    *                        Bugcheck Analysis                                    *
    PAGE_FAULT_IN_NONPAGED_AREA (50)
    Invalid system memory was referenced.  This cannot be protected by try-except,
    it must be protected by a Probe.  Typically the address is just plain bad or it
    is pointing at freed memory.
    Arguments:
    Arg1: fffff900c232b000, memory referenced.
    Arg2: 0000000000000001, value 0 = read operation, 1 = write operation.
    Arg3: fffff800017b8f36, If non-zero, the instruction address which referenced the bad memory
    address.
    Arg4: 0000000000000007, (reserved)
    Debugging Details:
    Could not read faulting driver name
    WRITE_ADDRESS: GetPointerFromAddress: unable to read from fffff800018bc100
     fffff900c232b000 
    FAULTING_IP: 
    nt!ExAllocatePoolWithTag+326
    fffff800`017b8f36 448928          mov     dword ptr [rax],r13d
    MM_INTERNAL_CODE:  7
    CUSTOMER_CRASH_COUNT:  1
    DEFAULT_BUCKET_ID:  DRIVER_FAULT_SERVER_MINIDUMP
    BUGCHECK_STR:  0x50
    PROCESS_NAME:  HowNow.exe
    CURRENT_IRQL:  0
    TRAP_FRAME:  fffff8800e509510 -- (.trap 0xfffff8800e509510)
    NOTE: The trap frame does not contain all registers.
    Some register values may be zeroed or incorrect.
    rax=fffff900c232b000 rbx=0000000000000000 rcx=0000000000000000
    rdx=0000000000000001 rsi=0000000000000000 rdi=0000000000000000
    rip=fffff800017b8f36 rsp=fffff8800e5096a0 rbp=0000000000001000
     r8=0000000000000002  r9=000000000013ef64 r10=0000000000000000
    r11=fffff8800e509670 r12=0000000000000000 r13=0000000000000000
    r14=0000000000000000 r15=0000000000000000
    iopl=0         nv up ei ng nz na po nc
    nt!ExAllocatePoolWithTag+0x326:
    fffff800`017b8f36 448928          mov     dword ptr [rax],r13d ds:0001:fffff900`c232b000=????????
    Resetting default scope
    LAST_CONTROL_TRANSFER:  from fffff8000170158b to fffff80001685e80
    STACK_TEXT:  
    fffff880`0e5093a8 fffff800`0170158b : 00000000`00000050 fffff900`c232b000 00000000`00000001 fffff880`0e509510 : nt!KeBugCheckEx
    fffff880`0e5093b0 fffff800`01683fae : 00000000`00000001 fffff900`c232b000 fffff900`c20a6100 fffff880`0be74e00 : nt! ?? ::FNODOBFM::`string'+0x43781
    fffff880`0e509510 fffff800`017b8f36 : fffff880`0be74e00 00000000`00000065 00000000`00000021 00000001`00000001 : nt!KiPageFault+0x16e
    fffff880`0e5096a0 fffff960`001650f5 : 00000000`00000000 00000000`00000000 00000000`00000000 fffff960`00000000 : nt!ExAllocatePoolWithTag+0x326
    fffff880`0e509790 fffff960`001667be : 00000000`00000001 fffff880`0e509928 00000000`00000001 fffff960`00176aa2 : win32k!AllocateObject+0xdd
    fffff880`0e5097d0 fffff960`0013bf83 : fffff880`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : win32k!SURFMEM::bCreateDIB+0x38a
    fffff880`0e5098c0 fffff960`0013dcc9 : 00000000`0301003b 00000000`00000010 00000000`00000000 00000000`270501e1 : win32k!GreCreateDIBitmapReal+0x533
    fffff880`0e5099f0 fffff960`0013dae5 : 00000000`0008e280 fffff900`c21c1c20 fffff880`0e509ca0 fffff880`0e509b80 : win32k!ProcessAlphaBitmap+0x109
    fffff880`0e509ad0 fffff960`0013e121 : fffff900`c21c1c20 00000000`00000000 fffff900`c21c1c20 00000000`7efdb00e : win32k!SetCursorIconData+0x365
    fffff880`0e509b20 fffff800`01685113 : fffffa80`0e2ff060 00000000`0008e280 00000000`00000020 00000000`0008e270 : win32k!NtUserSetCursorIconData+0x221
    fffff880`0e509c20 00000000`74d7081a : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiSystemServiceCopyEnd+0x13
    00000000`0008e228 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : 0x74d7081a
    STACK_COMMAND:  kb
    FOLLOWUP_IP: 
    win32k!AllocateObject+dd
    fffff960`001650f5 488bd8          mov     rbx,rax
    SYMBOL_STACK_INDEX:  4
    SYMBOL_NAME:  win32k!AllocateObject+dd
    FOLLOWUP_NAME:  MachineOwner
    MODULE_NAME: win32k
    IMAGE_NAME:  win32k.sys
    DEBUG_FLR_IMAGE_TIMESTAMP:  54372ef1
    FAILURE_BUCKET_ID:  X64_0x50_win32k!AllocateObject+dd
    BUCKET_ID:  X64_0x50_win32k!AllocateObject+dd
    Followup: MachineOwner
    Microsoft (R) Windows Debugger Version 6.12.0002.633 AMD64
    Copyright (c) Microsoft Corporation. All rights reserved.
    Loading Dump File [C:\Users\Denis.Maybir\Desktop\TRBSOD\021915-22234-01.dmp]
    Mini Kernel Dump File: Only registers and stack trace are available
    Symbol search path is: SRV*c:\symbols*http://msdl.microsoft.com/download/symbols
    Executable search path is: 
    Windows 7 Kernel Version 7601 (Service Pack 1) MP (4 procs) Free x64
    Product: Server, suite: TerminalServer
    Built by: 7601.18700.amd64fre.win7sp1_gdr.141211-1742
    Machine Name:
    Kernel base = 0xfffff800`01614000 PsLoadedModuleList = 0xfffff800`01857890
    Debug session time: Thu Feb 19 15:14:07.055 2015 (UTC + 10:00)
    System Uptime: 3 days 0:17:04.886
    Loading Kernel Symbols
    Loading User Symbols
    Loading unloaded module list
    *                        Bugcheck Analysis                                    *
    Use !analyze -v to get detailed debugging information.
    BugCheck 50, {fffff680003aa108, 0, fffff800016eaa49, 5}
    Could not read faulting driver name
    Probably caused by : ntkrnlmp.exe ( nt! ?? ::FNODOBFM::`string'+20d9d )
    Followup: MachineOwner
    2: kd> !analyze -v
    *                        Bugcheck Analysis                                    *
    PAGE_FAULT_IN_NONPAGED_AREA (50)
    Invalid system memory was referenced.  This cannot be protected by try-except,
    it must be protected by a Probe.  Typically the address is just plain bad or it
    is pointing at freed memory.
    Arguments:
    Arg1: fffff680003aa108, memory referenced.
    Arg2: 0000000000000000, value 0 = read operation, 1 = write operation.
    Arg3: fffff800016eaa49, If non-zero, the instruction address which referenced the bad memory
    address.
    Arg4: 0000000000000005, (reserved)
    Debugging Details:
    Could not read faulting driver name
    READ_ADDRESS: GetPointerFromAddress: unable to read from fffff800018c1100
     fffff680003aa108 
    FAULTING_IP: 
    nt! ?? ::FNODOBFM::`string'+20d9d
    fffff800`016eaa49 49334500        xor     rax,qword ptr [r13]
    MM_INTERNAL_CODE:  5
    CUSTOMER_CRASH_COUNT:  1
    DEFAULT_BUCKET_ID:  DRIVER_FAULT_SERVER_MINIDUMP
    BUGCHECK_STR:  0x50
    PROCESS_NAME:  chrome.exe
    CURRENT_IRQL:  0
    TRAP_FRAME:  fffff880105496d0 -- (.trap 0xfffff880105496d0)
    NOTE: The trap frame does not contain all registers.
    Some register values may be zeroed or incorrect.
    rax=0050000000000000 rbx=0000000000000000 rcx=7ff0000000000000
    rdx=0000000000000005 rsi=0000000000000000 rdi=0000000000000000
    rip=fffff800016eaa49 rsp=fffff88010549860 rbp=0000000000000005
     r8=fffffa800bbd9588  r9=fffff70001080000 r10=0000007ffffffff8
    r11=0000000000000548 r12=0000000000000000 r13=0000000000000000
    r14=0000000000000000 r15=0000000000000000
    iopl=0         nv up ei pl nz na po nc
    nt! ?? ::FNODOBFM::`string'+0x20d9d:
    fffff800`016eaa49 49334500        xor     rax,qword ptr [r13] ds:00000000`00000000=????????????????
    Resetting default scope
    LAST_CONTROL_TRANSFER:  from fffff80001706603 to fffff8000168ae80
    STACK_TEXT:  
    fffff880`10549568 fffff800`01706603 : 00000000`00000050 fffff680`003aa108 00000000`00000000 fffff880`105496d0 : nt!KeBugCheckEx
    fffff880`10549570 fffff800`01688fae : 00000000`00000000 fffff680`003aa108 00000000`00000000 fffff700`010804b0 : nt! ?? ::FNODOBFM::`string'+0x43801
    fffff880`105496d0 fffff800`016eaa49 : fffff700`010804b0 00000000`00000000 fffff6fb`7dc00000 00000000`00000000 : nt!KiPageFault+0x16e
    fffff880`10549860 fffff800`0165bfc6 : fffffa80`00000001 00000000`00000548 fffff700`01080000 fffff700`01080488 : nt! ?? ::FNODOBFM::`string'+0x20d9d
    fffff880`105498e0 fffff800`0195f37a : fffff8a0`0c914920 fffff880`10549c20 00000000`00000000 fffffa80`0f5ea400 : nt!MmCleanProcessAddressSpace+0x4ca
    fffff880`10549930 fffff800`0194550d : 00000000`c0000005 fffff800`01680a01 00000000`fffdb000 fffffa80`0e9b34a0 : nt!PspExitThread+0x56a
    fffff880`10549a30 fffff800`0167d9fa : fffff900`00000000 fffff800`017bd30d fffff900`c2e9f508 fffff960`0014f84e : nt!PsExitSpecialApc+0x1d
    fffff880`10549a60 fffff800`0167dd40 : 00000000`00000000 fffff880`10549ae0 fffff800`01945480 00000000`00000001 : nt!KiDeliverApc+0x2ca
    fffff880`10549ae0 fffff800`0168a1b7 : 00000000`00000000 fffff880`10549c01 00000000`fffdb000 00000000`00000000 : nt!KiInitiateUserApc+0x70
    fffff880`10549c20 00000000`753c2e09 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiSystemServiceExit+0x9c
    00000000`001fe988 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : 0x753c2e09
    STACK_COMMAND:  kb
    FOLLOWUP_IP: 
    nt! ?? ::FNODOBFM::`string'+20d9d
    fffff800`016eaa49 49334500        xor     rax,qword ptr [r13]
    SYMBOL_STACK_INDEX:  3
    SYMBOL_NAME:  nt! ?? ::FNODOBFM::`string'+20d9d
    FOLLOWUP_NAME:  MachineOwner
    MODULE_NAME: nt
    IMAGE_NAME:  ntkrnlmp.exe
    DEBUG_FLR_IMAGE_TIMESTAMP:  548a6e28
    FAILURE_BUCKET_ID:  X64_0x50_nt!_??_::FNODOBFM::_string_+20d9d
    BUCKET_ID:  X64_0x50_nt!_??_::FNODOBFM::_string_+20d9d
    Followup: MachineOwner
    Any and all help would be greatly appreciated.
    Thanks in advance!

  • Blue screen of death when building blu-ray in Encore CS6

    I recently purchased a new laptop and installed Adobe Master Collection CS6.  I purchased the laptop for video capture and editing, as well as for blu-ray authoring. 
    Unfortunately, although the computer and software works fine for video capture and editing, I am unable to author a blu-ray.  For authoring, I am using Adobe’s Encore CS6.  After checking and previewing my creation, I attempt to build to disc using Encore.  About 2 seconds after clicking the build disc in Encore, I get the “blue screen of death” (BSOD).  This happens every time I try to build to blu-ray (only blu-ray has this issue; I am able to build to a DVD).  I am using an external blu-ray drive on USB 3.0.  
    I am using Encore version 6.0.0.492
    Here are the blu-ray drive specs:
    Logitec USB 2.0/3.0 Bus powered portable bluray drive unit, LBD-PME6U3VBK
    PIONEER BD-RW BDR-TD05 USB Device
    Driver: 6.1.7601.17514
    C:\windows\system32\DRIVERS\cdrom.sys
    \windows\system32\Drivers\PXHlpa64.sys
    \windows\system32\DRIVERS\tdcmdpst.sys
    \windows\SysWOW64\drivers\Afc.sys
    Renesas USB 3.0 driver also installed
    The computer specs are as follows:
    §  Manufacturer: Toshiba
    §  Manufacturer Part Number: PSAY1U-05U027
    §  Product Line: Satellite
    §  Product Series: P755
    §  Product Model: P755-S5375
    §  Product Name: Satellite P755-S5375 Notebook
    §  Product Type: Notebook
    §  Processor Manufacturer: Intel
    §  Processor Type: Core i7
    §  Processor Model: i7-2670QM
    §  Processor Speed: 2.20 GHz
    §  Processor Core: Quad-core (4 Core)
    §  Cache: 6 MB
    §  Chipset Manufacturer: Intel
    §  Chipset Model: HM65 Express
    §  Standard Memory: 4 GB
    §  Memory Technology: DDR3 SDRAM
    §  Memory Standard: DDR3-1333/PC3-10600
    §  Number of Total Memory Slots: 2
    §  Hard Drive Capacity: 500 GB
    §  Screen Size: 15.6"
    §  Display Screen Type: Active Matrix TFT Color LCD
    §  Aspect Ratio: 16:9
    §  Screen Mode: WXGA
    §  Backlight Technology: LED
    §  Screen Resolution: 1366 x 768
    §  Graphics Controller Manufacturer: Intel
    §  Graphics Controller Model: HD 3000
    §  Graphics Memory Capacity: 1.65 GB
    §  Graphics Memory Accessibility: Shared
    §  Ethernet Technology: Fast Ethernet
    §  Wi-Fi: Yes
    §  Wi-Fi Standard: IEEE 802.11b/g/n
    §  Webcam: Yes
    §  Operating System: Genuine Windows 7 Home Premium with SP1
    §  Operating System Architecture: 64-bit
    §  Pointing Device Type: TouchPad
    §  Number of Cells: 6-cell
    §  Battery Chemistry: Lithium Ion (Li-Ion)
    §  Width: 15.0"
    §  Depth: 9.8"
    §  Weight (Approximate): 5.40 lb
    §  Package Contents:
    §  Satellite P755-S5375 Notebook
    §  Lithium Ion Battery
    §  AC Adapter
    §  Green Compliant: Yes
    §  Green Compliance Certificate/Authority: RoHS
    Installed programs:
    Name                                                            Version          
    Microsoft Application Error Reporting                           12.0.6015.5000   
    Microsoft Office Click-to-Run 2010                              14.0.4763.1000   
    Microsoft Office 2010                                           14.0.4763.1000   
    Windows Live Essentials                                         15.4.3502.0922   
    Apple Application Support                                       2.1.7            
    Windows Live Writer                                             15.4.3502.0922   
    Microsoft_VC90_MFCLOC_x86                                       1.00.0000        
    Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.4148  9.0.30729.4148   
    TOSHIBA Web Camera Application                                  2.0.3.3          
    Windows Live Messenger                                          15.4.3538.0513   
    Microsoft_VC90_CRT_x86                                          1.00.0000        
    Google Toolbar for Internet Explorer                            1.0.0            
    Microsoft Visual C++ 2010  x64 Redistributable - 10.0.40219     10.0.40219       
    Microsoft Visual C++ 2005 Redistributable (x64)                 8.0.61000        
    Microsoft SQL Server 2005 Compact Edition [ENU]                 3.1.0000         
    Microsoft Visual C++ 2010  x86 Redistributable - 10.0.40219     10.0.40219       
    Toshiba Online Backup                                           2.0.0.31         
    TOSHIBA ReelTime                                                1.7.21.64        
    Windows Live Remote Client Resources                            15.4.5722.2      
    Windows Live SOXE Definitions                                   15.4.3502.0922   
    Adobe AIR                                                       3.1.0.4880       
    Windows Live Mesh ActiveX Control for Remote Connections        15.4.5722.2      
    Windows Live Communications Platform                            15.4.3502.0922   
    Windows Live Movie Maker                                        15.4.3502.0922   
    Apple Software Update                                           2.1.3.127        
    Windows Live UX Platform Language Pack                          15.4.3508.1109   
    Windows Live Photo Gallery                                      15.4.3502.0922   
    bl                                                              1.0.0            
    Windows Live Mail                                               15.4.3502.0922   
    Java(TM) 6 Update 25                                            6.0.250          
    MSVCRT_amd64                                                    15.4.2862.0708   
    TOSHIBA Face Recognition                                        3.1.17.64        
    ph                                                              1.0.0            
    Adobe Widget Browser                                            2.0.348          
    Windows Live Writer                                             15.4.3502.0922   
    Mesh Runtime                                                    15.4.5722.2      
    TOSHIBA Supervisor Password                                     1.63.51.2C       
    Adobe Acrobat X Pro - English, Fran軋is, Deutsch                10.1.1           
    Adobe Reader X MUI                                              10.0.0           
    TOSHIBA Media Controller Plug-in                                1.0.7.5          
    Windows Live Photo Gallery                                      15.4.3502.0922   
    Windows Live Photo Common                                       15.4.3502.0922   
    Label@Once 1.0                                                  1.0              
    PDF Settings CS6                                                11.0             
    Toshiba Book Place                                              2.2.7530         
    Windows Live PIMT Platform                                      15.4.3508.1109   
    TOSHIBA Wireless LAN Indicator                                  1.0.5            
    D3DX10                                                          15.4.2368.0902   
    Utility Common Driver                                           1.0.52.3C        
    Junk Mail filter update                                         15.4.3502.0922   
    Windows Live Movie Maker                                        15.4.3502.0922   
    TOSHIBA HDD/SSD Alert                                           3.1.64.9         
    Windows Live Remote Service                                     15.4.5722.2      
    Toshiba App Place                                               1.0.6.3          
    Windows Live Mesh                                               15.4.3502.0922   
    Windows Live Language Selector                                  15.4.3538.0513   
    QuickTime                                                       7.72.80.56       
    Renesas Electronics USB 3.0 Host Controller Driver              2.0.34.0         
    TOSHIBA Value Added Package                                     1.6.1.64         
    Microsoft_VC80_CRT_x86                                          8.0.50727.4053   
    Google Update Helper                                            1.3.21.111       
    TOSHIBA HDD Protection                                          2.2.2.15         
    7-Zip 9.20 (x64 edition)                                        9.20.00.0        
    TOSHIBA PC Health Monitor                                       1.7.9.64         
    Windows Live Mail                                               15.4.3502.0922   
    Adobe Help Manager                                              4.0.244          
    MSVCRT                                                          15.4.2862.0708   
    Windows Live Remote Client                                      15.4.5722.2      
    Blackmagic ATEM Switchers                                       3.0.1.0          
    Microsoft_VC90_MFC_x86                                          1.00.0000        
    Windows Live Photo Common                                       15.4.3502.0922   
    Windows Live ID Sign-in Assistant                               7.250.4232.0     
    Microsoft Visual C++ 2005 Redistributable                       8.0.61001        
    Windows Live Messenger                                          15.4.3538.0513   
    Windows Live Mesh                                               15.4.3502.0922   
    Windows Live Writer                                             15.4.3502.0922   
    Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.4148  9.0.30729.4148   
    Microsoft Visual C++ 2008 Redistributable - x86 9.0.30729.17    9.0.30729        
    TOSHIBA Hardware Setup                                          1.63.1.37C       
    Microsoft Silverlight                                           4.0.50401.0      
    PlayReady PC Runtime x86                                        1.3.0            
    Intel(R) WiDi                                                   2.1.41.0         
    Windows Live MIME IFilter                                       15.4.3502.0922   
    TOSHIBA Flash Cards Support Utility                             1.63.0.12C       
    TOSHIBA eco Utility                                             1.3.5.64         
    Windows Live UX Platform                                        15.4.3502.0922   
    TOSHIBA Wireless Display Monitor                                1.0.1            
    Debugging Tools for Windows (x64)                               6.12.2.633       
    Windows Live Remote Service Resources                           15.4.5722.2      
    Windows Live Writer Resources                                   15.4.3502.0922   
    Microsoft Visual C++ 2008 Redistributable - x64 9.0.30729.17    9.0.30729        
    Intel(R) PROSet/Wireless WiFi Software                          14.01.1000       
    Windows Live Installer                                          15.4.3502.0922   
    TOSHIBA Disc Creator                                            2.1.0.11 for x64 
    PlayReady PC Runtime amd64                                      1.3.0            
    Windows Live SOXE                                               15.4.3502.0922   
    Java Auto Updater                                               2.0.4.1          
    TOSHIBA Bulletin Board                                          1.6.08.64        
    Crash details:
    Problem signature:
      Problem Event Name:            BlueScreen
      OS Version:                           6.1.7601.2.1.0.768.3
      Locale ID:                              1041
    Additional information about the problem:
      BCCode:                               d1
      BCP1:                                   0000000000000001
      BCP2:                                   0000000000000002
      BCP3:                                   0000000000000008
      BCP4:                                   0000000000000001
      OS Version:                           6_1_7601
      Service Pack:                        1_0
      Product:                                768_1
    Files that help describe the problem:
      C:\Windows\Minidump\090312-28516-01.dmp
      C:\Users\xxx\AppData\Local\Temp\WER-62696-0.sysdata.xml
    Read our privacy statement online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
      C:\windows\system32\en-US\erofflps.txt
    DMP file details
    Symbol search path is: SRV*C:\Symbols*http://msdl.microsoft.com/download/symbols
    Executable search path is:
    Windows 7 Kernel Version 7601 (Service Pack 1) MP (8 procs) Free x64
    Product: WinNt, suite: TerminalServer SingleUserTS Personal
    Built by: 7601.17835.amd64fre.win7sp1_gdr.120503-2030
    Machine Name:
    Kernel base = 0xfffff800`02e04000 PsLoadedModuleList = 0xfffff800`03048670
    Debug session time: Mon Sep  3 02:27:16.190 2012 (UTC + 9:00)
    System Uptime: 0 days 0:06:50.096
    Loading Kernel Symbols
    Loading User Symbols
    Loading unloaded module list
    *                        Bugcheck Analysis                                    *
    Use !analyze -v to get detailed debugging information.
    BugCheck D1, {1, 2, 8, 1}
    *** WARNING: Unable to verify timestamp for win32k.sys
    *** ERROR: Module load completed but symbols could not be loaded for win32k.sys
    Probably caused by : ntkrnlmp.exe ( nt!KiPageFault+260 )
    Followup: MachineOwner
    0: kd> !analyze -v
    *                        Bugcheck Analysis                                    *
    DRIVER_IRQL_NOT_LESS_OR_EQUAL (d1)
    An attempt was made to access a pageable (or completely invalid) address at an
    interrupt request level (IRQL) that is too high.  This is usually
    caused by drivers using improper addresses.
    If kernel debugger is available get stack backtrace.
    Arguments:
    Arg1: 0000000000000001, memory referenced
    Arg2: 0000000000000002, IRQL
    Arg3: 0000000000000008, value 0 = read operation, 1 = write operation
    Arg4: 0000000000000001, address which referenced memory
    Debugging Details:
    READ_ADDRESS: GetPointerFromAddress: unable to read from fffff800030b2100
    0000000000000001
    CURRENT_IRQL:  2
    FAULTING_IP:
    +6130613031313361
    00000000`00000001 ??              ???
    PROCESS_NAME:  System
    CUSTOMER_CRASH_COUNT:  1
    DEFAULT_BUCKET_ID:  VISTA_DRIVER_FAULT
    BUGCHECK_STR:  0xD1
    TRAP_FRAME:  fffff80000b9c740 -- (.trap 0xfffff80000b9c740)
    NOTE: The trap frame does not contain all registers.
    Some register values may be zeroed or incorrect.
    rax=fffff80000b9c801 rbx=0000000000000000 rcx=fffffa8004586618
    rdx=fffff80000b9c8d8 rsi=0000000000000000 rdi=0000000000000000
    rip=0000000000000001 rsp=fffff80000b9c8d0 rbp=0000892fc0ba4327
    r8=fffff80000b9c8d0  r9=0000000000000000 r10=0000000004216094
    r11=000000005e040600 r12=0000000000000000 r13=0000000000000000
    r14=0000000000000000 r15=0000000000000000
    iopl=0         nv up ei ng nz na pe nc
    00000000`00000001 ??              ???
    Resetting default scope
    LAST_CONTROL_TRANSFER:  from fffff80002e82769 to fffff80002e831c0
    FAILED_INSTRUCTION_ADDRESS:
    +6130613031313361
    00000000`00000001 ??              ???
    STACK_TEXT: 
    fffff800`00b9c5f8 fffff800`02e82769 : 00000000`0000000a 00000000`00000001 00000000`00000002 00000000`00000008 : nt!KeBugCheckEx
    fffff800`00b9c600 fffff800`02e813e0 : 00000000`00000002 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiBugCheckDispatch+0x69
    fffff800`00b9c740 00000000`00000001 : 00000000`00000000 00000000`5e040600 00000000`00000000 00000000`00000000 : nt!KiPageFault+0x260
    fffff800`00b9c8d0 00000000`00000000 : 00000000`5e040600 00000000`00000000 00000000`00000000 00000000`080e8118 : 0x1
    STACK_COMMAND:  kb
    FOLLOWUP_IP:
    nt!KiPageFault+260
    fffff800`02e813e0 440f20c0        mov     rax,cr8
    SYMBOL_STACK_INDEX:  2
    SYMBOL_NAME:  nt!KiPageFault+260
    FOLLOWUP_NAME:  MachineOwner
    MODULE_NAME: nt
    IMAGE_NAME:  ntkrnlmp.exe
    DEBUG_FLR_IMAGE_TIMESTAMP:  4fa390f3
    FAILURE_BUCKET_ID:  X64_0xD1_CODE_AV_BAD_IP_nt!KiPageFault+260
    BUCKET_ID:  X64_0xD1_CODE_AV_BAD_IP_nt!KiPageFault+260
    Followup: MachineOwner

    Create an ISO (Encore) or folder on your hard drive (Encore or Premiere Elements) and then use the FREE http://www.imgburn.com/index.php?act=download to write files or folders or ISO to disc for DVD or BluRay (send the author a PayPal donation if you like his program)
    Imgburn will read the ACTUAL disc brand from the disc, which is not always the same as the box label (Memorex is notorious for buying "anything" and putting it inside a Memorex box)
    When you write to disc with Imgburn, use the SLOWEST possible speed setting, so your burner has the best chance to create "good, well formed" laser burn holes... since no player is required to read a burned disc, having a "good" one from a high quality blank will help

Maybe you are looking for

  • Can I access iCloud on a computer that is not mine?

    Is it possible to access all of my icloud stuff off a computer that is not mine?

  • USB hard drive used with Time Machine runs continually

    I have a USB SATA external hard drive that I am using for my Time Machine backups. The drive is configured to run on USB power. The drive begins running as soon as it is connected to the port, and runs continually, as long as it is connected. I expec

  • Cursor legend for waveform chart

    Greetings again. Is there a method to turn on the cursor legend in a waveform chart (like in the waveform graphs)? I'd like to allow a user of my application to be able to select a portion of a chart and have the application report the value plotted.

  • Cannot adjust margins in Acrobat Reader X

    Hi, I cannot adjust margins in Acrobat Reader X. Margins are greyed out. I cannot find where to change this. Everytime we print a document it is shrinked because of the margins. A workaround for the moment is to print the documents as pictures. Is th

  • Monitor and face scuffs

    I have noticed that my brand new Macbook Pro (15inch) has started to develop a mark on the glossy screen where it apparently contacts the keyboard while closed. Also just below the track pad there is a blackish line that has showed up that does not r