[SOLVED] Missing Kernel Headers for Catalyst

Hello Everyone,
I am a new Arch guy! I am from the ubuntu world.  Love the new arch install, I have installed my own DE.
I use a Radeon HD 68xx so I need the catalyst drivers.
I have tried installing them via: sudo pacman -S catalyst-dkms catalyst-utils    (per the wiki)
It gets to the end and gives me this message:
DKMS: add completed.
Error! echo
Your kernel headers for kernel 3.6.2-1-ARCH cannot be found at
/usr/lib/modules/3.6.2-1-ARCH/build or /usr/lib/modules/3.6.2-1-ARCH/source.
error: command failed to execute correctly
Can anybody assist on how I get the kernel headers?  As far as I understood, they should be included in Arch.
Last edited by luis84 (2012-10-19 03:08:17)

drewofdoom wrote:
do this:
sudo pacman -Sy linux-headers
Don't use 'pacman -Sy foo' - it may lead to breakage https://bbs.archlinux.org/viewtopic.php?id=89328

Similar Messages

  • Kernel-headers for 2.6.26....

    All I see are kernel-headers for 2.6.25. I think some modules don't build due to this.

    read that: http://bbs.archlinux.org/viewtopic.php?id=49105

  • [solved] building the kernel headers for custom kernels

    well, ive been building several different kernels for my laptop, so that i can test stuff. but ive got a problem with the kernel headers.
    ive mirrored the arch kernel's PKGBUILD and modified some naming to get a custom kernel. but when i try to build a custmo module, it complains the headers are broken. (example, vbox_build_module).
    im pasting the pkgbuild here for future reference...if someone sees something thats plain wrong, please say so.
    thanks
    # $Id: PKGBUILD 60382 2009-12-04 15:31:11Z tpowa $
    # Maintainer: Tobias Powalowski <[email protected]>
    # Maintainer: Thomas Baechler <[email protected]>
    pkgbase="kernel26"
    #pkgname=('kernel26' 'kernel26-firmware' 'kernel26-headers') # Build stock -ARCH kernel
    pkgname=('kernel26-git' 'kernel26-git-headers') # Build kernel with a different name
    _kernelname=${pkgname#kernel26}
    pkgver=2.6.34
    pkgrel=1
    _patchname=""
    _branch="linux-2.6"
    _gittag="v2.6.34-rc3"
    #_gittag="origin"
    arch=(i686 x86_64)
    license=('GPL2')
    groups=('base')
    url="http://www.kernel.org"
    source=(config
    # standard config files for mkinitcpio ramdisk
    kernel26.preset
    ${_patchname})
    build() {
    cd ${srcdir}/$_branch
    msg "Fetching branch ${_branch}"
    ## FOR BISECT, Comment these lines
    git reset --hard
    git clean -d -f
    git fetch
    msg "Cheking out tag ${_gittag}"
    git checkout $_gittag
    ### a patch
    if [ "${_patchname}" != "" ]; then
    patch -Np1 -i ${srcdir}/$_patchname || return 1
    fi
    # if [ "$CARCH" = "x86_64" ]; then
    cat ../config.x86_64 >./.config
    # else
    cat ../config >./.config
    # fi
    if [ "${_kernelname}" != "" ]; then
    sed -i "s|CONFIG_LOCALVERSION=.*|CONFIG_LOCALVERSION=\"${_kernelname}\"|g" ./.config
    fi
    # get kernel version
    make prepare
    # load configuration
    # Configure the kernel. Replace the line below with one of your choice.
    make menuconfig # CLI menu for configuration
    #make xconfig # X-based configuration
    #make oldconfig # using old config from previous kernel version
    # ... or manually edit .config
    # stop here
    # this is useful to configure the kernel
    #msg "Stopping build"
    #return 1
    yes "" | make config
    # build!
    make bzImage modules || return 1
    package_kernel26-git() {
    pkgdesc="The Linux Kernel and modules"
    backup=(etc/mkinitcpio.d/${pkgname}.preset)
    depends=('coreutils' 'kernel26-firmware>=2.6.32' 'module-init-tools' 'mkinitcpio>=0.5.20')
    # pwc, ieee80211 and hostap-driver26 modules are included in kernel26 now
    # nforce package support was abandoned by nvidia, kernel modules should cover everything now.
    # kernel24 support is dropped since glibc24
    replaces=('kernel24' 'kernel24-scsi' 'kernel26-scsi'
    'alsa-driver' 'ieee80211' 'hostap-driver26'
    'pwc' 'nforce' 'squashfs' 'unionfs' 'ivtv'
    'zd1211' 'kvm-modules' 'iwlwifi' 'rt2x00-cvs'
    'gspcav1' 'atl2' 'wlan-ng26' 'rt2500')
    install=kernel26.install
    optdepends=('crda: to set the correct wireless channels of your country')
    KARCH=x86
    cd ${srcdir}/$_branch
    _kernver="$(make kernelrelease)"
    mkdir -p ${pkgdir}/{lib/modules,boot}
    make INSTALL_MOD_PATH=${pkgdir} modules_install || return 1
    cp System.map ${pkgdir}/boot/System.map26${_kernelname}
    cp arch/$KARCH/boot/bzImage ${pkgdir}/boot/vmlinuz26${_kernelname}
    # # add vmlinux
    install -m644 -D vmlinux ${pkgdir}/usr/src/linux-${_kernver}/vmlinux
    # install fallback mkinitcpio.conf file and preset file for kernel
    install -m644 -D ${srcdir}/kernel26.preset ${pkgdir}/etc/mkinitcpio.d/${pkgname}.preset || return 1
    # set correct depmod command for install
    sed \
    -e "s/KERNEL_NAME=.*/KERNEL_NAME=${_kernelname}/g" \
    -e "s/KERNEL_VERSION=.*/KERNEL_VERSION=${_kernver}/g" \
    -i $startdir/kernel26.install
    sed \
    -e "s|source .*|source /etc/mkinitcpio.d/kernel26${_kernelname}.kver|g" \
    -e "s|default_image=.*|default_image=\"/boot/${pkgname}.img\"|g" \
    -e "s|fallback_image=.*|fallback_image=\"/boot/${pkgname}-fallback.img\"|g" \
    -i ${pkgdir}/etc/mkinitcpio.d/${pkgname}.preset
    echo -e "# DO NOT EDIT THIS FILE\nALL_kver='${_kernver}'" > ${pkgdir}/etc/mkinitcpio.d/${pkgname}.kver
    # remove build and source links
    rm -f ${pkgdir}/lib/modules/${_kernver}/{source,build}
    # remove the firmware
    rm -rf ${pkgdir}/lib/firmware
    package_kernel26-git-headers() {
    pkgdesc="Header files and scripts for building modules for kernel26"
    mkdir -p ${pkgdir}/lib/modules/${_kernver}
    cd ${pkgdir}/lib/modules/${_kernver}
    ln -sf ../../../usr/src/linux-${_kernver} build
    cd ${srcdir}/$_branch
    install -D -m644 Makefile \
    ${pkgdir}/usr/src/linux-${_kernver}/Makefile
    install -D -m644 kernel/Makefile \
    ${pkgdir}/usr/src/linux-${_kernver}/kernel/Makefile
    install -D -m644 .config \
    ${pkgdir}/usr/src/linux-${_kernver}/.config
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/include
    for i in acpi asm-{generic,x86} config linux math-emu media net pcmcia scsi sound trace video; do
    cp -a include/$i ${pkgdir}/usr/src/linux-${_kernver}/include/
    done
    # copy arch includes for external modules
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/arch/x86
    cp -a arch/x86/include ${pkgdir}/usr/src/linux-${_kernver}/arch/x86/
    # copy files necessary for later builds, like nvidia and vmware
    cp Module.symvers ${pkgdir}/usr/src/linux-${_kernver}
    cp -a scripts ${pkgdir}/usr/src/linux-${_kernver}
    # fix permissions on scripts dir
    chmod og-w -R ${pkgdir}/usr/src/linux-${_kernver}/scripts
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/.tmp_versions
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/arch/$KARCH/kernel
    cp arch/$KARCH/Makefile ${pkgdir}/usr/src/linux-${_kernver}/arch/$KARCH/
    if [ "$CARCH" = "i686" ]; then
    cp arch/$KARCH/Makefile_32.cpu ${pkgdir}/usr/src/linux-${_kernver}/arch/$KARCH/
    fi
    cp arch/$KARCH/kernel/asm-offsets.s ${pkgdir}/usr/src/linux-${_kernver}/arch/$KARCH/kernel/
    # add headers for lirc package
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/video
    cp drivers/media/video/*.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/video/
    for i in bt8xx cpia2 cx25840 cx88 em28xx et61x251 pwc saa7134 sn9c102 usbvideo zc0301; do
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/video/$i
    cp -a drivers/media/video/$i/*.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/video/$i
    done
    # add docbook makefile
    install -D -m644 Documentation/DocBook/Makefile \
    ${pkgdir}/usr/src/linux-${_kernver}/Documentation/DocBook/Makefile
    # add dm headers
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/drivers/md
    cp drivers/md/*.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/md
    # add inotify.h
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/include/linux
    cp include/linux/inotify.h ${pkgdir}/usr/src/linux-${_kernver}/include/linux/
    # add wireless headers
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/net/mac80211/
    cp net/mac80211/*.h ${pkgdir}/usr/src/linux-${_kernver}/net/mac80211/
    # add dvb headers for external modules
    # in reference to:
    # http://bugs.archlinux.org/task/9912
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/dvb-core
    cp drivers/media/dvb/dvb-core/*.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/dvb-core/
    # add dvb headers for external modules
    # in reference to:
    # http://bugs.archlinux.org/task/11194
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/include/config/dvb/
    cp include/config/dvb/*.h ${pkgdir}/usr/src/linux-${_kernver}/include/config/dvb/
    # add dvb headers for http://mcentral.de/hg/~mrec/em28xx-new
    # in reference to:
    # http://bugs.archlinux.org/task/13146
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/frontends/
    cp drivers/media/dvb/frontends/lgdt330x.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/frontends/
    cp drivers/media/video/msp3400-driver.h ${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb/frontends/
    # add xfs and shmem for aufs building
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/fs/xfs
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/mm
    cp fs/xfs/xfs_sb.h ${pkgdir}/usr/src/linux-${_kernver}/fs/xfs/xfs_sb.h
    # add headers vor virtualbox
    # in reference to:
    # http://bugs.archlinux.org/task/14568
    cp -a include/drm $pkgdir/usr/src/linux-${_kernver}/include/
    # add headers for broadcom wl
    # in reference to:
    # http://bugs.archlinux.org/task/14568
    cp -a include/trace $pkgdir/usr/src/linux-${_kernver}/include/
    # copy in Kconfig files
    for i in `find . -name "Kconfig*"`; do
    mkdir -p ${pkgdir}/usr/src/linux-${_kernver}/`echo $i | sed 's|/Kconfig.*||'`
    cp $i ${pkgdir}/usr/src/linux-${_kernver}/$i
    done
    cd ${pkgdir}/usr/src/linux-${_kernver}/include && ln -s asm-$KARCH asm
    # add header for aufs2-util
    cp -a ${srcdir}/$_branch/include/asm-generic/bitsperlong.h ${pkgdir}/usr/src/linux-${_kernver}/include/asm/
    chown -R root.root ${pkgdir}/usr/src/linux-${_kernver}
    find ${pkgdir}/usr/src/linux-${_kernver} -type d -exec chmod 755 {} \;
    # remove unneeded architectures
    rm -rf ${pkgdir}/usr/src/linux-${_kernver}/arch/{alpha,arm,arm26,avr32,blackfin,cris,frv,h8300,ia64,m32r,m68k,m68knommu,mips,microblaze,mn10300,parisc,powerpc,ppc,s390,sh,sh64,sparc,sparc64,um,v850,xtensa}
    package_kernel26-firmware() {
    pkgdesc="The included firmware files of the Linux Kernel"
    groups=('base')
    cd ${srcdir}/$_branch
    make firmware || return 1
    make INSTALL_MOD_PATH=${pkgdir} firmware_install || return 1
    Last edited by eldragon (2010-04-04 14:58:16)

    ngoonee wrote:
    Check out this line
    for i in acpi asm-{generic,x86} config linux math-emu media net pcmcia scsi sound trace video; do
    for anything that might be missing. The error message when compiling would give you more of a clue. Off-hand, you may need to add 'generated', as I recall I needed that when the kernel moved to 2.6.33.
    Problem with vbox_build_module after Kernel update.
    Would you care to elaborate for us less versed in "Linux Geek" skills?
    Thanks.......
    [root@Arch2009p2 jeff]# vbox_build_module
    Building vboxdrv for Linux 2.6.33-ARCH
    make[1]: Entering directory `/opt/VirtualBox/src/vboxdrv'
    for f in . linux r0drv r0drv/generic r0drv/linux VBox common/err common/string common/log generic math/gcc; \
    do rm -f $f/*.o $f/.*.cmd $f/.*.flags; done
    rm -rf .vboxdrv* .tmp_ver* vboxdrv.* Module.symvers Modules.symvers modules.order
    make[1]: Leaving directory `/opt/VirtualBox/src/vboxdrv'
    make[1]: Entering directory `/opt/VirtualBox/src/vboxnetflt'
    for f in . linux r0drv r0drv/linux VBox common/err common/string common/log generic math/gcc; \
    do rm -f $f/*.o $f/.*.cmd $f/.*.flags; done
    rm -rf .vboxnetflt* .tmp_ver* vboxnetflt.* Modules.symvers modules.order
    make[1]: Leaving directory `/opt/VirtualBox/src/vboxnetflt'
    make[1]: Entering directory `/opt/VirtualBox/src/vboxnetadp'
    for f in . linux r0drv r0drv/linux VBox common/err common/string common/log generic math/gcc; \
    do rm -f $f/*.o $f/.*.cmd $f/.*.flags; done
    rm -rf .vboxnetadp* .tmp_ver* vboxnetadp.* Modules.symvers modules.order
    make[1]: Leaving directory `/opt/VirtualBox/src/vboxnetadp'
    rm -f vboxdrv.ko vboxnetflt.ko vboxnetadp.ko
    *** Building 'vboxdrv' module ***
    make[1]: Entering directory `/opt/VirtualBox/src/vboxdrv'
    make KBUILD_VERBOSE= -C /lib/modules/2.6.33-ARCH/build SUBDIRS=/opt/VirtualBox/src/vboxdrv SRCROOT=/opt/VirtualBox/src/vboxdrv modules
    make[2]: Entering directory `/usr/src/linux-2.6.33-ARCH'
    CC [M] /opt/VirtualBox/src/vboxdrv/linux/SUPDrv-linux.o
    In file included from /opt/VirtualBox/src/vboxdrv/include/VBox/types.h:34,
    from /opt/VirtualBox/src/vboxdrv/linux/../SUPDrvInternal.h:39,
    from /opt/VirtualBox/src/vboxdrv/linux/SUPDrv-linux.c:37:
    /opt/VirtualBox/src/vboxdrv/include/iprt/types.h:100:30: error: linux/autoconf.h: No such file or directory
    make[3]: *** [/opt/VirtualBox/src/vboxdrv/linux/SUPDrv-linux.o] Error 1
    make[2]: *** [_module_/opt/VirtualBox/src/vboxdrv] Error 2
    make[2]: Leaving directory `/usr/src/linux-2.6.33-ARCH'
    make[1]: *** [vboxdrv] Error 2
    make[1]: Leaving directory `/opt/VirtualBox/src/vboxdrv'
    make: *** [all] Error 2

  • Kernel headers for 2.6.17

    Where do I find the kernel headers package for linux-2.6.17-ARCH, the new kernel? I searched the repos and only found headers for 2.6.12.

    Well, I'm trying to reinstall vmware after the big upgrade today. I have vmware 4.5.1. During the install, while running the vmware-install.pl script, when it asks for the directory of the C header files that match the currently running kernel, I enter: "/usr/src/linux-2.6.17-ARCH/include". Then I get this error message: "The kernel defined by this directory of header files does not have the same address space size as your running kernel." I've tried several of the directories under /usr/src/linux-2.6.17-ARCH, but none of them work. Any ideas?

  • [solved] missing latest backups for iPhone after getting replacement phone

    Thought I would share this one in case anyone else runs into it.
    My the speaker on my wife's iPhone 4 on Verizon had stopped working for phone calls for the second time and a restore didn't fix it, so she returned the phone and they gave her a new one at the store. We had made several backups over the last few days, the most recent was this morning.
    So tonight we hooked up the new phone to iTunes and got ready to restore it, but iTunes said the restore was last updated in FEBRUARY. What?! My wife freaked out thinking all her photos etc. were now lost for good.
    I held off on the restore and decided to do some checking around before doing anything. I found the folder where the restore files are, and sure enough I found files from today. I copied that folder just in case. I also checked in iTunes itself and the backups were listed. So what was up?!
    It finally occured to me that we had recently upgraded her phone to iOS 5, but that the new iPhone 4 from the store was probably still on iOS 4 -- maybe iTunes was not smart enough to see this situation and tell us about it, and maybe it won't listed iOS 5 backups for an iOS 4 phone.
    Well that turned out to be the case. But what to do to fix it? I figured if I could get iOS 5 onto the phone, we would be all set. But I didn't want to tell iTunes to label it as a new phone either -- I'm not sure if that would be permanent or what. So I took a leap of faith and held down the power button and home button simultaneously for a while, past the power off notification, until the phone prompted to be connected to iTunes to be restored.
    Then I plugged it back into the computer (this is Windows 7, by the way). Sure enough iTunes said it detected a phone in recovery mode, and would I like to have iTunes restore it to factory settings and put on the latest iOS? I sure would, so I did that and waited...
    After that was done, iTunes wanted me to active the phone with Verizon. We had already done that an hour earlier over the phone, but tried it anyway, and it failed. We ignored that failure and went into the phone in iTunes -- it now asked if it was a new phone or if we should restore it -- and the backup from this morning was listed. Phew!
    Finally completed the restore. I noticed that all of the passwords for all apps were lost -- unlike with a normal restore/backup on the same phone -- but everything else (pcitures, apps, etc.) was there. Thank goodness!
    So, if you have upgraded the iOS version and have to replace your phone and the nreplacement has an older iOS verison, then that may explain why your backups appear to be missing...

    Yes, I tried. But nothing is working. I am feeling bad as such a costly phone stop working in 1.4 year ?
    I am just sharing my experience.
    I am not ranting but yes angry as I am eligible for upgrade in Nov 2012 so don't want to pay $149 for replacement as I can upgrade to iPhone 5.
    Apple expert please help me how can I fix it. It's completely software issue.

  • [Solved] Missing App indicator for Shutter

    I just went through the process of installing all of the [AUR packages] for [Shutter]. I made it through that process fine, no errors all the dependencies are installed. For some reason when I start the application the App Indicator doesn't appear, instead I just get a matted gray square:
    I would expect the actual shutter icon to be there:
    The icon itself doesnt appear to be missing I can see it in /usr/share/pixmaps along with other icons that are appearing: Dropbox, Redshift, PIdgin, etc...
    Any thoughts
    Last edited by mcmillhj (2014-02-05 17:10:48)

    Not really sure what happened, after about 45 minutes the app indicator appeared. I can't recall any actions during that time period that would cause it to be fixed.

  • Missing Kernel Headers?

    Hi. New here, I hope this is the right place.
    I'm taking an OS programming class. The machines we have in the lab run Ubuntu, but I'm working on Arch at home since it's what I have.
    I'm getting make errors for procfs calls, and upon further investigation, it seems the asm/uaccess.h header file is missing from the include folder. This code worked on Ubuntu last I checked. Did I miss anything?

    @601210, you should install the pkgfile package.  This will enable you to simply do pkgfile uaccess.h to find which package(s) that file might belong to.
    Recently too, I discovered that the pkgfile package is shipped with bash and zsh compatible functions that will tell you where to find a given command if you get a "Command not found" error.  So I just put the following in my zshrc:
    source /usr/share/doc/pkgfile/command-not-found.zsh
    So now when I issue a command for something I don't have I get:
    % thunderbird
    thunderbird may be found in the following packages:
    extra/thunderbird 17.0.7-1 /usr/bin/thunderbird
    Neat, eh?

  • [Solved] Missing Kernel header? 3.9.5.1-ARCH

    Every time I try to compile something from AUR, I get an error of this form:
    make -C pommed OFLIB=
    make[1]: Entering directory `/home/jamie/pommed-1.39/pommed'
    gcc -g -O2 -Wall -I/usr/include/dbus-1.0 -I/usr/lib/dbus-1.0/include -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/alsa -DNO_SYS_INOTIFY_H -DNO_SYS_TIMERFD_H -c -o evloop.o evloop.c
    In file included from /usr/include/stdio.h:27:0,
    from evloop.c:20:
    /usr/include/features.h:375:25: fatal error: sys/cdefs.h: No such file or directory
    # include <sys/cdefs.h>
    ^
    compilation terminated.
    make[1]: *** [evloop.o] Error 1
    make[1]: Leaving directory `/home/jamie/pommed-1.39/pommed'
    make: *** [pommed] Error 2
    inside /usr/include/sys I only have:
    /usr/include/sys:
    acl.h
    Should cdefs.h be there? I tried reinstalling linux-headers, with the same result.
    Last edited by jameh0 (2013-06-14 23:28:56)

    % pkgfile /usr/include/sys/cdefs.h
    core/glibc
    Try reinstalling it.

  • [SOLVED] Missing package () function for PyTyle2

    Hi, I was trying to install this tarball from the AUR: https://aur.archlinux.org/packages.php?ID=42541
    But it prompts the following error:
    ==> ERROR: Missing package() function in /home/kolt/AUR/pytyle2-hg/PKGBUILD
    I've read the PKGBUILD and have no idea why this is happening. I already installed the dependencies needed.
    Any clue?
    Last edited by Kolt Penny (2015-02-06 08:31:45)

    Kolt Penny wrote:I've read the PKGBUILD and have no idea why this is happening. I already installed the dependencies needed.
    Read the pacman output, it refers to the package() function and makepkg doesn't find it in the PKGBUILD as said. Ask the maintainer to update or orphan it, if he doesn't respond file an AUR request.

  • (Solved) Missing .xinitrc (sorry for a newb thing)

    so I made the move from Ubuntu to Arch.  Happy so far and am going to just do a minimal install and use openbox stand alone.  I have openbox installed but on the wiki it says to append "exec openbox-session" to ~/.xinitrc which I can't seem to find.  Sorry if this is a stupid question, but you can't learn if you don't ask and I couldn't find anything in the search.
    Last edited by FlyingHappy (2011-12-24 06:23:11)

    The wiki page on xinitrc will answer your questions...

  • [SOLVED] kernel-headers & VirtualBox. Still same problems! (

    Hi guys, i'm new to this forum, but i didn't found an answer anywhere! I'm trying to install VirtualBox 4.2.10 from terminal on my x86 Oracle Linux.
    Half year ago, when i tried first, i couldn't resolv the problem and still the same problem today - NO KERNEL HEADERS for ORACLE Linux in REPO! What did wrong after update? I can found headers only for RHEL original kernel, but i don't want to use 2.6.32 kernel version.
    Can someone help me and describe true and complete installation VirtualBox for Oracle Linux??? Thanks ahead!
    Edited by: 996048 on 25.03.2013 13:26
    Edited by: 996048 on 25.03.2013 13:30

    996048 wrote:
    Hi guys, i'm new to this forum, but i didn't found an answer anywhere! I'm trying to install VirtualBox 2.4.10 from terminal on my x86 Oracle Linux.
    Half year ago, when i tried first, i couldn't resolv the problem and still the same problem today - NO KERNEL HEADERS for ORACLE Linux in REPO! What did wrong after update? I can found headers only for RHEL original kernel, but i don't want to use 2.6.32 kernel version.
    Can someone help me and describe true and complete installation VirtualBox for Oracle Linux??? Thanks ahead!In spite of Rukbat's response, I don't see that we are dealing with a vbox issue .... yet.
    We can't know what you did wrong until you know what you did.
    Exactly What command did you issue? *Exactly what response did you get?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • [SOLVED] RT Kernel & Nvidia Drivers

    I apologize in advance if this questions has already been answered in the forums.  I did search them and read through a lot of posts but couldn't find exactly what I'm looking for.
    Today is my second day with the outstanding Arch Linux.  I was able to get it installed and setup with no problems whatsoever.  Today I'm having a little problem.  I have the kernel package "kernel26-2.6.30.6-1-x86_64.pkg.tar.gz" installed along with the "kernel-headers-2.6.30.5-1-x86_64.pkg.tar.gz" package.  I installed the "nvidia-185.18.36-1-x86_64.pkg.tar.gz" package and all is well on the desktop (have OpenGL and everything.  I need a RT kernel for Jack & Ardour audio recording.  I have installed (kernel26rt-2.6.29.5_rt23-1-x86_64.pkg.tar.gz, not sure which repo I got that from but I installed it with "pacman").  When I boot that kernel I get some error about not being able to load the nvidia module.  I expected that as that's what always happens in other distros.  Usually in them I can install the kernel-headers for the RT kernel, reboot and it works then.  I can't find the headers for the RT kernel I installed and I'm not sure if it would help if I did.
    I guess my question is this: is there a simple ("pacman -S some-rt-kernel" & "pacman -S some-nvidia-rt-something") I can do that I don't know about or am I going to have to get my hands all dirty with ABS and/or AUR and source installing?
    I installed the base system, X, a full Gnome desktop with every bell & whistle you can think of with the greatest of ease with "pacman".  I just find it hard to believe I can get a RT kernel and Nvidia drivers working the same way.
    Anyway, thanks for any help.
    Zaephen.
    Edit:
    I thought I should mention, I just went to "http://repos.archaudio.org/testing/i686/" (the place I think I got my RT kernel, just the x86_64 page) and they have a "nvidia-rt-185.18.14-1-i686.pkg.tar.gz" package in the i686 repo.  Doesn't help me on x86_64 though .
    Last edited by Zaephen (2009-09-28 12:00:34)

    Zaephen wrote:
    A huge thanks to you both!
    Taking ugkbunb's advice, I compiled the ice kernel & nvidia-beta.  Worked without any problems and I have a RT kernel !  My default kernel no longer works with Nvidia but I expected that.  I suppose the easiest way to fix that would be to compile the ice kernel without RT, having a "regular" kernel and a "RT kernel?
    Thanks for the help guys.  If I can get a regular kernel working with Nvidia support, great, if not, great.  With your help I got a RT kernel working and that's a must for audio recording.
    Zaephen.
    It is easy to get your non-rt kernel to work with nvidia... just download the pkgbuild for nvidia-beta... change the name to so it does not conflict... I usually change the name of the RT drivers to nvidia-beta-rt... but since you already have them installed as nvidia-beta... you could change it to nvidia-beta-vanilla or anything really... then edit the `uname -r` line so that it points to the proper kernel... pretty sure it is 2.6.31-ARCH... if that doesn't work... just boot into your vanilla kernel and build the package from there leaving the `uname -r' line as is but making sure to change the package name so it doesn't conflict. Walla! two drivers installed and the proper one will load with each kernel.
    Zaephen wrote:
    ngoonee wrote:
    Hmm... are you sure you have the RT kernel? Forced preemption? I couldn't build the nvidia drivers on mine.
    As for having nvidia drivers for both kernels, its quite simple. Just install nvidia-beta for the main kernel and copy the PKGBUILD (rename the package to nvidia-beta-rt or something like that) and install that on the RT kernel.
    Yes I have both the regular Arch kernel and the RT kernel.
    This may sound dumb but, can anyone tell me how to distinguish between kernels when I install them like I did the -ice kernel?  I have the ice kernel installed as posted above with the RT patch.  Now I'm going to try and install another -ice kernel only this time I'm not going to have the RT patch applied.  Won't this install over my present -ice kernel if I don't tell it to call it something else?  How can I call it something else?
    Zaephen.
    Yes it will... you will need to edit the package name and as well dig through your kernel config and edit the LOCAL VERSION variable. Why do you want to have 3 kernels installed though?
    Last edited by ugkbunb (2009-09-21 16:14:13)

  • [SOLVED] Where to find older kernel headers

    Hi,
    I'm currently stuck on kernel 3.8.11-1 x64 on my netbook as kernel 3.9.2 won't boot - basically hangs while grub tries to start the kernel. Had the same issue with Fedora so I know that it's kernel specific....
    Unfortunately my NIC requires that I build the compat-wireless drivers in order to get the alx module in my system. Using the older kernel however, where do I find the headers for it?
    Basically I need to populate my /lib/modules with the 3.8.11-1-ARCH bunch; unfortunately my USB boot stick has version 3.8.10 which won't work.
    Can anyone help me out?
    Also why do the older kernels and related modules etc... get removed so fast from the repo? Shouldn't the older ones be kept for a while at least so if anyone (like me and plenty of others) have issues they can revert back easily without needing to downgrade by finding an older package from somewhere?
    Thanks.
    Last edited by JohnnySSH (2013-05-19 06:22:12)

    Excellent. Please remember to mark your thread as [Solved] by editing your first post and prepending it to the title.
    Ok did a bit of "housekeeping" and appended [SOLVED] to all my 3 threads so far :-)
    P.s. I like Arch it seems a lot as it's kinda hackery since you have to build from scrach and the chroot install is cool too - I think it suites my style of being very CLI heavy
    Coupled with a 'real' DEC VTxxx terminal not emulation I think Arch would be the best thing since Ethernet!!
    Last edited by JohnnySSH (2013-05-19 06:27:43)

  • [SOLVED] Kernel panic for an unknown reason

    [Solved] Steps done to solve it:
    0. Panic because I couldn't play starcraft2 (this step is sooo important! ;)
    1. Updated my mirrorlist.
    2. Forced a refresh on the package list from the new mirrorlist. "pacman -Syy"
    3. Downgraded the kernel.
    4. Deleted the latest kernel package from the pacman cache.
    5. Updated the system. (pacman -Syu)
    6. Thanked lilsirecho for helping out!
    7. Profit
    Hi all
    I just did a "pacman -Syu" this afternoon and after that I'm getting kernel panics for unknown reasons.
    edit: I had kernel 3.0.4 befure syu and I have kernel 3.0.7 now. I tried downgrading wine and the kernel with no success.
    It first happened when I tried to run StarCraft2 with wine. I even created a post looking for help because of that.
    Later on I tested another game, just in case, and it crashed too.
    Looks like a wine problem, right? Or even a graphics driver problem.
    That's what I thought too. But then I tried to update with "yaourt -Syu --aur" and in the first package compression it freezed once again. And it does fail everytime I try to update with yaourt during the compression phase.
    What do this situations have in common?
    My opinion is that they all require a lot of resources. StarCraft 2 puts my PC at 100% almost all the time. The other game is pretty old, but it freezed during an "environment loading" phase, right when the map was loading. The compression phase of yaourt also consumes a lot of resources.
    This is my view of this problem, but I could be completely wrong.
    What I need is help finding what is the real source of this kernel panics. I don't know where to look for the logs or the error reports when a kernel panic occurs.
    I hope someone can help me trace the problem somehow. I think I'm lost
    ty in advance.
    cheers!
    Last edited by fatum (2011-11-10 23:16:10)

    lilsirecho wrote:
    Possibly caused by a mirror download.
    Perhaps you need to revert kernel and insure you have the latest mirrorlist and then syu again.
    When I saw your response I thought: "Why should that be true? I downgraded the kernel with no success. Doesn't make much sense".
    But then I did what you said:
    Downgraded the kernel back to 3.0.4.
    Moved the latest mirrorlist.pacnew I had to be the mirrorlist in use.
    Then did a "pacman -Syyu".
    And, miraculously, it works fine now.
    How in the world did you know that could be the reason? It would have been the last possibility I would have thought about, no doubt about that
    Thank you very much lilsirecho. Your post really helped me.
    Not gonna mark this as SOLVED yet. Yesterday I marked my other thread as solved too soon and I regretted my decision.
    I will leave a 1week time-frame to be 100% sure that it is fixed, just in case.

  • [SOLVED] VMplayer no kernel headers

    Hello all,
    Just installed VMPlayer via the following link:
    https://wiki.archlinux.org/index.php/VM … n.2FPlayer
    and when I run vmware-modconfig --console --install-all  I receive the following error:
    gcc and kernel headers must be installed.
    I installed via:
    pacman -S base-devel
    It appeared to install everything, however I still get the error.
    I checked this link:
    https://bbs.archlinux.org/viewtopic.php?id=75988
    but that was not for player.
    all help is appreciated.
    --nixIT
    Last edited by nixIT (2011-10-10 02:18:18)

    It's written right here: https://wiki.archlinux.org/index.php/VM … m.5B....5D :-)

Maybe you are looking for

  • Linking between Sales order data and Biling condition

    Hi Bwers, Currently we are geneating a report with Sales order Item level (2lis_11_VAITM) information and Biling conditions(2lis_13_VDKON). We have respective DSO for both datasources (Sales order DSO and Biling Condition DSO). We have to pull both i

  • GRANT SELECT to TEMP(by procedure)..... ALL tables and views of OWNER....

    hi , I want to privelege only Grant SELECT ALL tables,views.... I have written A procedure.....given below.... CREATE OR REPLACE PROCEDURE GRANT_SELECT_ALL_PROC IS l_obj VARCHAR2(60); l_obj_type VARCHAR2(60); CURSOR Cur_Obj IS SELECT OBJECT_NAME,OBJE

  • WPC Migration to 7.3 - Navigation

    Hi Everyone,      We are in the process of migrating WPC content originally created in version 7.0 to 7.3.      After connecting the Area to the Role I haven't been able to set the top level entry points correctly. I need to define the content below

  • HT4236 importing photo albums from device to computer

    Can you import complete albums under the album name from the device (ipad) to the computer (imac)?

  • Unicode conversion - space allocation

    Hi All - We are starting to look at converting our system to Unicode this summer, and I'm worried that we have enough space allocated on UNIX box to allow for successful conversion! I have read the Unicode conversion guide for allocating additional s