Random crashes and unable to browse onine despite being connected

Hi there, I am experiencing crashes at random times, sometimes video sometimes the pc goes down. I was good until the last round of updates. I have another issue too now, I cant connect to my router or view any other devices in network. After a reboot,
I can launch a web page, but after a few minutes, all I get is web page cant be displayed but I can ping sites fine. Even after relaunching IE, I get the same results. The connection fly out in the tray indicates Internet Access.... I am a bit lost here.

Kregorn
Please provide us with your Event Viewer administrative logs by following these steps:
Click Start Menu
Type eventvwr into Search programs and files (do not hit enter)
Right click eventvwr.exe and click Run as administrator
Expand Custom Views
Click Administrative Events
Right click Administrative Events
Save all Events in Custom View As...
Save them in a folder where you will remember which folder and save as Errors.evtx
Go to where you saved Errors.evtx
Right click Errors.evtx -> send to -> compressed (zipped) folder
Upload the .zip file to Onedrive or a file sharing service and put a link to it in your next post
If you have updated to win 8.1 and you get the error message "the system cannot find the file specified" it is a known problem.
 The work around is to edit the registry.  If you are not comfortable doing this DONT.  If you are, backup the key before you do
Press Win+"R" and input regedit
Navigate to:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WINEVT\Channels. Delete "Microsoft-Windows-DxpTaskRingtone/Analytic"
Wanikiya and Dyami--Team Zigzag

Similar Messages

  • Curve 8520 os: 5.0.0.681 randomly crashing and only shows white screen and unable to reboot unless plugged in

    Anyone else suffering from their curve 8520 os: 5.0.0.681 randomly crashing and only showing a white screen as well as it being unable to reboot unless it is plugged in? It often occurs when I'm playing media, using apps and maps. Had the same problem with my previous phone so it was sent in for repair and replaced but I'm still suffering from the same problem with the replacement handset! Any ideas how it fix this?
    Thanks

    Hello Me_Again
    Welcome to BlackBerry Support Community Forums
    Since you got a replacement it the same old Battery you are using or its a new Battery  with your replacement device.Sometime this white Screen or unable to reboot happen because of weak battery .I suggest if you can arrange a good quality Battery then try running your device a few hours to see if the problem is within the device or its just Battery issue.
    Prince
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.

  • My iPad air keeps crashing and freezing when browsing the internet . Please help :(

    My husband and I updated to the new OS. Now our iPad Air's keep crashing and freezing whilst browsing the internet.  We have done a reset and swiped away pages but nothing is helping. Its very frustrating Can anyone help? Thank you Jo

    Please tell me that it has NEVER been jailbroke.  If it has not been jailbroke, here are some standard repair procedures:
    First, confirm that this is what you did for a "reset."  Hold down the on/off switch and the Home button simultaneously until you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  It could take well over an hour!  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow the on-screen directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    At the end of the basic Restore, you will be asked if you wish to sync the iPad/iPod.  As before, say "yes."  Note that that sync selection will disappear and the Restore will end if you do not respond within a reasonable time.  If that happens, only the apps that are part of the IOS will appear on your device.  Corrective action is simple -  choose manual "Sync" from the bottom right of iTunes.
    If you're unable to do the Restore (or it doesn't help), go into Recovery Mode per the instructions here.  You WILL lose all of your data (game scores, etc,) but, for the most part, you can redownload apps and music without being charged again.  Also, since you have IOS-7, read this.

  • Camera video preview - Random crashes and green screens

    Hello everyone,
    I am currently working on a Windows Phone 8.1 app and I need to preview video from the phone's back camera. For quite some time I've been struggling with random crashes and green screens. When these green screens appear, all camera apps become affected and
    the device needs to be restarted. Occasionally the phone freezes and only recovers after battery removal. I test the app on my Lumia 620.
    After some web search, I found references to the same problem by many users/developers of different apps. I'm really frustrated as I've tried many possible solutions with no avail.
    Here is part of my code:
    //in App.xaml.cs:
    MediaCaptureInitializationSettings settings;
    public static MediaCapture captureMgr;
    public static bool UnableToInitializeCamera = false;
    public async Task InitializeVideoCapture()
    DeviceInformation backWebcam = await GetCameraDeviceInfoAsync(Windows.Devices.Enumeration.Panel.Back);
    if(captureMgr!=null) captureMgr.Dispose();
    captureMgr = new MediaCapture();
    settings = new MediaCaptureInitializationSettings();
    settings.StreamingCaptureMode = StreamingCaptureMode.Video;
    settings.PhotoCaptureSource = PhotoCaptureSource.VideoPreview;
    settings.AudioDeviceId = "";
    if (backWebcam != null)
    settings.VideoDeviceId = backWebcam.Id;
    else
    var _messageDialog = new MessageDialog("Back panel camera not found");
    _messageDialog.Commands.Add(new UICommand("OK"));
    _messageDialog.ShowAsync();
    try
    await captureMgr.InitializeAsync(settings);
    captureMgr.SetPreviewRotation(VideoRotation.Clockwise90Degrees);
    UnableToInitializeCamera = false;
    catch
    UnableToInitializeCamera = true;
    Debug.WriteLine("HANDLED EXCEPTION: camera could not be initialized");
    var _messageDialog = new MessageDialog("Unable to initialize camera");
    _messageDialog.Commands.Add(new UICommand("OK"));
    _messageDialog.ShowAsync();
    protected override async void OnLaunched(LaunchActivatedEventArgs e)
    //.... other app initialization code
    await InitializeVideoCapture();
    Window.Current.Activate();
    private async void OnResuming(object sender, object e)
    AppIsResuming = true;
    FinishedCameraInitialize = false;
    await Task.Delay(TimeSpan.FromSeconds(0.5));//this makes crashes less frequent
    await InitializeVideoCapture();
    FinishedCameraInitialize = true;
    if(WasPreviewingCamera)
    WasPreviewingCamera = false; //the following line allows time for SetupPage._captureElement to be assigned before video preview starts while (!SetupPage.CaptureElementSourceAssigned) await Task.Delay(TimeSpan.FromMilliseconds(1));
    SetupPage.CaptureElementSourceAssigned = false;
    try
    Debug.WriteLine("trying to restart video preview");
    await captureMgr.StartPreviewAsync();
    SetupPage.PreviewingCamera = true;
    catch
    Debug.WriteLine("HANDLED EXCEPTION: unable to start previewing");
    SetupPage.PreviewingCamera = false;
    GC.Collect();
    AppIsResuming = false;
    private async void OnSuspending(object sender, SuspendingEventArgs e)
    var deferral = e.SuspendingOperation.GetDeferral();
    while (AppIsResuming) await Task.Delay(TimeSpan.FromMilliseconds(1));//prevents crash when app is suspended right after it is resumed
    await CleanupCaptureResources();
    TimeOfLastSuspend = DateTime.Now;
    FinishedCameraInitialize = false;
    GC.Collect();
    deferral.Complete();
    public async Task CleanupCaptureResources()
    if (SetupPage.PreviewingCamera)
    await captureMgr.StopPreviewAsync();
    WasPreviewingCamera = true;
    SetupPage.PreviewingCamera = false;
    else WasPreviewingCamera = false;
    if (captureMgr != null) captureMgr.Dispose();
    //in SetupPage.xaml.cs
    void OnSuspending(object sender, Windows.ApplicationModel.SuspendingEventArgs e)
    var deferral = e.SuspendingOperation.GetDeferral();
    _captureElement.Source = null;
    CaptureElementSourceAssigned = false;
    GC.Collect();
    deferral.Complete();
    private async void OnResuming(object sender, object e)
    ProgressRing2.Visibility = Visibility.Visible;
    ProgressRing2.IsActive = true;
    while (!App.FinishedCameraInitialize) await Task.Delay(TimeSpan.FromMilliseconds(1));
    App.FinishedCameraInitialize = false;
    captureElement.Source = App.captureMgr;
    CaptureElementSourceAssigned = true;
    GC.Collect();
    ProgressRing2.Visibility = Visibility.Collapsed;
    ProgressRing2.IsActive = false;
    Any help towards a solution will be greatly appreciated.
    Thank you

    I will also advice that you start by following the
    Windows Store app sample.
    Is this a Windows Phone app?
    The crash/green screen only manifests itself when I suspend my app and switch to the default camera app (could be any other camera app perhaps). It happens roughly 1 out of 8 times. That's why I posted the suspension and resuming handlers, which I wrote
    according to the msdn instructions.
    I found
    this page with a sample that demonstrates the MediaCapture API for Windows Phone. Some developers have reported problems similar as mine. Has Microsoft dealt with this issue?
    I've spent quite a few weeks trying to investigate this problem, without actually knowing if it is my code that needs to be debugged. That's why I'm asking if other developers are facing similar problems.
    Thank you
    Edit: It seems that the crash/green screen can appear when suspending/switching to any app (regardless if it uses the camera or not). Also, all works fine when the app is running on the debugger.

  • My phone randomly crashed and it won't turn back on. Why?

    My iPhone 4 is running on 4.2 software, I believe. It just randomly crashed and after about 30 minutes it hasn't responded. I've had this happen twice before, the first time, I ultimately had to get a new phone. The previous time, it just came back to normal after 10 minutes. What do I do now?

    Hard Reset.
    - Hold down the Home Button (Circle button with White Square in it)
    - Wait for the 'Slide to Unlock' screen pops up
    Turn your phone off once a week for about 10 minutes

  • MacBook Pro 13-inch 2012 Yosemite - Random Crashes and restarts

    Good afternoon,
    My Macbook Pro 2012 running Yosemite randomly crashes and restarts itself with no pattern or discernible cause.  It has previously gone into the Apple Store several times for fault finding and come back with nothing that they could find. 
    Attached to the MacBook are a large monitor and a Evoluent upright USB mouse. 
    I typically run LibreOffice, iwork numbers and Adobe Reader, in addition to emails, calendar and safari
    MacBook Specs:
    - Intel HD Graphics 4000 1024 MB
    - 4 GB 1600 MHz DDR3
    - 2.5 GHz Intel Core i5
    The latest crash report is below.  If anyone has any similar experience, advice or fixes it would be most appreciated. 
    Thanks,  Dave
    Anonymous UUID:       1E7E6C3A-E6C3-92F7-7519-CAC5E2191747
    Mon Mar  2 12:58:30 2015
    *** Panic Report ***
    panic(cpu 2 caller 0xffffff8026170d0d): "a freed zone element has been modified in zone kalloc.1024: expected 0xffffff803d762000 but found 0xffffff8000000004, bits changed 0x3d762004, at offset 0 of 1024 in element 0xffffff803c6d1000, cookies 0x3f0011d5cfbffc4e 0x53521653487aa65"@/SourceCache/xnu/xnu-2782.10.72/osfmk/kern/zalloc.c:496
    Backtrace (CPU 2), Frame : Return Address
    0xffffff80bffe3df0 : 0xffffff802612fe41
    0xffffff80bffe3e70 : 0xffffff8026170d0d
    0xffffff80bffe3ee0 : 0xffffff802616d7b1
    0xffffff80bffe3f90 : 0xffffff80261cc899
    0xffffff80bffe3fb0 : 0xffffff8026214dd7
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    14C109
    Kernel version:
    Darwin Kernel Version 14.1.0: Mon Dec 22 23:10:38 PST 2014; root:xnu-2782.10.72~2/RELEASE_X86_64
    Kernel UUID: DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5
    Kernel slide:     0x0000000025e00000
    Kernel text base: 0xffffff8026000000
    __HIB  text base: 0xffffff8025f00000
    System model name: MacBookPro9,2 (Mac-6F01561E16C75D06)
    System uptime in nanoseconds: 16255983705917
    last loaded kext at 10182456763629: com.apple.driver.AppleUSBCDC 4.2.2b5 (addr 0xffffff7fa892a000, size 20480)
    last unloaded kext at 10242562627083: com.apple.driver.AppleUSBCDC 4.2.2b5 (addr 0xffffff7fa892a000, size 16384)
    loaded kexts:
    com.apple.filesystems.smbfs 3.0.0
    com.apple.filesystems.afpfs 11.0
    com.apple.nke.asp-tcp 8.0.0
    com.apple.driver.AppleUSBDisplays 372.1
    com.apple.driver.AudioAUUC 1.70
    com.apple.driver.AGPM 100.15.5
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.filesystems.autofs 3.0
    com.apple.iokit.IOBluetoothSerialManager 4.3.2f6
    com.apple.driver.AppleOSXWatchdog 1
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleUpstreamUserClient 3.6.1
    com.apple.driver.AppleHDA 269.25
    com.apple.iokit.IOUserEthernet 1.0.1
    com.apple.driver.AppleMikeyDriver 269.25
    com.apple.driver.AppleBacklight 170.5.0
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleHV 1
    com.apple.driver.AppleSMCPDRC 1.0.0
    com.apple.driver.AppleThunderboltIP 2.0.2
    com.apple.driver.AppleMCCSControl 1.2.11
    com.apple.driver.AppleSMCLMU 2.0.7d0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.3.2f6
    com.apple.driver.AppleIntelHD4000Graphics 10.0.2
    com.apple.driver.AppleIntelFramebufferCapri 10.0.2
    com.apple.driver.AppleLPC 1.7.3
    com.apple.driver.SMCMotionSensor 3.0.4d1
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleIRController 327.5
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.iokit.SCSITaskUserClient 3.7.3
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.7.0
    com.apple.iokit.AppleBCM5701Ethernet 10.1.3
    com.apple.driver.AppleSDXC 1.6.5
    com.apple.driver.AirPort.Brcm4360 910.26.12
    com.apple.driver.AppleUSBHub 705.4.2
    com.apple.driver.AppleFWOHCI 5.5.2
    com.apple.driver.AppleAHCIPort 3.1.0
    com.apple.driver.AppleUSBEHCI 705.4.14
    com.apple.driver.AppleUSBXHCI 710.4.11
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleACPIButtons 3.1
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 3.1
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 218.0.0
    com.apple.nke.applicationfirewall 161
    com.apple.security.quarantine 3
    com.apple.security.TMSafetyNet 8
    com.apple.driver.AppleIntelCPUPowerManagement 218.0.0
    com.apple.security.SecureRemotePassword 1.0
    com.apple.iokit.IOUSBHIDDriverPM 710.4.7
    com.apple.driver.AppleUSBAudio 295.23
    com.apple.driver.AppleThunderboltDPOutAdapter 4.0.6
    com.apple.driver.AppleThunderboltPCIUpAdapter 2.0.2
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 11
    com.apple.driver.DspFuncLib 269.25
    com.apple.kext.OSvKernDSPLib 1.15
    com.apple.iokit.IOFireWireIP 2.2.6
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.iokit.IOUSBUserClient 705.4.0
    com.apple.driver.AppleHDAController 269.25
    com.apple.iokit.IOHDAFamily 269.25
    com.apple.iokit.IOAudioFamily 203.3
    com.apple.vecLib.kext 1.2.0
    com.apple.driver.AppleSMBusController 1.0.13d1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.3.2f6
    com.apple.iokit.IOBluetoothFamily 4.3.2f6
    com.apple.iokit.IOSurface 97
    com.apple.iokit.IOAcceleratorFamily2 156.6
    com.apple.AppleGraphicsDeviceControl 3.8.6
    com.apple.driver.AppleBacklightExpert 1.1.0
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.driver.IOPlatformPluginFamily 5.8.1d38
    com.apple.driver.AppleSMC 3.1.9
    com.apple.driver.AppleUSBMultitouch 245.2
    com.apple.iokit.IOUSBHIDDriver 705.4.0
    com.apple.driver.AppleUSBMergeNub 705.4.0
    com.apple.driver.AppleUSBComposite 705.4.9
    com.apple.driver.CoreStorage 471.10.6
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.7.3
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.driver.AppleThunderboltDPInAdapter 4.0.6
    com.apple.driver.AppleThunderboltDPAdapterFamily 4.0.6
    com.apple.driver.AppleThunderboltPCIDownAdapter 2.0.2
    com.apple.iokit.IOAHCISerialATAPI 2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.7.3
    com.apple.iokit.IOEthernetAVBController 1.0.3b3
    com.apple.driver.AppleThunderboltNHI 3.1.7
    com.apple.iokit.IOThunderboltFamily 4.2.1
    com.apple.iokit.IO80211Family 710.55
    com.apple.driver.mDNSOffloadUserClient 1.0.1b8
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOFireWireFamily 4.5.6
    com.apple.iokit.IOAHCIFamily 2.7.5
    com.apple.iokit.IOUSBFamily 710.4.14
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 300.0
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.AppleMobileFileIntegrity 1.0.5
    com.apple.driver.AppleCredentialManager 1.0
    com.apple.driver.DiskImages 396
    com.apple.iokit.IOStorageFamily 2.0
    com.apple.iokit.IOReportFamily 31
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 3.1
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.Libm 1
    com.apple.kec.pthread 1
    com.apple.kec.corecrypto 1.0

    Good afternoon,
    My Macbook Pro 2012 running Yosemite randomly crashes and restarts itself with no pattern or discernible cause.  It has previously gone into the Apple Store several times for fault finding and come back with nothing that they could find. 
    Attached to the MacBook are a large monitor and a Evoluent upright USB mouse. 
    I typically run LibreOffice, iwork numbers and Adobe Reader, in addition to emails, calendar and safari
    MacBook Specs:
    - Intel HD Graphics 4000 1024 MB
    - 4 GB 1600 MHz DDR3
    - 2.5 GHz Intel Core i5
    The latest crash report is below.  If anyone has any similar experience, advice or fixes it would be most appreciated. 
    Thanks,  Dave
    Anonymous UUID:       1E7E6C3A-E6C3-92F7-7519-CAC5E2191747
    Mon Mar  2 12:58:30 2015
    *** Panic Report ***
    panic(cpu 2 caller 0xffffff8026170d0d): "a freed zone element has been modified in zone kalloc.1024: expected 0xffffff803d762000 but found 0xffffff8000000004, bits changed 0x3d762004, at offset 0 of 1024 in element 0xffffff803c6d1000, cookies 0x3f0011d5cfbffc4e 0x53521653487aa65"@/SourceCache/xnu/xnu-2782.10.72/osfmk/kern/zalloc.c:496
    Backtrace (CPU 2), Frame : Return Address
    0xffffff80bffe3df0 : 0xffffff802612fe41
    0xffffff80bffe3e70 : 0xffffff8026170d0d
    0xffffff80bffe3ee0 : 0xffffff802616d7b1
    0xffffff80bffe3f90 : 0xffffff80261cc899
    0xffffff80bffe3fb0 : 0xffffff8026214dd7
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    14C109
    Kernel version:
    Darwin Kernel Version 14.1.0: Mon Dec 22 23:10:38 PST 2014; root:xnu-2782.10.72~2/RELEASE_X86_64
    Kernel UUID: DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5
    Kernel slide:     0x0000000025e00000
    Kernel text base: 0xffffff8026000000
    __HIB  text base: 0xffffff8025f00000
    System model name: MacBookPro9,2 (Mac-6F01561E16C75D06)
    System uptime in nanoseconds: 16255983705917
    last loaded kext at 10182456763629: com.apple.driver.AppleUSBCDC 4.2.2b5 (addr 0xffffff7fa892a000, size 20480)
    last unloaded kext at 10242562627083: com.apple.driver.AppleUSBCDC 4.2.2b5 (addr 0xffffff7fa892a000, size 16384)
    loaded kexts:
    com.apple.filesystems.smbfs 3.0.0
    com.apple.filesystems.afpfs 11.0
    com.apple.nke.asp-tcp 8.0.0
    com.apple.driver.AppleUSBDisplays 372.1
    com.apple.driver.AudioAUUC 1.70
    com.apple.driver.AGPM 100.15.5
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.filesystems.autofs 3.0
    com.apple.iokit.IOBluetoothSerialManager 4.3.2f6
    com.apple.driver.AppleOSXWatchdog 1
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleUpstreamUserClient 3.6.1
    com.apple.driver.AppleHDA 269.25
    com.apple.iokit.IOUserEthernet 1.0.1
    com.apple.driver.AppleMikeyDriver 269.25
    com.apple.driver.AppleBacklight 170.5.0
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleHV 1
    com.apple.driver.AppleSMCPDRC 1.0.0
    com.apple.driver.AppleThunderboltIP 2.0.2
    com.apple.driver.AppleMCCSControl 1.2.11
    com.apple.driver.AppleSMCLMU 2.0.7d0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.3.2f6
    com.apple.driver.AppleIntelHD4000Graphics 10.0.2
    com.apple.driver.AppleIntelFramebufferCapri 10.0.2
    com.apple.driver.AppleLPC 1.7.3
    com.apple.driver.SMCMotionSensor 3.0.4d1
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleIRController 327.5
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.iokit.SCSITaskUserClient 3.7.3
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.7.0
    com.apple.iokit.AppleBCM5701Ethernet 10.1.3
    com.apple.driver.AppleSDXC 1.6.5
    com.apple.driver.AirPort.Brcm4360 910.26.12
    com.apple.driver.AppleUSBHub 705.4.2
    com.apple.driver.AppleFWOHCI 5.5.2
    com.apple.driver.AppleAHCIPort 3.1.0
    com.apple.driver.AppleUSBEHCI 705.4.14
    com.apple.driver.AppleUSBXHCI 710.4.11
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleACPIButtons 3.1
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 3.1
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 218.0.0
    com.apple.nke.applicationfirewall 161
    com.apple.security.quarantine 3
    com.apple.security.TMSafetyNet 8
    com.apple.driver.AppleIntelCPUPowerManagement 218.0.0
    com.apple.security.SecureRemotePassword 1.0
    com.apple.iokit.IOUSBHIDDriverPM 710.4.7
    com.apple.driver.AppleUSBAudio 295.23
    com.apple.driver.AppleThunderboltDPOutAdapter 4.0.6
    com.apple.driver.AppleThunderboltPCIUpAdapter 2.0.2
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 11
    com.apple.driver.DspFuncLib 269.25
    com.apple.kext.OSvKernDSPLib 1.15
    com.apple.iokit.IOFireWireIP 2.2.6
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.iokit.IOUSBUserClient 705.4.0
    com.apple.driver.AppleHDAController 269.25
    com.apple.iokit.IOHDAFamily 269.25
    com.apple.iokit.IOAudioFamily 203.3
    com.apple.vecLib.kext 1.2.0
    com.apple.driver.AppleSMBusController 1.0.13d1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.3.2f6
    com.apple.iokit.IOBluetoothFamily 4.3.2f6
    com.apple.iokit.IOSurface 97
    com.apple.iokit.IOAcceleratorFamily2 156.6
    com.apple.AppleGraphicsDeviceControl 3.8.6
    com.apple.driver.AppleBacklightExpert 1.1.0
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.driver.IOPlatformPluginFamily 5.8.1d38
    com.apple.driver.AppleSMC 3.1.9
    com.apple.driver.AppleUSBMultitouch 245.2
    com.apple.iokit.IOUSBHIDDriver 705.4.0
    com.apple.driver.AppleUSBMergeNub 705.4.0
    com.apple.driver.AppleUSBComposite 705.4.9
    com.apple.driver.CoreStorage 471.10.6
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.7.3
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.driver.AppleThunderboltDPInAdapter 4.0.6
    com.apple.driver.AppleThunderboltDPAdapterFamily 4.0.6
    com.apple.driver.AppleThunderboltPCIDownAdapter 2.0.2
    com.apple.iokit.IOAHCISerialATAPI 2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.7.3
    com.apple.iokit.IOEthernetAVBController 1.0.3b3
    com.apple.driver.AppleThunderboltNHI 3.1.7
    com.apple.iokit.IOThunderboltFamily 4.2.1
    com.apple.iokit.IO80211Family 710.55
    com.apple.driver.mDNSOffloadUserClient 1.0.1b8
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOFireWireFamily 4.5.6
    com.apple.iokit.IOAHCIFamily 2.7.5
    com.apple.iokit.IOUSBFamily 710.4.14
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 300.0
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.AppleMobileFileIntegrity 1.0.5
    com.apple.driver.AppleCredentialManager 1.0
    com.apple.driver.DiskImages 396
    com.apple.iokit.IOStorageFamily 2.0
    com.apple.iokit.IOReportFamily 31
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 3.1
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.Libm 1
    com.apple.kec.pthread 1
    com.apple.kec.corecrypto 1.0

  • Computer randomly crashing and restarting.

    I recently upgraded my 2010 Macbook Pro to Mountain Lion OSX. Ever since I upgraded my computer has been randomly crashing and restarting itself. I have looked online for many solutions. I have tried editing settings in system prefereneces, a hard drive repair, a fresh instal of the operating system, and even bringing the laptop into a local apple store. They did some diagnostic checks and a hard drive repair and sent me on my way. Even after all this it is still randomly crashing and restarting itself.
    The issue most often happens after being in sleep mode for a little while, atlhough it still occurs randomly throughout the day.I will bring it out of sleep mode and it will restart itself in the next minute or so.
    I copied a crash report since I have seen many people posting them here. I hope that you guys can help me identify the problem and fix it. I need to use this computer for school and I have many urgent projects coming up. I am covered under apple care, so a part replacement is not an issue. Any insight into the issue would be greatly appreciated. Thanks - Andy
    Crash Report
    Interval Since Last Panic Report:  652009 sec
    Panics Since Last Report:          26
    Anonymous UUID:                    01A39A60-7EC3-7EF0-E13B-CB5A3447CA73
    Thu Apr  4 09:53:29 2013
    panic(cpu 3 caller 0xffffff7f8a7637f2): NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff808460a000 0x0a5480a2, D0, P3/4
    Backtrace (CPU 3), Frame : Return Address
    0xffffff808387af80 : 0xffffff8008c1d626
    0xffffff808387aff0 : 0xffffff7f8a7637f2
    0xffffff808387b0b0 : 0xffffff7f8a8603b9
    0xffffff808387b110 : 0xffffff7f8a86042e
    0xffffff808387b180 : 0xffffff7f8ab78c82
    0xffffff808387b2b0 : 0xffffff7f8a886fe8
    0xffffff808387b2f0 : 0xffffff7f8a76b567
    0xffffff808387b3a0 : 0xffffff7f8a76905a
    0xffffff808387b5a0 : 0xffffff7f8a76a983
    0xffffff808387b670 : 0xffffff7f8ad68790
    0xffffff808387b730 : 0xffffff7f8ad93f98
    0xffffff808387b7b0 : 0xffffff7f8ad7b308
    0xffffff808387b810 : 0xffffff7f8ad7bbe9
    0xffffff808387b860 : 0xffffff7f8ad7c09b
    0xffffff808387b8d0 : 0xffffff7f8ad7c8d1
    0xffffff808387b910 : 0xffffff7f8ad4834f
    0xffffff808387ba90 : 0xffffff7f8ad78e39
    0xffffff808387bb50 : 0xffffff7f8ad46de8
    0xffffff808387bba0 : 0xffffff80090650c9
    0xffffff808387bbc0 : 0xffffff8009066670
    0xffffff808387bc20 : 0xffffff800906408f
    0xffffff808387bd70 : 0xffffff8008c984a1
    0xffffff808387be80 : 0xffffff8008c20aed
    0xffffff808387beb0 : 0xffffff8008c10448
    0xffffff808387bf00 : 0xffffff8008c1961b
    0xffffff808387bf70 : 0xffffff8008ca5dd6
    0xffffff808387bfb0 : 0xffffff8008ccdd43
          Kernel Extensions in backtrace:
    com.apple.NVDAResman(8.1)[A26D2A3D-C06F-3A0F-BCFF-901A98C93C3D]@0xffffff7f8a706 000->0xffffff7f8aa12fff
    dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f89217000
    dependency: com.apple.iokit.IONDRVSupport(2.3.7)[38C214C0-83C8-3594-8A4C-DC6AC3FEC163]@0xff ffff7f8a10c000
    dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[74E3E50F-E50A-3073-8C96-06F854292A91]@0 xffffff7f8a074000
    com.apple.nvidia.nv50hal(8.1)[5F021999-8B18-3BD5-9B98-90617E638A63]@0xffffff7f8 aa13000->0xffffff7f8ad34fff
    dependency: com.apple.NVDAResman(8.1.0)[A26D2A3D-C06F-3A0F-BCFF-901A98C93C3D]@0xffffff7f8a7 06000
    dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f89217000
    com.apple.GeForce(8.1)[A15BB65E-3501-340F-87CB-2FD2BAD33E35]@0xffffff7f8ad35000 ->0xffffff7f8ae01fff
    dependency: com.apple.NVDAResman(8.1.0)[A26D2A3D-C06F-3A0F-BCFF-901A98C93C3D]@0xffffff7f8a7 06000
    dependency: com.apple.iokit.IONDRVSupport(2.3.7)[38C214C0-83C8-3594-8A4C-DC6AC3FEC163]@0xff ffff7f8a10c000
    dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f89217000
    dependency: com.apple.iokit.IOGraphicsFamily(2.3.7)[74E3E50F-E50A-3073-8C96-06F854292A91]@0 xffffff7f8a074000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    12D78
    Kernel version:
    Darwin Kernel Version 12.3.0: Sun Jan  6 22:37:10 PST 2013; root:xnu-2050.22.13~1/RELEASE_X86_64
    Kernel UUID: 3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6
    Kernel slide:     0x0000000008a00000
    Kernel text base: 0xffffff8008c00000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 36964227183510
    last loaded kext at 31891623958718: com.seagate.driver.PowSecDriverCore            5.2.3 (addr 0xffffff7f8aec6000, size 233472)
    last unloaded kext at 31965341281584: com.apple.iokit.IOFireWireSBP2            4.2.2 (addr 0xffffff7f8aeab000, size 110592)
    loaded kexts:
    com.logmein.hamachi            1.0
    com.Cycling74.driver.Soundflower            1.5.2
    com.razer.common.razerhid            5.52
    com.apple.filesystems.smbfs            1.8
    com.apple.driver.AppleHWSensor            1.9.5d0
    com.apple.iokit.IOUserEthernet            1.0.0d1
    com.apple.driver.AppleUpstreamUserClient            3.5.10
    com.apple.iokit.IOBluetoothSerialManager            4.1.3f3
    com.apple.driver.AppleMikeyHIDDriver            122
    com.apple.driver.AudioAUUC            1.60
    com.apple.driver.AGPM            100.12.87
    com.apple.GeForce            8.1.0
    com.apple.driver.AppleIntelHDGraphics            8.1.0
    com.apple.driver.AppleHDA            2.3.7fc4
    com.apple.Dont_Steal_Mac_OS_X            7.0.0
    com.apple.driver.AppleMikeyDriver            2.3.7fc4
    com.apple.driver.AppleSMCPDRC            1.0.0
    com.apple.iokit.AppleBCM5701Ethernet            3.6.0b1
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport            4.1.3f3
    com.apple.driver.AppleSMCLMU            2.0.3d0
    com.apple.driver.AirPort.Brcm4331            614.20.16
    com.apple.driver.AppleMuxControl            3.3.0
    com.apple.driver.ApplePolicyControl            3.3.0
    com.apple.driver.ACPI_SMC_PlatformPlugin            1.0.0
    com.apple.driver.AppleLPC            1.6.0
    com.apple.driver.AppleIntelHDGraphicsFB            8.1.0
    com.apple.driver.AppleMCCSControl            1.1.11
    com.apple.driver.SMCMotionSensor            3.0.3d1
    com.apple.filesystems.autofs            3.0
    com.apple.driver.AppleUSBTCButtons            237.1
    com.apple.driver.AppleUSBTCKeyboard            237.1
    com.apple.driver.AppleIRController            320.15
    com.apple.driver.AppleUSBCardReader            3.1.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless            1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib            1.0.0d1
    com.apple.BootCache            34
    com.apple.iokit.SCSITaskUserClient            3.5.5
    com.apple.driver.XsanFilter            404
    com.apple.iokit.IOAHCIBlockStorage            2.3.1
    com.apple.driver.AppleUSBHub            5.5.5
    com.apple.driver.AppleAHCIPort            2.5.1
    com.apple.driver.AppleFWOHCI            4.9.6
    com.apple.driver.AppleUSBEHCI            5.5.0
    com.apple.driver.AppleEFINVRAM            1.7
    com.apple.driver.AppleSmartBatteryManager            161.0.0
    com.apple.driver.AppleACPIButtons            1.7
    com.apple.driver.AppleRTC            1.5
    com.apple.driver.AppleHPET            1.8
    com.apple.driver.AppleSMBIOS            1.9
    com.apple.driver.AppleACPIEC            1.7
    com.apple.driver.AppleAPIC            1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient            196.0.0
    com.apple.nke.applicationfirewall            4.0.39
    com.apple.security.quarantine            2
    com.apple.driver.AppleIntelCPUPowerManagement            196.0.0
    com.apple.iokit.IOSurface            86.0.4
    com.apple.iokit.IOSerialFamily            10.0.6
    com.apple.nvidia.nv50hal            8.1.0
    com.apple.NVDAResman            8.1.0
    com.apple.driver.DspFuncLib            2.3.7fc4
    com.apple.driver.AppleUSBAudio            2.9.0f6
    com.apple.iokit.IOAudioFamily            1.8.9fc11
    com.apple.kext.OSvKernDSPLib            1.6
    com.apple.iokit.IOEthernetAVBController            1.0.2b1
    com.apple.iokit.IOFireWireIP            2.2.5
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport            4.1.3f3
    com.apple.driver.AppleHDAController            2.3.7fc4
    com.apple.iokit.IOHDAFamily            2.3.7fc4
    com.apple.iokit.IO80211Family            522.4
    com.apple.iokit.IONetworkingFamily            3.0
    com.apple.driver.AppleBacklightExpert            1.0.4
    com.apple.driver.AppleGraphicsControl            3.3.0
    com.apple.iokit.IONDRVSupport            2.3.7
    com.apple.driver.AppleSMBusPCI            1.0.11d0
    com.apple.driver.IOPlatformPluginLegacy            1.0.0
    com.apple.driver.IOPlatformPluginFamily            5.3.0d51
    com.apple.driver.AppleSMBusController            1.0.11d0
    com.apple.iokit.IOGraphicsFamily            2.3.7
    com.apple.driver.AppleSMC            3.1.4d2
    com.apple.kext.triggers            1.0
    com.apple.driver.IOBluetoothHIDDriver            4.1.3f3
    com.apple.iokit.IOBluetoothFamily            4.1.3f3
    com.apple.driver.AppleUSBMultitouch            237.3
    com.apple.iokit.IOUSBHIDDriver            5.2.5
    com.apple.iokit.IOUSBMassStorageClass            3.5.1
    com.apple.driver.AppleUSBMergeNub            5.5.5
    com.apple.driver.AppleUSBComposite            5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice            3.5.5
    com.apple.iokit.IOBDStorageFamily            1.7
    com.apple.iokit.IODVDStorageFamily            1.7.1
    com.apple.iokit.IOCDStorageFamily            1.7.1
    com.apple.iokit.IOSCSIBlockCommandsDevice            3.5.5
    com.apple.iokit.IOAHCISerialATAPI            2.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily            3.5.5
    com.apple.iokit.IOUSBUserClient            5.5.5
    com.apple.iokit.IOAHCIFamily            2.3.1
    com.apple.iokit.IOFireWireFamily            4.5.5
    com.apple.iokit.IOUSBFamily            5.5.5
    com.apple.driver.AppleEFIRuntime            1.7
    com.apple.iokit.IOHIDFamily            1.8.1
    com.apple.iokit.IOSMBusFamily            1.1
    com.apple.security.sandbox            220.2
    com.apple.kext.AppleMatch            1.0.0d1
    com.apple.security.TMSafetyNet            7
    com.apple.driver.DiskImages            345
    com.apple.iokit.IOStorageFamily            1.8
    com.apple.driver.AppleKeyStore            28.21
    com.apple.driver.AppleACPIPlatform            1.7
    com.apple.iokit.IOPCIFamily            2.7.3
    com.apple.iokit.IOACPIFamily            1.4
    com.apple.kec.corecrypto            1.0

    You have the MacBookPro6,2, the Edsel of Macs. You might be able to resolve the problem by reinstalling OS X. Try that first, if you haven't done so already. Otherwise, you may be covered by this program:
    MacBook Pro (15-inch, Mid 2010): Intermittent black screen or loss of video
    Make a "Genius" appointment at an Apple Store to have the machine tested. The routine hardware diagnostics used by service providers may not detect the fault. There is a specific test for this issue.
    Print the first page of the panic report, and the support page linked above, and bring them with you.
    Back up all data on the internal drive(s) before you hand over your computer to anyone. If privacy is a concern, erase the data partition(s) with the option to write zeros* (do this only if you have at least two complete, independent backups, and you know how to restore to an empty drive from any of them.) Don’t erase the recovery partition, if present.
    *An SSD doesn't need to be zeroed.
    You may be able to stop the panics by disabling automatic graphics switching in the Energy Saver preference pane, but that's not a solution. 
    Most likely, the logic board will be replaced. Sometimes the replacement is also defective, so be prepared for that possibility.

  • I am unable to synch my iPhone to my laptopI have tried to carry out software updates - I get a message saying that the updates could not be completed as I am not connected to the internet - despite being connected to the internet!

    I am unable to synch my iPhone to my laptopI have tried to carry out software updates - I get a message saying that the updates could not be completed as I am not connected to the internet - despite being connected to the internet!

    What OS on your Mac?
    What iOS on your phone??

  • Why is my Firefox 4.0.1 crashing and deleting my browsing history and bookmarks?

    This is the third time in the past month and a half that my Firefox 4.0.1 has crashed and deleted both my browsing history and my recent bookmarks. It seems to delete up to about a week's worth of information.
    In the past, my Firefox browser would crash, but it would at least retain my last entered information (but that was the older version of Firefox); so this is something entirely new. I updated to 4.0.1 about two months ago, hoping that this would be better, but these random, information deleting, crashes are driving me crazy! I'm hesitant to download the new 5.0 version for the fear that these crashes will get worse...but mainly because I love Hypertext too much and I don't want to lose it to the upgrade.
    I had read that one of the options to identifying the problem is to post a crash I.D.; however, when I searched for my latest crash reports, it doesn't show either of the two crashes that concerns me. So I'm even more curious to what this problem might be. I can tell you some of the key behaviors before it crashes:
    * It begins to lag (slower than snail pace).
    * It's almost impossible to click from one tab to the other (even if I only have two tabs open).
    * My comp's physical memory spikes.
    * The browser window will sometimes freeze and shut down the whole program, but this time (today), the window closed on its own.
    * When I'm forced to close Firefox from my Task Manager, sometimes I actually have to restart my computer before I'm able to use the browser again.
    * The crash happens randomly. I haven't noticed a crash pattern based on websites that I visit.
    I hope someone can help me. I would really like this remedied. It just sucks having spent so much time bookmarking research material, just to have all of it wiped away without a reason.

    Try to update to the latest Firefox 12.0 version.
    You can find the latest Firefox release in all languages and for all Operating Systems here:
    *Firefox 12.0.x: http://www.mozilla.org/en-US/firefox/all.html
    See:
    * http://kb.mozillazine.org/gfx.color_management.mode
    * https://developer.mozilla.org/En/ICC_color_correction_in_Firefox
    Caveats: The new QCMS color management system introduced in Firefox 3.5 currently only supports ICC version 2 color profiles, not version 4.
    You can set the gfx.color_management.enablev4 pref to true on the about:config page and close and restart Firefox to enable ICC V4 support in Firefox 8+, but that feature is not yet fully implemented, so there may be problems in some cases.
    Test page:
    * http://www.color.org/version4html.xalter - Is your system ICC Version 4 ready?

  • Random crash and gyroscope problems (Iphone iOS 6.1)

    Since the last iOS update (6.1). I have experienced a few problems with my Iphone 5.
    First of all the day that i updated the iOS, i started getting random crashes.The screen dimmed and 2 or 3 yellow vertical lines appeared, and short after the Iphone restarted itself. The crash was happening mostly when opening the camera or any app that used the camera, but it will also restart by just browsing through the home screen (less likely). Then i noticed that some apps that use the gyroscope where locking up (like panorama 360), and a message telling me to restart the iphone because the gyro was locked up (i checked pressing home twice and the gyro wasn't locked). After the restart i worked for about 15 minutes, and the gyro would stuck up again (and the crashes were getting worse). I decided to do a factory recovery, and it solve most of the problems, but i still get 1 or 2 crashes everyday (maybe more, because i dont know if the cellphone restarts when it is in my pocket) (and it now doesnt restart by using the camera), and the gyroscope sometimes works fine, and very few times it stucks up, so i close the app that uses it, lock the gyro, give the phone a few shakes, put the gyro back on and it works again.
    I'm trying to simulate the moments that the phone crashes or when the gyro stucks up, but i can't, it is just very random.
    PD: The phone worked perfectly with iOS 6.0.1, could be a software problem? hardware problem?
    PD2: i have used linpack to stress the phone but it doesnt crash or anything.

    The video is here
    https://www.youtube.com/watch?v=ZNh5b-0F9o8
    The last two day i haven't experienced crashes but sometimes the gyro stucks.
    PD:sorry if the video is in spanish, but you can see the problems.

  • Help Random Crashes and Restarts System Not Stable

    im having stability issues in my new system...especially when running 3d games most of the time random restarts and crashes.....this is my system specs
    Msi Neo 875P
    P4 1.8 533 northwood
    256 kingston pc2100
    256 k-byte pc2100
    (both rams on A channel 2.5v setting)
    Ati9800 pro
    120 gig wd 7200 RPM
    60 gig WD 7200 RPM
    (both on ide 1)
    DVD Rom
    DVD burner
    (both on ide 2)
    Ata controller
    120 gig seagate 7200
    120 gig seagate 7200
    Hercules 5.1 Sound card
    Thermaltake Case
    400watts PSU
    using windows XP SP1 fresh install..using the latest ati drivers...bios is stock and ram settings set to auto ...the voltage is set to 2.5 and dynamic overclocking is disabled... performance set to slow...using single channel on memory....they say its the memory thats having the problem having 2 diff brands??or the motherboard is picky when it comes to memory modules??i cant use ddr400 coz it requires 800mhz FSB and that will cost me more buying a new processor.....the airflow in the case is working fine...i hope you guys can help me thank you very much!!!

    this is my power supply and some information about it
    P4ATX-400W Dual Fan
    Switching Power
    AC INPUT: 115/230 Vac~ 14/7A 60/50Hz
    DC OUTPUT :                                                                                                      
    COLOR BROWN RED WHITE YELLOW BLUE PURPLE BLACK GREEN ORANGE
    DC +3.3V +5V -5V 12V -12V +5V-SB COM PS-ON PW-OK
    OUTPUT 20A 40A 0.5A 17A 1.0A 2.0A RETURN REMOTE P.G.
    +3.3V and +5V max Output 240W, Peak Surge Max Output 436W
    Features
    High efficiency
    Low Ripple & Noise
    Output over voltage protection
    Short circuit protection on all outputs
    Reset table power shut down
    Approved by UL, TUV, CB & CE
    INTERNAL 12 VDE fan
    Complies with FCC part 15 subpart J Class B at 115VAC operation & CISPR 22 Class B at 230 VAC operation
    100% burn-in under high ambient temperature(50¢J)
    Vacuum-impregnated transformer
    MTBF:100K hours at 25¢J
    100% Hi-pot tested
    FULL RANGE 100~240VAC
    Input Characteristics
    Voltage: 95-132 VAC or 180-264 VAC switch able
    Frequency: 47 Hz TO 63 Hz
    Input current: 10 amps maximum/ 115 Vrms,60 Hz. 5 amps maximum /230 Vrms,50Hz.
    Specification
    Remote ON/OFF Control: The power supply shall accept a logic collector level which will disable / enable all output voltage (excluding +5V standby).
    Temperature range: operating 0¢J~50¢J, storage -20¢J ~ +80¢J
    Temperature coefficient: 0.01% / ¢J
    Transient response: output voltage recovers in less than 1 ms max. following a 25% load change
    Hold-up time: 16ms minimum at full load & nominal input voltage
    Dielectric withstand: input / output 1800 VAC for 1 second, input to frame ground 1800VAC for 1 second
    Humidity: 5~95% RH
    Efficiency: 65% min. 70% typical, at full load
    Power good signal: turn-on delay 100 ms to 500 ms
    Overload protection: 150% max.
    Inrush current: 60A cold , 80A ware at 132 VAC
    Over voltage protection: +5V output : 6.5V; +3.3V output: 4.6V;+12V output: 15.5V

  • Mac Mini Crashes and unable to install OS X

    I have a Mac mini (late 2009) with osx 10.6.  A few days ago it crashed and I got the screen of death.  So I rebooted and it worked for around 15 minutes crashed again. Then I got it to boot up again, I checked and repaired my permissions. It crashed and now I can boot up at all.  I've reformatted using guid, and everytime I go to install os x it freezes or crashes. I've tried to install with 10.5 and 10.6.  I have also been unable to perform a hardware test, it never starts.
    Any ideas?

    I took it in to an apple store tonight and he believes it is the ram of all things.  So they are testing it overnight and will know tomorrow.  I did have another question though star1, since you seem to be so helpful. 
    I haven't been able to use the mini display port as the only display.  I have a mini display to hdmi and it only works when I use it in conjunction with the mini dvi.  I that the normal function and only operates as a secondary display?
    Thanks again I'll let you know what Apple tells me.

  • Mountain Lion randomly crashes and reboots

    Please can someone give me some guidance as this is starting to drive me crazy.
    I have a 2011 21.5" imac core i7 2.8 Ghz with 4GB DDR 3 memory AMD Radeon HD 6770M 512MB graphics. Running OS X 10.8.2
    A few weeks ago I noticed that when I returned that the system had rebooted and was at the login screen and sometimes had generated a crash report.
    I tried several things the last being to completly erase and re-install Mountain Lion which still hasn't cured the random reboots.
    The Mac functions perfectly without fault during normal use and only has an issue occasionally after its been sleeping.
    Below you will find the lastest crash report this morning at 7am and below that the previous one 29th December.
    Thank you in advance.
    Thu Jan  3 07:02:54 2013
    panic(cpu 4 caller 0xffffff80100b7bd5): Kernel trap at 0xffffff7f91680032, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000000000000, CR3: 0x0000000012945000, CR4: 0x00000000000606e0
    RAX: 0xffffff7f91680026, RBX: 0x0000000000000000, RCX: 0x0000000000000000, RDX: 0x0000000000000000
    RSP: 0xffffff8090473eb0, RBP: 0xffffff8090473ec0, RSI: 0x0000000000000000, RDI: 0xffffff801b702800
    R8:  0x0000000000000001, R9:  0xffffff8083b56658, R10: 0x00000000004d3b75, R11: 0x00000000ffffff80
    R12: 0x000000000009e581, R13: 0x0000000000000000, R14: 0x0000000000000000, R15: 0x0000000000000001
    RFL: 0x0000000000010286, RIP: 0xffffff7f91680032, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x0000000000000000, Error code: 0x0000000000000000, Fault CPU: 0x4
    Backtrace (CPU 4), Frame : Return Address
    0xffffff8090473b50 : 0xffffff801001d626
    0xffffff8090473bc0 : 0xffffff80100b7bd5
    0xffffff8090473d90 : 0xffffff80100ce4ed
    0xffffff8090473db0 : 0xffffff7f91680032
    0xffffff8090473ec0 : 0xffffff7f91d93cea
    0xffffff8090473ef0 : 0xffffff80104472a8
    0xffffff8090473f30 : 0xffffff8010445daa
    0xffffff8090473f80 : 0xffffff8010445ed9
    0xffffff8090473fb0 : 0xffffff80100b26b7
          Kernel Extensions in backtrace:
             com.apple.AMDRadeonAccelerator(1.0)[D89E4100-9C89-3C99-B34B-F7790E1A0B8B]@0xfff fff7f91d8d000->0xffffff7f9215afff
                dependency: com.apple.iokit.IOAcceleratorFamily(19.0.26)[409C5206-05B3-301D-995E-5B269A4EEF 5E]@0xffffff7f91d3b000
                dependency: com.apple.iokit.IOPCIFamily(2.7.2)[B1B77B26-7984-302F-BA8E-544DD3D75E73]@0xffff ff7f90650000
                dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f90bb0000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f90b6d000
             com.apple.kext.AMDFramebuffer(8.0)[4CD59A3C-4442-36CB-8026-2095FE6B032A]@0xffff ff7f91678000->0xffffff7f9168afff
                dependency: com.apple.iokit.IOACPIFamily(1.4)[A35915E8-C1B0-3C0F-81DF-5515BC9002FC]@0xfffff f7f90adc000
                dependency: com.apple.iokit.IOPCIFamily(2.7.2)[B1B77B26-7984-302F-BA8E-544DD3D75E73]@0xffff ff7f90650000
                dependency: com.apple.kext.AMDSupport(8.0.0)[7B2EC6D1-101A-3928-919E-337D6724752A]@0xffffff 7f9148e000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f90b6d000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12C60
    Kernel version:
    Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    Kernel UUID: 69A5853F-375A-3EF4-9247-478FD0247333
    Kernel slide:     0x000000000fe00000
    Kernel text base: 0xffffff8010000000
    System model name: iMac12,1 (Mac-942B5BF58194151B)
    System uptime in nanoseconds: 14041286284301
    last loaded kext at 22123630005: com.apple.driver.AppleBluetoothMultitouch          75.15 (addr 0xffffff7f91c84000, size 77824)
    last unloaded kext at 4847327996406: com.apple.iokit.IOFireWireSBP2          4.2.0 (addr 0xffffff7f9076c000, size 110592)
    loaded kexts:
    com.apple.driver.AppleBluetoothMultitouch          75.15
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.iokit.IOBluetoothSerialManager          4.0.9f33
    com.apple.driver.AGPM          100.12.69
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleMikeyDriver          2.3.1f2
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.driver.AppleHDA          2.3.1f2
    com.apple.driver.AppleIntelHD3000Graphics          8.0.0
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.AppleLPC          1.6.0
    com.apple.kext.AMDFramebuffer          8.0.0
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleSMCLMU          2.0.2d0
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleBacklight          170.2.3
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.2.11
    com.apple.AMDRadeonAccelerator          1.0.0
    com.apple.driver.AppleIntelSNBGraphicsFB          8.0.0
    com.apple.iokit.SCSITaskUserClient          3.5.1
    com.apple.driver.AppleUSBCardReader          3.1.0
    com.apple.driver.AppleIRController          320.15
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.2.2
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.driver.AppleUSBHub          5.2.5
    com.apple.iokit.AppleBCM5701Ethernet          3.2.5b3
    com.apple.driver.AirPort.Atheros40          600.70.23
    com.apple.driver.AppleFWOHCI          4.9.6
    com.apple.driver.AppleAHCIPort          2.4.1
    com.apple.driver.AppleUSBEHCI          5.4.0
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleACPIButtons          1.6
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.6
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.driver.IOBluetoothHIDDriver          4.0.9f33
    com.apple.driver.AppleMultitouchDriver          235.28
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.driver.DspFuncLib          2.3.1f2
    com.apple.iokit.IOAudioFamily          1.8.9fc10
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.kext.triggers          1.0
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.IOPlatformPluginFamily          5.2.0d16
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.IOSurface          86.0.3
    com.apple.iokit.IOBluetoothFamily          4.0.9f33
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.driver.AppleGraphicsControl          3.2.11
    com.apple.driver.AppleHDAController          2.3.1f2
    com.apple.iokit.IOHDAFamily          2.3.1f2
    com.apple.iokit.IOAcceleratorFamily          19.0.26
    com.apple.iokit.IONDRVSupport          2.3.5
    com.apple.kext.AMD6000Controller          8.0.0
    com.apple.kext.AMDSupport          8.0.0
    com.apple.iokit.IOGraphicsFamily          2.3.5
    com.apple.driver.AppleThunderboltEDMSink          1.1.8
    com.apple.driver.AppleThunderboltEDMSource          1.1.8
    com.apple.driver.AppleUSBHIDKeyboard          165.5
    com.apple.driver.AppleHIDKeyboard          165.5
    com.apple.driver.AppleThunderboltDPOutAdapter          1.8.5
    com.apple.driver.AppleThunderboltDPInAdapter          1.8.5
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.8.5
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.1
    com.apple.iokit.IOUSBMassStorageClass          3.5.0
    com.apple.iokit.IOAHCISerialATAPI          2.5.0
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.1
    com.apple.driver.AppleUSBMergeNub          5.2.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.driver.AppleThunderboltNHI          1.6.0
    com.apple.iokit.IOThunderboltFamily          2.1.1
    com.apple.iokit.IOUSBUserClient          5.2.5
    com.apple.iokit.IOEthernetAVBController          1.0.2b1
    com.apple.iokit.IO80211Family          500.15
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOAHCIFamily          2.2.1
    com.apple.iokit.IOUSBFamily          5.4.0
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.8.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          344
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.6
    com.apple.iokit.IOPCIFamily          2.7.2
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    Interval Since Last Panic Report:  4121 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    1AC62733-1B03-EC16-EA4F-06E138DF782F
    Sat Dec 29 14:17:55 2012
    panic(cpu 2 caller 0xffffff80044b7bd5): Kernel trap at 0xffffff7f85a80032, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000000000000, CR3: 0x0000000006d45000, CR4: 0x00000000000606e0
    RAX: 0xffffff7f85a80026, RBX: 0x0000000000000000, RCX: 0x0000000000000000, RDX: 0x0000000000000000
    RSP: 0xffffff8084983eb0, RBP: 0xffffff8084983ec0, RSI: 0x0000000000000000, RDI: 0xffffff800f932000
    R8:  0x0000000000000001, R9:  0xffffff8077e65bb8, R10: 0x000000000002aa2f, R11: 0x00000000ffffff80
    R12: 0x00000000000023d5, R13: 0x0000000000000000, R14: 0x0000000000000000, R15: 0x0000000000000001
    RFL: 0x0000000000010286, RIP: 0xffffff7f85a80032, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x0000000000000000, Error code: 0x0000000000000000, Fault CPU: 0x2
    Backtrace (CPU 2), Frame : Return Address
    0xffffff8084983b50 : 0xffffff800441d626
    0xffffff8084983bc0 : 0xffffff80044b7bd5
    0xffffff8084983d90 : 0xffffff80044ce4ed
    0xffffff8084983db0 : 0xffffff7f85a80032
    0xffffff8084983ec0 : 0xffffff7f86193cea
    0xffffff8084983ef0 : 0xffffff80048472a8
    0xffffff8084983f30 : 0xffffff8004845daa
    0xffffff8084983f80 : 0xffffff8004845ed9
    0xffffff8084983fb0 : 0xffffff80044b26b7
          Kernel Extensions in backtrace:
             com.apple.AMDRadeonAccelerator(1.0)[D89E4100-9C89-3C99-B34B-F7790E1A0B8B]@0xfff fff7f8618d000->0xffffff7f8655afff
                dependency: com.apple.iokit.IOAcceleratorFamily(19.0.26)[409C5206-05B3-301D-995E-5B269A4EEF 5E]@0xffffff7f8613b000
                dependency: com.apple.iokit.IOPCIFamily(2.7.2)[B1B77B26-7984-302F-BA8E-544DD3D75E73]@0xffff ff7f84a50000
                dependency: com.apple.iokit.IONDRVSupport(2.3.5)[86DDB71C-A73A-3EBE-AC44-0BC9A38B9A44]@0xff ffff7f84fb0000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f84f6d000
             com.apple.kext.AMDFramebuffer(8.0)[4CD59A3C-4442-36CB-8026-2095FE6B032A]@0xffff ff7f85a78000->0xffffff7f85a8afff
                dependency: com.apple.iokit.IOACPIFamily(1.4)[A35915E8-C1B0-3C0F-81DF-5515BC9002FC]@0xfffff f7f84edc000
                dependency: com.apple.iokit.IOPCIFamily(2.7.2)[B1B77B26-7984-302F-BA8E-544DD3D75E73]@0xffff ff7f84a50000
                dependency: com.apple.kext.AMDSupport(8.0.0)[7B2EC6D1-101A-3928-919E-337D6724752A]@0xffffff 7f8588e000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.5)[803496D0-ADAD-3ADB-B071-8A0A197DA53D]@0 xffffff7f84f6d000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12C60
    Kernel version:
    Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    Kernel UUID: 69A5853F-375A-3EF4-9247-478FD0247333
    Kernel slide:     0x0000000004200000
    Kernel text base: 0xffffff8004400000
    System model name: iMac12,1 (Mac-942B5BF58194151B)
    System uptime in nanoseconds: 5303690960412
    last loaded kext at 24497185414: com.apple.driver.AppleBluetoothMultitouch          75.15 (addr 0xffffff7f86084000, size 77824)
    last unloaded kext at 115481243596: com.apple.driver.AppleUSBUHCI          5.2.5 (addr 0xffffff7f84d17000, size 65536)
    loaded kexts:
    com.apple.driver.AppleBluetoothMultitouch          75.15
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.iokit.IOBluetoothSerialManager          4.0.9f33
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AGPM          100.12.69
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.kext.AMDFramebuffer          8.0.0
    com.apple.driver.AppleMikeyDriver          2.3.1f2
    com.apple.filesystems.autofs          3.0
    com.apple.AMDRadeonAccelerator          1.0.0
    com.apple.driver.AppleHDA          2.3.1f2
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.2.11
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.driver.AppleBacklight          170.2.3
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.driver.AppleIntelHD3000Graphics          8.0.0
    com.apple.driver.AppleSMCLMU          2.0.2d0
    com.apple.driver.AppleIntelSNBGraphicsFB          8.0.0
    com.apple.driver.AppleLPC          1.6.0
    com.apple.iokit.SCSITaskUserClient          3.5.1
    com.apple.driver.AppleUSBCardReader          3.1.0
    com.apple.driver.Oxford_Semi          3.1.0
    com.apple.driver.AppleIRController          320.15
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.2.2
    com.apple.driver.AppleUSBHub          5.2.5
    com.apple.driver.AirPort.Atheros40          600.70.23
    com.apple.driver.AppleFWOHCI          4.9.6
    com.apple.iokit.AppleBCM5701Ethernet          3.2.5b3
    com.apple.driver.AppleAHCIPort          2.4.1
    com.apple.driver.AppleUSBEHCI          5.4.0
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleACPIButtons          1.6
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.6
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.driver.IOBluetoothHIDDriver          4.0.9f33
    com.apple.driver.AppleMultitouchDriver          235.28
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.kext.triggers          1.0
    com.apple.iokit.IOAcceleratorFamily          19.0.26
    com.apple.driver.DspFuncLib          2.3.1f2
    com.apple.iokit.IOAudioFamily          1.8.9fc10
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.kext.AMD6000Controller          8.0.0
    com.apple.kext.AMDSupport          8.0.0
    com.apple.iokit.IOSurface          86.0.3
    com.apple.iokit.IOBluetoothFamily          4.0.9f33
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.0.9f33
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleHDAController          2.3.1f2
    com.apple.iokit.IOHDAFamily          2.3.1f2
    com.apple.driver.AppleGraphicsControl          3.2.11
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.IONDRVSupport          2.3.5
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.iokit.IOGraphicsFamily          2.3.5
    com.apple.driver.IOPlatformPluginFamily          5.2.0d16
    com.apple.driver.AppleThunderboltEDMSink          1.1.8
    com.apple.driver.AppleThunderboltEDMSource          1.1.8
    com.apple.driver.AppleUSBHIDKeyboard          165.5
    com.apple.driver.AppleHIDKeyboard          165.5
    com.apple.driver.AppleThunderboltDPOutAdapter          1.8.5
    com.apple.driver.AppleThunderboltDPInAdapter          1.8.5
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.8.5
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.5.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.1
    com.apple.iokit.IOUSBMassStorageClass          3.5.0
    com.apple.iokit.IOFireWireSerialBusProtocolTransport          2.1.1
    com.apple.iokit.IOFireWireSBP2          4.2.0
    com.apple.iokit.IOAHCISerialATAPI          2.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.1
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.driver.AppleUSBMergeNub          5.2.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.iokit.IOUSBUserClient          5.2.5
    com.apple.driver.AppleThunderboltNHI          1.6.0
    com.apple.iokit.IOThunderboltFamily          2.1.1
    com.apple.iokit.IO80211Family          500.15
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOEthernetAVBController          1.0.2b1
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOAHCIFamily          2.2.1
    com.apple.iokit.IOUSBFamily          5.4.0
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.8.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          344
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.6
    com.apple.iokit.IOPCIFamily          2.7.2
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    System Profile:
    Model: iMac12,1, BootROM IM121.0047.B1F, 4 processors, Intel Core i7, 2.8 GHz, 4 GB, SMC 1.71f22
    Graphics: AMD Radeon HD 6770M, AMD Radeon HD 6770M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x02FE, 0x45424A3231554538424655302D444A2D4620
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x02FE, 0x45424A3231554538424655302D444A2D4620
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.70.23-P2P
    Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: ST32000541AS, 2 TB
    Serial ATA Device: HL-DT-STDVDRW  GA32N
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 3
    USB Device: Keyboard Hub, apple_vendor_id, 0x1006, 0xfa120000 / 6
    USB Device: Wacom Wireless Receiver, 0x056a  (WACOM Co., Ltd.), 0x0084, 0xfa121000 / 10
    USB Device: Apple Keyboard, apple_vendor_id, 0x0221, 0xfa122000 / 9
    USB Device: USB2.0 Hub, 0x05e3  (Genesys Logic, Inc.), 0x0608, 0xfa130000 / 5
    USB Device: hub_device, 0x050d  (Belkin Corporation), 0x0507, 0xfa131000 / 8
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 7
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x850b, 0xfa200000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: EyeTV Hybrid, 0x0fd9, 0x0018, 0xfd140000 / 5
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 4
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfd110000 / 3
    FireWire Device: unknown_device, unknown_speed
    FireWire Device: OEM ATA Device 00, G-TECH, 800mbit_speed

    Hi Thanks,
    Both my MBP and IMAC random crashes one or more times per day.
    I switched of sharing after your tip and no more crashes on both systems.
    I did use Windows sharing on both systems. I just switched of all sharing.
    Regards, Ton

  • Apple, please fix safari random crash and tab auto refresh

    Apple, are those issues ever going to get fixed? They destroyed iOS 7's usability and the latest 7.1 beta doesnt seem to address either.
    1) Safari randomly crashes -  happens multiple times a day. Sometimes opening new pages, sometimes scrolling through existing page.  This issue has NEVER happened on iOS 6.
    2) Tabs auto refreshing when you switch from 1 tab to the next - it is EXTREMELY annoying, for example when i was typing up a post in a tab or looking at the result of a long search, then need to lookup something else so i open up a new tab, then when I go back to the original tab, it automatically refreshes wiping out everything i just typed or the searh result.  This issue has NEVER happened in iOS 6.
    I am using ipad air with the latest update. Please fix them, it's unacceptable.

    This is a user-to-user forum hosted by Apple. You are only talking to other users here not Apple.
    If you have a suggestion for Apple use: http://www.apple.com/feedback/ipad.html

  • 4s random crashes and freezes, even with DFU restore

    I have a 3 week old 4s and have since had to take the phone to Fresno genius bar three times. My phone has had random crashes (preferences, mobile safari, messages, app store, words). Each time I was told that a DFU restore would fix this problem. The last they did was on Dec 21. It is now Dec 27 and my phone has crashed 6 times with the last one requiring a hard reset as the phone froze while using Safari. I understand that phones are computers and it will crash at times. However, this is a 3 week old phone, it has been less than a week from a full restore, and there does not seem to be a pattern on which apps crashes. I also clear my unused apps (double click home button and clear apps on the background) every day, so it's not like memory is tied up. And besides, a 4s shouldn't be concerned about that, right. I also have several friends that have 4Ss and have had not had this problem to the extent I've had so far? Have any of you guys experienced this?

    The symptoms that you describe could definitely be caused by a failing power supply unit (PSU).  It can cause many problems that don't appear to be related to the PSU.  Here is a guide to help you troubleshoot it. 
    Here is a guide to help you test the hard driver using the SMART diagnostics in the BIOS.
    Test the memory by removing all of the modules and replacing them one at a time and booting.  Place the single memory module in the slot closest to the Processor.
    Please click the "Thumbs Up+ button" if I have helped you and click "Accept as Solution" if your problem is solved.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

Maybe you are looking for

  • How do I get the regular controler to show in the dvd player ?

    Imade the giant leap from panther to Lion and after the disasterous update , I got rid of what I consider Apples version of Windows Vista and had them give me SL . Im very happy with SL , but want the same controler in the corner that im used to inst

  • Help on validation

    hey guyz! i have a requirement..... in one enhancement i have added some 7 fileds with check boxes in a screen of which 1 must be checked while creating WBS. if niether of them is checked we have to throw a message. 1) my Q is how can we check that 1

  • Material Ledger Run CKMLCP

    We are having issue with material ledger when running single and multi level on a material. When we try to execute Single level on the material it is giving ABAP dump with MESSAGE_TYPE_X  message. Any suggestions?? First determine prices (1-lvl) for

  • Simple play(); problem

    Go easy on me. I'm very new to ActionScript. My problem is this. I've got a button inside a movie clip. That button needs to play a movie clip that is on the main timeline. However, whatever I try (that's within my knowledge) doesn't work. Here is a

  • BUG: Flash Pro CC 2014 won't update to latest

    I have a CC membership and have updated to Flash Professional CC 2014 on both my desktop and laptop, however whenever I open a FLA saved from my Dekstop, opened on my laptop, Flash Pro complains that the FLA was created with a newer version of Flash