How to diagnose speed problems.

A year ago my computer was running terriblyslow.  I took it to the genuis at the apple store and he ran a script that showed what was going on in the background.  He noticed Spotify was running and open/close script constantly over and over using up RAM.  I scraped Spotify and it worked great.
Now my computer is running slow again and I'd like to be able to run and understand that script.  Can anyone explain how to do it and what to look for?

Thanks for the replies.
capacity = 999.35 GB
Available = 492.54 GB
The most I run is having a browser (sometimes 2) open while using photoshop or LR.  I mostly notice the slowness when opening or closing an application.  Sometimes it takes up to 2 minutes to open photoshop (CC) where as it usuallly only takes a few seconds. 
Applications I normally run: mail, chrome, Firefox, Photoshop, Lightroom.
4 GB 1067 Mhz RAM (factory)
No antivirus.
No crapwear I'm aware of.
Thanks again.

Similar Messages

  • How to diagnose a problem with my imac graphics card

    I've been having some glitchy graphics when I scroll around a map in some basic gaming. (League of Lengends)
    Is there a way to check if the graphic card is functioning correctly?
    I noticed it after I went from Mt Lion to Mavericks, but that was a while ago and I dont know if that is the cause.
    any help with this would be greatly appreciated
    Thanks

    Hello Mokhtary123 and welcome to Apple Support Communities,
    It will help us diagnose your problem to know the exact model, size, year built, RAM installed and OS you're running.
    But basically your system can't find the boot disk. Usually this is a symptom of a dead/dying/corrupted hard drive;
    A flashing question mark or globe appears when you start your Mac - Apple Support
    OS X Recovery
    http://support.apple.com/en-us/HT4718

  • How to diagnose performance problems?

    Hi all,
    I'm trying to run some basic performance tests of our app with Coherence, and I'm getting some pretty miserable results. I'm obviously missing something very basic about the configuration, but I can't figure out what it is.
    For our test app, I'm using 3 machines, all Mac Pros running OSX 10.5. Each JVM is configured with 1G RAM and is running in server mode. We're connected on a gigabit LAN (I ran the datagram test, we get about 108Mb/sec but with high packet loss, around 10-12%). Two of the nodes are storage enabled, the other runs as a client performing an approximation of one of the operations we perform routinely.
    The test consists of running a single operation many times. We're developing a card processing system, so I create a bunch of cards (10,000 by default), each of which has about 10 related objects in different caches. The objects are serialised using POF. I write all these to the caches, then perform a single operation for each card. The operation consists of about 14 reads and 6 writes. I can do this about 6-6.5 times per second, for a total of ~120 Coherence ops/sec, which seems extremely low.
    During the test, the network tops out at about 1.2M/s, and the CPU at about 35% on the storage nodes and almost unnoticeable on the client. There's clearly something blocking somewhere, but I can't find what it is. The client uses a thread pool of 100 threads and has 100 threads assigned to its distributed service, and the storage nodes also have 100 threads assigned to their distributed services. I also tried giving more threads to the invocation service (since we use VersionedPut a lot), but that didn't seem to help either. I've also created the required indexes.
    Any help in diagnosing what the problem would be greatly appreciated. I've attached the config used for the two types of node below.
    Cheers,
    Colin
    Config for storage nodes:
    -Dtangosol.coherence.wka=10.1.1.2
    -Dtangosol.coherence.override=%HOME%/coherence.override.xml
    -Dtangosol.coherence.distributed.localstorage=true
    -Dtangosol.coherence.wkaport=8088
    -Dtangosol.coherence.distributed.threads=100
    <cache-config>
    <caching-scheme-mapping>
    <cache-mapping>
    <cache-name>*</cache-name>
    <scheme-name>distributed-scheme</scheme-name>
    </cache-mapping>
    </caching-scheme-mapping>
    <caching-schemes>
    <distributed-scheme>
    <scheme-name>distributed-scheme</scheme-name>
    <service-name>DistributedCache</service-name>
    <backing-map-scheme>
    <local-scheme>
    <scheme-ref>distributed-backing-map</scheme-ref>
    </local-scheme>
    </backing-map-scheme>
    <autostart>true</autostart>
    <serializer>
    <class-name>runtime.util.protobuf.ProtobufPofContext</class-name>
    </serializer>
    <backup-count>1</backup-count>
    </distributed-scheme>
    <local-scheme>
    <scheme-name>distributed-backing-map</scheme-name>
    <listener>
    <class-scheme>
    <class-name>service.data.manager.coherence.impl.utilfile.CoherenceBackingMapListener</class-name>
    <init-params>
    <init-param>
    <param-type>com.tangosol.net.BackingMapManagerContext</param-type>
    <param-value>{manager-context}</param-value>
    </init-param>
    <init-param>
    <param-type>java.lang.String</param-type>
    <param-value>{cache-name}</param-value>
    </init-param>
    </init-params>
    </class-scheme>
    </listener>
    </local-scheme>
    <invocation-scheme>
    <service-name>InvocationService</service-name>
    <autostart>true</autostart>
    </invocation-scheme>
    </caching-schemes>
    </cache-config>
    Config for client node:
    -Dtangosol.coherence.wka=10.1.1.2
    -Dtangosol.coherence.wkaport=8088
    -Dtangosol.coherence.distributed.localstorage=false
    <cache-config>
    <caching-scheme-mapping>
    <cache-mapping>
    <cache-name>*</cache-name>
    <scheme-name>distributed-scheme</scheme-name>
    </cache-mapping>
    </caching-scheme-mapping>
    <caching-schemes>
    <distributed-scheme>
    <scheme-name>distributed-scheme</scheme-name>
    <service-name>DistributedCache</service-name>
    <thread-count>100</thread-count>
    <backing-map-scheme>
    <local-scheme>
    <scheme-ref>distributed-backing-map</scheme-ref>
    </local-scheme>
    </backing-map-scheme>
    <autostart>true</autostart>
    <backup-count>1</backup-count>
    </distributed-scheme>
    <local-scheme>
    <scheme-name>distributed-backing-map</scheme-name>
    </local-scheme>
    <invocation-scheme>
    <service-name>InvocationService</service-name>
    <autostart>true</autostart>
    </invocation-scheme>
    </caching-schemes>
    </cache-config>

    Hi David,
    Thanks for the quick response. I'm currently using an executor with 100 threads on the client. I thought that might not be enough since the CPU on the client hardly moves at all, but bumping that up to 1000 didn't change things. If I run the same code with a single Coherence instance in my local machine I get around 110/sec, so I suspect that somewhere in the transport layer something doesn't have enough threads.
    The code is somewhat complicated because we have an abstraction layer on top of Coherence. I'll try to post the relevant parts below:
    The main loop is pretty straightforward. This is a Runnable that I post to the client executor:
    public void run()
    Card card = read(dataManager, Card.class, "cardNumber", cardNumber);
    assert card != null;
    Group group = read(dataManager, Group.class, "id", card.getGroupId());
    assert group != null;
    Account account = read(dataManager, Account.class, "groupId", group.getId());
    assert account != null;
    User user = read(dataManager, User.class, "groupId", group.getId());
    assert user != null;
    ClientUser clientUser = read(dataManager, ClientUser.class, "userId", user.getId());
    HoldLog holdLog = createHoldLog(group, account);
    account.getCurrentHolds().add(holdLog);
    account.setUpdated(now());
    write(dataManager, HoldLog.class, holdLog);
    ClientUser clientUser2 = read(dataManager, ClientUser.class, "userId", user.getId());
    write(dataManager, Account.class, account);
    NetworkMessage networkMessage = createNetworkMessage(message, card, group, holdLog);
    write(dataManager, NetworkMessage.class, networkMessage);
    read does a bit of juggling with our abstraction layer, basically this just gets a ValueExtractor for a named field and then creates an EqualsFilter with it:
    private static <V extends Identifiable> V read(DataManager dataManager,
    Class<V> valueClass,
    String keyField,
    Object keyValue)
    DataMap<Identifiable> dataMap = dataManager.getDataMap(valueClass.getSimpleName(), valueClass);
    FilterFactory filterFactory = dataManager.getFilterFactory();
    ValueExtractorFactory extractorFactory = dataManager.getValueExtractorFactory();
    Filter<Identifiable> filter = filterFactory.equals(extractorFactory.fieldExtractor(valueClass, keyField), keyValue);
    Set<Map.Entry<GUID, Identifiable>> entries = dataMap.entrySet(filter);
    if (entries.isEmpty())
    return null;
    assert entries.size() == 1 : "Expected single entry, found " + entries.size() + " for " + valueClass.getSimpleName();
    return valueClass.cast(entries.iterator().next().getValue());
    write is trivial:
    private static <V extends Identifiable> void write(DataManager dataManager, Class<V> valueClass, V value)
    DataMap<Identifiable> dataMap = dataManager.getDataMap(valueClass.getSimpleName(), valueClass);
    dataMap.put(value.getId(), value);
    And entrySet directly wraps the Coherence call:
    public Set<Entry<GUID, V>> entrySet(Filter<V> filter)
    validateFilter(filter);
    return wrapEntrySet(dataMap.entrySet(((CoherenceFilterAdapter<V>) filter).getCoherenceFilter()));
    This just returns a Map.EntrySet implementation that decodes the binary encoded objects.
    I'm not really sure how much more code to post - what I have is really just a thin layer over Coherence, and I'm reasonably sure that the main problem isn't there since the CPU hardly moves on the client. I suspect thread starvation at some point, but I'm not sure where to look.
    Thanks,
    Colin

  • How to diagnose Acrobat problem

    I've inherited/taken over my precursor's PC, which has FM 10 and CS 5.5 on. So far so good, but it didn't take long to hit a problem: Save as .pdf doesn't work :-{ I just get a couple of seconds' busy cursor, then a sort of bounce as though the entire screen is being redrawn, and that's it. No message, no log and no .pdf output.
    This is the only FM installation in a fairly large company, and it must have been installed by ICT because it's on a closed PC. I'd like to gather as much background information as I can before contacting them.
    Windows 7.0, as far as I know; FrameMaker 10.0.2.419 – just let me know if there's any more information you need.
    Thanks in advance!
    Niels Grundtvig Nielsen

    Niels,
    The SaveAsPDF has been working reasonably reliably in the last releases provided everything is installed correctly and the proper options are enabled.
    First, make certain that the Adobe PDF printer instance is the deafult in the FM session (use the SetPrint utility to ensure that it is).
    If you already had Acrobat installed prior to installing FM, then the default FM instalation also installs the PDFCreator add-on (you have to manually deselect it - very bad design on Adobe's part), which will hose the Acrobat installation. Try running the Repair option (under Help menu) in Acrobat. If that doesn't work, you may have to go through a re-install cycle.
    I also keep running into the "rely on system fonts" error message every so often. It seems like any Acrobat update that comes out resets the defaults the wrong way.

  • Imac crashes daily, how can diagnose the problem

    My imac is crashing (Black screen) once to maybe 3 times daily. I think it's a kernel panic, but I'm not sure.
    I'm not sure if this is the information needed. It's from the Console/System Diagnostic reports/Kernel_2013-10-07-085723-imac-3.panic. Can anyone translate this for me? If this is not the right information, where would I find the right information. Thanks
    Mon Oct  7 08:57:23 2013
    panic(cpu 0 caller 0x5df48c97): NVRM[0/1:0:0]: Read Error 0x0000336c: CFG 0x060910de 0x20100406 0xe2000000, BAR0 0xe2000000 0x5ea5c000 0x092480a2, D0, P3/4
    Backtrace (CPU 0), Frame : Return Address (4 potential args on stack)
    0x5c7f3728 : 0x21b837 (0x5dd7fc 0x5c7f375c 0x223ce1 0x0)
    0x5c7f3778 : 0x5df48c97 (0x5e15e22c 0x5e1ce840 0x5e16cf88 0x0)
    0x5c7f3818 : 0x5e749a7d (0x8be7804 0x7411004 0x336c 0x5df38774)
    0x5c7f3858 : 0x5e72293b (0x7411004 0x336c 0x9f74804 0x0)
    0x5c7f38c8 : 0x5e72f273 (0x7411004 0x9da4004 0xa 0x5c7f391c)
    0x5c7f39e8 : 0x5e0cebe3 (0x7411004 0x9da4004 0x5c7f3af0 0x5c7f3af0)
    0x5c7f3b28 : 0x5e0cf58d (0x7411004 0x9db1c04 0x0 0x0)
    0x5c7f3bb8 : 0x5e76c1b7 (0x7411004 0x9db1c04 0xd 0x2)
    0x5c7f3cc8 : 0x5e7711e7 (0x7411004 0x9ced004 0x0 0x0)
    0x5c7f3df8 : 0x5e082258 (0x7411004 0x749d004 0x0 0x0)
    0x5c7f3e38 : 0x5df51e2b (0x7411004 0x749d004 0x0 0x0)
    0x5c7f3ed8 : 0x553ec7 (0x0 0x9e4cf00 0x1 0x2275c6)
    0x5c7f3f28 : 0x552ea6 (0x9e4cf00 0x0 0x0 0x0)
    0x5c7f3f88 : 0x552eea (0x8c85280 0x8c85280 0x84cb3bf0 0x7fff)
    0x5c7f3fc8 : 0x2a179c (0x8c85280 0x0 0x10 0x994fc24)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.nvidia.nv50hal(6.3.6)@0x5e647000->0x5ea5bfff
                dependency: com.apple.NVDAResman(6.3.6)@0x5dee2000
             com.apple.NVDAResman(6.3.6)@0x5dee2000->0x5e1cffff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x55a02000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x5ce34000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x55668000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: iMac8,1 (Mac-F227BEC8)
    System uptime in nanoseconds: 81510992370745
    unloaded kexts:
    (none)
    loaded kexts:
    org.virtualbox.kext.VBoxNetAdp          4.1.18
    org.virtualbox.kext.VBoxNetFlt          4.1.18
    org.virtualbox.kext.VBoxUSB          4.1.18
    org.virtualbox.kext.VBoxDrv          4.1.18
    com.bresink.driver.BRESINKx86Monitoring          2.0
    com.vmware.kext.vmnet          3.1.2
    com.vmware.kext.vmioplug          3.1.2
    com.vmware.kext.vmci          3.1.2
    com.vmware.kext.vmx86          3.1.2
    com.kensington.mouseworks.driver.VirtualMouse          3.0
    com.kensington.mouseworks.iokit.KensingtonMouseDriver          3.0
    com.pctools.iantivirus.kfs          1.0.1
    com.makemkv.kext.daspi          1
    com.airgrab.driver.AirGrabFirewallModule          3.0
    com.Logitech.Control Center.HID Driver          3.3.0
    com.seagate.driver.PowSecLeafDriver_10_5          5.2.2
    com.seagate.driver.PowSecLeafDriver_10_4          5.2.2
    com.roxio.BluRaySupport          1.1.6
    com.seagate.driver.PowSecDriverCore          5.2.2
    com.apple.driver.AppleBluetoothMultitouch          54.3 - last loaded 337546357843
    com.apple.filesystems.msdosfs          1.6.3
    com.apple.filesystems.udf          2.1.1
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.InternalModemSupport          2.6.2
    com.apple.driver.AudioAUUC          1.57
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleIntelYonahProfile          14
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleIntelPenrynProfile          17
    com.apple.driver.AppleGraphicsControl          2.10.6
    com.apple.GeForce          6.3.6
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AirPortBrcm43xx          423.91.27
    com.apple.driver.AppleIntelNehalemProfile          11
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.0.46
    com.apple.iokit.AppleYukon2          3.2.1b1
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleIntelMeromProfile          19
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.StorageLynx          2.6.1
    com.apple.driver.Oxford_Semi          2.6.1
    com.apple.driver.LSI_FW_500          2.6.1
    com.apple.driver.IOFireWireSerialBusProtocolSansPhysicalUnit          2.6.1
    com.apple.driver.initioFWBridge          2.6.1
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.driver.PioneerSuperDrive          2.6.1
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleUSBUHCI          4.2.0
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.AppleHDAHardwareConfigDriver          2.0.5f14
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.nvidia.nv50hal          6.3.6
    com.apple.NVDAResman          6.3.6
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleUSBHIDKeyboard          141.5
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.0.6
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOATAPIProtocolTransport          2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.driver.AppleFileSystemDriver          2.0
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.TMSafetyNet          6
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          289
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0

    Thanks for the reply. I do have more reports. Here are 4. They are oldest first.
    The Crash Reports did not always come up after restarting. I'm not sure why.
    Thanks for the help.
    Sept 12
    Interval Since Last Panic Report:  28485426 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    7C83D2C1-7F6C-4719-B712-D7C377C8A24D
    Thu Sep 12 13:11:11 2013
    panic(cpu 1 caller 0x5e03ac97): NVRM[0/1:0:0]: Read Error 0x00070000: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xe2000000 0x5eb4e000 0x092480a2, D0, P3/4
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x5da71c88 : 0x21b837 (0x5dd7fc 0x5da71cbc 0x223ce1 0x0)
    0x5da71cd8 : 0x5e03ac97 (0x5e25022c 0x5e2c0840 0x5e25ef88 0x0)
    0x5da71d78 : 0x5e83ba7d (0x8a75c04 0x73d5004 0x70000 0x5e032fa0)
    0x5da71db8 : 0x5e74ce03 (0x73d5004 0x70000 0x5da71dd4 0x0)
    0x5da71e08 : 0x5e8296ab (0x73d5004 0x9eff004 0x1 0x1)
    0x5da71ed8 : 0x5e8314c0 (0x73d5004 0xb027004 0x0 0x1)
    0x5da71fe8 : 0x5e1c0ca2 (0x73d5004 0xb027004 0x5da7203c 0x5da720f0)
    0x5da72128 : 0x5e1c158d (0x73d5004 0x7b3fc04 0x0 0x0)
    0x5da721b8 : 0x5e85dff7 (0x73d5004 0x7b3fc04 0xd 0x2)
    0x5da722c8 : 0x5e8631e7 (0x73d5004 0x7bc3804 0x0 0x0)
    0x5da723f8 : 0x5e174258 (0x73d5004 0x78dc004 0x0 0x0)
    0x5da72438 : 0x5e043e2b (0x73d5004 0x78dc004 0x0 0x0)
    0x5da724d8 : 0x5e04050a (0x0 0x9 0x0 0x0)
    0x5da72688 : 0x5e042467 (0x0 0x600d600d 0x7029 0x5da726b8)
    0x5da72758 : 0x5d922e99 (0xc1d00051 0xbeef0003 0x87f3a00 0x87f3a00)
    0x5da727a8 : 0x5d922fce (0x46dcb000 0x87f3a00 0x2301e000 0x0)
    0x5da727d8 : 0x5d8fa484 (0x46dcb000 0x87f3a00 0x2301e000 0x0)
    0x5da727f8 : 0x5d91beb2 (0x46dcb000 0x722e800 0x5da72828 0x55f3f4)
    0x5da72838 : 0x5d91bccd (0x46dcb000 0x722e800 0x5da72868 0x506769)
    0x5da72868 : 0x5d91bc45 (0x46dcb000 0x7e01980 0x722e800 0x0)
    0x5da72898 : 0x5d91bfa7 (0x46dcb000 0x7e01980 0x7f68800 0x0)
    0x5da728b8 : 0x5d93ebce (0x7e01980 0x7f68800 0x626 0x139bb800)
    0x5da728e8 : 0x5d93d1a1 (0x47181000 0x47181788 0x1 0x2209aa)
    0x5da72908 : 0x5d90488f (0x47181000 0x47181788 0xa6d41c0 0x507617)
    0x5da72938 : 0x5d93ec64 (0x47181000 0x5da72a7c 0x5da72968 0x47181000)
    0x5da72978 : 0x5d908c93 (0x47181000 0x5da72a7c 0x5da72a7c 0x5da729e0)
    0x5da72ab8 : 0x5d9425d8 (0x47181000 0x1 0x5da72bcc 0x5da72bc8)
    0x5da72b68 : 0x5d904fe1 (0x47181000 0x1 0x5da72bcc 0x5da72bc8)
    0x5da72be8 : 0x56da06 (0x47181000 0x0 0x5da72e3c 0x5da72c74)
    0x5da72c38 : 0x56e2a5 (0x5d993720 0x47181000 0x9259788 0x1)
    0x5da72c88 : 0x56eb59 (0x47181000 0x10 0x5da72cd0 0x0)
    0x5da72da8 : 0x286638 (0x47181000 0x10 0x9259788 0x1)
    0x5da73e58 : 0x21dbe5 (0x9259760 0x98215a0 0x12c778 0x38993)
    0x5da73e98 : 0x210a86 (0x9259700 0x0 0x7f8b8c0 0x9096f10)
    0x5da73ef8 : 0x216f84 (0x9259700 0x0 0x0 0x0)
    0x5da73f78 : 0x295c57 (0x9ad6368 0x0 0x0 0x0)
    0x5da73fc8 : 0x2a256d (0x9ad6364 0x2 0x10 0x9ad6364)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.GeForce(6.3.6)@0x5d8f9000->0x5d9affff
                dependency: com.apple.NVDAResman(6.3.6)@0x5dfd4000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x55643000
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x559ca000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x5cddc000
             com.apple.nvidia.nv50hal(6.3.6)@0x5e739000->0x5eb4dfff
                dependency: com.apple.NVDAResman(6.3.6)@0x5dfd4000
             com.apple.NVDAResman(6.3.6)@0x5dfd4000->0x5e2c1fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x559ca000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x55643000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x5cddc000
    BSD process name corresponding to current thread: Safari
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: iMac8,1 (Mac-F227BEC8)
    System uptime in nanoseconds: 248930691666315
    unloaded kexts:
    com.seagate.driver.PowSecLeafDriver_10_4          5.2.2 (addr 0x5c70f000, size 0x16384) - last unloaded 238309029785429
    loaded kexts:
    org.virtualbox.kext.VBoxNetAdp          4.1.18 - last loaded 193895133420921
    org.virtualbox.kext.VBoxNetFlt          4.1.18
    org.virtualbox.kext.VBoxUSB          4.1.18
    org.virtualbox.kext.VBoxDrv          4.1.18
    com.bresink.driver.BRESINKx86Monitoring          2.0
    com.vmware.kext.vmnet          3.1.2
    com.vmware.kext.vmioplug          3.1.2
    com.vmware.kext.vmci          3.1.2
    com.vmware.kext.vmx86          3.1.2
    com.kensington.mouseworks.driver.VirtualMouse          3.0
    com.pctools.iantivirus.kfs          1.0.1
    com.kensington.trackballworks.driver          1.0.0
    com.kensington.mouseworks.iokit.KensingtonMouseDriver          3.0
    com.makemkv.kext.daspi          1
    com.airgrab.driver.AirGrabFirewallModule          3.0
    com.seagate.driver.PowSecLeafDriver_10_5          5.2.2
    com.seagate.driver.PowSecDriverCore          5.2.2
    com.apple.filesystems.udf          2.1.1
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.driver.AudioAUUC          1.57
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.AppleIntelPenrynProfile          17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.GeForce          6.3.6
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.driver.AppleBluetoothMultitouch          54.3
    com.apple.iokit.AppleYukon2          3.2.1b1
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.0.46
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.Oxford_Semi          2.6.1
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleUSBUHCI          4.2.0
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.nvidia.nv50hal          6.3.6
    com.apple.NVDAResman          6.3.6
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.driver.AppleUSBHIDKeyboard          141.5
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.iokit.IOATAPIProtocolTransport          2.5.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.0.6
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.TMSafetyNet          6
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          289
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: iMac8,1, BootROM IM81.00C1.B00, 2 processors, Intel Core 2 Duo, 3.06 GHz, 4 GB, SMC 1.30f1
    Graphics: NVIDIA GeForce 8800 GS, NVIDIA GeForce 8800 GS, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8C), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Network Service: Ethernet, Ethernet, en0
    Network Service: USB Ethernet (en2), Ethernet, en2
    Serial ATA Device: ST3500418ASQ, 465.76 GB
    Parallel ATA Device: PIONEER DVD-RW  DVR-K06A, 3.7 GB
    USB Device: USB 2.0 Hub [MTT], 0x1a40  (TERMINUS TECHNOLOGY INC.), 0x0201, 0xfa200000 / 2
    USB Device: USB to Serial-ATA bridge, 0x1bcf  (Sunplus Innovation Technology Inc.), 0x0c31, 0xfa240000 / 3
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0xfd400000 / 3
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd100000 / 2
    USB Device: Ext HDD 1021, 0x1058  (Western Digital Technologies, Inc.), 0x1021, 0xfd130000 / 7
    USB Device: External, 0x13fd  (Initio Corporation), 0x1840, 0xfd110000 / 6
    USB Device: EPSON WorkForce 845 Series, 0x04b8  (Seiko Epson Corp.), 0x0892, 0xfd120000 / 5
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd140000 / 4
    USB Device: Kensington Expert Mouse, 0x047d  (Kensington), 0x1020, 0xfd144000 / 11
    USB Device: External, 0x13fd  (Initio Corporation), 0x1840, 0xfd143000 / 10
    USB Device: GoFlex Desk, 0x0bc2  (Seagate LLC), 0x50a7, 0xfd142000 / 9
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfd141000 / 8
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0xfd141200 / 12
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1a100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x820f, 0x1a110000 / 5
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x5d100000 / 2
    FireWire Device: d2 Quadra v3C, LaCie, Up to 800 Mb/sec
    FireWire Device: My Passport 071D, WD, Up to 800 Mb/sec
    Oct 8
    Interval Since Last Panic Report:  2148285 sec
    Panics Since Last Report:          2
    Anonymous UUID:                    7C83D2C1-7F6C-4719-B712-D7C377C8A24D
    Tue Oct  8 21:18:25 2013
    panic(cpu 1 caller 0x5dacdc97): NVRM[0/1:0:0]: Read Error 0x00002500: CFG 0x060910de 0x00100406 0xe2000000, BAR0 0xe2000000 0x5e5e1000 0x092480a2, D0, P3/4
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x5bd73768 : 0x21b837 (0x5dd7fc 0x5bd7379c 0x223ce1 0x0)
    0x5bd737b8 : 0x5dacdc97 (0x5dce322c 0x5dd53840 0x5dcf1f88 0x0)
    0x5bd73858 : 0x5e2cea7d (0x955e804 0x79d2004 0x2500 0x79d2004)
    0x5bd73898 : 0x5e2bfd5e (0x79d2004 0x2500 0x0 0x0)
    0x5bd73918 : 0x5e2b6132 (0x79d2004 0x9606804 0x41 0x5bd73950)
    0x5bd73a38 : 0x5dbd3b4d (0x79d2004 0x9606804 0x712200c 0x200)
    0x5bd73a78 : 0x5dc52cee (0x79d2004 0x9606804 0xc57a0c8 0xc57a004)
    0x5bd73b28 : 0x5dc542df (0x79d2004 0x9605404 0x0 0x0)
    0x5bd73bb8 : 0x5e2f11b7 (0x79d2004 0x9605404 0xd 0x2)
    0x5bd73cc8 : 0x5e2f61e7 (0x79d2004 0x94f2404 0x0 0x0)
    0x5bd73df8 : 0x5dc07258 (0x79d2004 0x7943004 0x0 0x0)
    0x5bd73e38 : 0x5dad6e2b (0x79d2004 0x7943004 0x0 0x0)
    0x5bd73ed8 : 0x553ec7 (0x0 0x973e180 0x1 0x2a0577)
    0x5bd73f28 : 0x552ea6 (0x973e180 0x0 0x0 0xffffffff)
    0x5bd73f88 : 0x552eea (0x8aa6a80 0x8e65000 0x5bd73fc8 0x4d45e9)
    0x5bd73fc8 : 0x2a179c (0x8aa6a80 0x0 0x10 0x8e1c704)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.nvidia.nv50hal(6.3.6)@0x5e1cc000->0x5e5e0fff
                dependency: com.apple.NVDAResman(6.3.6)@0x5da67000
             com.apple.NVDAResman(6.3.6)@0x5da67000->0x5dd54fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x55a02000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x5ccf9000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x5d5e2000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: iMac8,1 (Mac-F227BEC8)
    System uptime in nanoseconds: 130159889729611
    unloaded kexts:
    (none)
    loaded kexts:
    com.vmware.kext.vmnet          3.1.2
    com.vmware.kext.vmioplug          3.1.2
    com.vmware.kext.vmci          3.1.2
    com.vmware.kext.vmx86          3.1.2
    org.virtualbox.kext.VBoxNetAdp          4.1.18
    org.virtualbox.kext.VBoxNetFlt          4.1.18
    org.virtualbox.kext.VBoxUSB          4.1.18
    org.virtualbox.kext.VBoxDrv          4.1.18
    com.bresink.driver.BRESINKx86Monitoring          2.0
    com.kensington.mouseworks.driver.VirtualMouse          3.0
    com.kensington.mouseworks.iokit.KensingtonMouseDriver          3.0
    com.pctools.iantivirus.kfs          1.0.1
    com.makemkv.kext.daspi          1
    com.Logitech.Control Center.HID Driver          3.3.0
    com.seagate.driver.PowSecLeafDriver_10_5          5.2.2
    com.seagate.driver.PowSecLeafDriver_10_4          5.2.2
    com.roxio.BluRaySupport          1.1.6
    com.seagate.driver.PowSecDriverCore          5.2.2
    com.apple.driver.IOBluetoothBNEPDriver          2.4.5f3 - last loaded 1918336405847
    com.apple.driver.AppleUSBCDC          4.0.5
    com.apple.filesystems.udf          2.1.1
    com.apple.filesystems.msdosfs          1.6.3
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.InternalModemSupport          2.6.2
    com.apple.driver.AudioAUUC          1.57
    com.apple.driver.AppleIntelYonahProfile          14
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleIntelPenrynProfile          17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.AppleIntelNehalemProfile          11
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AirPortBrcm43xx          423.91.27
    com.apple.driver.AppleGraphicsControl          2.10.6
    com.apple.GeForce          6.3.6
    com.apple.iokit.AppleYukon2          3.2.1b1
    com.apple.driver.AppleIntelMeromProfile          19
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleBacklight          170.0.46
    com.apple.driver.AppleBluetoothMultitouch          54.3
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.StorageLynx          2.6.1
    com.apple.driver.Oxford_Semi          2.6.1
    com.apple.driver.LSI_FW_500          2.6.1
    com.apple.driver.IOFireWireSerialBusProtocolSansPhysicalUnit          2.6.1
    com.apple.driver.initioFWBridge          2.6.1
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.driver.PioneerSuperDrive          2.6.1
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleUSBUHCI          4.2.0
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.AppleHDAHardwareConfigDriver          2.0.5f14
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.nvidia.nv50hal          6.3.6
    com.apple.NVDAResman          6.3.6
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.driver.AppleUSBHIDKeyboard          141.5
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.0.6
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOATAPIProtocolTransport          2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.driver.AppleFileSystemDriver          2.0
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.TMSafetyNet          6
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          289
    com.apple.iokit.IOStorageFamily          1.6.3
    com.apple.driver.AppleACPIPlatform          1.3.6
    com.apple.iokit.IOPCIFamily          2.6.5
    com.apple.iokit.IOACPIFamily          1.3.0
    Model: iMac8,1, BootROM IM81.00C1.B00, 2 processors, Intel Core 2 Duo, 3.06 GHz, 4 GB, SMC 1.30f1
    Graphics: NVIDIA GeForce 8800 GS, NVIDIA GeForce 8800 GS, PCIe, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8C), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Network Service: USB Ethernet (en2), Ethernet, en2
    Serial ATA Device: ST3500418ASQ, 465.76 GB
    Parallel ATA Device: PIONEER DVD-RW  DVR-K06A, 3.7 GB
    USB Device: USB 2.0 Hub [MTT], 0x1a40  (TERMINUS TECHNOLOGY INC.), 0x0201, 0xfa200000 / 2
    USB Device: Android Phone, 0x0bb4  (HTC Corporation), 0x0ff9, 0xfa230000 / 4
    USB Device: USB to Serial-ATA bridge, 0x1bcf  (Sunplus Innovation Technology Inc.), 0x0c31, 0xfa240000 / 3
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8502, 0xfd400000 / 3
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd100000 / 2
    USB Device: Ext HDD 1021, 0x1058  (Western Digital Technologies, Inc.), 0x1021, 0xfd130000 / 7
    USB Device: EPSON WorkForce 845 Series, 0x04b8  (Seiko Epson Corp.), 0x0892, 0xfd120000 / 6
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfd140000 / 5
    USB Device: External, 0x13fd  (Initio Corporation), 0x1840, 0xfd143000 / 10
    USB Device: GoFlex Desk, 0x0bc2  (Seagate LLC), 0x50a7, 0xfd142000 / 9
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfd141000 / 8
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0xfd141200 / 11
    USB Device: External, 0x13fd  (Initio Corporation), 0x1840, 0xfd110000 / 4
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x5d100000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1a100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x820f, 0x1a110000 / 3
    FireWire Device: d2 Quadra v3C, LaCie, Up to 800 Mb/sec
    FireWire Device: My Passport 071D, WD, Up to 800 Mb/sec
    Oct 10
    Interval Since Last Panic Report:  2233951 sec
    Panics Since Last Report:          3
    Anonymous UUID:                    7C83D2C1-7F6C-4719-B712-D7C377C8A24D
    Thu Oct 10 11:40:56 2013
    panic(cpu 1 caller 0x5dff0c97): NVRM[0/1:0:0]: Read Error 0x00002500: CFG 0x060910de 0x00100406 0xe2000000, BAR0 0xe2000000 0x5eb04000 0x092480a2, D0, P3/4
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x5c84b688 : 0x21b837 (0x5dd7fc 0x5c84b6bc 0x223ce1 0x0)
    0x5c84b6d8 : 0x5dff0c97 (0x5e20622c 0x5e276840 0x5e214f88 0x0)
    0x5c84b778 : 0x5e7f1a7d (0x9758804 0x7411004 0x2500 0x7411004)
    0x5c84b7b8 : 0x5e7e2d5e (0x7411004 0x2500 0x0 0x0)
    0x5c84b838 : 0x5e7d9132 (0x7411004 0x978a804 0x41 0x5c84b870)
    0x5c84b958 : 0x5e0f6b4d (0x7411004 0x978a804 0xabaa00c 0x200)
    0x5c84b998 : 0x5e175a6e (0x7411004 0x978a804 0xb7dcf2c 0xb7dcf04)
    0x5c84ba48 : 0x5e1772df (0x7411004 0x9795c04 0x0 0x0)
    0x5c84bad8 : 0x5e7d7f19 (0x7411004 0x9795c04 0x6 0x2)
    0x5c84bb58 : 0x5e7e1f8e (0x7411004 0x978a804 0x1000 0x5c84bc6c)
    0x5c84bcc8 : 0x5e81933e (0x7411004 0x978a804 0x0 0x0)
    0x5c84bdf8 : 0x5e12a258 (0x7411004 0x774b004 0x0 0x0)
    0x5c84be38 : 0x5dff9e2b (0x7411004 0x774b004 0x0 0x0)
    0x5c84bed8 : 0x553ec7 (0x0 0x9902e80 0x1 0x83e4000)
    0x5c84bf28 : 0x552ea6 (0x9902e80 0x0 0x0 0x4ecc7284)
    0x5c84bf88 : 0x552eea (0x8b6f6c0 0x704c100 0x5c84bfc8 0x4d45e9)
    0x5c84bfc8 : 0x2a179c (0x8b6f6c0 0x0 0x10 0x79066c4)
          Kernel Extensions in backtrace (with dependencies):
             com.apple.nvidia.nv50hal(6.3.6)@0x5e6ef000->0x5eb03fff
                dependency: com.apple.NVDAResman(6.3.6)@0x5df8a000
             com.apple.NVDAResman(6.3.6)@0x5df8a000->0x5e277fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)@0x55a02000
                dependency: com.apple.iokit.IONDRVSupport(2.2.1)@0x5ce45000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2.1)@0x5cccf000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386
    System model name: iMac8,1 (Mac-F227BEC8)
    System uptime in nanoseconds: 275304880408
    unloaded kexts:
    (none)
    loaded kexts:
    com.vmware.kext.vmnet          3.1.2
    com.vmware.kext.vmioplug          3.1.2
    com.vmware.kext.vmci          3.1.2
    com.vmware.kext.vmx86          3.1.2
    org.virtualbox.kext.VBoxNetAdp          4.1.18
    org.virtualbox.kext.VBoxNetFlt          4.1.18
    org.virtualbox.kext.VBoxUSB          4.1.18
    org.virtualbox.kext.VBoxDrv          4.1.18
    com.bresink.driver.BRESINKx86Monitoring          2.0
    com.kensington.mouseworks.driver.VirtualMouse          3.0
    com.kensington.trackballworks.driver          1.0.0
    com.pctools.iantivirus.kfs          1.0.1
    com.kensington.mouseworks.driver.KMWUSBHIDMouse          3.0
    com.kensington.mouseworks.iokit.KensingtonMouseDriver          3.0
    com.makemkv.kext.daspi          1
    com.Logitech.Control Center.HID Driver          3.3.0
    com.seagate.driver.PowSecLeafDriver_10_5          5.2.2
    com.seagate.driver.PowSecLeafDriver_10_4          5.2.2
    com.roxio.BluRaySupport          1.1.6
    com.seagate.driver.PowSecDriverCore          5.2.2
    com.apple.filesystems.udf          2.1.1 - last loaded 58033495234
    com.apple.filesystems.msdosfs          1.6.3
    com.apple.driver.AppleHWSensor          1.9.3d0
    com.apple.filesystems.autofs          2.1.0
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.InternalModemSupport          2.6.2
    com.apple.driver.AudioAUUC          1.57
    com.apple.driver.AppleUpstreamUserClient          3.5.7
    com.apple.driver.AppleIntelYonahProfile          14
    com.apple.driver.AppleMCCSControl          1.0.20
    com.apple.driver.AppleIntelPenrynProfile          17
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.GeForce          6.3.6
    com.apple.driver.AppleIntelNehalemProfile          11
    com.apple.driver.AppleGraphicsControl          2.10.6
    com.apple.driver.AirPortBrcm43xx          423.91.27
    com.apple.driver.AppleHDA          2.0.5f14
    com.apple.driver.AudioIPCDriver          1.1.6
    com.apple.driver.AppleBluetoothMultitouch          54.3
    com.apple.iokit.AppleYukon2          3.2.1b1
    com.apple.driver.AppleIntelMeromProfile          19
    com.apple.driver.AppleBacklight          170.0.46
    com.apple.driver.AirPortBrcm43224          428.42.4
    com.apple.driver.ACPI_SMC_PlatformPlugin          4.7.0a1
    com.apple.driver.AppleLPC          1.5.1
    com.apple.driver.AppleIRController          303.8
    com.apple.driver.StorageLynx          2.6.1
    com.apple.driver.Oxford_Semi          2.6.1
    com.apple.driver.LSI_FW_500          2.6.1
    com.apple.driver.IOFireWireSerialBusProtocolSansPhysicalUnit          2.6.1
    com.apple.driver.initioFWBridge          2.6.1
    com.apple.iokit.SCSITaskUserClient          2.6.8
    com.apple.driver.PioneerSuperDrive          2.6.1
    com.apple.BootCache          31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage          1.6.4
    com.apple.driver.AppleUSBHub          4.2.4
    com.apple.driver.AppleFWOHCI          4.7.3
    com.apple.driver.AppleAHCIPort          2.1.7
    com.apple.driver.AppleIntelPIIXATA          2.5.1
    com.apple.driver.AppleEFINVRAM          1.4.0
    com.apple.driver.AppleUSBEHCI          4.2.4
    com.apple.driver.AppleUSBUHCI          4.2.0
    com.apple.driver.AppleRTC          1.3.1
    com.apple.driver.AppleHPET          1.5
    com.apple.driver.AppleACPIButtons          1.3.6
    com.apple.driver.AppleSMBIOS          1.7
    com.apple.driver.AppleACPIEC          1.3.6
    com.apple.driver.AppleAPIC          1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient          142.6.0
    com.apple.security.sandbox          1
    com.apple.security.quarantine          0
    com.apple.nke.applicationfirewall          2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement          142.6.0
    com.apple.driver.AppleProfileReadCounterAction          17
    com.apple.driver.AppleProfileTimestampAction          10
    com.apple.driver.AppleProfileThreadInfoAction          14
    com.apple.driver.AppleProfileRegisterStateAction          10
    com.apple.driver.AppleProfileKEventAction          10
    com.apple.driver.AppleProfileCallstackAction          20
    com.apple.iokit.IOSurface          74.2
    com.apple.iokit.IOBluetoothSerialManager          2.4.5f3
    com.apple.iokit.IOSerialFamily          10.0.3
    com.apple.driver.AppleHDAHardwareConfigDriver          2.0.5f14
    com.apple.driver.DspFuncLib          2.0.5f14
    com.apple.iokit.IOAudioFamily          1.8.3fc2
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.IOBluetoothHIDDriver          2.4.5f3
    com.apple.driver.AppleMultitouchDriver          207.11
    com.apple.nvidia.nv50hal          6.3.6
    com.apple.NVDAResman          6.3.6
    com.apple.iokit.IOFireWireIP          2.0.3
    com.apple.driver.AppleBacklightExpert          1.0.1
    com.apple.iokit.IONDRVSupport          2.2.1
    com.apple.iokit.IO80211Family          320.1
    com.apple.iokit.IONetworkingFamily          1.10
    com.apple.driver.AppleSMC          3.1.0d5
    com.apple.driver.IOPlatformPluginFamily          4.7.0a1
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.iokit.AppleProfileFamily          41
    com.apple.driver.AppleHDAController          2.0.5f14
    com.apple.iokit.IOGraphicsFamily          2.2.1
    com.apple.iokit.IOHDAFamily          2.0.5f14
    com.apple.driver.AppleUSBHIDKeyboard          141.5
    com.apple.driver.AppleHIDKeyboard          141.5
    com.apple.driver.BroadcomUSBBluetoothHCIController          2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController          2.4.5f3
    com.apple.iokit.IOBluetoothFamily          2.4.5f3
    com.apple.iokit.IOUSBHIDDriver          4.2.0
    com.apple.iokit.IOUSBMassStorageClass          2.6.7
    com.apple.driver.AppleUSBMergeNub          4.2.4
    com.apple.driver.AppleUSBComposite          3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          2.6.8
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.6
    com.apple.iokit.IOCDStorageFamily          1.6.1
    com.apple.driver.XsanFilter          402.1
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.0
    com.apple.iokit.IOFireWireSBP2          4.0.6
    com.apple.iokit.IOSCSIBlockCommandsDevice          2.6.8
    com.apple.iokit.IOATAPIProtocolTransport          2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          2.6.8
    com.apple.driver.AppleFileSystemDriver          2.0
    com.apple.iokit.IOUSBUserClient          4.2.4
    com.apple.iokit.IOFireWireFamily          4.2.6
    com.apple.iokit.IOAHCIFamily          2.0.6
    com.apple.iokit.IOATAFamily          2.5.1
    com.apple.iokit.IOUSBFamily          4.2.4
    com.apple.driver.AppleEFIRuntime          1.4.0
    com.apple.iokit.IOHIDFamily          1.6.6
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple

  • Re: javax.faces.convert.Converter error, how to diagnose?

    I’m rendering a region on a page. The region is a table which is entirely build in java. The .jsff for the region looks kind of like this:
    <af:treeTable value="#{backingBeanScope.myBean.treeModel}" var="row" etc…. >
    <af:forEach items="#{backingBeanScope.myBean.columns}" var="column">
    <af:column binding="#{column.adfColumn}" />
    </af:forEach>
    </af:treeTable>
    When a row selection happens, there is context menu build, where one of the menuitems pops a dialog. After the dialog is dismissed a return handler/listener is called:
    public void propertyToolReturnHandler(ReturnEvent event)
    AdfUtil.showMessageDialog(AdfUtil.MESSAGE_TYPE.INFORMATION, “some msg”, “some msg”, true);
    Notice the last param to showMessageDialog, which is “true”, as I want to show the message as inline. However, having it set to “true” causes the following exception. If I set it to “false”, then it does work and a popup message appears with the “some msg” text.
    I’m truly stuck trying to figure out what Converter is missing and where. Any ideas will be most welcomed!
    The error I get:
    [Ljava.lang.Object; cannot be cast to javax.faces.convert.Converter
    ADF_FACES-60097:For more information, please see the server's error log for an entry beginning with: ADF_FACES-60096:Server Exception during PPR, #2
    Examining the EMGC_OMS1.out file I see (partial):
    <Apr 10, 2013 2:39:38 PM PDT> <Error> <oracle.adfinternal.view.faces.config.rich.RegistrationConfigurator> <BEA-000000> <ADF_FACES-60096:Server Exception during PPR, #2
    java.lang.ClassCastException: [Ljava.lang.Object; cannot be cast to javax.faces.convert.Converter
         at oracle.adfinternal.view.faces.renderkit.rich.ValueRenderer.getConverter(ValueRenderer.java:197)
         at oracle.adfinternal.view.faces.renderkit.rich.ValueRenderer.addClientConverterRenderScript(ValueRenderer.java:220)
         at oracle.adfinternal.view.faces.renderkit.rich.OutputLabelRenderer.encodeAll(OutputLabelRenderer.java:241)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1431)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:341)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:405)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2778)
         at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer.access$500(RegionRenderer.java:49)
         at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer$ChildEncoderCallback.processComponent(RegionRenderer.java:574)
         at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer$ChildEncoderCallback.processComponent(RegionRenderer.java:553)
         at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:170)
         at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:290)
         at org.apache.myfaces.trinidad.component.UIXGroup.processFlattenedChildren(UIXGroup.java:96)
         at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:160)
         at org.apache.myfaces.trinidad.component.UIXComponent.processFlattenedChildren(UIXComponent.java:290)
         at org.apache.myfaces.trinidad.component.UIXComponent.encodeFlattenedChildren(UIXComponent.java:255)
         at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer._encodeChildren(RegionRenderer.java:270)
         at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer.encodeAll(RegionRenderer.java:201)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1431)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:341)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:767)
         at oracle.adf.view.rich.component.fragment.UIXRegion.encodeEnd(UIXRegion.java:321)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:937)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:405)
         at oracle.adf.view.rich.render.RichRenderer.encodeChild(RichRenderer.java:2778)
         at oracle.adf.view.rich.render.RichRenderer.encodeStretchedChild(RichRenderer.java:2149)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelBoxRenderer.access$500(PanelBoxRenderer.java:39)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelBoxRenderer$ChildEncoderCallback.processComponent(PanelBoxRenderer.java:2267)
         at oracle.adfinternal.view.faces.renderkit.rich.PanelBoxRenderer$ChildEncoderCallback.processComponen
    Ania.
    Edited by: user12869467 on Apr 12, 2013 1:57 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    I did more trial/error with this problem. It is not related to AdfUtil.showMessageDialog().
    My java-built table, shows a popup. After the popup is dismissed, I will get this exception, not right away though. The view has tabs, if after dismissing the dialog, I navigate to some other tab, and then back to the one which has the table, that is when the error shows up.
    ANY help on how to diagnose this problem will be very much appreciated!
    Ania.

  • If my network goes out briefly due to a problem at my ISP, FireFox immediatly opens a "diagnose network problems" page. How can I stop this?

    If my network connection goes out briefly due to a problem at my ISP, FireFox immediately opens a "diagnose network problems" page. This is particularly annoying when I don't even have FireFox or any other software open. Ideally, I do NOT want FireFox to even check if my Network is connected. How can I stop this?

    Application Basics
    Name: Firefox
    Version: 36.0.4
    User Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:36.0) Gecko/20100101 Firefox/36.0
    Multiprocess Windows: 0/1
    Crash Reports for the Last 3 Days
    All Crash Reports
    Extensions
    Name: Avast Online Security
    Version: 10.2.0.187
    Enabled: true
    ID: [email protected]
    Name: Download Manager Tweak
    Version: 1.0.8
    Enabled: true
    ID: {F8A55C97-3DB6-4961-A81D-0DE0080E53CB}
    Name: FinalVideoDownloader plugin for Mozilla Firefox
    Version: 1.0.1
    Enabled: true
    ID: [email protected]
    Graphics
    Adapter Description: AMD Radeon HD 6670
    Adapter Drivers: aticfx64 aticfx64 aticfx64 aticfx32 aticfx32 aticfx32 atiumd64 atidxx64 atidxx64 atiumdag atidxx32 atidxx32 atiumdva atiumd6a atitmm64
    Adapter RAM: 1024
    Device ID: 0x6758
    Direct2D Enabled: true
    DirectWrite Enabled: true (6.3.9600.16384)
    Driver Date: 7-4-2014
    Driver Version: 13.251.9001.1001
    GPU #2 Active: false
    GPU Accelerated Windows: 1/1 Direct3D 11 (OMTC)
    Subsys ID: 25451458
    Vendor ID: 0x1002
    WebGL Renderer: Google Inc. -- ANGLE (AMD Radeon HD 6670 Direct3D9Ex vs_3_0 ps_3_0)
    windowLayerManagerRemote: true
    AzureCanvasBackend: direct2d
    AzureContentBackend: direct2d
    AzureFallbackCanvasBackend: cairo
    AzureSkiaAccelerated: 0
    Important Modified Preferences
    accessibility.typeaheadfind.flashBar: 0
    browser.cache.disk.capacity: 358400
    browser.cache.disk.smart_size_cached_value: 358400
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    browser.cache.frecency_experiment: 1
    browser.link.open_newwindow: 2
    browser.places.smartBookmarksVersion: 7
    browser.sessionstore.restore_on_demand: false
    browser.sessionstore.upgradeBackup.latestBuildID: 20150320202338
    browser.startup.homepage_override.buildID: 20150320202338
    browser.startup.homepage_override.mstone: 36.0.4
    browser.tabs.autoHide: true
    dom.mozApps.used: true
    extensions.lastAppVersion: 36.0.4
    font.internaluseonly.changed: false
    gfx.direct3d.last_used_feature_level_idx: 0
    media.gmp-gmpopenh264.lastUpdate: 1423171160
    media.gmp-gmpopenh264.version: 1.3
    media.gmp-manager.lastCheck: 1430187591
    network.cookie.prefsMigrated: true
    places.database.lastMaintenance: 1430187593
    places.history.expiration.transient_current_max_pages: 104858
    plugin.disable_full_page_plugin_for_types: application/pdf,application/vnd.adobe.xfdf,application/vnd.fdf
    plugin.importedState: true
    plugin.state.npgeplugin: 0
    plugin.state.npgoogleupdate: 0
    plugin.state.npitunes: 0
    print.printer_Canon_MX920_series_Printer.print_bgcolor: false
    print.printer_Canon_MX920_series_Printer.print_bgimages: false
    print.printer_Canon_MX920_series_Printer.print_colorspace:
    print.printer_Canon_MX920_series_Printer.print_command:
    print.printer_Canon_MX920_series_Printer.print_downloadfonts: false
    print.printer_Canon_MX920_series_Printer.print_duplex: 0
    print.printer_Canon_MX920_series_Printer.print_edge_bottom: 0
    print.printer_Canon_MX920_series_Printer.print_edge_left: 0
    print.printer_Canon_MX920_series_Printer.print_edge_right: 0
    print.printer_Canon_MX920_series_Printer.print_edge_top: 0
    print.printer_Canon_MX920_series_Printer.print_evenpages: true
    print.printer_Canon_MX920_series_Printer.print_footercenter:
    print.printer_Canon_MX920_series_Printer.print_footerleft: &PT
    print.printer_Canon_MX920_series_Printer.print_footerright: &D
    print.printer_Canon_MX920_series_Printer.print_headercenter:
    print.printer_Canon_MX920_series_Printer.print_headerleft: &T
    print.printer_Canon_MX920_series_Printer.print_headerright: &U
    print.printer_Canon_MX920_series_Printer.print_in_color: true
    print.printer_Canon_MX920_series_Printer.print_margin_bottom: 0.5
    print.printer_Canon_MX920_series_Printer.print_margin_left: 0.5
    print.printer_Canon_MX920_series_Printer.print_margin_right: 0.5
    print.printer_Canon_MX920_series_Printer.print_margin_top: 0.5
    print.printer_Canon_MX920_series_Printer.print_oddpages: true
    print.printer_Canon_MX920_series_Printer.print_orientation: 0
    print.printer_Canon_MX920_series_Printer.print_page_delay: 50
    print.printer_Canon_MX920_series_Printer.print_paper_data: 1
    print.printer_Canon_MX920_series_Printer.print_paper_height: 11.00
    print.printer_Canon_MX920_series_Printer.print_paper_name:
    print.printer_Canon_MX920_series_Printer.print_paper_size_type: 0
    print.printer_Canon_MX920_series_Printer.print_paper_size_unit: 0
    print.printer_Canon_MX920_series_Printer.print_paper_width: 8.50
    print.printer_Canon_MX920_series_Printer.print_plex_name:
    print.printer_Canon_MX920_series_Printer.print_resolution: 0
    print.printer_Canon_MX920_series_Printer.print_resolution_name:
    print.printer_Canon_MX920_series_Printer.print_reversed: false
    print.printer_Canon_MX920_series_Printer.print_scaling: 1.00
    print.printer_Canon_MX920_series_Printer.print_shrink_to_fit: true
    print.printer_Canon_MX920_series_Printer.print_to_file: false
    print.printer_Canon_MX920_series_Printer.print_unwriteable_margin_bottom: 0
    print.printer_Canon_MX920_series_Printer.print_unwriteable_margin_left: 0
    print.printer_Canon_MX920_series_Printer.print_unwriteable_margin_right: 0
    print.printer_Canon_MX920_series_Printer.print_unwriteable_margin_top: 0
    print.printer_HP_Photosmart_C4380_series.print_bgcolor: false
    print.printer_HP_Photosmart_C4380_series.print_bgimages: false
    print.printer_HP_Photosmart_C4380_series.print_colorspace:
    print.printer_HP_Photosmart_C4380_series.print_command:
    print.printer_HP_Photosmart_C4380_series.print_downloadfonts: false
    print.printer_HP_Photosmart_C4380_series.print_duplex: 0
    print.printer_HP_Photosmart_C4380_series.print_edge_bottom: 0
    print.printer_HP_Photosmart_C4380_series.print_edge_left: 0
    print.printer_HP_Photosmart_C4380_series.print_edge_right: 0
    print.printer_HP_Photosmart_C4380_series.print_edge_top: 0
    print.printer_HP_Photosmart_C4380_series.print_evenpages: true
    print.printer_HP_Photosmart_C4380_series.print_footercenter:
    print.printer_HP_Photosmart_C4380_series.print_footerleft: &PT
    print.printer_HP_Photosmart_C4380_series.print_footerright: &D
    print.printer_HP_Photosmart_C4380_series.print_headercenter:
    print.printer_HP_Photosmart_C4380_series.print_headerleft: &T
    print.printer_HP_Photosmart_C4380_series.print_headerright: &U
    print.printer_HP_Photosmart_C4380_series.print_in_color: true
    print.printer_HP_Photosmart_C4380_series.print_margin_bottom: 0.5
    print.printer_HP_Photosmart_C4380_series.print_margin_left: 0.5
    print.printer_HP_Photosmart_C4380_series.print_margin_right: 0.5
    print.printer_HP_Photosmart_C4380_series.print_margin_top: 0.5
    print.printer_HP_Photosmart_C4380_series.print_oddpages: true
    print.printer_HP_Photosmart_C4380_series.print_orientation: 0
    print.printer_HP_Photosmart_C4380_series.print_page_delay: 50
    print.printer_HP_Photosmart_C4380_series.print_paper_data: 1
    print.printer_HP_Photosmart_C4380_series.print_paper_height: 11.00
    print.printer_HP_Photosmart_C4380_series.print_paper_name:
    print.printer_HP_Photosmart_C4380_series.print_paper_size_type: 0
    print.printer_HP_Photosmart_C4380_series.print_paper_size_unit: 0
    print.printer_HP_Photosmart_C4380_series.print_paper_width: 8.50
    print.printer_HP_Photosmart_C4380_series.print_plex_name:
    print.printer_HP_Photosmart_C4380_series.print_resolution: 0
    print.printer_HP_Photosmart_C4380_series.print_resolution_name:
    print.printer_HP_Photosmart_C4380_series.print_reversed: false
    print.printer_HP_Photosmart_C4380_series.print_scaling: 1.00
    print.printer_HP_Photosmart_C4380_series.print_shrink_to_fit: true
    print.printer_HP_Photosmart_C4380_series.print_to_file: false
    print.printer_HP_Photosmart_C4380_series.print_unwriteable_margin_bottom: 0
    print.printer_HP_Photosmart_C4380_series.print_unwriteable_margin_left: 0
    print.printer_HP_Photosmart_C4380_series.print_unwriteable_margin_right: 0
    print.printer_HP_Photosmart_C4380_series.print_unwriteable_margin_top: 0
    privacy.donottrackheader.enabled: true
    privacy.sanitize.migrateFx3Prefs: true
    storage.vacuum.last.index: 1
    storage.vacuum.last.places.sqlite: 1427897875
    Important Locked Preferences
    JavaScript
    Incremental GC: true
    Accessibility
    Activated: false
    Prevent Accessibility: 0
    Library Versions
    NSPR
    Expected minimum version: 4.10.7
    Version in use: 4.10.7
    NSS
    Expected minimum version: 3.17.4 Basic ECC
    Version in use: 3.17.4 Basic ECC
    NSSSMIME
    Expected minimum version: 3.17.4 Basic ECC
    Version in use: 3.17.4 Basic ECC
    NSSSSL
    Expected minimum version: 3.17.4 Basic ECC
    Version in use: 3.17.4 Basic ECC
    NSSUTIL
    Expected minimum version: 3.17.4
    Version in use: 3.17.4
    Experimental Features
    ---------------------

  • How to diagnose problem with CCMS?

    RWB -> Component Monitoring -> Integration
    I have a red flag on  CCMS Status Last Retry Jan 24, 2006 5:15:03 PM
    How to diagnose what is wrong with CCMS?

    Which o/s are you using??
    We had this problem on windows 2003, and the SAPCCMSR.00 service was not running. I started the service manually and this corrected the error.

  • How I resolved my Apple TV download speed problems

    I have been experiencing download speed problems with my Apple TV2 for a while. The performance was so bad that I couldn't buy or rent movies from Apple TV, because it would take hours to even start the download. I wasn't sure if the problem was with my ISP (Comcast), the modem, or the wireless router.
    I just logged in to my wireless router (Cisco Linksys E300) and changed the following two settings:
    Network Mode = Wireless-N Only
    Channel Width = 20 Mhz Only
    After restarting my Apple TV2, movie streaming is now perfect. It took less than one minute to start the streaming of a recently purchased movie.
    I recalled reading some time ago that a Network Mode which allows switching between B, G and N wireless modes can cause problems with streaming. Perhaps each time switching occurs, the Apple TV has to renegotiate with the iTunes Store. I'm not sure that the "Channel Width" setting is necessary or relevant, but since I'm happily streaming again, I don't really care.
    I hope that this helps others resolve this problem.

    If you have home sharing enabled on the Apple TV and an IOS running on the same network you can use the remote app. Otherwise, you will need to purchase a new remote.

  • How to diagnose dead battery vs. something more serious?

    I'm in the 11th month of ownership of an MBA, purchased brand new last year.  128MB model.
    My battery, I believe, is dead but I'm not sure how to diagnose the matter.
    Here's what's lead me to this conclusion:
    MBA charger light stays off when plugged in (not dim, but off).   I've had the dim light issue as well, earlier this year, and Apple replaced the charger.  This time, however, the light stays completely off.
    Battery icon in top right corner tells me that no charger is plugged in.  The icon is in battery mode. 
    Battery charge keeps decreasing steadily in % value despite charger being plugged in, indicating that battery is continually discharging.
    My wife has an MBP, and I've used her 85W charger on my MBA with the same result... i.e charger light stays off.   I know that the MBP charger is in good health as it charges the MBP with no issues (orange light).
    I've used my MBA charger on her MBP, and it charges the MBP just fine!!! (orange light)
    I've done an SMC and NVRAM reset on the MBA, which hasn't affected the situation. 
    Since I'm on 15% charge on the MBA, I've shut it down and have booked an appointment with Apple to have it looked at.
    In the mean-time, I'm hoping to get some clues from fellow MacBook users on this forum.
    I've read somewhere that if it is indeed the battery that's faulty, then once the charger is unplugged, the MBA should turn off immediately.  This isn't the case for me... I'm able to run off battery (whatever tiny amount of charge I have left) with the charger unplugged.
    Hence, I've ruled out the charger being faulty.  I'm not so sure that the battery is faulty.  I'm thinking the issue might lie elsewhere... maybe the magsafe connector on the MBA?
    I should also mention that when I opened the lid on the MBA earlier this evening, before noticing this charging issue, the screen flickered brightly once.  The screen looked and operated normally after the flicker.  Not sure if there's a connection.  I'm beginning to think there is.
    I should also add that, even though the MBA has been a pleasure to use, the past 11 months haven't been trouble-free... which adds to the suspicion that the issue might indeed be somewhere deeper.
    A brief history of "issues":
    About a month or so into ownership... my fan, one day, decided to suddenly spin up to full RPMs and stayed at that speed for an eternity.  I'm used to the fan speed steadily going up in direct relation to the CPU temp.   However, the CPU temp this time was 35C the entire time (according to iStat Menus)... i.e. the MBA was "stone cold".  It made no sense for the fan to be on full-blast.  In addition, I had nothing running. No intensive software.  Not even Safari.  Just "Finder".   Turning the MBA off naturally caused the fan to stop.  However, the moment I powered it back on again, the fan came back on at full speed again.
    An SMC reset fixed the issue, and I was good to go.  This issue occurred again a few months later, but I solved it right away with the SMC reset.
    After another month or so I noticed, while listening to music via headphones that were plugged into the MBA, that I could hear an electric "hum" in the headphones.  Then all of a sudden the hum went away.  I discovered that the hum was present only when I physically touched the metal case of the MBA and went away as soon as I removed my hand.   I mentioned this to a Genius bar... err... genius and he seemed perplexed.  He wasn't able to offer an answer.
    I've also noticed that when the MBA is charging, and I run my finger-tips over the MBA's metal surface that I feel static.  When the charger is unplugged, I no longer feel the static.   Again the genius didn't have an answer.  He probably thought I was weird.
    I'm thinking my MBA might have "grounding" issues, but am no expert in this field.   With the latest charging issues, however, I'm leaning towards this theory again.
    Thoughts are welcome.
    Regards
    MrAir

    No clues, it is very apparent you have a hardware problem and it is not the battery. If it was the battery the computer would not be running as you say the charger is not charging the battery.
    There is a charging curcuit that has more then likely failed. You have done the correct thing, take it in and get it fixed before your warranty runs out.

  • How to diagnose flickering exported JS animations from Flash CC?

    Quick stats on my system:
    Macbook Pro Retina 2012 running OSX 10.9.3
    Flash CC 13.1.0.226
    I'm not experiencing an error so much as a lack of understanding about how to diagnose Flash CC JS export issues. Here's the backstory:
    In 2012, my company started working with an contract sprite artist. I was using the CS5.5 Creative Suite, and we were exporting normal png sequences from Flash for use in the game. After about 8 months, my cofounders and I realized that we could both reduce the load time for the game and also allow our artwork to be dynamically scalable by switching to JS exports of our art rather than the raster sprite sheets. Here's the blog post we wrote about it: http://blog.codecombat.com/hacking-our-way-to-vector-artwork-in-html5
    At the time, I didn't have Flash CC, and was reliant upon the CreateJS plugin to export the required JS files: CreateJS Developer Center | Adobe Developer Connection After another month or so, our contractor upgraded their version of Flash and we started having compatibility issues reading FLA files, so I upgraded as well. After doing some reading, I concluded that the CreateJS plugin was now incorporated into Flash CC as the HTML5 doc type, which was confirmed when I checked out the publish settings and resulting files.
    This is all a rather long winded way of saying that we have legacy artwork created with an older version of Flash but are now importing all of our artwork from JS files.
    Fast forward to today and we have two big issues:
    1) We can't figure out how to reduce the filesize of JS exports. As discussed in our blog post, vector artwork has upsides and downsides. One of the downsides we've found is that complex art that uses a lot of shapes ends up being substantially larger (in terms of filesize) than the appearance might otherwise suggest. Raster exports skirt this because a pixel is a pixel, but vector exports scale with the complexity of the source FLA. I'm not a Flash expert, and when we get files that are particularly complex, Flash either runs out of memory exporting them to JS files or we get files that are far too large to reasonably use. To be clear, the "out of memory" error isn't a problem because even if Flash finished the export, the resulting files would be too large for us to use (plus, I've done some digging and found a tutorial for correcting the out of memory error). Our artist is not familiar with the intricacies of the JS Flash exporter, so when we get a file that's too big or breaks the export, neither of us can really figure out a way to correct the problem. We have three questions in particular:
         a) Where can you view shape data that Flash is going to write to the JS files?
         b) Is there any way to edit said shape data inside the Flash CC interface?
         c) Is there any way to optimize shape data in Flash? For instance, in Photoshop, you can flatten images and export a psd with 500 layers as a single JPEG, is there any way to do something similar to shape data in Flash?
    2) Exports frequently break in weird ways. Many of the sprites that we created a year ago haven't needed to be re-imported into our game engine for some time. But every once in a while, I need to go back and fix, improve, or tweak an existing sprite, and then I run smack into the issue of reconciling files that were created without thought to JS exports with our current system. Just last week I was running into this issue in a big way and I made a screencast for our artist (since we work remotely) that I hoped might give him a better idea of the problem: Flash Errors - Treasure Chest, Flippable Tile - YouTube
    The two files mentioned in that screencast are both old (treasure chest) and new (flippable land tile). We have a few questions:
         a) Why are the treasure chest frames "flickering" in the html5 preview? The problem doesn't appear inside Flash and is inconsistent between files. There are two FLA files: one in which the treasure chest is empty, and one in which it's full. The empty animation doesn't throw any errors, either when converting to the HTML5 doc type or on export, but the resulting animation flickers. The full treasure, on the other hand gives me 21 lines of these errors when I do the conversion (not when I export): "Blend Modes(Layer) is not supported in HTML5 Canvas document, and has been converted to Normal in an instance of Movieclip <Path>." The result in both cases is the same: the animations flicker, and neither our artist nor us can figure out why, or for that matter, even begin to troubleshoot it. This SO issue seems to describe the problem, but was never resolved, and I can't find anything else that seems to address it: CreateJS Publish of Flash Project Flickers - Stack Overflow
    I've uploaded the files involved to a public dropbox folder which I think you'll be able to access (Dropbox seems to be having some problems at the moment): Dropbox - flash_debugging
    Since my questions are fairly involved, and my goal is to gain a better understanding of the UI, not simply resolve an error, I'd be happy to pay for someone's expertise/time in getting me up to speed. You can get in touch with me at george [at] codecombat.com

    Hi George,
    I have taken a look at the files full_treasure_chest.fla and flippable_land.fla that you have shared via drop box and found that they both uses blank keyframe(s) followed by Keyframe(s). This was an issue and has been addressed in the latest release Flash CC 2014 (released on 18 June, 2014). Can you please install the latest build 14.0.0.110 and try this out?
    Thanks!
    Mohan

  • Fan speed problem Power Mac G5 Dual 1.8 GHz PowerPC - please help

    Please HELP, I have a fan speed problem with my Power Mac G5 Dual 1.8 GHz PowerPC
    This is a NOT an Intel machine. I am running Mac OS X v10.5.8
    Power Mac G5 - PowerMac 7,2 - Power PC 970 (2.2) - 1.8 GHz with 2 CPUs - L2 Cache (per CPU) 512 KB - Memory 8 GB - Bus Speed 900 MHz - Boot ROM version 5.1.5b1
    I have included below Links to download a sound file (.m4a) that I recorded of the fan speed problem and both a .pdf and .spx files of my system profile.
    download sound file
    http://homepage.mac.com/rep3/filechute/myG5dualsFans.m4a
    down load .spx file of my system preferences
    http://homepage.mac.com/rep3/filechute/systemProfileREP3-G5dual.spx
    down load .pdf file of my system preferences
    http://homepage.mac.com/rep3/filechute/systemProfileREP3-G5dual.pdf
    When did the fan problem start?
    After I replaced the mother board on the computer.
    Why did I replace the mother board?
    Because the experts at apple agreed with my diagnosis that the major crash problems & kernel panics must have some thing to do with a logic board gone bad. They would not work on it, because this Power Mac G5 dual 1.8 GHz machine is now a legacy model.
    What I have done to attempt to fix my fan speed problem? yes I checked the obvious things, here is a list:
    1) yes I checked to be sure that the new mother board was the same part number as the original one, and that all things that were unplugged from the old mother board - were actually plugged into the new mother board.
    2) all the fans work, I can see them spinning if I use a flashlight and look at them (cover on and off to get at some of them)
    3) check all RAM to make sure: a) it was installed properly b) that the RAM worked using TechTool Pro c) even started the machine with only the original RAM that came with it.
    4) I installed a Temperature monitor - to see if there was something reading as very hot inside that was causing the machine to continually run the fans at a high speed. No, no heat issues that I can see. Here are the reading from the sensors in degrees fahrenheit, 2009-10-11 16:11:01 -0500
    CPU A Die Temperature: 75.7℉
    CPU B Die Temperature: 81.5℉
    Drive Bay: 68.9℉
    Main Logic Board Air Inlet: 64.8℉
    Main Logic Board Ambient: 73.6℉
    Main Logic Board Backside: 76.3℉
    Memory Controller Heatsink: 93.2℉
    Processor Card A Ambient: 77.5℉
    Processor Card B Ambient: 77.0℉
    5) zapped the PRAM
    6) followed the SMU reset instructions for
    Power Mac G5 (Late 2004)
    To reset the SMU on a Power Mac G5 (Late 2004) computer, simply do the following:
    • Turn off the computer by selecting Shut Down from the Apple menu or by holding the power button until the computer turns off.
    • Remove the power cord from the computer.
    • Wait two minutes.
    • Plug in the power cord.
    • Turn on the computer.
    7) followed the SMU reset instructions:
    Resetting the Cuda/PMU
    How to reset the PMU:
    • If the computer is on, turn it off.
    • Disconnect ALL cables from the computer, including peripherals and power.
    • If possible, move the computer to a place where you are not standing on carpet.
    • Open the case and ground yourself by touching part of the metal frame inside the computer.
    • Find the Cuda or PMU button
    • Press the Cuda or PMU button ONCE. Do not press the button more than once before starting the computer up again.
    • Wait 10 seconds, then reconnect the cables you removed in step 2 and turn the computer on.
    • If the computer still does not respond after resetting the PMU, the computer may require service from an Apple Authorized Service Provider.
    8) ran disk utilities, repaired permissions
    9) found a setting in the system preferences that a chat room person suggested had something to do with fan speed. In Energy Saver, under options, processor performance was set to highest, I set it to automatic - this did not change anything that I could tell - BTW I checked my other G5 (a single processor that works fine) that is the setting that that it is set to, and it is nice and quiet.
    10) restarted the machine, ..
    11) found a Fan Control System Update - but it did not install when I tryed to install it -
    12) booted from OSX install disk and ran that disk utility
    13) used OnyX to fix disk permissions, clear caches and temp items
    Nope - still have the same high speed fan problem. ... PLEASE HELP!!
    I have been reading in the MacInTouch reader reports - found this: some one said to use this - thermal re-calibration using the Apple Authorized Service Providers' disk - but that's not available, at least I can not find it - anyone? have an answer to finding this - or can do it for me? I am in Chicago.

    The Genius at the downtown apple store said that because it's a "legacy machine" they would not work on it, .. so should I push them?
    Well, I personally think that's ridiculous, I'd Push them, I'd call AppleCare & talk up the chain if need be... there the ones that have or should have that Disc... man o man... Personally I'll never visit an Apple Store again in my lifetime, maybe try an independent AASP if none of that helps!..
    http://tinyurl.com/ykomqkn
    Man-o-man, pop my cork before I explode on that one, if I had anything to do with it I'd close that store.

  • HT1338 HOW CAN I SPEED UP MY MAC IT HAS A GRINDING SOUND AND THE COLOUR WHEEL SPIN AND FREEZES

    MY IMAC HAS A GRINDING SOUND AND ITS SLOW, THE WHEEL START SPIINING AND IT FREEZES I HAVE TO TURN IT OFF AND ON AGAIN , WHAT IS THE PROBLEM AND HOW CAN I SPEED IT UP AND GET IT TO RUN FASTER?

    Does the sound appear to be from the hard drive, such as when you do any work (which means the hard drive is being written to)?
    Have you received an email from Apple about their Seagate hard drive recall (for certain iMac models)? Check to see if yours is affected here:
    http://www.apple.com/support/imac-harddrive/
    In any case, a grinding noise is what I had, followed by other very strange behavior and the diagnosis was hard drive failure. So, whether you are covered or not, I would strongly suggest that you backup all your data as quickly as you can and - if you're not covered by warranty or the recall - book an appointment at your nearest Genius Bar for a diagnosis.
    Also, please do not use all caps - difficult to read and it's considering shouting on the internet.

  • How can I speed up the extract() function queries on XML

    Hi,
    Please I need some light on xml and indexes.
    This is my case:
    I use Oracle 9i R2.
    I have a table with some rows containing some few xml documents (each row contains a big xml document).
    Given a value for an attribute of a tag, I want to extract the entire section within the tags.
    Example:
    <MYTAG number="1">
    .....big stuff here
    </MYTAG>
    <MYTAG number="2">
    .....big stuff here
    </MYTAG>
    <MYTAG number="x">
    .....big stuff here
    </MYTAG>
    So for number=2 I would like to extract from the document the xmltype
    <MYTAG number="2">
    .....big stuff here
    </MYTAG>
    I created an index and have followed all the steps from the XML Database Developers Kit manual. Then I would use extrac() as the document says.
    Now some doubts arised:
    Are these text/xml indexes only useful for getting the rowid of my document?
    I mean, if I select 'x' from the table looking for some value, then the index is used. But when I use extract in the select to get the section I look for, the query gets really low, specially when xml documents are big. I think when I have only row with one document, getting the rowid is not the problem, but the extraction from the document is.
    Is the extraction process faster because of the index?
    For what I see, the index only helps me to find the rowid, but then Oracle has to deal with the very big document inside the row. At that point Its oracle against a big text processing and index has nothing to do.
    How can I speed up the extraction of the section?
    If there any other index or tool for help extraction to be faster?
    I would appreciate to know what can I do. I need help on this.
    Thanks in advance!

    Well,
    - What indexes, if any, already exist?
    - What do the functions rl and nice do?
    - What are the current query plans?
    - How restrictive are the various predicates?
    - What version of Oracle?
    Justin

  • Lion 10.7.2 On both mac book pro and iMac, both with Lion 10.7.2, obtain repeated iCal event notifications from calendar or address book.  Cannot turn these off.  They repeat several times per session and every time computer is used.  How to diagnose this

    Lion 10.7.2 On both mac book pro and iMac, both with Lion 10.7.2, obtain repeated iCal event notifications from calendar or address book.  Cannot turn these off.  They repeat several times per session and every time computer is used.  How to diagnose this?

    First, uninstall "SuperTV" (whatever that is) according to the developer's instructions. It isn't working and it's filling the log with noise.
    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left.
    Enter "BOOT_TIME" (without the quotes) in the search box. Note the timestamps of those log messages, which refer to the times when the system was booted. Now clear the search box and scroll back in the log to the last boot time when you had the problem. Post the messages logged before the boot, while the system was unresponsive or was failing to shut down. Please include the BOOT_TIME message at the end of the log extract.
    Post the log text, please, not a screenshot. If there are runs of repeated messages, post only one example of each. Don’t post many repetitions of the same message. When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    PLEASE DO NOT INDISCRIMINATELY DUMP THOUSANDS OF LINES FROM THE LOG INTO A MESSAGE. If you do that, I will not respond.
    Important: Some private information, such as your name, may appear in the log. Edit it out by search-and-replace in a text editor before posting.
    Step 2
    Still in Console, look under System Diagnostic Reports for crash or panic logs, and post the most recent one, if any. In the interest of privacy, I suggest you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if present (it may not be.) Please don’t post shutdownStall, spin, or hang logs — they're very long and not helpful.

Maybe you are looking for

  • Adding Dynamic remarks to the report by user

    Any idea's of adding text to queries? Our customer is using Crystal Reports based on Baan DWH. On of the functions is adding textblocks to the report and put in remarks / comments. This will be <u>replaced</u> by BW. Is it possible to add (dynamic) <

  • Object Link to Inspection Point (QAPP)

    I am trying to set up a new obejct link to an inspection point.  So, to start with I am trying to create a bespoke screen that will perform exactly as screen 204 the Equipment master object link. I have created two new screens SAPLCVIN 9000 and SAPLC

  • HT1414 i can't remember the passcode on my ipad

    I don't want to erase the content on my ipad.  Is there another way to recover the passcode I set on the device?

  • Instr.lib or user.lib?

    Hi, I want to publish some professional LV drivers for our hardware. Intuitively, I supposed that the right installation folder would be "instr.lib". Nevertheless, the NI Driver and VI Library Development Guidelines" (http://zone.ni.com/devzone/cda/t

  • When i go on a site we use daily it now wont let us log in user names ok not the password

    when we try and log in on our site it will accept user name not the password normally does ok