From a bad Lacie to a kernel error of doom

Hey guys just had a Lacie go wacky on me. So I replaced it with a GRaid 1TB from Gtech.
While I was transfering data I had a video file look all messed up and pixelated in the small folder viewer. When I went to drag it into the new Graid (which I probably shouldnt have) Surprise Kernal error. Happened twice so I gave up and must re capture that footage, no biggie I have the tape.
Just wondering-
Did the kernal error of doom hurt my new Graid during the transfer?
Thanks

Run Disk Utility > Repair Disk plus Diskwarrior. Call me in the morning if there are any residual issues.
good night.

Similar Messages

  • Error trying to publish (real time) to delivery: No response from remote execute trying to save assettype [error was -103].

    Hi all,
    I'm trying to publish for first time to a new environment (delivery).
    The light of target destination is green.
    When i click on "inicialize" i get these errors and in the docs i cannot find why or what i have to do.
    Trying to publish asset types during inicialization it returns this error:
    No response from remote execute trying to save assettype [error was -103].
    Looking for the meaning for this i found: No table. What does it mean? Why the tool has not created the table?
    And then, the next error message is shown (all of them are shown in the same screenshot) trying to mirroring. It might have to do with the previos error message... but i have no idea!
    -12011. No response from remote execute trying to save assettype [error was -103]
    sites.log in delivery environment says as follows
    [2014-01-24 12:13:52,496 CET] [ERROR] [.kernel.Default (self-tuning)'] [fatwire.logging.cs.db] SQLException loading table definition for SiteCatalog with state HY000: [FMWGEN][SQLServer JDBC Driver]Object has been closed.
    java.sql.SQLException: [FMWGEN][SQLServer JDBC Driver]Object has been closed.
    [2014-01-24 12:13:52,527 CET] [ERROR] [.kernel.Default (self-tuning)'] [com.fatwire.logging.cs] ContentServer exception running CS recursively
    COM.FutureTense.Common.ContentServerException: pagename not supplied  Error code:BAD PARAMETER
    [2014-01-24 12:13:52,543 CET] [ERROR] [.kernel.Default (self-tuning)'] [logging.cs.satellite.request] Error accessing the external page with pmd: page: ?Browser=Unknown  Browser&SystemAssetsRoot=/dlv/futuretense_cs/&errdetail=0&errno=0&null= &pagename=fatwire/wem/sso/casInfo
    [2014-01-24 12:13:52,543 CET] [ERROR] [.kernel.Default (self-tuning)'] [fatwire.logging.cs.request] COM.FutureTense.Common.ContentServerException: ContentServerException: (Reading page page: ?Browser=Unknown  Browser&SystemAssetsRoot=/dlv/futuretense_cs/&errdetail=0&errno=0&null= &pagename=fatwire/wem/sso/casInfo from co-resident Content Server failed (errno=0).) Error code:GENERIC SERVER ERROR
    [2014-01-24 12:14:06,021 CET] [ERROR] [.kernel.Default (self-tuning)'] [fatwire.logging.cs.db] SQLException loading table definition for SystemInfo with state HY000: [FMWGEN][SQLServer JDBC Driver]Object has been closed.
    java.sql.SQLException: [FMWGEN][SQLServer JDBC Driver]Object has been closed.
    Does anybody know how to help here?
    Thank you very much.
    Gala

    What SQL server driver are you using, Microsoft's or the jTDS driver (see jTDS JDBC Driver)? It may be worth trying the other.
    Also, can you enable
    com.fatwire.logging.cs=DEBUG
    in log4j.properties and retest, then post the entire resulting sites.log and application server log somewhere for us to see? e.g somewhere like pastebin.com
    Phil

  • Intel Xserve kernel errors

    when I use java threats on intel Xserve cause this a kernel panic (interlock timeout for mutex)
    I can reproduce Is problem with a simple java script ( see below)
    Has anybody the same problem or a solution for this problem ?
    how to test
    save script as MutexSimulator.java and run
    # javac MutexSimulator.java
    # java MutexSimulator
    result : the server gives a kernel error.. and reboots
    public class MutexSimulator implements Runnable
    public static int nSimultaneousProcs = 0;
    protected Thread runner;
    MutexSimulator()
    nSimultaneousProcs++;
    runner = new Thread(this);
    runner.start();
    public void run()
    try
    Runtime rt = Runtime.getRuntime();
    Process p = null;
    try
    p = rt.exec(new String[]{"ls","-al","/"});
    p.waitFor();
    catch(Exception e)
    System.err.println("Exception "+e.getMessage());
    if(p!=null)
    p.destroy();
    catch(Exception e)
    System.err.println("Exception "+e.getMessage());
    nSimultaneousProcs--;
    public static void main(String [] args)
    int nProcsInQueue = 0;
    while(true)
    if(MutexSimulator.nSimultaneousProcs<200)
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    try
    Thread.sleep(50);
    } catch (InterruptedException e)
    System.err.println("Exception "+e.getMessage());
    //System.out.println("Running "MutexSimulator.nSimultaneousProcs" processes.");
    public class MutexSimulator implements Runnable
    public static int nSimultaneousProcs = 0;
    protected Thread runner;
    MutexSimulator()
    nSimultaneousProcs++;
    runner = new Thread(this);
    runner.start();
    public void run()
    try
    Runtime rt = Runtime.getRuntime();
    Process p = null;
    try
    p = rt.exec(new String[]{"ls","-al","/"});
    p.waitFor();
    catch(Exception e)
    System.err.println("Exception "+e.getMessage());
    if(p!=null)
    p.destroy();
    catch(Exception e)
    System.err.println("Exception "+e.getMessage());
    nSimultaneousProcs--;
    public static void main(String [] args)
    int nProcsInQueue = 0;
    while(true)
    if(MutexSimulator.nSimultaneousProcs<200)
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    new MutexSimulator();
    try
    Thread.sleep(50);
    } catch (InterruptedException e)
    System.err.println("Exception "+e.getMessage());
    //System.out.println("Running "MutexSimulator.nSimultaneousProcs" processes.");
    }

    While I have found a few problems as well, I have gotten the intel xserve fairly stable (it did take a while and a lot of apple support calling)
    I haven't had kernal panics, but I haven't been able to get the processors above 45% when doing compression. Also, I had some nasty lun masking problems with the fibre card which did result in corrpution of a HFS raid volume.
    On the topic of xsan and the intel xserve, it is a BAD idea to try to install anything prior to 1.4.0. Had hangs, crashes and even corruption of the serial licensing daemon. Installing 1.4 and upgrading to 1.4.1 was a huge fix to those issues.
    Overall, after a lot of work, it is working well, and does play back 100MB/s video extremely well off an xsan volume. Although, I would be fully content if I could get compressor's utilization of the CPU from 40 to 100%.

  • How can we take the cursor to a different sub-screen from the BADI?

    Hi,
    We have to do some validation on Header, Operation and Relationship of any work order (IW31, IW32). We have checked that validations can be done at BADI WORKORDER_UPDATE in the method u2018AT_SAVEu2019.  But user wants us to take the Cursor back to the field and screen due to which the error is coming. How can we take the cursor to a different sub-screen from the BADI?
    Thanks in Advance,
    Pranav

    You 'ran out of room' because you tried to put your entire question into what is the 'Topic line' of the post.
    This is a fairly common error, as a scan of the topic list will show, and likely due to a design flaw in the layout of the composition page.
    Most posters who make this error do so on their first post, and are able to avoid a similar misstep on their second and subsequent questions.
    Regards,
    Barry

  • Kernel error when starting up

    my macbook is four month old and since some days I receive always a kernel error when I want to start up. but the hardware tests are positive. any solutions?
    17.02.08 12:43:18 kernel npvhash=4095
    17.02.08 12:43:16 com.apple.launchctl.System[2] launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    17.02.08 12:43:16 com.apple.launchd[1] (org.cups.cupsd) Unknown key: SHAuthorizationRight
    17.02.08 12:43:16 com.apple.launchd[1] (org.ntp.ntpd) Unknown key: SHAuthorizationRight
    17.02.08 12:43:18 kextd[10] 398 cached, 0 uncached personalities to catalog
    17.02.08 12:43:20 kernel hi mem tramps at 0xffe00000
    17.02.08 12:43:19 DirectoryService[11] Launched version 5.0 (v514)
    17.02.08 12:43:20 kernel PAE enabled
    17.02.08 12:43:20 kernel 64 bit mode enabled
    17.02.08 12:43:20 kernel Darwin Kernel Version 9.0.0: Tue Oct 9 21:35:55 PDT 2007; root:xnu-1228~1/RELEASE_I386
    17.02.08 12:43:20 kernel standard timeslicing quantum is 10000 us
    17.02.08 12:43:20 kernel vmpagebootstrap: 509216 free pages and 15072 wired pages
    17.02.08 12:43:20 kernel migtable_maxdispl = 79
    17.02.08 12:43:20 kernel Extension "com.apple.driver.AppleACPIPlatform" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    17.02.08 12:43:20 kernel Extension "com.apple.driver.AppleIntelCPUPowerManagement" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    17.02.08 12:43:20 kernel devfsmakenode: not ready for devices!
    17.02.08 12:43:20 kernel AppleACPICPU: ProcessorApicId=0 LocalApicId=0 Enabled
    17.02.08 12:43:20 kernel AppleACPICPU: ProcessorApicId=1 LocalApicId=1 Enabled
    17.02.08 12:43:20 kernel Loading security extension com.apple.security.TMSafetyNet
    17.02.08 12:43:20 kernel calling mpopolicyinit for TMSafetyNet
    17.02.08 12:43:20 kernel Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    17.02.08 12:43:20 kernel Loading security extension com.apple.nke.applicationfirewall
    17.02.08 12:43:20 kernel Loading security extension com.apple.security.seatbelt
    17.02.08 12:43:20 kernel calling mpopolicyinit for mb
    17.02.08 12:43:20 kernel Seatbelt MACF policy initialized
    17.02.08 12:43:20 kernel Security policy loaded: Seatbelt Policy (mb)
    17.02.08 12:43:20 kernel Copyright (c) 1982, 1986, 1989, 1991, 1993
    17.02.08 12:43:20 kernel The Regents of the University of California. All rights reserved.
    17.02.08 12:43:20 kernel MAC Framework successfully initialized
    17.02.08 12:43:20 kernel using 10485 buffer headers and 4096 cluster IO buffer headers
    17.02.08 12:43:20 kernel IOAPIC: Version 0x20 Vectors 64:87
    17.02.08 12:43:20 kernel Extension "com.apple.driver.AppleACPIPlatform" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    17.02.08 12:43:20 kernel ACPI: System State [S0 S3 S4 S5] (S3)
    17.02.08 12:43:20 kernel Extension "com.apple.driver.AppleACPIPlatform" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    17.02.08 12:43:20 kernel Extension "com.apple.driver.AppleACPIPlatform" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    17.02.08 12:43:20 kernel mbinit: done
    17.02.08 12:43:20 kernel Security auditing service present
    17.02.08 12:43:20 kernel BSM auditing present
    17.02.08 12:43:20 kernel rooting via boot-uuid from /chosen: 9A54D9E6-2C18-3A51-9F1A-5305A9BE5707
    17.02.08 12:43:20 kernel Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    17.02.08 12:43:21 kernel FireWire (OHCI) Lucent ID 5811 built-in now active, GUID 001d4ffffe6314f0; max speed s400.
    17.02.08 12:43:21 kernel Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleAHCI/PRT2 @2/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageDri ver/FUJITSU MHW2160BHPL Media/IOGUIDPartitionScheme/Customer@2
    17.02.08 12:43:21 configd[14] setting hostname to "hermes-baby.local"
    17.02.08 12:43:21 kernel BSD root: disk0s2, major 14, minor 2
    17.02.08 12:43:21 kernel CSRHIDTransitionDriver::start []
    17.02.08 12:43:21 kernel CSRHIDTransitionDriver::switchToHCIMode legacy
    17.02.08 12:43:21 mDNSResponder mDNSResponder-161.1 (Oct 11 2007 00:22:24)[16] starting
    17.02.08 12:43:21 kernel USBF: 3. 25 CSRHIDTransitionDriver[0x3f38000](IOUSBCompositeDevice) GetFullConfigDescriptor(0) returned NULL
    17.02.08 12:43:21 kernel CSRHIDTransitionDriver... done
    17.02.08 12:43:21 kernel Extension "com.apple.iokit.IOBluetoothFamily" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    17.02.08 12:43:21 kernel Extension "com.apple.iokit.IOBluetoothFamily" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    17.02.08 12:43:21 kernel Extension "com.apple.iokit.IOBluetoothFamily" has immediate dependencies on both com.apple.kernel and com.apple.kpi components; use only one style.
    17.02.08 12:43:21 kernel E:[AppleUSBBluetoothHCIController][FindInterfaces] mInt0InterruptMaxPacketSize = 16
    17.02.08 12:43:21 kernel Jettisoning kernel linker.
    17.02.08 12:43:21 kernel Resetting IOCatalogue.
    17.02.08 12:43:21 kernel GFX0: family specific matching fails
    17.02.08 12:43:21 kernel display: family specific matching fails
    17.02.08 12:43:21 kernel Matching service count = 1
    17.02.08 12:43:22 kernel Matching service count = 3
    17.02.08 12:43:22 kernel Matching service count = 3
    17.02.08 12:43:22 kernel Matching service count = 3
    17.02.08 12:43:22 kernel Matching service count = 3
    17.02.08 12:43:22 kernel Matching service count = 3
    17.02.08 12:43:22 kernel display: family specific matching fails
    17.02.08 12:43:22 com.apple.SecurityServer[20] Entering service
    17.02.08 12:43:22 mDNSResponder[16] SetDomainSecrets: mDNSKeychainGetSecrets failed error 0 CFArrayRef 00000000
    17.02.08 12:43:28 fseventsd[35] bumping event counter to: 0x370db (current 0x0) from log file '00000000000232f6'
    17.02.08 12:43:31 kernel display: family specific matching fails
    17.02.08 12:43:33 kernel Previous Shutdown Cause: 3
    17.02.08 12:43:35 kernel ath_attach: devid 0x24
    17.02.08 12:43:35 kernel Override HT40 CTL Powers. EEPROM Version is 14.4, Device Type 5
    17.02.08 12:43:35 kernel GFX0: family specific matching fails
    17.02.08 12:43:35 kernel GFX0: family specific matching fails
    17.02.08 12:43:35 kernel display: family specific matching fails
    17.02.08 12:43:35 configd[14] Error: No interface name AirPort_Athr5424ab
    17.02.08 12:43:35 kernel athdescdmasetup: tx dddescpaddr = 0x5abe000, length 0x46500(288000) bytes
    17.02.08 12:43:35 configd[14] Error: ioPublishedDriverCallback() failed to initDeviceFromService()
    17.02.08 12:43:35 kernel athdescdmasetup: beacon dddescpaddr = 0x3522000, length 0x90(144) bytes
    17.02.08 12:43:35 kernel mac 12.10 phy 8.1 radio 12.0
    17.02.08 12:43:36 kernel GFX0: family specific matching fails
    17.02.08 12:43:36 kernel display: family specific matching fails
    17.02.08 12:43:37 kernel display: family specific matching fails
    17.02.08 12:43:37 kernel GFX0: family specific matching fails
    17.02.08 12:43:37 kernel GFX0: match category IOFramebuffer exists
    17.02.08 12:43:37 kernel display: match category IOFramebuffer exists
    17.02.08 12:43:37 kernel yukon: Ethernet address 00:1b:63:34:f8:a1
    17.02.08 12:43:37 kernel AirPort_Athr5424ab: Ethernet address 00:1c:b3:c4:23:70
    17.02.08 12:43:37 rpc.statd[27] statd.notify - no notifications needed
    17.02.08 12:43:39 /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[30] Login Window Application Started
    17.02.08 12:43:42 org.ntp.ntpd[24] Error : nodename nor servname provided, or not known
    17.02.08 12:43:39 bootlog[41] BOOT_TIME: 1203248590 0
    17.02.08 12:43:42 ntpdate[77] can't find host time.euro.apple.com
    17.02.08 12:43:42 ntpdate[77] no servers can be used, exiting
    17.02.08 12:43:43 /usr/sbin/ocspd[81] starting
    17.02.08 12:43:46 kernel display: Not usable
    17.02.08 12:43:47 kextd[10] writing kernel link data to /var/run/mach.sym
    17.02.08 12:43:51 loginwindow[30] Login Window Started Security Agent
    17.02.08 12:43:53 SecurityAgent[96] Showing Login Window
    17.02.08 12:43:58 SecurityAgent[96] User info context values set
    17.02.08 12:43:59 SecurityAgent[96] Login Window done
    17.02.08 12:43:59 loginwindow[30] Login Window - Returned from Security Agent
    17.02.08 12:43:59 loginwindow[30] USER_PROCESS: 30 console
    17.02.08 12:44:00 com.apple.launchd[1] (com.apple.UserEventAgent-LoginWindow[90]) Exited: Terminated
    17.02.08 12:44:06 Dock[111] _DESCRegisterDockExtraClient failed 268435459
    17.02.08 12:44:08 airportd[71] Error: Apple80211Associate() failed -13
    17.02.08 12:44:09 /System/Library/CoreServices/coreservicesd[74] SFLSharePointsEntry::CreateDSRecord: dsCreateRecordAndOpen(Nicola Ruffos öffentlicher Ordner) returned -14135
    17.02.08 12:44:11 kernel 11D beacon causing regdomain change to CC 756
    17.02.08 12:44:11 kernel en1: 802.11d country code set to 'CH'.
    17.02.08 12:44:11 kernel en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140
    17.02.08 12:44:12 airportd[71] Could not find any preferred networks; trying broadcast requests..
    17.02.08 12:44:13 com.apple.launchctl.System[2] BootCacheControl: could not fetch history: Cannot allocate memory
    17.02.08 12:44:13 com.apple.launchctl.System[2] BootCacheControl: could not stop cache/fetch history: Cannot allocate memory
    17.02.08 12:44:20 mDNSResponder[16] uDNS_CheckCurrentQuestion no DNS server for b.dns-sd.udp.0.1.0.10.in-addr.arpa. (PTR)
    17.02.08 12:44:20 mDNSResponder[16] uDNS_CheckCurrentQuestion no DNS server for db.dns-sd.udp.0.1.0.10.in-addr.arpa. (PTR)
    17.02.08 12:44:20 mDNSResponder[16] uDNS_CheckCurrentQuestion no DNS server for r.dns-sd.udp.0.1.0.10.in-addr.arpa. (PTR)
    17.02.08 12:44:20 mDNSResponder[16] uDNS_CheckCurrentQuestion no DNS server for dr.dns-sd.udp.0.1.0.10.in-addr.arpa. (PTR)
    17.02.08 12:44:20 mDNSResponder[16] uDNS_CheckCurrentQuestion no DNS server for lb.dns-sd.udp.0.1.0.10.in-addr.arpa. (PTR)
    17.02.08 12:44:28 quicklookd[117] [QL ERROR] 'Creating thumbnail' timed out for '<QLThumbnailRequest /Users/nicolaruffo/Desktop/u-ag-20040408-Profil.xls>'
    17.02.08 12:44:33 /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer[1 13] CPSGetProcessInfo(): This call is deprecated and should not be called anymore.
    17.02.08 12:44:33 /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer[1 13] CPSPBGetProcessInfo(): This call is deprecated and should not be called anymore.
    17.02.08 12:44:35 mDNSResponder[16] * Keychain Changed * KeychainEvent=3 kSecAddEvent
    17.02.08 12:44:36 mDNSResponder[16] Adding registration domain nicolaruffo.members.mac.com.
    17.02.08 12:44:36 mDNSResponder[16] Setting up AutoTunnel address FD86:FFEC:5DA2:4B28:021B:63FF:FE34:F8A1
    17.02.08 12:44:36 mDNSResponder[16] Double NAT (external NAT gateway address 192.168.0.5 is also a private RFC 1918 address)
    17.02.08 12:44:39 mDNSResponder[16] Failed to obtain NAT port mapping from router 10.0.1.1 external address 192.168.0.5 internal port 4500
    17.02.08 12:45:13 fseventsd[35] log dir: /Volumes/SCHNAUZE/.fseventsd getting new uuid: F8BB9302-AA96-4A13-9D1F-A49A397A97FD
    17.02.08 12:45:13 SystemUIServer[113] Could not find image named 'TMDisk'.
    17.02.08 12:45:38 com.apple.dyld[136] updatedyld_sharedcache[136] current cache invalid because /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents has changed
    17.02.08 12:47:34 kernel athrxbufinit: no mbuf/cluster
    17.02.08 12:47:34 /System/Library/CoreServices/backupd[173] Backup requested by user
    17.02.08 12:47:34 /System/Library/CoreServices/backupd[173] Starting standard backup
    17.02.08 12:47:34 /System/Library/CoreServices/backupd[173] Backing up to: /Volumes/SCHNAUZE/Backups.backupdb
    17.02.08 12:47:35 /System/Library/CoreServices/backupd[173] Ownership is disabled on the backup destination volume. Enabling.
    17.02.08 12:47:43 KernelEventAgent[31] tid 00000000 received unknown event (256)
    17.02.08 12:47:48 /System/Library/CoreServices/backupd[173] Backup content size: 84.0 GB excluded items size: 2.7 MB for volume Macintosh HD
    17.02.08 12:47:48 /System/Library/CoreServices/backupd[173] No pre-backup thinning needed: 100.84 GB requested (including padding), 179.99 GB available
    17.02.08 12:47:48 /System/Library/CoreServices/backupd[173] MDBackupBegin() returned result (909) > 0, waiting
    17.02.08 12:47:57 authexec[228] executing /System/Library/Frameworks/Carbon.framework/Versions/Current/Support/LaunchCFMA pp
    17.02.08 12:48:21 com.apple.dyld[136] updatedyld_sharedcache[136] regenerated cache for arch=ppc
    17.02.08 12:48:21 com.apple.launchd[1] (com.apple.dyld) Throttling respawn: Will start in 60 seconds
    Message was edited by: nicolaruffo

    Hi
    Welcome to Apple discussions
    My first iBook suffered from persistent KPs on start up. Eventually I resolved the issue by cleaning the cache files. There are a number of cheap/free share ware apps. My favourite is Tiger (or Leopard) Cache Cleaner from here: http://www.northernsoftworks.com/
    For more general info on resolving KPs, try here: http://www.thexlab.com/faqs/kernelpanics.html
    Good luck
    Bob

  • Critical Kernel error while on windows partition, now neither mac or windows will boot help ?

    Hi I was on my windows side of my mac when i got the blue-screen-of-death with something saying Critical Kernel Error, weird noises from the speakers and the macbook pro did a hard shut off.
    Since then I can no longer boot into the mac or windows side (both are stuck infinitely loading). I ran disk utility on the mac side and I have an "Invalid Node Structure." Which disk utility cannot repair. I do have DiskWarrior on another mac to try and rebuild the mac partition through a firewire connection - i think that is the correct course of action ?
    But does this mean my windows partition is likely gone or any idea what went on ? As I am terribly confused that while on my windows side I had an error that messsed up both partitions.
    Or what to check for so this hopefully doesnt happen again if it is a hardware problem? My drive smart status is listed as "OK" and I cant seem to run the Apple Hardware test as upon attempting to get into it the laptop just shuts off while loading it, although I read somewhere the Apple Hardware test is no longer preloaded on macbook pros.
    The system in question is a 15" macbook pro bought around July 2011.
    Thank you,
    Wes

    Alright I have both my mac side and windows side repaired and functioning fine. Should I still be concerned ? Linc I know you are saying this is a drive malfunction but is there a way I can be sure ? I still cannot run AHT (restart, hold down D), and my laptop shipped with Lion installed so I believe it should run. It just boots into the mac side when I hold D..

  • Blue screen - Data Inpage Kernel Error on Satellite Pro L

    I have had my laptop 6 months now.
    Now a blue screen comes and says - Data Inpage Kernel Error.
    I reset back to factory settings but it is still happening.Is the hard drive knackered?
    If so is it covered by the warranty?
    If not which hard drive do i need and where can i get it from.
    Many Thanks for your help.

    Hi mono33,
    > I reset back to factory settings but it is still happening.
    This would mean its no software malfunction and its serious hardware issue. If your notebook is under warranty, the repair is covered by warranty and ASP will repair the unit for free.
    So at first I would check if the notebook is under warranty. If yes give it to an ASP and the gus can repair the notebook. Otherwise you can also ask an ASP for help but its not for free.
    Theoretically it could be HDD related but it could be another hardware part as well.

  • Upgrade HDD using Time Machine, but no Snow Leopard DVD, only Leopard installation DVD = kernel error on startup

    Hi guys and girls.
    Background
    I have a MacBook Pro (March 2009 vintage).  It was loaded with OS X Leopard on a 250GB HDD.  When Snow Leopard was released, I upgraded using a DVD bought from Apple.  In time, I added an external USB HDD to use for Time Machine Backups.  I am now, however, knocking up against the capacity limit of the original hard drive.
    Given the above, plus the fact that I no longer appear to have the Snow Leopard DVD (upgrade version I believe) - what is the recommended way to get back to my old setup (files, OS, settings etc), but with my new, larger HDD?
    So far I have tried:
    1. Formatting new HDD as Mac OS Extended (journaled), GUID partition having booted using my original (Leopard) installation DVD.  I then selected the latest Time Machine (Snow Leopard) backup.  After a couple of hours of restoring from that backup, the system restarted, but had kernel errors on bootup.
    2. As above, but when formatting, chose to zero all data.  This had the same end result.
    Questions:
    1. Are the kernel errors I'm experiencing due to the mismatch of booting off Leopard and restoring a Snow Leopard backup?
    2. Would finding my (or even a) Snow Leopard upgrade DVD help?  If so, how?
    3. What am I doing wrong generally?  I do like to try to understand these things!
    4. As above, what is the recommended way of doing what I'm trying to do, given the limitations of release DVDs etc.
    Many thanks

    Simplest thing would be to buy the retail SL installation disc ($20 USD) and use it to do the migration. There might be an issue trying to use a SL TM version with Leopard.

  • Random Kernel Errors and need to repair disk

    After trying to partition for Bootcamp, the computer locked into a Kernel error. I went to validate the disk and discovered that I need to repair the disk. I have tried booting from my OSX installation disk to access the repair disk functionality. I receive a kernel error each and every time I try to boot from disk. Details as follows - please advise.
    Interval Since Last Panic Report: -1127922 sec
    Panics Since Last Report: 1
    Anonymous UUID: F32AB6E4-83EA-45BF-9186-E23B077676E9
    Sun Mar 13 21:26:16 2011
    panic(cpu 1 caller 0x2a6ac2): Kernel trap at 0x581571fc, type 14=page fault, registers:
    CR0: 0x8001003b, CR2: 0x00000018, CR3: 0x19703000, CR4: 0x00000660
    EAX: 0x00000000, EBX: 0x00000000, ECX: 0x00000000, EDX: 0x06f75004
    CR2: 0x00000018, EBP: 0x5786bc78, ESI: 0x07f29c00, EDI: 0x07f29c00
    EFL: 0x00010246, EIP: 0x581571fc, CS: 0x00000008, DS: 0x00290010
    Error code: 0x00000000
    Backtrace (CPU 1), Frame : Return Address (4 potential args on stack)
    0x5786ba88 : 0x21acfa (0x5ce650 0x5786babc 0x223156 0x0)
    0x5786bad8 : 0x2a6ac2 (0x590a50 0x581571fc 0xe 0x590c1a)
    0x5786bbb8 : 0x29c968 (0x5786bbd0 0x7f16700 0x5786bc78 0x581571fc)
    0x5786bbc8 : 0x581571fc (0xe 0x48 0x10 0x57860010)
    0x5786bc78 : 0x580fbfb8 (0x0 0x7f16700 0x80deac0 0x810b140)
    0x5786bc98 : 0x57d10189 (0x7f29c00 0x57d15304 0x80deac0 0x0)
    0x5786bd08 : 0x57d0cb98 (0x7f29c00 0x5786bdcc 0x7501bb8 0x4a7632a3)
    0x5786bd38 : 0x5330cf (0x7f29c00 0x7501bb8 0x7501bb8 0x0)
    0x5786bd88 : 0x563a86 (0x7f29c00 0x7501bb8 0x7501bb8 0x0)
    0x5786bde8 : 0x284883 (0x7f29c00 0x7501bb8 0x0 0x0)
    0x5786be58 : 0x21d09c (0x6f00168 0x6f00284 0x6f0016c 0x6f001a4)
    0x5786be98 : 0x210234 (0x6f00100 0x5786bedc 0x739bd74 0x5786bed0)
    0x5786bef8 : 0x216497 (0x6f00100 0x0 0x0 0x0)
    0x5786bf78 : 0x2922ba (0x74407e8 0x0 0x0 0x0)
    0x5786bfc8 : 0x29d44d (0x74407e4 0x0 0x10 0x74407e4)
    Kernel Extensions in backtrace (with dependencies):
    com.apple.NVDAResman(6.0.0)@0x580f8000->0x5838bfff
    dependency: com.apple.iokit.IOPCIFamily(2.6)@0x50e3b000
    dependency: com.apple.iokit.IONDRVSupport(2.0)@0x57cbd000
    dependency: com.apple.iokit.IOGraphicsFamily(2.0)@0x57cff000
    com.apple.iokit.IOGraphicsFamily(2.0)@0x57cff000->0x57d1cfff
    dependency: com.apple.iokit.IOPCIFamily(2.6)@0x50e3b000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    10A432
    Kernel version:
    Darwin Kernel Version 10.0.0: Fri Jul 31 22:47:34 PDT 2009; root:xnu-1456.1.25~1/RELEASE_I386
    System model name: MacBook7,1 (Mac-F22C89C8)
    System uptime in nanoseconds: 147336336486
    unloaded kexts:
    (none)
    loaded kexts:
    com.apple.driver.InternalModemSupport 2.6.0
    com.apple.driver.AppleTyMCEDriver 1.0.1d8
    com.apple.driver.AppleIntelYonahProfile 14
    com.apple.driver.AppleIntelPenrynProfile 17
    com.apple.DontSteal_Mac_OSX 7.0.0
    com.apple.driver.AppleHDA 1.7.4a1
    com.apple.driver.AppleGraphicsControl 2.8.16
    com.apple.driver.AppleIntelNehalemProfile 11
    com.apple.driver.AudioIPCDriver 1.1.0
    com.apple.driver.AppleUpstreamUserClient 3.0.5
    com.apple.driver.SMCMotionSensor 3.0.0d4
    com.apple.driver.ACPISMCPlatformPlugin 3.4.0a20
    com.apple.driver.AppleBacklight 170.0.2
    com.apple.driver.AppleIntelMeromProfile 19
    com.apple.GeForce 6.0.0
    com.apple.driver.DiskImages.SparseDiskImage 281
    com.apple.driver.DiskImages.ReadWriteDiskImage 281
    com.apple.driver.DiskImages.UDIFDiskImage 281
    com.apple.driver.DiskImages.RAMBackingStore 281
    com.apple.driver.DiskImages.HTTPBackingStore 281
    com.apple.driver.DiskImages.FileBackingStore 281
    com.apple.driver.AppleUSBTCButtons 1.8.0b4
    com.apple.driver.AppleUSBTCKeyEventDriver 1.8.0b4
    com.apple.driver.AppleUSBTCKeyboard 1.8.0b4
    com.apple.iokit.SCSITaskUserClient 2.5.0
    com.apple.BootCache 31
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.driver.AppleUSBHub 3.7.8
    com.apple.driver.AirPortBrcm43xx 410.91.20
    com.apple.nvenet 1.0.58
    com.apple.driver.AppleUSBOHCI 3.7.5
    com.apple.driver.AppleUSBEHCI 3.7.5
    com.apple.iokit.IOAHCIBlockStorage 1.5.0
    com.apple.driver.AppleEFINVRAM 1.3.0
    com.apple.driver.AppleAHCIPort 2.0.0
    com.apple.driver.AppleRTC 1.3
    com.apple.driver.AppleHPET 1.4
    com.apple.driver.AppleSmartBatteryManager 160.0.0
    com.apple.driver.AppleACPIButtons 1.3
    com.apple.driver.AppleSMBIOS 1.4
    com.apple.driver.AppleACPIEC 1.3
    com.apple.driver.AppleAPIC 1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient 90.0.0
    com.apple.security.sandbox 0
    com.apple.security.quarantine 0
    com.apple.nke.applicationfirewall 2.0.11
    com.apple.driver.AppleIntelCPUPowerManagement 90.0.0
    com.apple.driver.AppleProfileReadCounterAction 17 - last loaded 147290710663
    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 73.0
    com.apple.driver.AppleHDAPlatformDriver 1.7.4a1
    com.apple.iokit.IOBluetoothSerialManager 2.2f18
    com.apple.iokit.IOSerialFamily 10.0.2
    com.apple.driver.AppleHDAHardwareConfigDriver 1.7.4a1
    com.apple.driver.DspFuncLib 1.7.4a1
    com.apple.iokit.IOAudioFamily 1.7.0fc16
    com.apple.kext.OSvKernDSPLib 1.3
    com.apple.driver.AppleHDAController 1.7.4a1
    com.apple.iokit.IOHDAFamily 1.7.4a1
    com.apple.driver.AppleSMC 3.0.1d2
    com.apple.driver.IOPlatformPluginFamily 3.4.0a20
    com.apple.iokit.AppleProfileFamily 40
    com.apple.NVDAResman 6.0.0
    com.apple.iokit.IONDRVSupport 2.0
    com.apple.iokit.IOGraphicsFamily 2.0
    com.apple.driver.DiskImages.KernelBacked 281
    com.apple.driver.AppleUSBMultitouch 200.20
    com.apple.iokit.IOUSBHIDDriver 3.7.5
    com.apple.driver.BroadcomUSBBluetoothHCIController 2.2f18
    com.apple.driver.AppleUSBBluetoothHCIController 2.2f18
    com.apple.iokit.IOBluetoothFamily 2.2f18
    com.apple.driver.AppleUSBMergeNub 3.7.5
    com.apple.driver.AppleUSBComposite 3.7.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 2.5.0
    com.apple.iokit.IOBDStorageFamily 1.6
    com.apple.iokit.IODVDStorageFamily 1.6
    com.apple.iokit.IOCDStorageFamily 1.6
    com.apple.driver.XsanFilter 402.1
    com.apple.iokit.IO80211Family 300.20
    com.apple.iokit.IOUSBUserClient 3.7.5
    com.apple.iokit.IONetworkingFamily 1.8
    com.apple.driver.AppleFileSystemDriver 2.0
    com.apple.iokit.IOUSBFamily 3.7.8
    com.apple.iokit.IOAHCISerialATAPI 1.2.0
    com.apple.iokit.IOSCSIArchitectureModelFamily 2.5.0
    com.apple.iokit.IOAHCIFamily 2.0.0
    com.apple.driver.AppleEFIRuntime 1.3.0
    com.apple.iokit.IOHIDFamily 1.6.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.TMSafetyNet 6
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.driver.DiskImages 281
    com.apple.iokit.IOStorageFamily 1.6
    com.apple.driver.AppleACPIPlatform 1.3
    com.apple.iokit.IOPCIFamily 2.6
    com.apple.iokit.IOACPIFamily 1.3.0

    The installation DVD is from another Mac, but is also Mac OSX 10.6
    Is it required that I use the exact disk that shipped with my computer? (Go figure, it's in Minneapolis, I'm in Atlanta...).
    The DVD however is in no way scratched or dirty. I will run the hardware test and report back.
    Thank you for the leads.

  • WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037

    I have couple of VMs Server 2012 R2 RTM on Hyper-v Host running the same OS.
    All machines including host and VM that is not in domain have an error in Windowsupdate.log:
    AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
    FW and UAC are off on all. There are posts on web discussing the same error but most of them connect this to WSUS or Config Manager. And it is clear because we are touching Windowsupdate.log when troubleshooting WSUS. And because WSUS on 2012 is BUGGY this
    error confuses too.
    Finally, as mentioned earlier I deployed NEW server 2012 not from SYSPREP and did not place it to the domain. Updated the machine from MS update. Everything is OK beside the same error about COST :).
    So now it is clear it has nothing to do with WSUS or Configuration manager. It indicates to some Network issue. But there is no clear answer. Some suggest just to ignore the error if everything is OK. But I would like to have a clean log. And it is just
    interesting what could cause the problem. Is it Hyper-V stuff or Server 2012 itself. Anyway I guess I am doing right by posting a question on HV forum since here are people that should know 2012 .
    Thanks.
    see the log below
    2013-12-16 20:32:03:610  752 b44 Setup SelfUpdate check completed.  SelfUpdate is NOT required.
    2013-12-16 20:32:04:047  752 b44 PT +++++++++++  PT: Synchronizing server updates  +++++++++++
    2013-12-16 20:32:04:047  752 b44 PT   + ServiceId = {9482F4B4-E343-43B6-B170-9A65BC822C77}, Server URL =
    https://fe2.update.microsoft.com/v6/ClientWebService/client.asmx
    2013-12-16 20:32:04:047  752 b44 Agent Reading cached app categories using lifetime 604800 seconds
    2013-12-16 20:32:04:047  752 b44 Agent Read 1 cached app categories
    2013-12-16 20:32:05:016  752 b44 PT   + SyncUpdates round trips: 2
    2013-12-16 20:32:06:422  752 b44 Agent   * Found 0 updates and 14 categories in search; evaluated appl. rules of 449 out of 701 deployed entities
    2013-12-16 20:32:06:422  752 b44 Agent *********
    2013-12-16 20:32:06:422  752 b44 Agent **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates  Id = 2]
    2013-12-16 20:32:06:422  752 b44 Agent *************
    2013-12-16 20:32:06:422  752 b44 IdleTmr WU operation (CSearchCall::Init ID 2, operation # 20) stopped; does use network; is not at background priority
    2013-12-16 20:32:06:422  752 b44 IdleTmr Decremented PDC RefCount for Network to 0
    2013-12-16 20:32:06:422  752 b44 IdleTmr Decremented idle timer priority operation counter to 1
    2013-12-16 20:32:06:422  752 ba0 AU >>##  RESUMED  ## AU: Search for updates [CallId = {5393115A-5840-4CB4-9C66-F68034E75DF8} ServiceId = {9482F4B4-E343-43B6-B170-9A65BC822C77}]
    2013-12-16 20:32:06:422  752 ba0 AU   # 0 updates detected
    2013-12-16 20:32:06:422  752 ba0 AU #########
    2013-12-16 20:32:06:422  752 ba0 AU ##  END  ##  AU: Search for updates  [CallId = {5393115A-5840-4CB4-9C66-F68034E75DF8} ServiceId = {9482F4B4-E343-43B6-B170-9A65BC822C77}]
    2013-12-16 20:32:06:422  752 ba0 AU #############
    2013-12-16 20:32:06:422  752 ba0 AU All AU searches complete.
    2013-12-16 20:32:06:422  752 ba0 AU AU setting next detection timeout to 2013-12-17 22:55:28
    2013-12-16 20:32:06:422  752 ba0 AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
    2013-12-16 20:32:06:422  752 ba0 AU WARNING: Failed to get Network Cost info from NLM, assuming network is NOT metered, error = 0x80240037
    "When you hit a wrong note it's the next note that makes it good or bad". Miles Davis

    Hi pob579,
    Sorry for the late .
    I want to know if your network connection indicates " unidentified network ".
    If that is the case , you can try the step below :
        open the "local group policy"
        expand  local computer policy -->computer configuration -->windows settings -->security settings
    --> network list manager policies
        in the right pane you will see Unidentified Networks , double click it , then you can configure the
    Location Type when the network connection is unidentified
        If there is domain , you need to change the same entry in "Domain Policy"
        after that please restart your computer
    Hope this helps
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Kernel Error Panic

    I recently bought a new MacBook 2 months ago. About a month or so after receiving it I began to receive kernel errors (the gray box with all the different languages in it). I bought the MacBook with 1GB RAM and a friend installed another 1GB for me (now it has 2GB). From things I have been reading, I am wondering if this is the cause of my kernel panics. It seems to happen mostly when I am using iChat. Everything else seems to be working fine. iChat freezes on me quite often. I have reformatted my computer once already and thought that things were going well until 20 minutes ago when I got a kernel error. I reformatted thinking that would solve my kernel error problems. I am not in the US right now and won't be able to take my MacBook into a store for another 6 weeks at the earliest. What should I do in the mean time? Should I reinstall the original RAM and then take the computer in when I get back to the states? Any advice would be appreciated... I am not that computer savvy. Thank you!

    As pointed out by J.C., the most likely cause of your problem is the 3rd party RAM you've installed. Try replacing it with the original RAM that came with your system. This is exactly what the Apple techs will do if you take your machine to an Apple store. If the Kernel Panics stop, then this confirms that the 3rd party RAM was the cause. If not, you'll need to explore other options.

  • BADI - ME_PROCESS_REQ_CUST- G/L Accounts Error Message

    Hi guys,
    I have a problem regarding autodeterminating G/L Accounts.
    I used BADI ME_PROCESS_REQ_CUST with Method: PROCESS_ACCOUNT.
    For setting the G/L Account I used:
                ls_accounting-sakto  = ls_ctrlacc_b-sakto.
                ls_accountingx-sakto = 'X'.
                CALL METHOD im_account->set_exkn
                  EXPORTING
                    im_exkn = ls_accounting.
                CALL METHOD im_account->set_exknx
                  EXPORTING
                    im_exknx = ls_accountingx.
    The problem is in ME52N (changing mode) when i change the G/L Account and after the BADI Logic, a still receive the transaction error "Enter a G/L Account" which will disappear if i press enter again.
    So ...i need in my BADI Logic , at one point (G/L Account is not initial) to erase from the Message Stack that error.
    How do I do that using data and methods from this BADI method: PROCESS_ACCOUNT?
    Thanks a lot.

    I solve this problem by doing :
    CALL METHOD cl_message_handler_mm=>get_handler
            IMPORTING
              ex_handler = lref_msg.
    CALL METHOD lref_msg->remove_all.
    mmpur_message_force  'E' 'ME'  '083' text-003 '' '' ''.
    Now, I don't know how to set cursor on matkl field
    Any opinions?

  • How to call a ABAP proxy class from a BADI? Please help!

    hi Experts,
        I have a scenario where I have to call a ABAP proxy class from a BADI. How can I do this? Does anybody has sample code for the same?
    Please help.
    Thanks
    Gopal

    Hi Gopal,
    Check this out
    DATA: ref_obj    TYPE REF TO zmfg_production_ord.----> BADI
    * Instantiate the proxy class
        CREATE OBJECT ref_obj.
        TRY.
            CALL METHOD ref_obj->execute_asynchronous
              EXPORTING
                output = it_output.     "Output Structure
            COMMIT WORK.
          CATCH cx_ai_system_fault INTO ref_sysexception.
        ENDTRY.
        IF  ref_sysexception IS INITIAL.
          WRITE : / 'Error Message'.
        ENDIF.
    Edited by: Raj on May 28, 2008 4:52 PM

  • I can only use macbook pro in safe mode. Kernel Error

    Can anyone help me get my MacBook Pro Mid 2009 15" back to normal?
    This is the kernel error that keeps apperaing when I try to restart my mac book. My mac book was restarting originally because i was installing xcode. I am now seroiulsy regretting it.
    panic(cpu 0 caller 0xffffff80184dc19e): Kernel trap at 0xffffff7f9927125d, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0xffffff8000002020, CR3: 0x000000001b366000, CR4: 0x0000000000000660
    RAX: 0xffffff80189a4240, RBX: 0xffffff8025b88400, RCX: 0x0000000001510000, RDX: 0xffffff80230c0cf0
    RSP: 0xffffff8092a33e00, RBP: 0xffffff8092a33e30, RSI: 0x0000000000010001, RDI: 0xffffff80230c0cf0
    R8:  0x0000000000000000, R9:  0x0000000000000003, R10: 0x0000000000002130, R11: 0x0000000000000003
    R12: 0xffffff8018b03490, R13: 0xffffff8018979200, R14: 0xffffff80230c7c00, R15: 0xffffff80230c7c01
    RFL: 0x0000000000010206, RIP: 0xffffff7f9927125d, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0xffffff8000002020, Error code: 0x0000000000000000, Fault CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff8092a33a90 : 0xffffff8018422f69
    0xffffff8092a33b10 : 0xffffff80184dc19e
    0xffffff8092a33ce0 : 0xffffff80184f3606
    0xffffff8092a33d00 : 0xffffff7f9927125d
    0xffffff8092a33e30 : 0xffffff7f992711cd
    0xffffff8092a33e50 : 0xffffff801889297f
    0xffffff8092a33ea0 : 0xffffff801889253f
    0xffffff8092a33f30 : 0xffffff801888e119
    0xffffff8092a33f70 : 0xffffff8018893093
    0xffffff8092a33fb0 : 0xffffff80184d6aa7
          Kernel Extensions in backtrace:
             com.apple.iokit.CHUDKernLib(365.0)[6564ADBD-4AA4-6317-E283-151737D9C2A7]@0xffff ff7f99270000->0xffffff7f99277fff
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    13B42
    Kernel version:
    Darwin Kernel Version 13.0.0: Thu Sep 19 22:22:27 PDT 2013; root:xnu-2422.1.72~6/RELEASE_X86_64
    Kernel UUID: 1D9369E3-D0A5-31B6-8D16-BFFBBB390393
    Kernel slide:     0x0000000018200000
    Kernel text base: 0xffffff8018400000
    System model name: MacBookPro5,3 (Mac-F22587C8)
    System uptime in nanoseconds: 53650245973
    last loaded kext at 53207973194: com.apple.iokit.IOUserEthernet          1.0.0d1 (addr 0xffffff7f99b32000, size 40960)
    loaded kexts:
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager          4.2.0f6
    com.apple.driver.AGPM          100.14.11
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.iokit.CHUDUtils          364
    com.apple.driver.AppleUpstreamUserClient          3.5.13
    com.apple.driver.AppleHDAHardwareConfigDriver          2.5.3fc1
    com.apple.iokit.CHUDProf          366
    com.apple.driver.AppleMikeyHIDDriver          124
    com.apple.GeForceTesla          8.1.8
    com.apple.iokit.IOBluetoothUSBDFU          4.2.0f6
    com.apple.driver.AppleHDA          2.5.3fc1
    com.apple.driver.AppleMikeyDriver          2.5.3fc1
    com.apple.driver.AppleBacklight          170.3.5
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport          4.2.0f6
    com.apple.driver.AppleSMCLMU          2.0.4d1
    com.apple.driver.AppleHWAccess          1
    com.apple.driver.AppleMuxControl          3.4.12
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.AppleLPC          1.7.0
    com.apple.driver.AppleMCCSControl          1.1.12
    com.apple.nvidia.NVDAStartup          8.1.8
    com.apple.driver.SMCMotionSensor          3.0.4d1
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleUSBTCButtons          240.2
    com.apple.driver.AppleUSBTCKeyEventDriver          240.2
    com.apple.driver.AppleUSBTCKeyboard          240.2
    com.apple.driver.AppleFileSystemDriver          3.0.1
    com.apple.driver.AppleIRController          325.7
    com.apple.BootCache          35
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.driver.AppleUSBCardReader          3.3.5
    com.apple.iokit.SCSITaskUserClient          3.6.0
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.4.0
    com.apple.driver.AppleUSBHub          650.4.4
    com.apple.driver.AppleAHCIPort          2.9.5
    com.apple.driver.AppleRTC          2.0
    com.apple.driver.AppleFWOHCI          4.9.9
    com.apple.driver.AirPort.Brcm4331          700.20.22
    com.apple.driver.AppleUSBEHCI          650.4.1
    com.apple.driver.AppleUSBOHCI          650.4.1
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.nvenet          2.0.21
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleACPIButtons          2.0
    com.apple.driver.AppleSMBIOS          2.0
    com.apple.driver.AppleACPIEC          2.0
    com.apple.driver.AppleAPIC          1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient          216.0.0
    com.apple.security.quarantine          3
    com.apple.nke.applicationfirewall          153
    com.apple.driver.AppleIntelCPUPowerManagement          216.0.0
    com.apple.iokit.IOSurface          91
    com.apple.iokit.IOSerialFamily          10.0.7
    com.apple.iokit.IOBluetoothFamily          4.2.0f6
    com.apple.AppleGraphicsDeviceControl          3.4.12
    com.apple.nvidia.classic.NVDANV50HalTesla          8.1.8
    com.apple.nvidia.classic.NVDAResmanTesla          8.1.8
    com.apple.driver.DspFuncLib          2.5.3fc1
    com.apple.vecLib.kext          1.0.0
    com.apple.iokit.IOAudioFamily          1.9.4fc11
    com.apple.kext.OSvKernDSPLib          1.14
    com.apple.iokit.CHUDKernLib          365
    com.apple.iokit.IOBluetoothHostControllerUSBTransport          4.2.0f6
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.driver.AppleHDAController          2.5.3fc1
    com.apple.iokit.IOHDAFamily          2.5.3fc1
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.iokit.IONDRVSupport          2.3.6
    com.apple.driver.AppleGraphicsControl          3.4.12
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.AppleSMBusPCI          1.0.12d1
    com.apple.driver.IOPlatformPluginFamily          5.5.1d27
    com.apple.driver.AppleSMBusController          1.0.11d1
    com.apple.iokit.IOGraphicsFamily          2.3.6
    com.apple.driver.AppleSMC          3.1.6d1
    com.apple.kext.triggers          1.0
    com.apple.driver.AppleUSBMultitouch          240.6
    com.apple.iokit.IOUSBHIDDriver          650.4.4
    com.apple.iokit.IOUSBMassStorageClass          3.6.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.6.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.6.0
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.driver.AppleUSBMergeNub          650.4.0
    com.apple.driver.AppleUSBComposite          650.4.0
    com.apple.iokit.IOAHCISerialATAPI          2.6.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.6.0
    com.apple.iokit.IOUSBUserClient          650.4.4
    com.apple.driver.AppleEFINVRAM          2.0
    com.apple.iokit.IOAHCIFamily          2.6.0
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IO80211Family          600.34
    com.apple.iokit.IOUSBFamily          650.4.4
    com.apple.driver.AppleEFIRuntime          2.0
    com.apple.iokit.IONetworkingFamily          3.2
    com.apple.driver.NVSMU          2.2.9
    com.apple.iokit.IOHIDFamily          2.0.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.TMSafetyNet          7
    com.apple.security.sandbox          278.10
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.iokit.IOReportFamily          21
    com.apple.driver.DiskImages          371.1
    com.apple.iokit.IOStorageFamily          1.9
    com.apple.driver.AppleKeyStore          2
    com.apple.driver.AppleFDEKeyStore          28.30
    com.apple.driver.AppleACPIPlatform          2.0
    com.apple.iokit.IOPCIFamily          2.8
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.pthread          1
    com.apple.kec.corecrypto          1.0

    grey_nathan,
    try this: boot your MacBook Pro into Recovery mode by holding down a Command key and the R key as it starts up. Once the Mac OS X Utilities menu appears, select Disk Utility. On the left-hand side of the Disk Utility window, select your internal disk’s boot partition (typically called “Macintosh HD”). On the right-hand side, press the Verify Disk button if it’s not greyed out; if it is greyed out, or if it reports that errors were found, press the Repair Disk button. Once the verification/repair is completed, exit Disk Utility and select Restart from the Apple menu to restart in normal mode. Does the kernel error still appear?

  • Kernel Errors!!!

    Hi All I have a 15" PB Aluminum 1.5ghz with 1GB of ram. Just bought off a friend and when I did a fresh erase and install of OS X 10.4, repaired permissions and rebooted I get the kernel error telling me to hold down the power button and restart. So I did this and when it restarts I get the grey apple background with a load of writing all over it. How do I try and figure out what is causing the problem. Is there a way to get into the system to access the log files as I cannot get OS X to boot into the system. I also ran tech tool pro from the DVD and that says everything has passed such as processor, memory etc....
    Help Please

    I don't think it's OS X (10.4.11) that's causing the problem as I did erase and install about 3 times, verified the HDD and repaired permissions and no errors.
    That should take care of any directory errors. For now we can consider the directory to be in order.
    Also the HDD is new so I am guessing it's not that either as the previous owner had kernel errors with the old HDD.
    Well, that does not necessarily eliminate the problem. It may be that the issue which the previous owner had was not necessarily the HDD itself. Could be a faulty ATA ribbon cable, or even the ATA Controller on the logic board. If you have a firewire HDD available you could install the OS on it and try booting from it. Indeed, you can pull the HDD, install it in a Firewire Enclosure connect it to the computer via Firewire and see if the problem persists.
    the Airport Extreme is factory installed and I have nothing external attached and no applications installed at all yet.
    The AE card can become loosened in the socket either from internal heat of the computer, or maybe jostled when the HDD was being replaced, or it may be failing. Pulling it out, cleaning the contacts and reseating it securely may or may not make a difference.
    I can only begin to guess that it is the RAM as the original RAM has been removed and replaced with a new 1GB stick (Not Crucial RAM by the way).
    That is definitely a possibility, but not a certainty. If you can get ahold of the original RAM and install it just for testing, it should help determine whether the RAM currently installed is the issue.
    cornelius

Maybe you are looking for

  • How do I scan with a white background? Instead of a black background.

    WHen I scan something with my flatbed scanner there is black All around the area expect for the image or documents I am scanning. How do I remove or scan to where it will be white in the background ?

  • EJB + ClassCastException

    what does this error mean java.lang.ClassCastException: org.apache.tomcat.core.HttpServletRequestFacade? I get it when I run my custom EJB. the class files are as follows Remote Interface:      package ejbdotone; import javax.servlet.*; import javax.

  • Both runInstaller and dbassist can display for (817 vs RH7.1) but netasst cannt

    i have set the ld_assame_lib, almost evey .mk relink successful but the last one ins_ctx.mk fail only, neither i can not found the . /usr/i386-glibc21-linux/bin/i386-glibc21-linux-env.sh to run. after my ignore it, the database instance built fluentl

  • [svn:osmf:] 17638: To fix FM-1040, we came up with a solution as depicted by SVN change number 17636.

    Revision: 17638 Revision: 17638 Author:   [email protected] Date:     2010-09-09 16:34:17 -0700 (Thu, 09 Sep 2010) Log Message: To fix FM-1040, we came up with a solution as depicted by SVN change number 17636. However we are not totally satisfied be

  • Where Should I Validate?

    I have an attribute called permId. This value is the primary key of my Permission table. I will be storing permId in another table called Run Control. When saving permId to the Run Control table I want the value validated against the Permission table