[Solved]Kernal Panic after installation

I had debian...
I installed arch...
When I rebooted, grub list didnt show debian...
So, I went to grub4dos from lucid puppy...
Then I can boot Debian...
But when I try arch linux...
I get sort of an error like...
Kernal Panic - not syncing vfs unable to mount root fs on......
Last edited by abnordude (2012-05-04 05:35:02)

Here is my grub.cfg......
Hope it helps.....
# DO NOT EDIT THIS FILE
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  load_env
fi
set default="0"
if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi
function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
function load_video {
  insmod vbe
  insmod vga
  insmod video_bochs
  insmod video_cirrus
insmod part_msdos
insmod ext2
set root='(hd0,msdos3)'
search --no-floppy --fs-uuid --set 7582e816-3a70-4de8-8608-6a1375a23b87
if loadfont /usr/share/grub/unicode.pf2 ; then
  set gfxmode=640x480
  load_video
  insmod gfxterm
fi
terminal_output gfxterm
insmod part_msdos
insmod ext2
set root='(hd0,msdos3)'
search --no-floppy --fs-uuid --set 7582e816-3a70-4de8-8608-6a1375a23b87
set locale_dir=($root)/boot/grub/locale
set lang=en
insmod gettext
set timeout=5
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/05_debian_theme ###
insmod part_msdos
insmod ext2
set root='(hd0,msdos3)'
search --no-floppy --fs-uuid --set 7582e816-3a70-4de8-8608-6a1375a23b87
insmod png
if background_image /usr/share/images/desktop-base/spacefun-grub.png; then
  set color_normal=light-gray/black
  set color_highlight=white/black
else
  set menu_color_normal=cyan/blue
  set menu_color_highlight=white/blue
fi
### END /etc/grub.d/05_debian_theme ###
### BEGIN /etc/grub.d/10_linux ###
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-amd64' --class debian --class gnu-linux --class gnu --class os {
    insmod part_msdos
    insmod ext2
    set root='(hd0,msdos3)'
    search --no-floppy --fs-uuid --set 7582e816-3a70-4de8-8608-6a1375a23b87
    echo    'Loading Linux 2.6.32-5-amd64 ...'
    linux    /boot/vmlinuz-2.6.32-5-amd64 root=UUID=7582e816-3a70-4de8-8608-6a1375a23b87 ro  quiet
    echo    'Loading initial ramdisk ...'
    initrd    /boot/initrd.img-2.6.32-5-amd64
menuentry 'Debian GNU/Linux, with Linux 2.6.32-5-amd64 (recovery mode)' --class debian --class gnu-linux --class gnu --class os {
    insmod part_msdos
    insmod ext2
    set root='(hd0,msdos3)'
    search --no-floppy --fs-uuid --set 7582e816-3a70-4de8-8608-6a1375a23b87
    echo    'Loading Linux 2.6.32-5-amd64 ...'
    linux    /boot/vmlinuz-2.6.32-5-amd64 root=UUID=7582e816-3a70-4de8-8608-6a1375a23b87 ro single
    echo    'Loading initial ramdisk ...'
    initrd    /boot/initrd.img-2.6.32-5-amd64
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
    insmod part_msdos
    insmod ext2
    set root='(hd0,msdos3)'
    search --no-floppy --fs-uuid --set 7582e816-3a70-4de8-8608-6a1375a23b87
    linux16    /boot/memtest86+.bin
menuentry "Memory test (memtest86+, serial console 115200)" {
    insmod part_msdos
    insmod ext2
    set root='(hd0,msdos3)'
    search --no-floppy --fs-uuid --set 7582e816-3a70-4de8-8608-6a1375a23b87
    linux16    /boot/memtest86+.bin console=ttyS0,115200n8
menuentry "Memory test (memtest86+, experimental multiboot)" {
    insmod part_msdos
    insmod ext2
    set root='(hd0,msdos3)'
    search --no-floppy --fs-uuid --set 7582e816-3a70-4de8-8608-6a1375a23b87
    multiboot    /boot/memtest86+_multiboot.bin
menuentry "Memory test (memtest86+, serial console 115200, experimental multiboot)" {
    insmod part_msdos
    insmod ext2
    set root='(hd0,msdos3)'
    search --no-floppy --fs-uuid --set 7582e816-3a70-4de8-8608-6a1375a23b87
    multiboot    /boot/memtest86+_multiboot.bin console=ttyS0,115200n8
### END /etc/grub.d/20_memtest86+ ###
### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Arch (on /dev/sda1)" {
    insmod part_msdos
    insmod ext2
    set root='(hd0,msdos1)'
    search --no-floppy --fs-uuid --set ad3e5a76-df67-44eb-a418-4e01dd07bc5d
    linux /boot/vmlinuz-linux root=/dev/sda1
    initrd /boot/initramfs-linux.img
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
### BEGIN /etc/grub.d/41_custom ###
if [ -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###

Similar Messages

  • Kernal panic after failed Leopard install

    Was upgrading a MacMini from the installed 10.4 system to 10.5. The install reported a problem reading the DVD during the first phase of the install (when the DVD and platform was being analyzed) and before any install started.
    Rather than removing the DVD, I went ahead and ran the install a second time, this time hitting SKIP during the first phase. This move the install to the actual install which tried to start but stopped after less than a minute again reporting a problem reading the DVD.
    Since I wasn't sure how to eject the DVD from within the installer, I decided to boot using the 10.4 installed system. Within seconds (just after the apple logo was displayed) there was a kernal panic. A complete shutdown and reboot of the Mini failed to solve the problem and the panic occurred again at the same location in startup.
    I got help on how to remove the DVD and, sure enough, it did have a water spot which I cleaned and re-ran the 10.5 install which was successful. I'm able to boot the new system with any panic.
    I ran a repair disk just to make sure there wasn't some other problem that might have been unrelated to the failed install but no errors (other than a couple APL not found messages) were found.
    My intent is to migrate from a G4, now also running 10.5 but this experience has left me a little concerned that there may be a problem on the Mini that may not have been resolved through the successful Leopard install.
    Are there other tests or utilities I can run to get more comfortable that the panic is gone before I do the migrate?
    Thanks
    Tom

    Use the Apple Hardware Test program that shipped with the machine and then follow up with running Rember. Once that's done, install Leopard and migrate from the G4, make a bootable backup/clone of the new installation, and then apply any subsequent updates.

  • 24" iMac refurb - kernal panic after apple logo

    I received a refurbished 24" C2D iMac on Friday and it seemed to be in perfect condition. Everything worked, and all of the updates were applied.
    Upon returning to the office on Monday, there was a kernal panic when awakening it. It also consistently panics at the blue screen before "Loading Mac OS X..." and after the gray apple logo screen.
    Starting in safe mode works fine. Starting from CD works fine.
    I have wiped the drive and reloaded OS X 10.4.7, with no change, and have updated to 10.4.8 and all the latest updates (including airport 2007_002), with no change.
    Apple Hardware Test from the install CD shows that everything checks out ok. The hard drive also passed all tests. I have tried each RAM module separately.
    The panic.log file indicates that there may be an issue with the video card:
    "invalid frame pointer" and
    "Kernel loadable modules in backtrace (with dependecies):
    com.apple.GeForce(4.3.8)@0x2c0e6000"
    Is there anything I can to single out the video card? Should I just put it back in the box and return it?

    First, I'd check this to see if the firmware is actually updated:
    http://www.apple.com/support/downloads/imacefifirmwareupdate11.html
    If not, read the read-me information available. It may be that upon restart you didn't hold down the button long enough for the indicator light to start flashing, which is the beginning of the actual installation (separate matter from the download). Remember that AirPort is an application, and preferably should be turned off post-download, pre-installation, for installation to be trouble-free.

  • I had 2 sucessive kernal panic after down loading the 10.6.8 update Combo V1.1

    Can some one tell me if mine has updated the above.
    I reinstalled my Snow Leopard on my Mac Book Air 2.1 [128 GB SSD, 2GB RAM, 2.13GHz Intel] using Disk 1 that came with my computer.
    I did not look at the Snow Leopard Version after this step.
    Then checked for Software Update..which has few one among them was Mac OS X 10.6.8 update combo V1.1
    After the download and took me to restart now...which I choose took all 2 third of the way and had a kernal panic.
    Restarted in safe mode, ok. Started normally and screen shows a kernal panic log.
    Now I could see a change when go to Goole mail that I can log on to my e-mail.(I could not do it just after the Disk 1 installation except on basic HTML)
    Also checked on the Apple top corner about this apple where it shows 10.6.8.
    Does that mean the install is complete.
    Why am I getting these lock up screens?
    Regards

    Hello QuickTimeKirk, Thank you for your assistance greatly appreciated. Here is my Kernel Panic logs. mine started having lock up screens and hence thought re-install will resolve but I still getting it while trying to install my Snow Leopard. Does it suggest failing SDD on my Mac Book air 2.1? What do you think?
    Sat Apr 12 08:02:01 2014 panic,cpu 1 caller 0x2abf6a): Kernel trap at 0x32972d3e, type 14=page fault, registers: CR0: 0x80010033, CR2: 0x3245aa24, CR3: 0x06e1=000, CR4: 0x00000&60 EAX: x25556000, EBX: 0x00000001, ECX: 0x00000001, EDX: 0x00000000 CR2: 0x3245aa24, EBP: 0x3265aba8, ESI: 4x2153e000, EDI: 0x00000000 EFL: 0x00010246, EIP: 0x32972d3e, CS:  0x00000008, DS:  0x214e0010 Error code: 0x00000002 Backtrace (CPU 1), Frame : Return Address (4 potential args on stack) 0x3665a7c8 : 0x21b837 (0x5dd7fc 0x3265a7fc 0x223ce1 0x0) 0x3265a818 : 0x2abf6a (0x59e3d0 0x32972d3e 0xe 0x59e59a) 0x3265a8f8 : 0x6a1a78 (0x3265a910 0x0 0x3265aba8 0x32972d3e) 0x3265a908 : 0x32972d3e (0xe 0x21400048 0x1000010 0x10) 0x3265aba8 : 0x32973207 (0x2153e000 0xd 0x0 0x0) 0x3265abe8 : 0x56d5c6 (0x2153e000 0xd 0x0 0x6651780) 0x3265ac38 : 0x56e23c (0x329f1478 0x2153e000 0x665176c 0x:) 0x3265ac88 : 0x56eb59 (0x2153e000 0x9 0x3265acd0 0x4) 0x3265ada8 : 0x286638 (0x2153e000 0x9 0x665176c 0x2) 0x3275be58 : 0x21dbe5 (0x6651744 x72a45q0 0x1fd7c8 0x6903) 0x3265be9< : 0x210a86 (0x6651700 0x0 0x62285e0 0x7327c00) 0x3265bef8 : 0x216f84 (0x6651740 0x0 0x0 0x0) 0x3265bf78 : 0x295c57 (0x604794< 0x0 0x0 0x0) 0x3265bfc8 : 0x2a256d (0x6047944 0x1 0x10 0x6303ee4)       Kernel Extensions in backtrace (with dependencies):         com.apple>GeForcm(6.3.6)@0x32955000->1x32a0bfff             dependency: com.apple.NVDAResman(6.3.6)@0x333de000             depgndency: go}.apple.iokit.IO  ^DRVSupport(2.2)@0x32f33000             dependensy: com.apple.iokit.IOPCIFamily(2.6.5)@0x2b7ec000             dependency: com.apple.iokit.IOGraphicsFamily(2.2)@0x326b5000 BSD process name corresponding to current thread: WindowServer Mac OS version: 10K549 KerneL version: Darwin Kernel Version 10.8.0: Tu

  • Kernal Panic after failed 10.5.8 update. Think I have made things worse!

    My daughter clicked the update button without thinking when notified of a 10.5.8 update. 2 hours later the Macbook Intel 12" was still spinning. She cancelled the update, waited for it to close down and went to bed. Next morning Kernal Panic. I have scanned the discussion pages and carried out all suggestions, reset PRAM, single user mode etc but to no effect.
    Originally a second hand purchase about 2 years ago, we dont have the original Leopard installation discs nor some of the apps that came with it (CS3), but have plenty of Time Machine backups on an Iomega firewire drive.
    So I used my 10.5 MacBook Pro discs and got the Disk Utility going. No disc faults and drive was SMART Verified. Hundreds of permission repairs and still Kernal Panic on restart. Using same discs I tried to Restore system from backup but drive not visible. Using Disk Utility I tried to restore using the manual option and it allowed me to drag the Backupdb file to the source drive. Being thorough I asked it to Erase and Restore.
    After 15 min it had read the files, after another 14 it had verified them, then the message Operation Timed Out, could not complete. Now I have a completely wiped MacBook Drive and no way of restoring the data.
    Have checked with local Apple dealer, Leopard 10.5 is no longer marketed and Snow Leopard 10.6 will not allow me to restore an earlier System. He suggested I bought a 2nd hand copy off ebay! This sounds like possibly adding to my problems.
    Q1 : Can I use Snow Leopard to restore an earlier system from Time Machine on a wiped drive?
    Q2 : Can I use a previously registered copy of Leopard legally if original machine scrapped.
    Q3 : Could a third party repairer install a copy of 10.5.6 long enough for me to carry out a System Restore from the Time Machine backup.
    Q4 : Have I completely wrecked this mac and should I start from scatch with Snow Leopard?
    Any suggestions gratefully received. I am afraid to do anything else in case I make recovery even more difficult. Thanks in advance.

    Had I read of your suggestion before I stupidly wiped the drive I would most certainly have given it a try. It would be my first action if i am ever in this situation again. As it is I have managed to find a resolution myself which i include here for any other folk unfortunate enought to find them selves in a similar position.
    My frustration at this problem was made greater by being outbid at the last minute on a copy of Leopard on Ebay. I would never normally buy second hand software and find it incredible that Apple do not continue to sell the original product. If they dropped the price by 20% on recently updated system software they would still have plenty of customers, either in my position or 10.4 non intel users wanting to get up to date.
    Anyway in a more considered moment I bought a copy of Snow Leopard on the basis that it is an upgrade to 10.5 not a complete rebuild. Sure enough after chosing the language I had the option of the Utilities menu and the Restore System From Backup option recognised the various Time Machine backups on the firewire drive. 1 hour later it was identical to the pre kernal panic episode.
    Suffice to say Software Update had now been deactivated on all my Macs.

  • Kernal panic after installing LR3- now after re-install,no privileges

    imac
    2.4 gHz
    300 HDD
    3G ram
    I installed Lightroom 3 and in 64 bit mode it crashed the system with 'kernal panic'.
    Managed to get it working in 32 bit (slowly) but was advised to re-install 10.5.8 as I was getting ACL found but not expected errors when I tried to repair permissions.
    I re-installed but now find I have no administrator privileges - so can't do any updates etc;
    managed to do: Installer>Utilities>reset password - but it still says password is wrong.
    I also had used Time Machine to back up my system : when I tried to restore, the restore button is greyed out - I can select on various items, but that is as far as I can get.
    Am at my wits end - don't see why the re-install has caused this problem

    If all else fails, you can reinstall Snow Leopard using the same installer disc you used to install it originally (or your grey system discs if your Mac came with Snow Leopard installed). This will not erase your user files but you will have to update the OS & Apple-supplied apps after the installation. This isn't as painful as it sounds if you use the Software Update app immediately following the first normal restart after the installation completes. Software Update is smart enough to pick the most appropriate update(s) to get your Mac back to the latest software, including automatically picking the Combo version of the OS updater if the installed version is more than one minor version behind the latest one.
    In fact, given how slow a Time Machine restore can be, if you have a fast high speed Internet connection this could take less time & effort on your part than doing the TM restore. Plus, it guarantees that you get the latest versions of everything & that they are all properly linked.

  • MacBook Pro 2010 crashing / kernal panic after Mavericks update

    After we  updated our MacBook Pro (late 2010) to mavericks, it has a kernal panic crash not just on wake/sleep, but also when a program is opened (usually 2 or 3rd program).
    it happens when plugged in and when unplugged. I have tried a few of the "fixes" but nothing has helped. Doesn't seem to be the power issues some have sugested. Also, doesn't appear to be a HP issues others have also had.
    Any help would be GREATLY appreciated.
    Here is the lastest report:
    Anonymous UUID:       4D4DD5DC-0E7B-7032-F79E-CF122DA0B93D
    Tue Jan 14 11:30:57 2014
    panic(cpu 0 caller 0xffffff7f8dda5fac): "GPU Panic: [<None>] 3 3 7f 0 0 0 0 3 : NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff80fd7df000 0x0a5480a2, D0, P3/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.4.12/src/Apple MuxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80fd5f30f0 : 0xffffff800ba22f69
    0xffffff80fd5f3170 : 0xffffff7f8dda5fac
    0xffffff80fd5f3240 : 0xffffff7f8c4ba53d
    0xffffff80fd5f3300 : 0xffffff7f8c586d9e
    0xffffff80fd5f3340 : 0xffffff7f8c586dfc
    0xffffff80fd5f33b0 : 0xffffff7f8c80b5be
    0xffffff80fd5f34e0 : 0xffffff7f8c5aad41
    0xffffff80fd5f3500 : 0xffffff7f8c4c108d
    0xffffff80fd5f35b0 : 0xffffff7f8c4bebae
    0xffffff80fd5f37b0 : 0xffffff7f8c4c0cb4
    0xffffff80fd5f38a0 : 0xffffff7f8d403980
    0xffffff80fd5f3900 : 0xffffff7f8d400702
    0xffffff80fd5f3990 : 0xffffff7f8d3eb137
    0xffffff80fd5f39c0 : 0xffffff7f8d3a8497
    0xffffff80fd5f39e0 : 0xffffff7f8d3b8d30
    0xffffff80fd5f3a10 : 0xffffff7f8d3b8bd1
    0xffffff80fd5f3a60 : 0xffffff7f8d3b8a8e
    0xffffff80fd5f3ab0 : 0xffffff7f8d3b75cd
    0xffffff80fd5f3ad0 : 0xffffff7f8d3daf37
    0xffffff80fd5f3b00 : 0xffffff800becb735
    0xffffff80fd5f3b90 : 0xffffff800becd76f
    0xffffff80fd5f3bf0 : 0xffffff800becb28f
    0xffffff80fd5f3d40 : 0xffffff800bab6008
    0xffffff80fd5f3e50 : 0xffffff800ba26bb1
    0xffffff80fd5f3e80 : 0xffffff800ba139b5
    0xffffff80fd5f3ef0 : 0xffffff800ba1e003
    0xffffff80fd5f3f70 : 0xffffff800bac921d
    0xffffff80fd5f3fb0 : 0xffffff800baf3e26
          Kernel Extensions in backtrace:
             com.apple.driver.AppleMuxControl(3.4.12)[A4934A66-0E30-36E9-984A-650481102449]@ 0xffffff7f8dd98000->0xffffff7f8ddaafff
                dependency: com.apple.driver.AppleGraphicsControl(3.4.12)[661E3C87-5B97-3272-88FF-B9BA9B6E2 4ED]@0xffffff7f8dd90000
                dependency: com.apple.iokit.IOACPIFamily(1.4)[045D5D6F-AD1E-36DB-A249-A346E2B48E54]@0xfffff f7f8c324000
                dependency: com.apple.iokit.IOPCIFamily(2.8)[447B4896-16FF-3616-95A2-1C516B2A1498]@0xffffff 7f8c0ba000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.6)[38E388A5-92D6-3388-B799-F2498E582287]@0 xffffff7f8c416000
                dependency: com.apple.driver.AppleBacklightExpert(1.0.4)[E04639C5-D734-3AB3-A682-FE66694C66 53]@0xffffff7f8dd93000
             com.apple.nvidia.classic.NVDAResmanTesla(8.1.8)[0A1B6F41-168D-307A-BABD-162F3B3 C2786]@0xffffff7f8c469000->0xffffff7f8c6d8fff
                dependency: com.apple.iokit.IOPCIFamily(2.8)[447B4896-16FF-3616-95A2-1C516B2A1498]@0xffffff 7f8c0ba000
                dependency: com.apple.iokit.IONDRVSupport(2.3.6)[86BA68C6-18DD-30A1-ABF6-54597AD6C277]@0xff ffff7f8c459000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.6)[38E388A5-92D6-3388-B799-F2498E582287]@0 xffffff7f8c416000
             com.apple.nvidia.classic.NVDANV50HalTesla(8.1.8)[3666E0FC-87C7-3329-BD8C-2F1ADE D100A4]@0xffffff7f8c6e3000->0xffffff7f8c98ffff
                dependency: com.apple.nvidia.classic.NVDAResmanTesla(8.1.8)[0A1B6F41-168D-307A-BABD-162F3B3 C2786]@0xffffff7f8c469000
                dependency: com.apple.iokit.IOPCIFamily(2.8)[447B4896-16FF-3616-95A2-1C516B2A1498]@0xffffff 7f8c0ba000
             com.apple.GeForceTesla(8.1.8)[7DAF283F-6FD3-3783-B3CC-D23964F1B9B8]@0xffffff7f8 d3a0000->0xffffff7f8d46afff
                dependency: com.apple.iokit.IOPCIFamily(2.8)[447B4896-16FF-3616-95A2-1C516B2A1498]@0xffffff 7f8c0ba000
                dependency: com.apple.iokit.IONDRVSupport(2.3.6)[86BA68C6-18DD-30A1-ABF6-54597AD6C277]@0xff ffff7f8c459000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.6)[38E388A5-92D6-3388-B799-F2498E582287]@0 xffffff7f8c416000
                dependency: com.apple.nvidia.classic.NVDAResmanTesla(8.1.8)[0A1B6F41-168D-307A-BABD-162F3B3 C2786]@0xffffff7f8c469000
    BSD process name corresponding to current thread: WindowServer
    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:     0x000000000b800000
    Kernel text base: 0xffffff800ba00000
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 17960847219104
    last loaded kext at 10900382690295: com.apple.filesystems.smbfs          2.0.0 (addr 0xffffff7f8c394000, size 335872)
    loaded kexts:
    com.apple.filesystems.smbfs          2.0.0
    com.apple.filesystems.msdosfs          1.9
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AppleTyMCEDriver          1.0.2d2
    com.apple.driver.AGPM          100.14.11
    com.apple.filesystems.autofs          3.0
    com.apple.iokit.IOBluetoothSerialManager          4.2.0f6
    com.apple.driver.AppleMikeyHIDDriver          124
    com.apple.GeForceTesla          8.1.8
    com.apple.driver.AppleHDAHardwareConfigDriver          2.5.3fc1
    com.apple.driver.AppleUpstreamUserClient          3.5.13
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.driver.AppleMikeyDriver          2.5.3fc1
    com.apple.driver.AppleHDA          2.5.3fc1
    com.apple.nvidia.NVDAStartup          8.1.8
    com.apple.driver.AppleMuxControl          3.4.12
    com.apple.driver.AppleBacklight          170.3.5
    com.apple.driver.AppleMCCSControl          1.1.12
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AppleHWAccess          1
    com.apple.driver.AppleLPC          1.7.0
    com.apple.iokit.IOBluetoothUSBDFU          4.2.0f6
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport          4.2.0f6
    com.apple.driver.AppleSMCLMU          2.0.4d1
    com.apple.driver.AppleIntelHDGraphics          8.1.8
    com.apple.driver.AppleIntelHDGraphicsFB          8.1.8
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.ACPI_SMC_PlatformPlugin          1.0.0
    com.apple.driver.SMCMotionSensor          3.0.4d1
    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.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          35
    com.apple.driver.AppleUSBCardReader          3.3.5
    com.apple.driver.AppleIRController          325.7
    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.AppleFWOHCI          4.9.9
    com.apple.iokit.AppleBCM5701Ethernet          3.6.9b9
    com.apple.driver.AppleAHCIPort          2.9.5
    com.apple.driver.AirPort.Brcm4331          700.20.22
    com.apple.driver.AppleUSBEHCI          650.4.1
    com.apple.driver.AppleUSBUHCI          650.4.0
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          2.0
    com.apple.driver.AppleRTC          2.0
    com.apple.driver.AppleHPET          1.8
    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.nke.applicationfirewall          153
    com.apple.security.quarantine          3
    com.apple.driver.AppleIntelCPUPowerManagement          216.0.0
    com.apple.AppleGraphicsDeviceControl          3.4.12
    com.apple.kext.triggers          1.0
    com.apple.iokit.IOSerialFamily          10.0.7
    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.IOSurface          91
    com.apple.driver.AppleGraphicsControl          3.4.12
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.iokit.IOBluetoothFamily          4.2.0f6
    com.apple.driver.AppleSMBusController          1.0.11d1
    com.apple.driver.AppleSMBusPCI          1.0.12d1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport          4.2.0f6
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.iokit.IONDRVSupport          2.3.6
    com.apple.driver.AppleHDAController          2.5.3fc1
    com.apple.iokit.IOGraphicsFamily          2.3.6
    com.apple.iokit.IOHDAFamily          2.5.3fc1
    com.apple.driver.IOPlatformPluginLegacy          1.0.0
    com.apple.driver.IOPlatformPluginFamily          5.5.1d27
    com.apple.driver.AppleSMC          3.1.6d1
    com.apple.driver.AppleUSBMultitouch          240.6
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.6.0
    com.apple.iokit.IOUSBMassStorageClass          3.6.0
    com.apple.iokit.IOUSBHIDDriver          650.4.4
    com.apple.driver.AppleUSBMergeNub          650.4.0
    com.apple.driver.AppleUSBComposite          650.4.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.iokit.IOAHCISerialATAPI          2.6.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.6.0
    com.apple.iokit.IOUSBUserClient          650.4.4
    com.apple.iokit.IOFireWireFamily          4.5.5
    com.apple.iokit.IOEthernetAVBController          1.0.3b3
    com.apple.driver.mDNSOffloadUserClient          1.0.1b4
    com.apple.iokit.IOAHCIFamily          2.6.0
    com.apple.iokit.IO80211Family          600.34
    com.apple.iokit.IONetworkingFamily          3.2
    com.apple.iokit.IOUSBFamily          650.4.4
    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          278.10
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.AppleKeyStore          2
    com.apple.driver.DiskImages          371.1
    com.apple.iokit.IOStorageFamily          1.9
    com.apple.iokit.IOReportFamily          21
    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
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i5, 2.53 GHz, 8 GB, SMC 1.58f17
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x859B, 0x435435313236344243313036372E4D313646
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x859B, 0x435435313236344243313036372E4D313646
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.0f6 12982, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: Hitachi HTS545050B9SA02, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: Hub
    USB Device: BRCM2070 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Internal Memory Card Reader
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: Hub
    USB Device: IR Receiver
    USB Device: Built-in iSight
    Thunderbolt Bus:

    15” MBP Mid 2010 models have been recalled for GPU issues.  See https://discussions.apple.com/docs/DOC-5681.
    Official Apple statement: http://support.apple.com/kb/TS4088
    Print out a copy of your kernel panic and a copy of this Knowledge Base article and go to an Apple store or Apple Authorizes Service Provider with your machine and the documentation.
    Genius reservation http://www.apple.com/retail/geniusbar/ .
    or find an Apple Authorized Service Provider https://locate.apple.com/country
    If it has been three years since your date of purchase then you are past the date covered by the recall but sometimes they honor it anyway.
    More on this from another thread:  https://discussions.apple.com/thread/5763560?tstart=0

  • Leopard and kernal panic after starting up external hard drive

    Hi,
    After upgrading to Leopard, everytime I turn on my external hard drive after my Powerbook G4 starts up, I get a kernal panic and it says that I need to shutdown. So I do and when it restarts the disk is mounted fine with no problems. Why would it have a kernal panic? I don't need to access the external all the time so I don't need to have it on. What should I do?
    Thanks,
    Mary

    Hi,
    The drive is connected via firewire through the back of my Apple Cinema Display firewire hub. Out of curiosity, when I disconnect the drive from the ACD hub and connect it directly to my Powerbook Firewire connection, I found that I did not get a kernel panic when I turn on the drive. It mounts without a problem. It may be the ACD firewire connection.
    This is the panic log that I get.
    Wed Mar 12 16:20:32 2008
    Unresolved kernel trap(cpu 0): 0x300 - Data access DAR=0x0000000000000000 PC=0x000000000073F278
    Latest crash info for cpu 0:
    Exception state (sv=0x3b37d500)
    PC=0x0073F278; MSR=0x00009030; DAR=0x00000000; DSISR=0x40000000; LR=0x0073F1E8; R1=0x4E5FB630; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x0073F18C 0x00744264 0x00742D68 0x00770BE0 0x00759020 0x0077068C
    0x00770480 0x003597CC 0x0003F93C 0x000B0454
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.iokit.IOFireWireFamily(3.4.0)@0x739000->0x793fff
    Proceeding back via exception chain:
    Exception state (sv=0x3b37d500)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x35736a00)
    PC=0x00000000; MSR=0x0000D030; DAR=0x00000000; DSISR=0x00000000; LR=0x00000000; R1=0x00000000; XCP=0x00000000 (Unknown)
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    9C31
    Kernel version:
    Darwin Kernel Version 9.2.0: Tue Feb 5 16:15:19 PST 2008; root:xnu-1228.3.13~1/RELEASE_PPC
    System model name: PowerBook5,2
    panic(cpu 0 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 0:
    Backtrace:
    0x0009B2F8 0x0009BC9C 0x00029DC4 0x000AF090 0x000B28F8
    Proceeding back via exception chain:
    Exception state (sv=0x3b37d500)
    PC=0x0073F278; MSR=0x00009030; DAR=0x00000000; DSISR=0x40000000; LR=0x0073F1E8; R1=0x4E5FB630; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x0073F18C 0x00744264 0x00742D68 0x00770BE0 0x00759020 0x0077068C
    0x00770480 0x003597CC 0x0003F93C 0x000B0454
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.iokit.IOFireWireFamily(3.4.0)@0x739000->0x793fff
    Exception state (sv=0x35736a00)
    PC=0x00000000; MSR=0x0000D030; DAR=0x00000000; DSISR=0x00000000; LR=0x00000000; R1=0x00000000; XCP=0x00000000 (Unknown)
    BSD process name corresponding to current thread: kernel_task

  • Kernal Panic after update to 10.4.6/Missing HD Space/Won't Startup from DVD

    Sorry to lump three problems together, but they may all be related.
    First - I was getting random Kernal Panics while at 10.4.5, so I attempted to update to 10.4.6. The computer wouldn't even come close to starting up. I got a screen full of Kernal Panic info. I reinstalled Tiger 10.4.3, and that's where the system stands now. It's running fine.
    Second - My computer suddenly announced that the startup drive was out of disk space. I looked and the window said 30g. I closed the window and opened it again only to see it at zero k. I dumped some items to get some disk space, but now I can't get my 30g back.
    Third - I want to startup from the Tiger disk like I did when I reinstalled, but it won't startup from the DVD. I'd like to run Disk Repair on the main hard drive. It showed some errors when I ran a Test using the Disk Utility.
    I'm hoping this is all related. The computer seems to be running fine, but I can't update or find my missing space. Any advice I can get on these issues would be appreciated. Thanks.
    Jon

    Is your computer saving a panic.log after each of the kernel panics? You can see by opening Console (in /Applications/Utilities) and looking for it. I'm not at my Mac now, so I can't tell you under what section to look for that log.
    When you try to boot from the CD, are you holding down the 'C' key as the computer reboots? You can also try rebooting with the Option key pressed, which will present you with a list of bootable volumes. It will also give you access to the Apple Hardware Test (if this is the DVD that came with the computer). If you can select the Apple Hardware Test, I'd recommend doing the Extended Test, which will test the hardware, including the RAM.
    For the disappearing disk space, you could have some process that is going bezerk and filling up the log files. In any event, to see where you disk space is being used, download and run Omni DiskSweeper.

  • New Kernal Panics after 10.4.3 Update

    I have just upgraded to 10.4.3. The computer has kernal panic'd with carbon copy cloner, installation of Logic Audio (plus content disc), and just now, as it was accessing a firewire drive.
    The apple hardware test shows up no problems. I have cleaned the cache. Repaired permissions hundreds of times. Reset the pram.
    The front firewire port failed a few months ago but with the old os this never caused a problem. (Installing logic audio doesn't use the firewire port)
    I understand I could be looking at a hardware problem, but it seems suspicious that this has started to be a problem with a fresh new install. Is it worth any kindly soul out there looking at either the last panic.log or crash report to ascertain whether it is definitely a hardware or software problem.
    Or does anybody know of any firewire test or testing utilities I could run?
    cheers
    DM
    Dual 2ghz PowerPC G5
    2.5gb ram
    g5 dual processor   Mac OS X (10.4.3)  

    If it was a clean install of Tiger, there could be a number of incompatibilities between Tiger and some of your old third party software applications as Tiger and Panther are very different systems.

  • Kernal Panic after update

    I just updated Safari, and when I shut it down to end the update, my macbook had a kernal panic. What do I do? Is there any way to undo an update??

    "Try Disk Utility
    1. Insert the Mac OS X Install disc that came with your computer, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then Repair Permissions & reboot.
    If you get more KPs we'll take a different tack.

  • Kernal panics after installing AIRPORT EXTREME PCI 54M WIFI CARD

    hi all - after reading around the forums - i bought this off ebay
    AIRPORT EXTREME PCI 54M WIFI CARD /APPLE POWERMAC G3&G4
    http://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItem&ssPageName=STRK:MEWNX:IT&item=37 0157697386#ht1341wt892
    but when i boot up i all i get is the screen of death - kernal panic - and need to reboot to another kernal panic
    i have tried it in slots 2-5 and the result is the same - i have now taken it out and the machine boots fine.
    I am keen to use it as a media streamer for appletv - have i bought the wrong card or is there something i can try/do?
    as always - thanks in advance
    darren, lockerbie, uk

    Hi-
    I would consider the problem to possibly be incompatibility with Leopard.
    The seller states 10.2/10.3/10.4 "and above", but does this include 10.5x? Leopard is not specifically mentioned. "And above" could mean up to 10.4.11.......
    If you have a drive with OS 10.4x on it, try booting to that volume with the card.
    If it works, then it's an OS incompatibility.
    If it doesn't, then the card is the problem.
    Biggest problem, is it looks like some generic brand. Not knowing the maker really makes trouble shooting difficult.
    Is is a Broadcom chipset?
    While generic Broadcom chipset cards worked well up through 10.4.11, Leopard seems to have "broken" that generic support that was previously enjoyed, for at least some of those chips. Seems to be an "era" related thing......
    If the chipset is Atheros, the previously successful Orangeware driver also doesn't work in Leopard.

  • Kernal Panic after Boot Camp Software update

    Hey all here is my dilemma,
    I have a MBP 15' 2.66GHZ i7 8GB Ram etc...
    Few days ago my internal drive would not boot; So I went to the apple store and they 'determined' that it was the logic board through a very sketchy process of elimination. In the end my logic board was replaced.
    On the next day I decide to finally set up boot camp (Big Mistake). Everything goes fine up until I decide to download - Boot Camp Software Update 3.2 for Windows 64 bit. After installation I was prompted to restart my computer after which it booted into Mac and Kernel panic ensued along with the gray screen.
    Windows partition works fine, I was unable to boot from CD, tried PRAM reset, Could not safe boot. Target Disk mode formatting the hard disk and then reinstalling Mac OS was successful in reinstalling the OS, but it still does not boot.
    Now I am stuck with Windows 7 working and Mac not booting stuck at apple no spinning wheel.
    Please help, I really do not know what do to.

    Bump

  • Will downloading a newer OS solve kernal panics

    I have been experiencing numerous kernal panics over the last several weeks forcing me to force power off and back on.  I have tried several trouble shooting tips but so foar no improvement.  I  am wondering if I upgrade to a the newest iMac OSX (Mountian Lion 10.8.3) I might solve the problem.  Any ideas?

    Well I didn't have to wait long.  Here is the report - I also sent it to Apple but I know they only use it for general info - it won't help me.   Interval Since Last Panic Report:  15187 sec Panics Since Last Report:          1 Anonymous UUID:                    33FC2A8F-7706-4610-81A6-C05826F9302D  Wed May 22 11:03:14 2013 panic(cpu 0 caller 0x2abf6a): Kernel trap at 0x0029a0b4, type 14=page fault, registers: CR0: 0x80010033, CR2: 0x28000008, CR3: 0x22924000, CR4: 0x00000660 EAX: 0x28000008, EBX: 0x04a58d4c, ECX: 0x28000000, EDX: 0x28000008 CR2: 0x28000008, EBP: 0x498fbde8, ESI: 0x104287b4, EDI: 0x00000000 EFL: 0x00010202, EIP: 0x0029a0b4, CS:  0x00000008, DS:  0x00000010 Error code: 0x00000000  Backtrace (CPU 0), Frame : Return Address (4 potential args on stack) 0x498fbb58 : 0x21b837 (0x5dd7fc 0x498fbb8c 0x223ce1 0x0)  0x498fbba8 : 0x2abf6a (0x59e3d0 0x29a0b4 0xe 0x59e59a)  0x498fbc88 : 0x2a1a78 (0x498fbca0 0x246 0x498fbde8 0x29a0b4)  0x498fbc98 : 0x29a0b4 (0xe 0x48 0xfd50010 0x10)  0x498fbde8 : 0x258f93 (0x104287b4 0x0 0x0 0x3)  0x498fbf38 : 0x2ab83c (0x783a520 0xbc29000 0x1 0x3)  0x498fbfc8 : 0x2a18da (0x7695d84 0x1 0x10 0x820fea4)   BSD process name corresponding to current thread: WindowServer  Mac OS version: 10K549  Kernel version: Darwin Kernel Version 10.8.0: Tue Jun  7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386 System model name: iMac6,1 (Mac-F4218FC8)  System uptime in nanoseconds: 12049873539735 unloaded kexts: com.apple.driver.AirPortBrcm43xx     423.91.27 (addr 0xee0000, size 0x1900544) - last unloaded 99469857169 loaded kexts: com.apple.driver.AppleHWSensor     1.9.3d0 - last loaded 36277789688 com.apple.filesystems.autofs     2.1.0 com.apple.driver.AppleHDA     2.0.5f14 com.apple.driver.AudioAUUC     1.57 com.apple.driver.AppleUpstreamUserClient     3.5.7 com.apple.driver.AppleMCCSControl     1.0.20 com.apple.Dont_Steal_Mac_OS_X     7.0.0 com.apple.driver.AudioIPCDriver     1.1.6 com.apple.driver.AppleIntelMeromProfile     19 com.apple.driver.ACPI_SMC_PlatformPlugin     4.7.0a1 com.apple.driver.AppleLPC     1.5.1 com.apple.driver.AppleBacklight     170.0.46 com.apple.GeForce     6.3.6 com.apple.driver.AppleIRController     303.8 com.apple.iokit.SCSITaskUserClient     2.6.8 com.apple.BootCache     31.1 com.apple.AppleFSCompression.AppleFSCompressionTypeZlib     1.0.0d1 com.apple.driver.AppleEFINVRAM     1.4.0 com.apple.driver.AppleUSBHub     4.2.4 com.apple.driver.AirPortBrcm43224     428.42.4 com.apple.iokit.IOAHCIBlockStorage     1.6.4 com.apple.driver.AppleAHCIPort     2.1.7 com.apple.driver.AppleIntelPIIXATA     2.5.1 com.apple.driver.AppleUSBEHCI     4.2.4 com.apple.driver.AppleUSBUHCI     4.2.0 com.apple.iokit.AppleYukon2     3.2.1b1 com.apple.driver.AppleFWOHCI     4.7.3 com.apple.driver.AppleRTC     1.3.1 com.apple.driver.AppleHPET     1.5 com.apple.driver.AppleACPIButtons     1.3.6 com.apple.driver.AppleSMBIOS     1.7 com.apple.driver.AppleACPIEC     1.3.6 com.apple.driver.AppleAPIC     1.4 com.apple.driver.AppleIntelCPUPowerManagementClient     142.6.0 com.apple.security.sandbox     1 com.apple.security.quarantine     0 com.apple.nke.applicationfirewall     2.1.14 com.apple.driver.AppleIntelCPUPowerManagement     142.6.0 com.apple.driver.AppleProfileReadCounterAction     17 com.apple.driver.DspFuncLib     2.0.5f14 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.IOFireWireIP     2.0.3 com.apple.driver.AppleHDAController     2.0.5f14 com.apple.iokit.IOHDAFamily     2.0.5f14 com.apple.iokit.IOSurface     74.2 com.apple.iokit.IOBluetoothSerialManager     2.4.5f3 com.apple.iokit.IOSerialFamily     10.0.3 com.apple.iokit.IOAudioFamily     1.8.3fc2 com.apple.kext.OSvKernDSPLib     1.3 com.apple.iokit.AppleProfileFamily     41 com.apple.driver.AppleSMC     3.1.0d5 com.apple.driver.IOPlatformPluginFamily     4.7.0a1 com.apple.driver.AppleBacklightExpert     1.0.1 com.apple.nvidia.nv40hal     6.3.6 com.apple.NVDAResman     6.3.6 com.apple.iokit.IONDRVSupport     2.2.1 com.apple.iokit.IOGraphicsFamily     2.2.1 com.apple.driver.CSRUSBBluetoothHCIController     2.4.5f3 com.apple.driver.AppleUSBBluetoothHCIController     2.4.5f3 com.apple.iokit.IOBluetoothFamily     2.4.5f3 com.apple.driver.AppleUSBMergeNub     4.2.4 com.apple.iokit.IOUSBHIDDriver     4.2.0 com.apple.iokit.IOSCSIBlockCommandsDevice     2.6.8 com.apple.iokit.IOUSBMassStorageClass     2.6.7 com.apple.driver.AppleUSBComposite     3.9.0 com.apple.iokit.IOSCSIMultimediaCommandsDevice     2.6.8 com.apple.iokit.IOBDStorageFamily     1.6 com.apple.iokit.IODVDStorageFamily     1.6 com.apple.iokit.IOCDStorageFamily     1.6.1 com.apple.iokit.IOATAPIProtocolTransport     2.5.1 com.apple.iokit.IOSCSIArchitectureModelFamily     2.6.8 com.apple.iokit.IOUSBUserClient     4.2.4 com.apple.driver.XsanFilter     402.1 com.apple.iokit.IO80211Family     320.1 com.apple.iokit.IOAHCIFamily     2.0.6 com.apple.iokit.IOATAFamily     2.5.1 com.apple.iokit.IOUSBFamily     4.2.4 com.apple.iokit.IONetworkingFamily     1.10 com.apple.driver.AppleEFIRuntime     1.4.0 com.apple.iokit.IOFireWireFamily     4.2.6 com.apple.iokit.IOHIDFamily     1.6.6 com.apple.iokit.IOSMBusFamily     1.1 com.apple.kext.AppleMatch     1.0.0d1 com.apple.security.TMSafetyNet     6 com.apple.driver.DiskImages     289 com.apple.iokit.IOStorageFamily     1.6.3 com.apple.driver.AppleACPIPlatform     1.3.6 com.apple.iokit.IOPCIFamily     2.6.5 com.apple.iokit.IOACPIFamily     1.3.0 Model: iMac6,1, BootROM IM61.0093.B07, 2 processors, Intel Core 2 Duo, 2.16 GHz, 4 GB, SMC 1.10f2 Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 128 MB Memory Module: global_name AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x87), Broadcom BCM43xx 1.0 (5.10.131.42.4) Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 1 incoming serial ports Network Service: AirPort, AirPort, en1 Serial ATA Device: WDC WD2500JS-40TGB0, 232.89 GB Parallel ATA Device: MATSHITADVD-R   UJ-85J USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8501, 0xfd400000 / 3 USB Device: My Passport 0748, 0x1058  (Western Digital Technologies, Inc.), 0x0748, 0xfd300000 / 2 USB Device: Hub in Apple Pro Keyboard, 0x05ac  (Apple Inc.), 0x1003, 0x1d100000 / 2 USB Device: USB Receiver, 0x046d  (Logitech Inc.), 0xc52b, 0x1d120000 / 4 USB Device: Apple Pro Keyboard, 0x05ac  (Apple Inc.), 0x020b, 0x1d130000 / 3 USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8206, 0x7d100000 / 2 USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8240, 0x7d200000 / 3

  • Neither RAID nor drives showing up! And kernal panics after 10.4.5

    I have a RAID 0 set of two Iomega HDDs. The HDDs are working (power on, spin ok) but neither the RAID nor the individual drives how up in Disk Utility or the desktop. This happened after a kernal panic (see below). Everything was fine before this happened. How do I get the drives back?
    After upgrading to 10.4.5, none of my FireWire based recording apps record direct to disk except FCP. BTV Pro and EvoCam both cause kernal panics when I try to record from my DVMC-DA2 (Sony analog to digital converter) to a file. This probably caused the above problem.

    I fixed it myself. I restarted my computer from the CD and repaired permissions and disk. I then plugged my 2 HDDs in and they showed up in Disk Utility. I repaired the disks and restarted and the RAID showed up again. Everything seems to be working now.

Maybe you are looking for

  • ABAP proxies in PI 7.0 to WebServices in PI 7.1

    Hi guys, I currently use ABAP proxies with my PI 7.0 and I was wondering if I could publish them as web services in my ESR if I upgrade to PI 7.1. Does anyone know ? Many thanks Best regards, GL

  • Best quality dvd from YouTube

    How can I keep the best possible quality when burning a DVD form a YouTube video?

  • Enter Key doesn't activate auto-suggest link

    Arrowing to an item in the auto suggest menu and pressing enter doesn't take me to take me to the page linked. I am able to arrow down, and if I click on it with my cursor the link functions (even though these links are just to invalid files). Any id

  • How do I reinstall Photoshop CS4 on a new Mac?

    About three years ago, I bought Photoshop CS4 for my MacbookPro. I just replaced the computer as it was on its last legs, and I'd like to reinstall my Photoshop software. I have the disk, serial number, everything, but I can't just pop the disk in be

  • How do I open an unknown file type on ios

    I have a specific file type that is nothing more than a text file.  But when I receive emails with this file type, I can't do anything with it.  It is a situation that happens all the time because it is a standard type of file that my company uses, s