VirtualBox kernel problem

Dear All,
It is my first post here so please be gentle.
I'm trying to install VirtualBox on my Oracle Linux 6.3, I did use VB before on my Mac for last 2 years but I'm not on Linux.
After succesful download & install VirtualBox-4.2-4.2.6_82870_el6-1.x86_64.rpm
I get a message
#Kernel driver not installed (rc=-1908)
The VirtualBox Linux kernel driver (vboxdrv) is either not loaded or there is a permission problem with /dev/vboxdrv. Please reinstall the kernel module by executing
'/etc/init.d/vboxdrv setup'
as root. If it is available in your distribution, you should install the DKMS package first. This package keeps track of Linux kernel changes and recompiles the vboxdrv kernel module if necessary.#
So i go and do this getting:
[root@redstation peter]# /etc/init.d/vboxdrv setup
Stopping VirtualBox kernel modules [  OK  ]
Recompiling VirtualBox kernel modules [FAILED]
(Look at /var/log/vbox-install.log to find out what went wrong)
So checking the log file
Makefile:181: *** Error: unable to find the sources of your current Linux kernel. Specify KERN_DIR=<directory> and run Make again. Stop.
Could someone guide me what to do next please
Many Thanks,
Peter
Edited by: user9111342 on Jan 8, 2013 1:10 PM
My Computer is just Dell OPTIPLEX 745 with 6GB ram if that is important

I have tried as well installing dkms as it say in the VB manual and
[root@redstation peter]# yum install dkms
Loaded plugins: refresh-packagekit, security
ol6_UEK_latest | 1.2 kB 00:00
ol6_latest | 1.4 kB 00:00
ol6_latest/primary | 24 MB 01:45
ol6_latest 18419/18419
Setting up Install Process
No package dkms available.
Error: Nothing to do
[root@redstation peter]# VirtualBox
WARNING: The vboxdrv kernel module is not loaded. Either there is no module
available for the current kernel (2.6.39-300.17.3.el6uek.x86_64) or it failed to
load. Please recompile the kernel module and install it by
sudo /etc/init.d/vboxdrv setup
> You will not be able to start VMs until this problem is fixed.
Qt WARNING: QGtkStyle was unable to detect the current GTK+ theme.
Qt WARNING: Qt: Session management error: None of the authentication protocols specified are supported
[root@redstation peter]# sudo /etc/init.d/vboxdrv setup
Stopping VirtualBox kernel modules [  OK  ]
Recompiling VirtualBox kernel modules [FAILED]
(Look at /var/log/vbox-install.log to find out what went wrong)And in the log still say
Makefile:181: *** Error: unable to find the sources of your current Linux kernel. Specify KERN_DIR=<directory> and run Make again. StopIt looks like there is no dkms for OL ????????? I don't understand what is happening or what is NOT happening

Similar Messages

  • VirtualBox kernel 2.6.29 patch[SOLVED]

    Hi,
    I'm trying to build VirtualBox from AUR. I tried to apply the patch as instructed, got an error:
    Verifying archive integrity... MD5 checksums are OK. All good.
    patch: **** Can't open patch file /home/me/sandbox/abs/virtualbox_bin/src/virtualbox-kernel-2-6-29.patch : No such file or directory
    ==> ERROR: Build Failed.
        Aborting...
    There's no such file indeed. I suppose the trouble is due to my lack of skills; unwilling to contaminate the AUR thread with dumb questions, I post here .
    My PKGBUILD, modified according to instructions to the best of my ability :
    # Maintainer: thotypous <matiasΘarchlinux-br·org>
    # Contributor: Peter 'piie' Feuerer <peterΘpiie·net>
    # Contributor: Sascha Pfau <MrPeacockΘgmail·com>
    # Contributor: iggy <iggy.mfΘgmail·com>
    pkgname="virtualbox_bin"
    pkgver="2.1.4"
    _build="43001"
    pkgrel=2
    pkgdesc="Powerful x86 virtualization (Personal Use Binaries Edition)"
    url="http://www.virtualbox.org"
    license=('custom:PUEL')
    arch=('i686' 'x86_64')
    install=('vbox.install')
    md5sums=('8762a1c666af51e1b84f6b9ae53908dd'
    '9576c4ee3c362f7bc30525a4f07ea3ed')
    _architect='x86'
    [ "$CARCH" = "x86_64" ] && _architect='amd64'
    [ "$CARCH" = "x86_64" ] && md5sums[0]='c07e44702c330796eefd897143a245ae'
    source=("VirtualBox-${pkgver}-${_build}-Linux_${_architect}.run::http://download.virtualbox.org/virtualbox/${pkgver}/VirtualBox-${pkgver}-${_build}-Linux_${_architect}.run"
    'vbox_build_module')
    install=('vbox.install')
    depends=('libstdc++5' 'libxcursor' 'gcc' 'make')
    optdepends=("qt: For VirtualBox GUI"
    "sdl: For VBoxSDL")
    provides=("virtualbox=${pkgver}")
    conflicts=('virtualbox-ose' 'virtualbox-modules')
    build() {
    # Check package
    sh "VirtualBox-${pkgver}-${_build}-Linux_${_architect}.run" --check || return 1
    # Unpack
    echo yes | sh "VirtualBox-${pkgver}-${_build}-Linux_${_architect}.run" --target "$srcdir" \
    --nox11 --noexec &>/dev/null || return 1
    mkdir -p \
    "$pkgdir/opt/virtualbox" \
    "$pkgdir/usr/bin" \
    "$pkgdir/etc/udev/rules.d" \
    "$pkgdir/etc/vbox" \
    "$pkgdir/usr/share/applications" \
    "$pkgdir/usr/share/pixmaps" || return 1
    cd "$pkgdir/opt/virtualbox"
    tar -jxf "$srcdir/VirtualBox.tar.bz2" || return 1
    # Patch needed to build the virtualbox modules under kernel 2.6.29
    patch -Np3 -i "${srcdir}/virtualbox-kernel-2-6-29.patch" || return 1
    # Mark set-user-ID-on-execution if release is marked as a hardened build.
    if egrep '^HARDENED="1"' "$srcdir/install.sh" &> /dev/null; then
    chmod 4511 "VirtualBox" "VBoxSDL" "VBoxHeadless"
    for _n in "VBoxVMM.so" "VBoxREM.so" "VBoxRT.so" "VBoxDDU.so" "VBoxXPCOM.so"; do
    ln -sf "/opt/virtualbox/${_n}" "components"
    done
    chmod go-w .
    fi
    # Replace VirtualBox built-in Qt by system Qt libraries.
    # Fixes problems with some KDE themes reported by users.
    rm "libVBoxQtCore.so.4" "libVBoxQtGui.so.4" "libVBoxQtNetwork.so.4"
    ln -s "/usr/lib/libQtCore.so.4" "libVBoxQtCore.so.4"
    ln -s "/usr/lib/libQtGui.so.4" "libVBoxQtGui.so.4"
    ln -s "/usr/lib/libQtNetwork.so.4" "libVBoxQtNetwork.so.4"
    # Install vbox_build_module
    install -D -m744 "$srcdir/vbox_build_module" "$pkgdir/usr/bin/vbox_build_module"
    # NOTE: Comment the following line if you want the SDK.
    rm -Rf "$pkgdir/opt/virtualbox/sdk"
    # Symlink the launchers
    for _app in "VirtualBox" "VBoxHeadless" "VBoxManage" "VBoxSDL" "VBoxSVC" "VBoxTunctl" "rdesktop-vrdp"; do
    ln -s "/opt/virtualbox/${_app}" "$pkgdir/usr/bin/${_app}"
    done
    # Symlink the desktop icon
    ln -s "/opt/virtualbox/VBox.png" "$pkgdir/usr/share/pixmaps/VBox.png"
    ln -s "/opt/virtualbox/VirtualBox.desktop" "$pkgdir/usr/share/applications/VirtualBox.desktop"
    # Replace some init scripts by simplified stuff
    sed -i -e 's,sudo /etc/init.d/vboxdrv setup,/usr/bin/vbox_build_module,g' "$pkgdir/opt/virtualbox/VBox.sh"
    sed -i -e 's,sudo /etc/init.d/virtualbox restart,modprobe vboxdrv,g' "$pkgdir/opt/virtualbox/VBox.sh"
    # Add udev rules
    echo 'KERNEL=="vboxdrv", NAME="vboxdrv", OWNER="root", GROUP="vboxusers", MODE="0660"' > \
    "$pkgdir/etc/udev/rules.d/60-vboxdrv.rules"
    # Point the installation directory to vbox
    echo '# VirtualBox installation directory' > "$pkgdir/etc/vbox/vbox.cfg"
    echo 'INSTALL_DIR="/opt/virtualbox"' >> "$pkgdir/etc/vbox/vbox.cfg"
    # Link the license
    mkdir -p "$pkgdir/usr/share/licenses/$pkgname"
    ln -s "/opt/virtualbox/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/PUEL"
    # Link the directory because rdesktop-vrdp has a hardcoded path
    ln -s "/opt/virtualbox" "$pkgdir/opt/VirtualBox-${pkgver}"
    Last edited by Llama (2009-04-08 09:09:10)

    peart wrote:The patch file name is not in the source array, so it isn't being copied into the src directory.
    I suspected something like that, but the patch file is nowhere to be found (?).
    You should add the file name to the source array and regenerate the md5sums.
    How am I supposed to do this?
    Last edited by Llama (2009-04-08 07:51:00)

  • Virtualbox bridging problem

    I post this a second time, this time more precisely
    Op. System is: Archlinux 64bits
    uname -a:
    Linux archie 2.6.31-ARCH #1 SMP PREEMPT Tue Nov 10 19:01:40 CET 2009 x86_64 Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz GenuineIntel GNU/Linux
    so
    I've installed virtualbox_bin 3.1.0-1 from AUR (the only way possible on a 64 bits opsys, besides the install stuff from Sun)
    Followed the installation given on the Arch Wiki
    I've tried all three methods ( vbox way, arch way, general ) to get bridged networking to work
    ( I'm a lazy guy, I prefer the Vbox way, all my modules are loaded)
    All my VMs are running fine with NAT, everything works,
    but bridging produces a strange error:
    Clients get network adresses via DHCP,
    even fixed IP settings work,
    I can ping ABSOLUTELY ANYTHING
    but no internet connection!
    I have observed the (physical) network card with Iptraf of the HOST machine, the result is strange:
    ICMP packets go through but no TCP/IP communication is possible between my hosts and the exterior world
    AH, I forgot the most interesting one, I've an archlinux VM too, HE IS WORKING FINE, EVEN IN BRIDGED MODE!!!!
    Is that a bridging problem?
    Is that a kernel problem? ( Vbox worked well with the latest kernel - 2.6,30 -, if I remember well...)
    What the hell is going on there?
    ( I really need bridged network, as I use Vbox essentially for network testing purposes)
    Please, help!

    After three weeks of research I have found lots of people having trouble with Virtualbox bridged and host-only networks
    the (partial ) solution is to change the virtual network card, for me Intel Desktop M worked fine with my Debian guest
    but Ubuntu doesn't want to do anything with it
    for some people it works, for others it forks for a while, for others it doesn't work at all...
    Buggy stuff

  • Kernel problems and no installation CD with me

    Hi,
    I am experiencing kernel problems with my Mac Book Pro8.1 (OS Version: Mac OS X 10.6.8). Sometimes I need to restart my laptop, sometimes it does not start up, software updates do not work and I cannot start the laptop in the safe modus.
    I will post the crash report here. Is there any expert that can tell me what causes the problem and a way to fix that?
    The problem is, that I am living abroad at the moment and I do not have my installation CD with me.
    Is there anything I can do?
    Thank you so much,
    Tabea
    Here the crash reports:
    Thu Sep  5 12:03:39 2013
    panic(cpu 2 caller 0xffffff80002d1208): Kernel trap at 0xffffff80002184cd, type 13=general protection, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000101002000, CR3: 0x0000000042790000, CR4: 0x0000000000040660
    RAX: 0x0000000000000068, RBX: 0xffffff800c5fdda0, RCX: 0xfffffe804237e000, RDX: 0x0000000000045be0
    RSP: 0xffffff805ec83cd0, RBP: 0xffffff805ec83dc0, RSI: 0xffffff800b56ddf0, RDI: 0xffffff800b56dd98
    R8:  0xffffff80008436e0, R9:  0xffffff800e3b34d0, R10: 0x0000000000000000, R11: 0x0000000000000000
    R12: 0xffffff800c5fdd90, R13: 0x00000001007fc000, R14: 0xbfffff800e22adc8, R15: 0x00007fffffe00000
    RFL: 0x0000000000010246, RIP: 0xffffff80002184cd, CS: 0x0000000000000008, SS:  0x0000000000000010
    Error code: 0x0000000000000000
    Backtrace (CPU 2), Frame : Return Address
    0xffffff805ec83970 : 0xffffff8000204d15
    0xffffff805ec83a70 : 0xffffff80002d1208
    0xffffff805ec83bc0 : 0xffffff80002e3f4a
    0xffffff805ec83bd0 : 0xffffff80002184cd
    0xffffff805ec83dc0 : 0xffffff80002188b3
    0xffffff805ec83df0 : 0xffffff8000282f06
    0xffffff805ec83e30 : 0xffffff800047e356
    0xffffff805ec83e90 : 0xffffff80004867bb
    0xffffff805ec83f00 : 0xffffff8000488814
    0xffffff805ec83f40 : 0xffffff8000276435
    0xffffff805ec83f80 : 0xffffff80002d00c8
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
    0xffffff805ec83fa0 : 0xffffff80002e3f22
        Backtrace continues...
    BSD process name corresponding to current thread: UserEventAgent
    Mac OS version:
    10K549
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:32:41 PDT 2011; root:xnu-1504.15.3~1/RELEASE_X86_64
    System model name: MacBookPro8,1 (Mac-94245B3640C91C81)
    System uptime in nanoseconds: 57566926178
    unloaded kexts:
    (none)
    loaded kexts:
    com.parallels.kext.prl_vnic    7.0 14920.689535
    com.parallels.kext.prl_netbridge    7.0 14920.689535
    com.parallels.kext.prl_hid_hook    7.0 14920.689535
    com.parallels.kext.prl_hypervisor    7.0 14920.689535
    com.parallels.kext.prl_usb_connect    7.0 14920.689535
    com.apple.driver.AppleHWSensor    1.9.3d0 - last loaded 44328857464
    com.apple.driver.AppleTyMCEDriver    1.0.2d2
    com.apple.driver.AGPM    100.12.31
    com.apple.driver.AudioAUUC    1.57
    com.apple.driver.AppleUpstreamUserClient    3.5.7
    com.apple.driver.AppleMikeyHIDDriver    1.2.0
    com.apple.driver.AppleMCCSControl    1.0.26
    com.apple.driver.AppleIntelPenrynProfile    17
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AppleMikeyDriver    2.0.8f3
    com.apple.driver.AppleIntelHDGraphics    6.4.2
    com.apple.driver.AppleIntelNehalemProfile    11
    com.apple.driver.AppleHDA    2.0.8f3
    com.apple.driver.AudioIPCDriver    1.1.6
    com.apple.driver.SMCMotionSensor    3.0.1d2
    com.apple.driver.AppleIntelMeromProfile    19
    com.apple.driver.AppleMuxControl    3.0.17
    com.apple.driver.AppleLPC    1.5.1
    com.apple.driver.AppleBacklight    170.0.48
    com.apple.kext.AppleSMCLMU    1.5.2d10
    com.apple.driver.AppleIntelSNBGraphicsFB    6.4.2
    com.apple.driver.ACPI_SMC_PlatformPlugin    4.7.0a1
    com.apple.filesystems.autofs    2.1.0
    com.apple.driver.AppleUSBTCButtons    201.6
    com.apple.driver.AppleIRController    303.8
    com.apple.driver.AppleUSBTCKeyEventDriver    201.6
    com.apple.driver.AppleUSBTCKeyboard    201.6
    com.apple.iokit.SCSITaskUserClient    2.6.9
    com.apple.iokit.IOAHCIBlockStorage    1.6.6
    com.apple.driver.AppleUSBHub    4.2.5
    com.apple.driver.AppleFWOHCI    4.7.7
    com.apple.BootCache    31.1
    com.apple.driver.AppleSDXC    1.0.4
    com.apple.driver.AirPort.Brcm4331    433.11.5
    com.apple.iokit.AppleBCM5701Ethernet    3.0.8b2
    com.apple.driver.AppleAHCIPort    2.2.0
    com.apple.driver.AppleEFINVRAM    1.4.0
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.driver.AppleSmartBatteryManager    160.0.0
    com.apple.driver.AppleUSBEHCI    4.2.6
    com.apple.driver.AppleUSBUHCI    4.2.5
    com.apple.driver.AppleACPIButtons    1.3.6
    com.apple.driver.AppleRTC    1.3.1
    com.apple.driver.AppleHPET    1.5
    com.apple.driver.AppleSMBIOS    1.7
    com.apple.driver.AppleACPIEC    1.3.6
    com.apple.driver.AppleAPIC    1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient 142.6.0
    com.apple.security.sandbox    1
    com.apple.security.quarantine    0
    com.apple.nke.applicationfirewall    2.1.14
    com.apple.driver.AppleIntelCPUPowerManagement 142.6.0
    com.apple.driver.AppleProfileReadCounterAction    17
    com.apple.driver.AppleProfileTimestampAction    10
    com.apple.driver.AppleProfileThreadInfoAction    14
    com.apple.driver.AppleProfileRegisterStateAction    10
    com.apple.driver.AppleProfileKEventAction    10
    com.apple.driver.AppleProfileCallstackAction    20
    com.apple.iokit.IOSurface    74.2
    com.apple.iokit.IOBluetoothSerialManager    2.4.5f3
    com.apple.iokit.IOSerialFamily    10.0.3
    com.apple.driver.AppleHDAHardwareConfigDriver 2.0.8f3
    com.apple.driver.DspFuncLib    2.0.8f3
    com.apple.iokit.IOAudioFamily    1.8.3fc2
    com.apple.kext.OSvKernDSPLib    1.3
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.iokit.IOFireWireIP    2.0.4
    com.apple.iokit.AppleProfileFamily    41
    com.apple.driver.AppleHDAController    2.0.8f3
    com.apple.iokit.IOHDAFamily    2.0.8f3
    com.apple.driver.ApplePolicyControl    3.0.17
    com.apple.driver.AppleGraphicsControl    3.0.17
    com.apple.driver.AppleSMBusPCI    1.0.10d0
    com.apple.driver.AppleBacklightExpert    1.0.2
    com.apple.iokit.IONDRVSupport    2.2.1
    com.apple.driver.AppleThunderboltEDMSink    1.1.3
    com.apple.driver.AppleThunderboltEDMSource    1.1.3
    com.apple.driver.AppleThunderboltDPOutAdapter    1.5.9
    com.apple.iokit.IOGraphicsFamily    2.2.1
    com.apple.driver.AppleSMC    3.1.0d5
    com.apple.driver.IOPlatformPluginFamily    4.7.0a1
    com.apple.driver.AppleThunderboltDPInAdapter    1.5.9
    com.apple.driver.AppleThunderboltDPAdapterFamily 1.5.9
    com.apple.driver.AppleThunderboltPCIDownAdapter 1.2.1
    com.apple.driver.BroadcomUSBBluetoothHCIController 2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController    2.4.5f3
    com.apple.iokit.IOBluetoothFamily    2.4.5f3
    com.apple.driver.AppleUSBMultitouch    207.7
    com.apple.iokit.IOUSBHIDDriver    4.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    2.6.9
    com.apple.iokit.IOBDStorageFamily    1.6
    com.apple.iokit.IODVDStorageFamily    1.6
    com.apple.iokit.IOCDStorageFamily    1.6.1
    com.apple.driver.AppleUSBMergeNub    4.2.5
    com.apple.driver.AppleUSBComposite    3.9.0
    com.apple.driver.XsanFilter    402.1
    com.apple.iokit.IOAHCISerialATAPI    1.2.6
    com.apple.iokit.IOSCSIArchitectureModelFamily    2.6.9
    com.apple.driver.AppleThunderboltNHI    1.3.2
    com.apple.iokit.IOThunderboltFamily    1.7.4
    com.apple.iokit.IOFireWireFamily    4.2.7
    com.apple.iokit.IOUSBUserClient    4.2.4
    com.apple.iokit.IO80211Family    320.1
    com.apple.iokit.IONetworkingFamily    1.10
    com.apple.iokit.IOAHCIFamily    2.0.7
    com.apple.driver.AppleFileSystemDriver    2.0
    com.apple.iokit.IOUSBFamily    4.2.6
    com.apple.driver.AppleEFIRuntime    1.4.0
    com.apple.iokit.IOHIDFamily    1.6.6
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.TMSafetyNet    6
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.driver.DiskImages    289.1
    com.apple.iokit.IOStorageFamily    1.6.3
    com.apple.driver.AppleACPIPlatform    1.3.6
    com.apple.iokit.IOPCIFamily    2.6.8
    com.apple.iokit.IOACPIFamily    1.3.0
    And the crash report for the software update (in case that is of any interest):
    Process:         Software Update [361]
    Path: /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update
    Identifier:      com.apple.SoftwareUpdate
    Version:         4.0.6 (270)
    Build Info:      SoftwareUpdate-2700000~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [212]
    Date/Time:       2013-09-05 12:13:53.339 -0700
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          14830 sec
    Crashes Since Last Report:           1216
    Per-App Interval Since Last Report:  983 sec
    Per-App Crashes Since Last Report:   9
    Anonymous UUID: B61A5505-0249-4CF0-B864-74F4B1293310
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000d55a8c48
    Crashed Thread:  6
    Thread 0:  Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x00007fff84daad7a mach_msg_trap + 10
    1 libSystem.B.dylib 0x00007fff84dab3ed mach_msg + 59
    2   com.apple.CoreFoundation 0x00007fff81423902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation 0x00007fff81422d8f CFRunLoopRunSpecific + 575
    4 com.apple.HIToolbox 0x00007fff8491c7ee RunCurrentEventLoopInMode + 333
    5 com.apple.HIToolbox 0x00007fff8491c5f3 ReceiveNextEventCommon + 310
    6 com.apple.HIToolbox 0x00007fff8491c4ac BlockUntilNextEventMatchingListInMode + 59
    7 com.apple.AppKit 0x00007fff88792eb2 _DPSNextEvent + 708
    8 com.apple.AppKit 0x00007fff88792801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    9 com.apple.AppKit 0x00007fff8875868f -[NSApplication run] + 395
    10  com.apple.AppKit 0x00007fff887513b0 NSApplicationMain + 364
    11  com.apple.SoftwareUpdate 0x0000000100001cc8 0x100000000 + 7368
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x00007fff84dc3c0a kevent + 10
    1 libSystem.B.dylib 0x00007fff84dc5add _dispatch_mgr_invoke + 154
    2 libSystem.B.dylib 0x00007fff84dc57b4 _dispatch_queue_invoke + 185
    3 libSystem.B.dylib 0x00007fff84dc52de _dispatch_worker_thread2 + 252
    4 libSystem.B.dylib 0x00007fff84dc4c08 _pthread_wqthread + 353
    5 libSystem.B.dylib 0x00007fff84dc4aa5 start_wqthread + 13
    Thread 2:
    0 libSystem.B.dylib 0x00007fff84dc4a2a __workq_kernreturn + 10
    1 libSystem.B.dylib 0x00007fff84dc4e3c _pthread_wqthread + 917
    2 libSystem.B.dylib 0x00007fff84dc4aa5 start_wqthread + 13
    Thread 3:
    0 libSystem.B.dylib 0x00007fff84dc4a2a __workq_kernreturn + 10
    1 libSystem.B.dylib 0x00007fff84dc4e3c _pthread_wqthread + 917
    2 libSystem.B.dylib 0x00007fff84dc4aa5 start_wqthread + 13
    Thread 4:
    0 libSystem.B.dylib 0x00007fff84daad7a mach_msg_trap + 10
    1   libSystem.B.dylib 0x00007fff84dab3ed mach_msg + 59
    2   com.apple.CoreFoundation 0x00007fff81423902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation 0x00007fff81422d8f CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff8a1abb74 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
    5 com.apple.Foundation 0x00007fff8a1f719a -[NSRunLoop(NSRunLoop) runUntilDate:] + 78
    6   com.apple.SoftwareUpdate 0x000000010000c85f 0x100000000 + 51295
    7   com.apple.Foundation 0x00007fff8a171114 __NSThread__main__ + 1429
    8 libSystem.B.dylib 0x00007fff84de3fd6 _pthread_start + 331
    9 libSystem.B.dylib 0x00007fff84de3e89 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib 0x00007fff84de5a6a __semwait_signal + 10
    1 libSystem.B.dylib 0x00007fff84de9881 _pthread_cond_wait + 1286
    2 com.apple.Foundation 0x00007fff8a1a9844 -[__NSOperationInternal waitUntilFinished] + 56
    3   com.apple.Foundation 0x00007fff8a1a97f2 -[NSOperation waitUntilFinished] + 83
    4 com.apple.Foundation 0x00007fff8a1a962a -[NSOperationQueue waitUntilAllOperationsAreFinished] + 233
    5   ...le.SoftwareUpdate.framework 0x00007fff80effe82 -[SUScan(Impl) _productsByScanningCatalog:] + 1178
    6   ...le.SoftwareUpdate.framework 0x00007fff80efef28 -[SUScan _scanMain:] + 1346
    7 com.apple.Foundation 0x00007fff8a171114 __NSThread__main__ + 1429
    8 libSystem.B.dylib 0x00007fff84de3fd6 _pthread_start + 331
    9 libSystem.B.dylib 0x00007fff84de3e89 thread_start + 13
    Thread 6 Crashed:
    0 com.apple.CFNetwork 0x00007fff8789e4d9 HTTPProtocol::createStream() + 405
    1   com.apple.CFNetwork 0x00007fff8789e337 HTTPProtocol::createAndOpenStream() + 59
    2 com.apple.CFNetwork 0x00007fff8789c75c URLConnectionLoader::loaderScheduleOriginLoad(_CFURLRequest const*) + 304
    3 com.apple.CFNetwork 0x00007fff878b092c URLConnectionLoader::loaderScheduleLoad(_CFURLRequest const*) + 516
    4 com.apple.CFNetwork 0x00007fff879140a4 URLConnectionLoader::LoaderConnectionEventQueue::processAllEventsAndConsumePayl oad(XConnectionEventInfo<XLoaderEvent, XLoaderEventParams>*, long) + 270
    5 com.apple.CFNetwork 0x00007fff8789c5fb URLConnectionLoader::processEvents() + 99
    6 com.apple.CFNetwork 0x00007fff878994b2 MultiplexerSource::perform() + 160
    7   com.apple.CoreFoundation 0x00007fff814253d1 __CFRunLoopDoSources0 + 1361
    8   com.apple.CoreFoundation 0x00007fff814235c9 __CFRunLoopRun + 873
    9   com.apple.CoreFoundation 0x00007fff81422d8f CFRunLoopRunSpecific + 575
    10 com.apple.Foundation 0x00007fff8a1f014f +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    11 com.apple.Foundation 0x00007fff8a171114 __NSThread__main__ + 1429
    12 libSystem.B.dylib 0x00007fff84de3fd6 _pthread_start + 331
    13 libSystem.B.dylib 0x00007fff84de3e89 thread_start + 13
    Thread 7:  com.apple.CFSocket.private
    0 libSystem.B.dylib 0x00007fff84dee932 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation 0x00007fff81445468 __CFSocketManager + 824
    2 libSystem.B.dylib 0x00007fff84de3fd6 _pthread_start + 331
    3 libSystem.B.dylib 0x00007fff84de3e89 thread_start + 13
    Thread 8:  Dispatch queue: com.apple.root.default-priority
    0   libSystem.B.dylib 0x00007fff84daad7a mach_msg_trap + 10
    1 libSystem.B.dylib 0x00007fff84dab3ed mach_msg + 59
    2   com.apple.CoreFoundation 0x00007fff81423902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation 0x00007fff81422d8f CFRunLoopRunSpecific + 575
    4 com.apple.CFNetwork 0x00007fff878db923 CFURLConnectionSendSynchronousRequest + 439
    5 com.apple.Foundation 0x00007fff8a2c7c97 +[NSURLConnection sendSynchronousRequest:returningResponse:error:] + 370
    6   ...le.SoftwareUpdate.framework 0x00007fff80efd892 -[SUProductLoadOperation main] + 287
    7 com.apple.Foundation 0x00007fff8a199dd0 -[__NSOperationInternal start] + 681
    8 com.apple.Foundation 0x00007fff8a277bd5 ____NSOQSchedule_block_invoke_2 + 129
    9 libSystem.B.dylib 0x00007fff84de6d64 _dispatch_call_block_and_release + 15
    10 libSystem.B.dylib 0x00007fff84dc52d1 _dispatch_worker_thread2 + 239
    11 libSystem.B.dylib 0x00007fff84dc4c08 _pthread_wqthread + 353
    12 libSystem.B.dylib 0x00007fff84dc4aa5 start_wqthread + 13
    Thread 6 crashed with X86 Thread State (64-bit):
      rax: 0x25100408000007d6  rbx: 0x0000000000000000 rcx: 0x40427fffffffffff  rdx: 0x0000000000000025
      rdi: 0x00000000000000d7  rsi: 0x0000000000000002 rbp: 0x00000001155a8ee0  rsp: 0x00000001155a8c10
       r8: 0x0000000000000008   r9: 0x0000000000000000  r10: 0x0000000000000008  r11: 0x0000000000000007
      r12: 0x0000000116867990  r13: 0x0000000000000000 r14: 0x0000000116867ba0  r15: 0x000000010017d500
      rip: 0x00007fff8789e4d9  rfl: 0x0000000000010206 cr2: 0x00000000d55a8c48
    Binary Images:
           0x100000000 -        0x10001afff com.apple.SoftwareUpdate 4.0.6 (270) <8F34A686-67B6-2BEE-0ED5-09A8DAB40490> /System/Library/CoreServices/Software Update.app/Contents/MacOS/Software Update
        0x7fff5fc00000 - 0x7fff5fc3be0f  dyld 132.1 (???) <29DECB19-0193-2575-D838-CF743F0400B2> /usr/lib/dyld
        0x7fff80003000 - 0x7fff800e0fff  com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff800e1000 - 0x7fff8012bff7  com.apple.Metadata 10.6.3 (507.15) <DE238BE4-5E22-C4D5-CF5C-3D50FDEE4701> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8032b000 - 0x7fff8033ffff  libGL.dylib ??? (???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff80340000 - 0x7fff803beff7  com.apple.CoreText 151.12 (???) <5BE797B7-C903-B664-ADD9-7514B1A6EF9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff803bf000 - 0x7fff8048bfff  com.apple.installframework 596 (596.1) <ED491B89-5D44-533B-5589-622F21EB4D16> /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install
        0x7fff8048c000 - 0x7fff80571fef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff805cc000 - 0x7fff805dbfff  libxar.1.dylib ??? (???) <CBAF862A-3C77-6446-56C2-9C4461631AAF> /usr/lib/libxar.1.dylib
        0x7fff805dc000 - 0x7fff80699fff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8069a000 - 0x7fff806dbfef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff806dc000 - 0x7fff80ee6fe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <2F26CDC7-DAE9-9ABE-6806-93BBBDA20DA0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff80ee7000 -     0x7fff80ef2ff7 com.apple.bsd.ServiceManagement 1.3 (1.3) <CEB99ECF-4C55-C3DF-EE64-35903BF7B690> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff80ef3000 - 0x7fff80ef6ff7  com.apple.securityhi 4.0 (36638) <AEF55AF1-54D3-DB8D-27A7-E16192E0045A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff80ef7000 - 0x7fff80f26fef  com.apple.SoftwareUpdate.framework 4.0.6 (270) <48A7D252-C729-41A7-5001-B454B50CF335> /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareU pdate
        0x7fff80f4b000 - 0x7fff81023ff7  com.apple.DiscRecording 5.0.9 (5090.4.2) <1559C58F-ABD2-0C13-7E1D-75450FEC41D4> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff81024000 - 0x7fff8104fff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <3630A97F-55C1-3F34-CA63-3847653C9645> /usr/lib/libxslt.1.dylib
        0x7fff810b3000 - 0x7fff813d6fe7  com.apple.JavaScriptCore 6534.57 (6534.57.3) <99973578-D474-3664-1388-61CB47E9D6E9> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff813d7000 - 0x7fff8154efe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8154f000 - 0x7fff8155bfff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <9AB864FA-9197-5D48-A0EC-EC8330D475FC> /usr/lib/libbz2.1.0.dylib
        0x7fff8155c000 - 0x7fff816fdfe7  com.apple.WebKit 6534.57 (6534.57.2) <B99EF91E-676F-79A0-FADC-A72C1E14536E> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff816fe000 - 0x7fff81700fff  libRadiance.dylib ??? (???) <B422DA26-E0CF-F280-6EB4-3B8FEF59B665> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff819db000 - 0x7fff820d7ff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff820e4000 - 0x7fff82184fff  com.apple.LaunchServices 362.3 (362.3) <B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff82185000 - 0x7fff82186fff  liblangid.dylib ??? (???) <D0666597-B331-C43C-67BB-F2E754079A7A> /usr/lib/liblangid.dylib
        0x7fff82187000 - 0x7fff8218bff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff8218c000 - 0x7fff821adfff  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <9410EC7F-4D24-6740-AFEE-90405750FAD7> /usr/lib/libresolv.9.dylib
        0x7fff821ca000 - 0x7fff821f1ff7  libJPEG.dylib ??? (???) <32EDAB18-08ED-B31A-D2BD-12EFFE60D83C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff821f2000 - 0x7fff821fdfff  com.apple.CrashReporterSupport 10.6.7 (258) <A2CBB18C-BD1C-8650-9091-7687E780E689> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff82233000 - 0x7fff82289fff  libTIFF.dylib ??? (???) <31FA0318-105B-9E11-B4D4-246BFD5B18E1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8228a000 - 0x7fff8234cfe7  libFontParser.dylib ??? (???) <EF06F16C-0CC9-B4CA-7BD9-0A97FA967340> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff82359000 -     0x7fff82366fe7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8237b000 - 0x7fff826affef  com.apple.CoreServices.CarbonCore 861.39 (861.39) <1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff826b0000 - 0x7fff82760fff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff82761000 - 0x7fff8279efff  com.apple.LDAPFramework 2.0 (120.1) <54A6769E-D7E2-DBE2-EA61-87B9EA355DA4> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8279f000 - 0x7fff827b5fe7  com.apple.MultitouchSupport.framework 207.11 (207.11) <8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff827b6000 - 0x7fff8286cff7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969> /usr/lib/libobjc.A.dylib
        0x7fff828ea000 - 0x7fff828feff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <574C1BE0-5E5E-CCAF-06F8-92A69CB2892D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff828ff000 - 0x7fff82936ff7  com.apple.DiskManagement 3.6 (358) <D0D9E19C-7F01-CEB6-681D-0B20D3B7E9B4> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
        0x7fff8293f000 - 0x7fff8296efff  com.apple.framework.Admin 4.6 (4.6) <376BC531-CE46-A147-9AF5-4D8F8E1522C5> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
        0x7fff831a7000 - 0x7fff831a7ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff835f1000 - 0x7fff8366efef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff83ecb000 - 0x7fff83f35fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff83f65000 - 0x7fff83f98ff7  libTrueTypeScaler.dylib ??? (???) <B7BA8104-FA18-39A2-56E1-922EE7A660AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff83f99000 - 0x7fff84029fff  com.apple.SearchKit 1.3.0 (1.3.0) <45BA1053-9196-3C2F-2421-AFF5E09627CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff845f0000 - 0x7fff8462cfe7  libcurl.4.dylib 6.1.0 (compatibility 6.0.0) <0109956D-D962-1736-B510-DC294F530E07> /usr/lib/libcurl.4.dylib
        0x7fff8462d000 - 0x7fff84670ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff84671000 - 0x7fff84680fef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff84681000 - 0x7fff847a0fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff847a1000 - 0x7fff847a2ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <49B723D1-85F8-F86C-2331-F586C56D68AF> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff847a3000 - 0x7fff847c6fff  com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff847c7000 - 0x7fff848e1fff  libGLProgrammability.dylib ??? (???) <D1650AED-02EF-EFB3-100E-064C7F018745> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff848ee000 - 0x7fff84becfff  com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff84bf9000 - 0x7fff84c40ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff84c41000 - 0x7fff84c8dfff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff84c8e000 - 0x7fff84d43fe7  com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff84d6e000 - 0x7fff84da9fff  com.apple.AE 496.5 (496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff84daa000 - 0x7fff84f6bfef  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
        0x7fff84f6c000 - 0x7fff84f6dff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff84fd7000 - 0x7fff85020fef  libGLU.dylib ??? (???) <B0F4CA55-445F-E901-0FCF-47B3B4BAE6E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff85021000 - 0x7fff85021ff7  com.apple.Carbon 150 (152) <23704665-E9F4-6B43-1115-2E69F161FC45> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff85022000 - 0x7fff85071ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <0731C40D-71EF-B417-C83B-54C3527A36EA> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
        0x7fff85088000 - 0x7fff8509dff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8512c000 -     0x7fff8513aff7 libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff8513b000 - 0x7fff85142fff  com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff85143000 - 0x7fff85586fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <57D38705-6F21-2A82-F3F6-03CFFF214775> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff85587000 - 0x7fff8558dff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff855d6000 - 0x7fff855e1ff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff855e2000 - 0x7fff855fdff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff855fe000 - 0x7fff8565efe7  com.apple.framework.IOKit 2.0 (???) <2D2A51AA-4021-0F64-BE58-B0ED5388D899> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8565f000 - 0x7fff85661fff  com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff85662000 - 0x7fff85762fef  com.apple.DiskImagesFramework 10.6.8 (289.1) <4F2F2B6C-59D1-0631-71D1-F471BE2CE29A> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff85763000 - 0x7fff85763ff7  com.apple.ApplicationServices 38 (38) <0E2FC75E-2BE2-D04D-CA78-76E38A89DD30> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff85766000 - 0x7fff857a0fff  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <539EBFDD-96D6-FB07-B128-40232C408757> /usr/lib/libcups.2.dylib
        0x7fff857eb000 - 0x7fff859aafff  com.apple.ImageIO.framework 3.0.5 (3.0.5) <175E97F1-B1A7-655A-F154-5B6ACC5F3985> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff85aa4000 - 0x7fff85aa8ff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff85aa9000 - 0x7fff85adafff  libGLImage.dylib ??? (???) <562565E1-AA65-FE96-13FF-437410C886D0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff85c35000 - 0x7fff85df3fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854> /usr/lib/libicucore.A.dylib
        0x7fff85df4000 - 0x7fff86e5efef  com.apple.WebCore 6534.57 (6534.57.2) <9BE3BFB2-D520-CD10-E4A1-3C2AF322A097> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8721a000 - 0x7fff8734ffff  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <F4814A13-E557-59AF-30FF-E62929367933> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff87350000 - 0x7fff87366fef  libbsm.0.dylib ??? (???) <0321D32C-9FE1-3919-E03E-2530A0C1191B> /usr/lib/libbsm.0.dylib
        0x7fff87367000 - 0x7fff87367ff7  com.apple.Cocoa 6.6 (???) <C69E895A-1C66-3DA9-5F63-8BE85DB9C4E1> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff87368000 - 0x7fff8736eff7  com.apple.DiskArbitration 2.3.1 (2.3.1) <FD5CF2E6-E5FF-1E2A-37E0-304722DA15E1> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff87371000 - 0x7fff873f0fe7  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff87403000 - 0x7fff87441fe7  libFontRegistry.dylib ??? (???) <395D7C0D-36B5-B353-0DC8-51ABC0B1C030> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff87442000 - 0x7fff87462ff7  com.apple.DirectoryService.Framework 3.6 (621.14) <15CF4C96-372D-C706-A237-47D20D2CAA6B> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8764a000 - 0x7fff876cfff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff876ec000 - 0x7fff87802ff7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <3814FCF9-92B9-A6AB-E76A-F7021894AA3F> /usr/lib/libxml2.2.dylib
        0x7fff87803000 -     0x7fff87845fe7 com.apple.MediaKit 10.5.1 (490) <9D8D9E51-6559-41A2-E404-C629878F93AA> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff87846000 - 0x7fff87887ff7  com.apple.SystemConfiguration 1.10.9 (1.10.2) <642854D8-F4EF-4685-42A6-E48A1904D885> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff87888000 - 0x7fff8795cfe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff8795d000 - 0x7fff87960ff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff87daf000 - 0x7fff87dafff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff87e40000 -     0x7fff87ef9fff libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff87efa000 - 0x7fff87f09fff  com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff87f56000 - 0x7fff87ff0fff  com.apple.ApplicationServices.ATS 275.19 (???) <2DE8987F-4563-4D8E-45C3-2F6F786E120D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff87ff1000 - 0x7fff87ff7ff7  IOSurface ??? (???) <8E302BB2-0704-C6AB-BD2F-C2A6C6A2E2C3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff87ff8000 - 0x7fff880b9fef  com.apple.ColorSync 4.6.8 (4.6.8) <7DF1D175-6451-51A2-DBBF-40FCA78C0D2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff880ba000 - 0x7fff880bfff7  com.apple.CommonPanels 1.2.4 (91) <8B088D78-E508-6622-E477-E34C22CF2F67> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff880c0000 - 0x7fff880c5fff  libGIF.dylib ??? (???) <3FD1157B-C002-5268-DEF4-70DDC40E6EDE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff88144000 - 0x7fff88151ff7  com.apple.AppleFSCompression 24.4 (1.0) <56B27685-B6A7-7FD7-85F3-402C4E0C988E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff88152000 - 0x7fff88164fe7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <30FE378B-99FE-8C7C-06D0-A3AA0A0A70D4> /usr/lib/libsasl2.2.dylib
        0x7fff88221000 - 0x7fff88276ff7  com.apple.framework.familycontrols 2.0.2 (2020) <8807EB96-D12D-8601-2E74-25784A0DE4FF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7ff

    Has anyone an idea what the problem might be?
    Thanks a lot,
    Tabea

  • Kernel Problems

    When rendering out HD video in multiple formats, I begin having computer problems. I have a brand new 17" Macbook Pro with 4gig Ram. Sometimes the ram fills up and the graphics card freaks out. Everything on my mac becomes garbled and I have to force it to shut down. I started closing and re-opening Motion periodically to solve that. Now I'm having a Kernel problem. When rendering a file that is only 30 seconds long and very simple, the CPU cycles start spiking. To the point where the computer freaks out. About a third of the way through the render it will render for 10 seconds, computer freezes for 10 seconds, render 10 seconds, and so on. When you quit Motion this continues. Even with the RAM flushed. It's very hard to save everything when the computer and mouse freeze in 10 second increments. Even with everything closed, the computer continues doing this and must be shut off by holding down the power button. I checked Activity monitor. Kernel_Task is at 2% CPU, then the computer freezes for exactly 10 seconds, then Kernel_Task is at 102% CPU for a second and back down. Something is freaking it out and causing it to use so many CPU cycles that it just craps out and even the mouse stops working. This happens on HD projects constantly. It makes a 5 minute render become an hour render. Plus, I have to reset after every render. Very frustrating.

    There were a bunch of errors like this. I'll spare you all of them...
    =====================================================================
    Aug 12 22:59:03 dave-kosss-macbook-pro [0x0-0x22022].com.apple.motion[228]: 0 bytes NOT freed (0 blocks)
    Aug 12 22:59:03 dave-kosss-macbook-pro [0x0-0x22022].com.apple.motion[228]: Maximum blocks allocated at once: 0
    Aug 12 22:59:03 dave-kosss-macbook-pro [0x0-0x22022].com.apple.motion[228]: Total blocks used: 0
    Aug 12 22:59:03 dave-kosss-macbook-pro [0x0-0x22022].com.apple.motion[228]: =====================================================================
    But then after all that I also had this error in the system.log
    Aug 12 23:39:56 dave-kosss-macbook-pro kernel[0]: (default pager): [KERNEL]: no space in available paging segments
    I have no idea what it means, but since it came after the Motion errors and the time stamp was when the error occurred, I think this may be relevant.

  • Kernel problem in brand new Macbook Air

    I have been having kernel problems with my brand new computer. Two weeks ago I bought my computer and after 14 hours it began. Apple decided to switch my computer out for another that I got yesterday. And today the kernel problems began with this one...
    It only happens when i´m connected to the internet at home but not at school. I have updated everything and tried to restart it and hold the shift button down and everything I found that could help me with this problem...
    Interval Since Last Panic Report:  23867 sec
    Panics Since Last Report:          3
    Anonymous UUID: 2011A6AD-4068-EA35-FAE9-424D4F56A1A0
    Tue Jun 4 19:49:05 2013
    panic(cpu 0 caller 0xffffff8003f72262): assertion failed: p->m_tag_cookie == M_TAG_VALID_PATTERN, file: /SourceCache/xnu/xnu-2050.22.13/bsd/kern/uipc_mbuf2.c, line: 593
    Backtrace (CPU 0), Frame : Return Address
    0xffffff8082ea3be0 : 0xffffff8003c1d626
    0xffffff8082ea3c50 : 0xffffff8003f72262
    0xffffff8082ea3c60 : 0xffffff8003f93b4d
    0xffffff8082ea3c90 : 0xffffff8003f6f3fb
    0xffffff8082ea3cd0 : 0xffffff7f84a56ca5
    0xffffff8082ea3d00 : 0xffffff7f84a92cb6
    0xffffff8082ea3e30 : 0xffffff7f84aed0e9
    0xffffff8082ea3ec0 : 0xffffff7f84a5ce99
    0xffffff8082ea3ef0 : 0xffffff80040467a8
    0xffffff8082ea3f30 : 0xffffff80040452aa
    0xffffff8082ea3f80 : 0xffffff80040453d9
    0xffffff8082ea3fb0 : 0xffffff8003cb2977
    Kernel Extensions in backtrace:
    com.apple.driver.AirPort.Brcm4331(614.20.16)[737B7F44-B423-3EEB-B03E-A097BA7418 C2]@0xffffff7f84a4f000->0xffffff7f84c47fff
    dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f84281000
    dependency: com.apple.iokit.IO80211Family(522.4)[236113FC-214D-3BAE-A734-11B904E05A74]@0xff ffff7f849e2000
    dependency: com.apple.iokit.IONetworkingFamily(3.0)[FE3163C6-2874-3843-A96F-5DB796ED27CA]@0 xffffff7f843ca000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12D78
    Kernel version:
    Darwin Kernel Version 12.3.0: Sun Jan  6 22:37:10 PST 2013; root:xnu-2050.22.13~1/RELEASE_X86_64
    Kernel UUID: 3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6
    Kernel slide:     0x0000000003a00000
    Kernel text base: 0xffffff8003c00000
    System model name: MacBookAir5,2 (Mac-2E6FAB96566FE58C)
    System uptime in nanoseconds: 158393206466
    last loaded kext at 5995877552: com.apple.driver.AudioAUUC 1.60 (addr 0xffffff7f84eac000, size 32768)
    last unloaded kext at 111516295736: com.apple.driver.AppleFileSystemDriver        3.0.1 (addr 0xffffff7f85735000, size 8192)
    loaded kexts:
    com.apple.driver.AudioAUUC           1.60
    com.apple.iokit.IOBluetoothSerialManager            4.1.3f3
    com.apple.filesystems.autofs            3.0
    com.apple.driver.ApplePlatformEnabler    2.0.6d1
    com.apple.driver.AGPM        100.12.87
    com.apple.driver.X86PlatformShim            1.0.0
    com.apple.driver.AppleMikeyHIDDriver     122
    com.apple.driver.AppleHDA 2.3.7fc4
    com.apple.iokit.IOUserEthernet       1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X      7.0.0
    com.apple.driver.AppleMikeyDriver           2.3.7fc4
    com.apple.driver.AppleSMCLMU     2.0.3d0
    com.apple.driver.AppleSMCPDRC   1.0.0
    com.apple.driver.AppleLPC  1.6.0
    com.apple.driver.ApplePolicyControl          3.3.0
    com.apple.driver.AppleBacklight     170.2.5
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.driver.AppleMCCSControl          1.1.11
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport            4.1.3f3
    com.apple.driver.AppleIntelHD4000Graphics       8.1.0
    com.apple.driver.AppleIntelFramebufferCapri     8.1.0
    com.apple.driver.AppleUSBTCButtons        237.1
    com.apple.driver.AppleUSBTCKeyboard    237.1
    com.apple.driver.AppleUSBCardReader     3.1.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless      1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib  1.0.0d1
    com.apple.BootCache            34
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage           2.3.1
    com.apple.driver.AppleUSBHub      5.5.5
    com.apple.driver.AirPort.Brcm4331           614.20.16
    com.apple.driver.AppleAHCIPort     2.5.1
    com.apple.driver.AppleUSBXHCI     5.5.5
    com.apple.driver.AppleUSBEHCI     5.5.0
    com.apple.driver.AppleSmartBatteryManager      161.0.0
    com.apple.driver.AppleEFINVRAM  1.7
    com.apple.driver.AppleHPET           1.8
    com.apple.driver.AppleRTC  1.5
    com.apple.driver.AppleACPIButtons           1.7
    com.apple.driver.AppleSMBIOS       1.9
    com.apple.driver.AppleACPIEC        1.7
    com.apple.driver.AppleAPIC            1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall   4.0.39
    com.apple.security.quarantine        2
    com.apple.driver.AppleIntelCPUPowerManagement        196.0.0
    com.apple.iokit.IOSerialFamily         10.0.6
    com.apple.kext.triggers         1.0
    com.apple.driver.DspFuncLib          2.3.7fc4
    com.apple.iokit.IOAudioFamily         1.8.9fc11
    com.apple.kext.OSvKernDSPLib      1.6
    com.apple.iokit.IOSurface     86.0.4
    com.apple.iokit.IOBluetoothFamily  4.1.3f3
    com.apple.driver.AppleSMBusPCI   1.0.11d0
    com.apple.driver.AppleGraphicsControl     3.3.0
    com.apple.driver.X86PlatformPlugin          1.0.0
    com.apple.driver.IOPlatformPluginFamily 5.3.0d51
    com.apple.driver.AppleHDAController        2.3.7fc4
    com.apple.iokit.IOHDAFamily           2.3.7fc4
    com.apple.driver.AppleBacklightExpert     1.0.4
    com.apple.driver.AppleSMBusController    1.0.11d0
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport       4.1.3f3
    com.apple.driver.AppleSMC 3.1.4d2
    com.apple.iokit.IOAcceleratorFamily           30.14
    com.apple.iokit.IONDRVSupport      2.3.7
    com.apple.iokit.IOGraphicsFamily    2.3.7
    com.apple.driver.AppleUSBMultitouch       237.3
    com.apple.iokit.IOUSBHIDDriver     5.2.5
    com.apple.iokit.IOSCSIBlockCommandsDevice       3.5.5
    com.apple.iokit.IOUSBMassStorageClass     3.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily   3.5.5
    com.apple.driver.AppleThunderboltDPInAdapter            1.8.9
    com.apple.driver.AppleThunderboltDPAdapterFamily    1.8.9
    com.apple.driver.AppleThunderboltPCIDownAdapter     1.2.6
    com.apple.driver.AppleUSBMergeNub       5.5.5
    com.apple.driver.AppleUSBComposite        5.2.5
    com.apple.driver.AppleThunderboltNHI    1.6.3
    com.apple.iokit.IOThunderboltFamily         2.2.6
    com.apple.iokit.IOUSBUserClient     5.5.5
    com.apple.iokit.IO80211Family       522.4
    com.apple.iokit.IONetworkingFamily           3.0
    com.apple.iokit.IOAHCIFamily          2.3.1
    com.apple.iokit.IOUSBFamily            5.5.5
    com.apple.driver.AppleEFIRuntime            1.7
    com.apple.iokit.IOHIDFamily            1.8.1
    com.apple.iokit.IOSMBusFamily       1.1
    com.apple.security.sandbox 220.2
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet     7
    com.apple.driver.DiskImages           345
    com.apple.iokit.IOStorageFamily      1.8
    com.apple.driver.AppleKeyStore     28.21
    com.apple.driver.AppleACPIPlatform         1.7
    com.apple.iokit.IOPCIFamily 2.7.3
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto     1.0
    Model: MacBookAir5,2, BootROM MBA51.00EF.B02, 2 processors, Intel Core i5, 1.8 GHz, 4 GB, SMC 2.5f7
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333235533643465238412D50422020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333235533643465238412D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xE9), Broadcom BCM43xx 1.0 (5.106.98.100.16)
    Bluetooth: Version 4.1.3f3 11349, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD SM128E, 121,33 GB
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1a100000 / 2
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8510, 0x1a110000 / 3
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1d100000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0x1d180000 / 3
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8404, 0x1d183000 / 6
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x024d, 0x1d182000 / 5
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1d181000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821f, 0x1d181300 / 9

    Your warranty includes 90 days of phone support. Contact Apple.

  • Can't start or "please shutdown" message, after ¿kernel problem? need help!

    I'm new to mac world, just bought a mac book less than 1 month ago...
    After Safari crashed, and also "force quit" crashed I've had to turn off the computer by pressing 6 secs the power button. After that, when I started, a "kernel problem" appeared. Dont know what it is... but then macbook did not started or started and in 10 minutes, a "black" message appeared telling me do manually shutdown, in many languages...
    I've looked some post, but did not understand about those kernel problems... don't really know if my problem is about that... how to solve it??? some people posted their "panic.log" here is mine...
    Thu Oct 19 07:59:08 2006
    panic(cpu 0 caller 0x001A3135): Unresolved kernel trap (CPU 0, Type 14=page fault), registers:
    CR0: 0x8001003b, CR2: 0x00000001, CR3: 0x00d95000, CR4: 0x000006e0
    EAX: 0x00000001, EBX: 0x014a5cb0, ECX: 0x01cf3364, EDX: 0x014a5cb8
    CR2: 0x00000001, EBP: 0x0b78bc58, ESI: 0x01e0b780, EDI: 0x00000000
    EFL: 0x00010206, EIP: 0x0014134b, CS: 0x00000008, DS: 0x0b780010
    Backtrace, Format - Frame : Return Address (4 potential args on stack)
    0xb78ba58 : 0x128d1f (0x3c9540 0xb78ba7c 0x131df4 0x0)
    0xb78ba98 : 0x1a3135 (0x3cf1f4 0x0 0xe 0x3cea24)
    0xb78bba8 : 0x19a8d4 (0xb78bbb8 0x0 0xe 0x14a0048)
    0xb78bc58 : 0x12d994 (0x14a5cb0 0x1 0x1ed8144 0x3bc973)
    0xb78bc88 : 0x12d9b3 (0x4 0x1 0xb78bcb8 0x3bc2b6)
    0xb78bca8 : 0x3bdee3 (0x4 0x1e0b780 0xb78bcd8 0x3bc385)
    0xb78bcc8 : 0x3bdf57 (0x1da4280 0x1ed8140 0xb78bcf8 0x38337e)
    0xb78bcf8 : 0x3915d1 (0x1da4280 0x1cdcc00 0x11 0x0)
    0xb78bd38 : 0x3916c8 (0x1e0b780 0x0 0x1e07080 0x3bb77e)
    0xb78bd68 : 0x391c57 (0x1dabe80 0x1e07080 0x1 0x0)
    0xb78bdb8 : 0x392996 (0x1dabe80 0x1 0xb78bdf8 0x1)
    0xb78bdd8 : 0x39161f (0x1dabe80 0x3 0x0 0x1)
    0xb78be18 : 0x3916c8 (0x1dabe80 0x1 0x1dabe00 0x3bb77e)
    0xb78be48 : 0x391c57 (0x1d05100 0x1dabe00 0x1 0x3bc21c)
    0xb78be98 : 0x3927d4 (0x1d05100 0x1 0xb78bed8 0x392e54)
    0xb78beb8 : 0x392d50 (0x1d05100 0x76727376 0xb78bed8 0x3979f1) Backtrace continues...
    Kernel version:
    Darwin Kernel Version 8.8.1: Mon Sep 25 19:42:00 PDT 2006; root:xnu-792.13.8.obj~1/RELEASE_I386
    Fri Oct 27 23:50:02 2006
    panic(cpu 0 caller 0x0019A096): interlock timeout for mutex 0x2008db4
    Backtrace, Format - Frame : Return Address (4 potential args on stack)
    0xb663df8 : 0x128d1f (0x3c9540 0xb663e1c 0x131df4 0x0)
    0xb663e38 : 0x19a096 (0x3ce3d4 0x2008db4 0xb663e68 0x1a1ec0)
    0xb663e68 : 0x19785d (0x2008db4 0x293 0xb663e98 0x120876)
    0xb663e78 : 0x120876 (0x2008db4 0x1cdb458 0xb663ed8 0x1a09b0)
    0xb663e98 : 0x11e0bb (0x2008da8 0x13 0x64 0x11d0ac)
    0xb663ee8 : 0x12b6b6 (0x27cd800 0x30 0xb663f0c 0x199a21)
    0xb663f18 : 0x13004a (0xb663f30 0x30 0xb663f58 0x135688)
    0xb663f78 : 0x13d7d2 (0x1faebe4 0x0 0x0 0x0)
    0xb663fc8 : 0x19a74c (0x0 0x0 0x19d0b5 0x1ce3894) Backtrace terminated-invalid frame pointer 0x0
    Kernel version:
    Darwin Kernel Version 8.8.1: Mon Sep 25 19:42:00 PDT 2006; root:xnu-792.13.8.obj~1/RELEASE_I386
    Sat Oct 28 21:46:33 2006
    panic(cpu 1 caller 0x001A3135): Unresolved kernel trap (CPU 1, Type 14=page fault), registers:
    CR0: 0x8001003b, CR2: 0x0102f23c, CR3: 0x00b86000, CR4: 0x000006e0
    EAX: 0x00000001, EBX: 0x0102f228, ECX: 0x023d67bc, EDX: 0x02524cc0
    CR2: 0x0102f23c, EBP: 0x0b463d38, ESI: 0x00074000, EDI: 0x00000000
    EFL: 0x00010206, EIP: 0x0017e423, CS: 0x00000008, DS: 0x00000010
    Backtrace, Format - Frame : Return Address (4 potential args on stack)
    0xb463b68 : 0x128d1f (0x3c9540 0xb463b8c 0x131df4 0x0)
    0xb463ba8 : 0x1a3135 (0x3cf1f4 0x1 0xe 0x3cea24)
    0xb463cb8 : 0x19a8d4 (0xb463cc8 0x23d67bc 0xe 0x170048)
    0xb463d38 : 0x175455 (0x2524cc0 0x74000 0x0 0x0)
    0xb463df8 : 0x160e45 (0x2524cc0 0xe000 0x0 0x1)
    0xb463f48 : 0x1a33a8 (0x2b8d894 0x40e000 0x0 0x3)
    0xb463fc8 : 0x19a804 (0x236d784 0x0 0x19d0b5 0x236d784) No mapping exists for frame pointer
    Backtrace terminated-invalid frame pointer 0xbffff0d8
    Kernel version:
    Darwin Kernel Version 8.8.1: Mon Sep 25 19:42:00 PDT 2006; root:xnu-792.13.8.obj~1/RELEASE_I386
    Sun Oct 29 04:33:15 2006
    panic(cpu 1 caller 0x001A3135): Unresolved kernel trap (CPU 1, Type 14=page fault), registers:
    CR0: 0x8001003b, CR2: 0x00000000, CR3: 0x00b6c000, CR4: 0x000006e0
    EAX: 0x00000000, EBX: 0x023e1de0, ECX: 0x00000001, EDX: 0x00000000
    CR2: 0x00000000, EBP: 0x0b59b5c8, ESI: 0x01b7da04, EDI: 0x00000008
    EFL: 0x00010246, EIP: 0x001c25f9, CS: 0x00000004, DS: 0x0b59000c
    Backtrace, Format - Frame : Return Address (4 potential args on stack)
    0xb59b418 : 0x128d1f (0x3c9540 0xb59b43c 0x131df4 0x0)
    0xb59b458 : 0x1a3135 (0x3cf1f4 0x1 0xe 0x3cea24)
    0xb59b568 : 0x19a8d4 (0xb59b578 0x0 0xe 0x1a0048)
    0xb59b5c8 : 0x1c3686 (0x1cc7380 0x8 0x200 0x23e2000)
    0xb59b5e8 : 0x1d0314 (0x23e2000 0x43f45c 0xb59b658 0x1416a6)
    0xb59b648 : 0x1d0584 (0x4f03 0x4f04 0x1b12488 0x68)
    0xb59b698 : 0x1d1f21 (0x1 0x43f340 0x20bef60 0x2d67880)
    0xb59b6f8 : 0x372436f2 (0x0 0x34 0xb59b720 0xb59b754)
    0xb59b778 : 0x37242756 (0x1d1a900 0x3cf 0x2c2d840 0xb59bef0)
    0xb59ba68 : 0x37245655 (0x2384900 0x2c2d840 0xb59bef0 0x24669c4)
    0xb59bad8 : 0x1e2df1 (0xb59baf8 0xb59bb0c 0xb59bf18 0x0)
    0xb59bb28 : 0x1cab0b (0x2c2d840 0xb59bddc 0xb59bef0 0xb59bf18)
    0xb59bb98 : 0x1cb331 (0xb59bdc4 0x100 0xb59bde4 0x0)
    0xb59bc48 : 0x1d7040 (0xb59bdc4 0x0 0x0 0x0)
    0xb59bd78 : 0x1d74a1 (0x127d08c 0x0 0x0 0x0)
    0xb59bf38 : 0x1d7536 (0x127d08c 0x0 0x0 0x0) Backtrace continues...
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.filesystems.ntfs(1.2)@0x3723f000
    Kernel version:
    Darwin Kernel Version 8.8.1: Mon Sep 25 19:42:00 PDT 2006; root:xnu-792.13.8.obj~1/RELEASE_I386
    My macbook is really new, serial number is not included in those macbook with the famous problem of "random shutdown"... but i have always been a pc user... dont know about kernel or how to solve the problem... ¿maybe reinstall? ¿is this usual? i have 2 dvds that came with macbook, (Mac Os tiger installers)... ¿is possible to repair it without losing configuration, installed programs...?
    what should i do?
    Thankssss
    Macbook 2ghz 13,3''   Mac OS X (10.4.8)  
    Macbook 2ghz 13,3''   Mac OS X (10.4.8)  

    Hi splatino
    This is the infamous Kernel Panic. The common wisdom is that they are usually the result of hardware problems and so it's worth reseating the RAM. You can find out more on Dr Smoke's page here:
    http://www.thexlab.com/faqs/kernelpanics.html
    However, some years ago I had a recurrent KP on an iBook which I eventually resolved by clearing out the OS X cache files using Panther (now Tiger!) Cache Cleaner. Download an evaluation version of TCC from here:
    http://www.northernsoftworks.com/
    If the KP is associated with just one program, I would also try finding its preferences file (look in /Library/Preferences) and dragging it to the trash. For safari, I'd also also execute Empty Cache and Reset Safari
    Good luck
    Bob

  • Trying to register the VirtualBox kernel modules using DKMS [FAILED]

    Hi,
    I am getting the following error while installing Oracle VirtualBox on OEL 5.2, 64-bit.
    I am able to see Virtual Machine Wizard from "Applications > System Tools > Oracle VM VirtualBox". Can I go ahead and do 11gR2 RAC installation using Oracle VirtualBox ???
    If I need to install DKMS kernel modules please let me know how to do that.
    ====================================================================================
    [root@linux2 OracleVM]# rpm -Uvh VirtualBox-4.1-4.1.18_78361_rhel5-1.x86_64.rpm
    warning: VirtualBox-4.1-4.1.18_78361_rhel5-1.x86_64.rpm: Header V4 DSA signature: NOKEY, key ID 98ab5139
    Preparing... ########################################### [100%]
    1:VirtualBox-4.1 ########################################### [100%]
    Creating group 'vboxusers'. VM users must be member of that group!
    No precompiled module for this kernel found -- trying to build one. Messages
    emitted during module compilation will be logged to /var/log/vbox-install.log.
    Stopping VirtualBox kernel modules [ OK ]
    Uninstalling old VirtualBox DKMS kernel modules [ OK ]
    Trying to register the VirtualBox kernel modules using DKMS [FAILED]
    (Failed, trying without DKMS)
    Recompiling VirtualBox kernel modules [ OK ]
    Starting VirtualBox kernel modules [ OK ]
    ====================================================================================
    Thanks.
    -Joy.

    And this relates to RAC, ASM, and Clusterware installation in what way?
    Please lock this thread and open one in the appropriate forum. Thanks.

  • Recent kernel problem with VT? (system freezes) (KVM, VirtualBox)

    My system freezes when I try to use KVM (or VirtualBox with Intel VT enabled)
    It also crashes on with Fedora 11 beta, so maybe this is 2.6.29-related.
    (I can use full virtualization with OpenSUSE 11.1, Xen)
    Anyone an idea? Which bugtracker should I use for something like this....
    Some specs:
    / uses ext4
    Core 2 Duo 8500
    Intel VT is enabled in BIOS
    Interesting links:
    http://bbs.archlinux.org/viewtopic.php?id=70688
    Last edited by PieterB (2009-04-23 11:18:40)

    I get the exact same thing
    VirtualBox with VT-X
    or modprobe kvm-intel
    Crashing my whole pc.
    Vmware runs fine.
    I havent tested anything else..
    and yeah the recent kernel started the issue.

  • [Solved]Virtualbox kernel module not loaded

    I update my system today and when I try to run Virtualbox...
    WARNING: The vboxdrv kernel module is not loaded. Either there is no module
    available for the current kernel (3.6.11-1-ARCH) or it failed to
    load. Please reinstall the kernel module virtualbox-host-modules or
    if you don't use our stock kernel compile the modules with
    sudo dkms autoinstall
    You will not be able to start VMs until this problem is fixed.
    I already had this trouble before and this was the fix
    # modprobe vboxdrv
    But it doesn't work anymore
    Any ideas?
    Edit: This just get fixed by itself when restaring my PC. Sorry
    Last edited by ilq (2013-02-13 02:32:43)

    fsckd wrote:
    rc.conf is part of the deprecated init system. icebox is not using systemd and neglected to mention that.
    Amarildo, see the wiki.
    Thanks, it really helped. It's solved.

  • [Solved] After upgrading system/VIrtualbox kernels won't load

    After running an update on my system and trying to use Virtualbox I recieve this:
    ============================================================
    WARNING: The vboxdrv kernel module is not loaded. Either there is no module
             available for the current kernel (3.16.4-1-ARCH) or it failed to
             load. Please reinstall the kernel module virtualbox-host-modules or
             if you don't use our stock kernel compile the modules with
               sudo dkms autoinstall
             You will not be able to start VMs until this problem is fixed.
    VBoxHeadless: Error -1908 in suplibOsInit!
    VBoxHeadless: Kernel driver not installed
    VBoxHeadless: Tip! Make sure the kernel module is loaded. It may also help to reinstall VirtualBox.
    ============================================================
    I have tried to reinstall virtualbox and the kernels, I've manually reloaded my kernel modules, and I still have no luck.
    Does anyone have any ideas?
    Last edited by cynicalpsycho (2014-10-25 20:19:22)

    Solution: Reboot system....  *Facepalm*

  • Virtualbox vboxdrv problem

    Hello,
    I didn't use Virtualbox for quite some time and when I try to start a VM I got the :
    Failed to open a session for the virtual machine Ubuntu.
    Failed to open/create the internal network 'HostInterfaceNetworking-eth0' (VERR_SUPDRV_COMPONENT_NOT_FOUND).
    Failed to attach the network LUN (VERR_SUPDRV_COMPONENT_NOT_FOUND).
    One of the kernel modules was not successfully loaded. Make sure that no kernel modules from an older version of VirtualBox exist. Then try to recompile and reload the kernel modules by executing '/etc/init.d/vboxdrv setup' as root (VERR_SUPDRV_COMPONENT_NOT_FOUND).
    Well since the kernel version changed to 3.X I did a vboxbuild to rebuild the kernel module. Then I reload the module with a modprobe vboxdrv. But I still have the same error ( even after rebooting ).
    My problem is that I have no vboxdrv in /etc/rc.d therefore I can't do the vboxdrv setup as asked. Even after reinstalling Virtualbox with pacman still no vboxdrv in sight. Anyone knows why ?
    Thanks in advance,
    Nolhian

    Thanks this works
    Just read the wiki page again and saw "vboxdrv and vboxnetflt should be in the MODULES=() section of your /etc/rc.conf ", missed it earlier. Is this new ? Worked fine a few months ago just with the vboxdrv module alone. Should i add vboxnetadp too ?
    Last edited by Nolhian (2011-10-31 21:55:03)

  • Carl9170 driver causes kernel problem

    I am an arch linux newb, just switched from ubuntu. However I do know just enough about linux to screw stuff up.
    So, I have a SMCWUSB-N2 (USB atheros wireless N). Don't remember the exact chipset, but I do know the carl9170 driver supports it. The default arch version of carl9170 worked, but with horrible speed and frequent disconnects. So I downloaded the latest compat-wireless, built, and installed it. Now when I plug in the adapter the light on it stays solid (normally blinks with activity) and nothing else happens. Dmesg prints the following when I plug it in:
    [ 49.333357] usb 1-5: new high speed USB device using ehci_hcd and address 7
    [ 49.640199] cfg80211: Calling CRDA to update world regulatory domain
    [ 49.780031] usb 1-5: reset high speed USB device using ehci_hcd and address 7
    [ 49.943426] usbcore: registered new interface driver carl9170
    [ 49.948631] usb 1-5: driver API: 1.9.0 2010-10-29 [1-1]
    [ 49.948638] usb 1-5: firmware API: 1.9.2 2010-12-25
    [ 50.283047] ath: EEPROM regdomain: 0x809c
    [ 50.283052] ath: EEPROM indicates we should expect a country code
    [ 50.283055] ath: doing EEPROM country->regdmn map search
    [ 50.283057] ath: country maps to regdmn code: 0x52
    [ 50.283059] ath: Country alpha2 being used: CN
    [ 50.283061] ath: Regpair used: 0x52
    [ 50.283064] ------------[ cut here ]------------
    [ 50.283077] WARNING: at /home/<USER>/wireless/compat-wireless-2011-05-16/net/wireless/reg.c:1222 wiphy_apply_custom_regulatory+0x182/0x190 [cfg80211]()
    [ 50.283080] Hardware name: EG194AA-ABA A1250N
    [ 50.283082] Modules linked in: carl9170 mac80211 ath cfg80211 fuse ipv6 ext3 jbd usb_storage uas usbhid hid btusb bluetooth rfkill s5h1409 cx88_dvb cx88_vp3054_i2c videobuf_dvb dvb_core rc_pinnacle_pctv_hd xc5000 snd_seq_dummy ir_lirc_codec lirc_dev snd_seq_oss snd_seq_midi_event snd_seq snd_seq_device tuner ir_sony_decoder ir_jvc_decoder ir_rc6_decoder radeon ir_rc5_decoder snd_pcm_oss snd_mixer_oss cx8800 cx8802 cx88_alsa ir_nec_decoder cx88xx rc_core ttm tveeprom v4l2_common snd_atiixp drm_kms_helper ppdev videodev snd_ac97_codec v4l2_compat_ioctl32 btcx_risc ac97_bus 8139cp ohci_hcd videobuf_dma_sg videobuf_core drm snd_pcm i2c_algo_bit firewire_ohci evdev ehci_hcd snd_timer snd parport_pc sg i2c_piix4 firewire_core crc_itu_t 8139too soundcore snd_page_alloc usbcore psmouse lp processor mii button parport edac_core edac_mce_amd i2c_core k8temp pcspkr serio_raw ext4 mbcache jbd2 crc16 sd_mod sr_mod cdrom pata_acpi pata_atiixp sata_sil libata scsi_mod
    [ 50.283156] Pid: 3473, comm: firmware/carl91 Not tainted 2.6.38-ARCH #1
    [ 50.283158] Call Trace:
    [ 50.283167] [<ffffffff81058caa>] ? warn_slowpath_common+0x7a/0xb0
    [ 50.283170] [<ffffffff81058cf5>] ? warn_slowpath_null+0x15/0x20
    [ 50.283176] [<ffffffffa089cfe2>] ? wiphy_apply_custom_regulatory+0x182/0x190 [cfg80211]
    [ 50.283182] [<ffffffffa091a050>] ? carl9170_reg_notifier+0x0/0x40 [carl9170]
    [ 50.283187] [<ffffffffa08cd776>] ? ath_regd_init+0x346/0x430 [ath]
    [ 50.283192] [<ffffffffa091cbea>] ? carl9170_register+0x1ea/0x4b0 [carl9170]
    [ 50.283197] [<ffffffff812c35e0>] ? request_firmware_work_func+0x0/0x80
    [ 50.283201] [<ffffffffa091e7e0>] ? carl9170_usb_firmware_step2+0x60/0xd0 [carl9170]
    [ 50.283205] [<ffffffff812c3622>] ? request_firmware_work_func+0x42/0x80
    [ 50.283210] [<ffffffff81079a47>] ? kthread+0x87/0x90
    [ 50.283214] [<ffffffff8100bc24>] ? kernel_thread_helper+0x4/0x10
    [ 50.283218] [<ffffffff810799c0>] ? kthread+0x0/0x90
    [ 50.283221] [<ffffffff8100bc20>] ? kernel_thread_helper+0x0/0x10
    [ 50.283224] ---[ end trace 7d16e3a764ee0f8f ]---
    [ 50.283228] ------------[ cut here ]------------
    [ 50.283234] WARNING: at /home/<USER>/wireless/compat-wireless-2011-05-16/net/wireless/core.c:492 wiphy_register+0x31c/0x380 [cfg80211]()
    [ 50.283237] Hardware name: EG194AA-ABA A1250N
    [ 50.283238] Modules linked in: carl9170 mac80211 ath cfg80211 fuse ipv6 ext3 jbd usb_storage uas usbhid hid btusb bluetooth rfkill s5h1409 cx88_dvb cx88_vp3054_i2c videobuf_dvb dvb_core rc_pinnacle_pctv_hd xc5000 snd_seq_dummy ir_lirc_codec lirc_dev snd_seq_oss snd_seq_midi_event snd_seq snd_seq_device tuner ir_sony_decoder ir_jvc_decoder ir_rc6_decoder radeon ir_rc5_decoder snd_pcm_oss snd_mixer_oss cx8800 cx8802 cx88_alsa ir_nec_decoder cx88xx rc_core ttm tveeprom v4l2_common snd_atiixp drm_kms_helper ppdev videodev snd_ac97_codec v4l2_compat_ioctl32 btcx_risc ac97_bus 8139cp ohci_hcd videobuf_dma_sg videobuf_core drm snd_pcm i2c_algo_bit firewire_ohci evdev ehci_hcd snd_timer snd parport_pc sg i2c_piix4 firewire_core crc_itu_t 8139too soundcore snd_page_alloc usbcore psmouse lp processor mii button parport edac_core edac_mce_amd i2c_core k8temp pcspkr serio_raw ext4 mbcache jbd2 crc16 sd_mod sr_mod cdrom pata_acpi pata_atiixp sata_sil libata scsi_mod
    [ 50.283294] Pid: 3473, comm: firmware/carl91 Tainted: G W 2.6.38-ARCH #1
    [ 50.283296] Call Trace:
    [ 50.283299] [<ffffffff81058caa>] ? warn_slowpath_common+0x7a/0xb0
    [ 50.283302] [<ffffffff81058cf5>] ? warn_slowpath_null+0x15/0x20
    [ 50.283307] [<ffffffffa0899c2c>] ? wiphy_register+0x31c/0x380 [cfg80211]
    [ 50.283318] [<ffffffffa08d6238>] ? ieee80211_register_hw+0xa8/0x5d0 [mac80211]
    [ 50.283324] [<ffffffffa08d6353>] ? ieee80211_register_hw+0x1c3/0x5d0 [mac80211]
    [ 50.283329] [<ffffffffa091cc41>] ? carl9170_register+0x241/0x4b0 [carl9170]
    [ 50.283355] [<ffffffff812c35e0>] ? request_firmware_work_func+0x0/0x80
    [ 50.283359] [<ffffffffa091e7e0>] ? carl9170_usb_firmware_step2+0x60/0xd0 [carl9170]
    [ 50.283363] [<ffffffff812c3622>] ? request_firmware_work_func+0x42/0x80
    [ 50.283367] [<ffffffff81079a47>] ? kthread+0x87/0x90
    [ 50.283370] [<ffffffff8100bc24>] ? kernel_thread_helper+0x4/0x10
    [ 50.283374] [<ffffffff810799c0>] ? kthread+0x0/0x90
    [ 50.283377] [<ffffffff8100bc20>] ? kernel_thread_helper+0x0/0x10
    [ 50.283379] ---[ end trace 7d16e3a764ee0f90 ]---
    I blacklisted the ar9170usb driver as the wiki suggests, yet I still have problems. Is this a kernel bug that I should report, or am I doing something wrong?
    Thanks!

    Have you installed the firmware? You can download it from here (http://linuxwireless.org/en/users/Drivers/carl9170) and put it in /lib/firmware.

  • Spontaneous shut down and possible kernel problems?

    Hi,
    So I was using my macbook pro today (running OSX 10.8.2, bought spring 2010) and the screen froze. The screen image changed- it looked like someone ran thier fingers through a wet painting. I force restarted the computer with the power button and about 10 minutes later the computer shut down on it's own with no warning (I was typing and the screen went black.) I attempted to start the computer again by pressing the power button. The computer eventually turned on when I held the power button down. A black grey screen appeared and the computer made a plusing, low toned beeping noise. Since I was in a class, I was not able to determine the frequencey of the beeps (just trying to get it to turn off). I held down the power button and it eventually stopped after about 3 minutes.
    I was able to turn on my computer after class and it has been running fine (if a bit slow) for the past hour. I checked the console log and the report for the restart and both cite "kernel panics" (i.e.
    Kernel stack memory corruption detected"@/SourceCache/xnu/xnu-2050.18.24/libkern/stack_protector.c:37).
    I've been reading about kernel panics on the support community but I'm not sure what to do next to solve this issue. I had similar problems at the exact same time last week with the screen and shutting off but I attributed the forced shut down to low battery (the computer just turned off and then ran slowly for the rest of the day once I got it plugged in).
    Thanks!

    Try a safe boot, hold the shift key and power up, this will take a little loner than normal, hold the shift till you see the progress bar. See if it works normal, if it does than it is more than likely some 3rd party software.Then restart normal and check your console for panics. That would be your isssue.  You can also start holding command R and restoring from utililities.  Back up before you do anything.

  • MSI NGTX 570 TF III OC Kernel problem

    Hi,
    Since last month my display driver nvidia windows kernel mode driver, version 335.23 stopped responding and has successfully recovered.
    Sometimes i can play games like bf3 or bf4, war thunder, etc.. but sometimes i cant play it keep freezing and bsod or reboot and some artfacts on the screen.
    I'm getting crazy with this, searched online for answers but no luck at the moment, hope someone can help, thanks..
    Best Regards

    Ive downloaded the driver 306.23 whql from guru3d and all working fine now  ill keep testing..  if this is a software/driver issue nvidia and their partners should sort it out immediately, theres a lot of users with the same problem and probably the same cause and fix. A lot of driver versions and model versions but all regardless to the 3xx.xx software versions i will try to help n figure if it is a driver version issue.
    thank you for your support best regards!

Maybe you are looking for

  • SRM replenishment collaboration with Supplier consigment Material.

    Hi . Srm community. I have need to implement the funcionallity the supplier can see the stock of material in consigment. the srm standar have that functionallity or is neccesary make developments to meet .  thanks a lot .

  • What is the best process for conversion moving district data to city data?

    Hi ALL, I Need to write one conversion which will move the district field data into city field data in infotype 6.. It need to apply for only one  Specific country which can be identified by Employee Personnel Area..and it should be apply for all act

  • Sales Order with different sold to party & ship to party

    Hi experts, We have one sold to party customer code DE0009 .  There is no other ship to party code assigned with this customer in the masters. but still user can make Sales order with Sold to party DE0009 & another ship to  party code ( DN0020 ) whic

  • Win 8.1 64 bit and javascript problems.

    I have purchased some internet shop software and it works fine on Chrome and Firefox. On IE11 if I input a user name and password on pressing return it just clears out the username. Also if I click on add an item to the basket the basket screen opens

  • Still no flash player?

    I´ve searched around for an app that will allow my iPhone to play flash movies, but im pretty new at this so I thought, "Why not ask you guys". So, Is there any app that will play flash movies? Will they add it to the new firmware? When is that comin