Kernel source for 2.6.32-358.el6.x86_64

I have the 2.6.32-358.el6.x86_64 as the default kernel(not uek) . i installed the kernel-devel package.
when i go to the /usr/src/kernels ... i see the src for 2.6.32-431.el6.x86_64.
Am i looking in the wrong directory? if not what do i need to do to update this kernel to match the src folder or get the src for the one  have installed ?

yum install kernel-devel.2.6.32-358.el6.x86_64

Similar Messages

  • Missing dependency error while installing  kernel-2.6.32-358.el6.x86_64 and yum-utils package

    Hi Experts,
    I'm not able to install the kernel in Oracle Linux using "Yum install". I'm getting error's while installing Kernel. The Kernel version is 2.6.32-358.el6.x86_64 (in the linux CD of virtual box) Can you please guide me how to proceed further.
    I used the commands below :
    wget http://public-yum.oracle.com/public-yum-ol6.repo
    yum install kernel-2.6.32-358.el6.x86_64
    I'm getting so many errors saying "Error Missing Dependency libpq.so.4() 64bit" Error missing dependency libmysqlclient.so.15()64 bit
    Please find screenshot below : http://imageshack.com/a/img30/33/kp5z.jpg
    I searched through the net and tried using "yum clean all" and yum update etc.. but the problem is not resolved...
    Please note I booted from a linux Oracle linux 6 bootable CD and trying to install Oracle Linux 6 kernel on my machine..
    I tried installing "yum-utils" package too using the below command, but that too failed giving missing dependency errors..
    Yum install yum-utils
    I dont' know much about linux and stuck with the issues above for more than 30 days now... please help...
    Regards Jags

    You cannot use the yum utility to do a major version upgrade, such as upgrading from Oracle Linux 5 to Oracle Linux 6. Kernel version 2.6.32-358.el6 is the RHCK kernel and requires Oracle Linux 6. So if your attempt was to install a driver that works only for the Red Hat Enterprise Linux 6 kernel, you will have to upgrade the OS first. For this you must start from the OL6 installation DVD, but upgrading between major release versions is not officially supported. You can however upgrade to the latest Oracle UEK kernel, by enabling the appropriate channel in the yum repository configuration file.

  • ASMLib donwload for rhel6 (2.6.32-358.el6.x86_64 #1)

    Hi All,
    I have OS version - Red Hat Enterprise Linux Server release 6.4 and kernel is 2.6.32-358.el6.x86_64 #1. I want to install ASMLib for rhel6 but when I searched for ASLMib download then it showing upto Red Hat Enterprise Linux 5 AS.
    Can any one guide from where I can get the link for rhel6 - asmlib ?
    Thanks in advance...

    Oracle will not provide ASMLib packages for kernels distributed by Red Hat as part of RHEL 6. ASMLib updates will be delivered via Unbreakable Linux Network (ULN), which is available to customers with Oracle Linux support. ULN works with both Oracle Linux or Red Hat Linux installations, but ASMLib usage will require replacing any Red Hat kernel with a kernel provided by Oracle.
    Oracleasm kernel driver is built into the Unbreakable Enterprise Kernel for Oracle Linux 6.
    When you install the package "oracle-rdbms-server-11gR2-preinstall" it also installs the UEK.
    After installing oracle-rdbms-server-11gR2-preinstall, you won't have a RHEL 6 System anymore. It will be an Oracle Linux system.
    Oracle Linux can run with 2 different kernels. One 100% compatible to RHEL and the other the ULK kernel, only 100% compatible in userspace, but not in kernelspace.
    Alternatively use udev or multipath instead of oracleasm. Since the RHEL6′s kernel version is 2.6, the use of asmlib is no longer needed, in RHEL 6 is used UDEV and DirectIO instead. Using ASM without ASMLib provides the ability to use operating system's native I/O multipathing. BTW ASMLib delivers no known performance benefits.

  • Compiling a driver, need assistance on kernel source configuration

    Hello BBS.
    I am compiling a module for the Asus PCE N53 wireless pci-e card. I have obtained the driver source, and followed the instructions, and have gotten to the point where I need assistance. The instructions requires the kernel source, i have successfully obtained and configured it using the Command line prompt, except for one feature. I need to enable the intel IPW2200 driver code in the kernel source for this driver. What procedure do I follow to enable it?

    > I know in face value, that my request may seem odd. I just need to use the source of the kernel, not a new kernel... I have found that what I am requesting... will fix the problem, based on a Gentoo solution: http://forums.gentoo.org/viewtopic-t-93 … art-0.html. Needing to know how to configure the kernel source to enable the intel driver still stands. The source I am using is the latest arch kernel source.
    ===============
    RT5592 Linux Driver quick start       
    ====================
    Check tools: 
    ====================
    *Before install driver, please check already install compile tool and  kernel source code
    1>Install compile tool
        $yum install gcc-c++
    2>check kernel source code exists /usr/src/kernels/ "kernel name"
        Download your kernel source code
        *http://www.kernel.org/pub/linux/kernel/        
        or
        $yum install kernel-devel
    ====================
    Build Instructions: 
    ====================
    1> $tar -jxvf DPO_GPL_RT5592STA_LinuxSTA_vx.x.x.x.tar.bz2
         go to "DPO_GPL_RT5592STA_LinuxSTA_vx.x.x.x" directory.
    2> In Makefile
         set the "MODE = STA" in Makefile and chose the TARGET to Linux by set "TARGET = LINUX"
         define the linux kernel source include file path LINUX_SRC
         modify to meet your need.
    3> In os/linux/config.mk
         define the GCC and LD of the target machine
         define the compiler flags CFLAGS
         modify to meet your need.
         ** Build for being controlled by NetworkManager or wpa_supplicant wext functions
             Please set 'HAS_WPA_SUPPLICANT=y' and 'HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=y'.
             => $wpa_supplicant -Dwext -ira0 -c wpa_supplicant.conf -d
         ** Build for being controlled by WpaSupplicant with Ralink Driver
             Please set 'HAS_WPA_SUPPLICANT=y' and 'HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=n'.
             => $wpa_supplicant -Dralink -ira0 -c wpa_supplicant.conf -d
    4> $make           
         # compile driver source code, need administrator.
         # To fix "error: too few arguments to function ¡¥iwe_stream_add_event"
            => $patch -i os/linux/sta_ioctl.c.patch os/linux/sta_ioctl.c
    5> $make install
         #install driver
         #copy RT2860STA.dat to /etc/Wireless/RT2860STA/RT2860STA.dat
    6>$vi /etc/rc.d/rc.local
         #input "ifconfig ra0 up"
        $reboot
    7> unload driver   
         $ifconfig ra0 down
         $rmmod rt5592sta
    ======
    Heres the output of my error, when I compile:
    =======
    make -C tools
    make[1]: Entering directory `/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/tools'
    gcc -g bin2h.c -o bin2h
    make[1]: Leaving directory `/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/tools'
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/tools/bin2h
    cp -f os/linux/Makefile.6 /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/Makefile
    make -C /home/white/linux-3.2.9 SUBDIRS=/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux modules
    make[1]: Entering directory `/home/white/linux-3.2.9'
      WARNING: Symbol version dump /home/white/linux-3.2.9/Module.symvers
               is missing; modules will have no dependencies and modversions.
      CC [M]  /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.o
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2364:2: error: unknown field ‘private’ specified in initializer
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2364:2: warning: initialization from incompatible pointer type [enabled by default]
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2364:2: warning: (near initialization for ‘rt28xx_iw_handler_def.get_wireless_stats’) [enabled by default]
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2365:2: error: unknown field ‘num_private’ specified in initializer
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2365:2: warning: excess elements in struct initializer [enabled by default]
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2365:2: warning: (near initialization for ‘rt28xx_iw_handler_def’) [enabled by default]
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2366:2: error: unknown field ‘private_args’ specified in initializer
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2366:26: warning: excess elements in struct initializer [enabled by default]
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2366:26: warning: (near initialization for ‘rt28xx_iw_handler_def’) [enabled by default]
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2367:2: error: unknown field ‘num_private_args’ specified in initializer
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2367:2: warning: excess elements in struct initializer [enabled by default]
    /home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.c:2367:2: warning: (near initialization for ‘rt28xx_iw_handler_def’) [enabled by default]
    make[2]: *** [/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux/../../os/linux/sta_ioctl.o] Error 1
    make[1]: *** [_module_/home/white/driver/DPO_GPL_RT5592STA_LinuxSTA_v2.6.0.0_20120326/os/linux] Error 2
    make[1]: Leaving directory `/home/white/linux-3.2.9'
    make: *** [LINUX] Error 2
    Last edited by confusedoldman (2012-12-25 20:14:34)

  • Oracle kernel sources

    Hi everybody,
    I've installed a Oracle 10.1.0.3 RAC on 2 RHEL 3 Update2 machines (folowing the guidlines on otn).
    I've replaced the original kernel with 2.4.21-27.0.2ELorafw1smp provided by oracle.I had to compile a sk98lin module for the second network adapters that I've added to those machines.
    I also have some problems with the ASM modules install..now it's up and runing..
    However ,even at boot time,finding modules dependencies yields OK,there are some unresolved symbols for sk98lin when running a depmod command.
    Randomly,one server freezes,and ,when rebooting,the other one also freezes.I have to shutdown both,start,manualy run commands from /etc/init.d/init.crs script in order to have the RAC daemons back online.
    The provider of the NIC-s also delivers a CD which will compile a sk98lin module,but it requires the kernel sources for that...downloaded the file kernel-2.4.21-27.0.2.ELorafw1.src.rpm and tried to install it ...however,no kernel source is installed...no folder for the sources is created in /usr/src...Did anyone installed those kernel sources?
    If not,any other ideea about where can I get a kernel for firewire concurent connections which also had sources?
    Thanks,
    Sandu

    Hello,
    Just wondering if you've found a solution to your problem. I have a 2 node RAC with Dell Power Edge 2850's and Maxtor 250g shared Firewire with VIA Tech 1394 PCI's on exactly the same configuration: 10g 10.1.0.3 and 2.4.21-27.0.2ELorafw1smp . The entire platform is erratic. It hangs on boot at mounting OCFS. If everything mounts OK it will work for a while between 5 minutes and an hour and then anyone of the nodes will freeze. I have installed CRS and haven't got 10g RDBMS installed yet cauz I can't get the system stable long enough to finish the installation.
    Any assistance would be appreciated.
    Thanks,
    Moe.

  • Error: Unable to find sources for current Linux Kernel

    Hi Guys,
    Hit a bump !!!!
    Oracle Linux x86-64 installed successfully via Oracle VM box.
    Clicked on 'Install Guest Additions'.
    Ran VboxLinuxAdditions.run to install the Guest machine on Linux. It Failed and in error log (/var/log/vboxinstall.log) got the below error:-
    Error: Unable to find sources for current Linux Kernel. Specify KERN_DIR=<directory> and run again
    Looking upto Google i found I need to update Linux headers , in doing so get +'bash: apt-get : command not found'+ which I am not able to understand.
    Any assistance is appreciated.
    Cheers

    Thanks for the information. I was able to resolve it though.
    Ran +'yum install gcc kernel-devel kernel-headers'+
    Hence my query is resolved now.
    Just one question - I need to copy text from Windows to Linux Terminal. Is there a command I can type into Linux terminal to enable copy paste from Windows to Linux and vice-versa ?
    Cheers.

  • Kernel source support for Xperia L

    Hi,
    I'm an XDA forum member.
    I'm have created this thread to inform you about the hiccups kernel devs are running into compiling prima module properly. Firstly, the prima source you've hosted on your git, don't compile with the 15.0.A.2.17 source. The wcnss driver in the kernel source needs to be patched to make the module even compile.
    It's my sincerest request to include buildable prima sources in the kernel sources itself. If not possible, atleast give us some pointers on how to fix it.
    By this kernel devs can target their efforts on other important things which otherwise would have been wasted on fixing and debugging the prima module.
    Awaiting reply.
    Regards
    Raj.Joshi (my profile: http://forum.xda-developers.com/member.php?u=4753363)
    XDA
    R@J

    To get in contact with our developers i recommend that you go to stackoverflow.com or that you send an email to [email protected]
    I've edited your topic and moved it to the proper forum.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • [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.

  • Make dep never works in kernel source

    OK So.. i'm building the latest drm code from git to get Dave Airlie's source code for the R300 since he just dropped 5,000 line of source code out of the R300 tree using the Linus kernel git tree (i love unstable code) and in the DRI building guide, it says to run make dep against the kernel.
    So I go into the root of the kernel source in /usr/src (i know you should build kernels in the home directory) and as root I type in make dep and it says its uncessary at this time. Well... when would be a good time to run make dep? (lol!!)
    http://dri.freedesktop.org/wiki/Buildin … 5ae2efe516
    ^ Unless make dep is actually unecessary. If it is uncessary, i'll contact TimoJyrinki and tell him about it.
    Thank you for all your help.
    P.S. Please don't drop i686 support for 2 or 3 months because I'm getting an AMD64 processor really soon! ahaha.

    I run make && make modules_install (w/ clean when recompiling) as thats how I did it back when i used gentoo.
    I have my kernel compiled and installed and everything. so thats not an issue at all. (And only 1.1 MB)
    So if make dep is depreciated, whats the new command for make dep? I just want DRM working with airlied's new code for the r300 with the new kernel.
    Here is where I am right now:
    Mesa from git (r300) with heavy optimization flags (including -march=athlon=xp -fomit-frame-pointer- -s -O3)
    Custom kernel with GZIP compression of 1.1 MB installed, up and running
    To do:
    DRM via git running on custom kernel
    I recommend not testing what I am trying to do on a production environment.
    Thanks.
    P.S. I edited the CFLAGS and CXXFLAGS for the drm code as well and made it very optimized for my system.
    Last edited by Neo_The_User (2009-04-01 22:01:44)

  • [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

  • Ocfs2 RAC on Red hat linux 6 - kernel -- 2.6.32-220.el6.x86_64 -Oracle11gR2

    Hello,
    We want to use ocfs2 as the shared file system for running Oracle RAC 11gR2 on Red hat linux 6.
    The red hat linux kernel is 2.6.32-220.el6.x86_64.
    I checked the ocfs2 download site and there is no ocfs2 rpms for Red hat 6, infact there are no ocfs2 rpms for Linux 6.
    What options do I have if ...go down to Linux 5.x or move to Oracle linux 6.
    If my understanding is correct Oracle linux 6 has ocfs2 in the kernel itself and does not need to be installed separately.
    What other options do I have for having a shared file system .... ?
    Please comment.
    Thanks,
    X.

    Hi,
    Please refer to Note 1365511.1 - How to Configure LUNs for ASM Disks using WWID, DM-Multipathing, and ASMLIB on RHEL 5/OL 5 and RHEL 6/OL 6 . That note can help you to install and configure ASM properly.
    from the note:
    " For Red Hat Enterprise Linux 6 (beginning with 6.4) the kernel driver package 'kmod-oracleasm' is available directly from Red Hat, and can be installed from the "RHEL Server Supplementary (v. 6 64-bit x86_64)" channel on Red Hat Network (RHN).  Updates to this module will be provided by Red Hat.  Please check with your Red Hat advisor for questions concerning support of the kernel driver package.  The 'oracleasmlib' and 'oracleasm-support' packages are maintained by Oracle; they are required in order to use kmod-oracleasm.  "
    Cheers,
    Krisz

  • Kernel sources not found on Scientific Linux 6

    Hello!
    I am having trouble installing NI-VISA on Scientific Linux 6. The installer can not find kernel source despite the fact the kernel-headers and kernel-devel packages are installed. How to point the NI-VISA installer to the kernel source location?

    Hello,
    It looks like there's some information about this listed in the installation instructions and installation FAQs of the readme file for NI-VISA here.  Have you looked through this before your attempted install?
    Jon F.
    Applications Engineer
    National Instruments

  • [SOLVED] Building flashcache - need kernel source?

    Sorry for noob question, but..
    Trying to build flashcache, and it seems that kernel source is required. How do I obtain the source?
    Last edited by asg1448 (2014-07-07 22:51:15)

    Trilby wrote:No, 3.15.2-1
    I upgraded to 3.15.2-1-ARCH and have exactly the same issue
    Note, that building of flashcache itself completes fine, the issue happens when I install the built module:
    loading packages...
    warning: flashcache-dkms-git-1.0.r223.g304bbc1-1 is up to date -- reinstalling
    resolving dependencies...
    looking for inter-conflicts...
    Packages (1): flashcache-dkms-git-1.0.r223.g304bbc1-1
    Total Installed Size: 0.54 MiB
    Net Upgrade Size: 0.00 MiB
    :: Proceed with installation? [Y/n]
    (1/1) checking keys in keyring [##########################################] 100%
    (1/1) checking package integrity [##########################################] 100%
    (1/1) loading package files [##########################################] 100%
    (1/1) checking for file conflicts [##########################################] 100%
    (1/1) checking available disk space [##########################################] 100%
    flashcache, 1.0.r223.g304bbc1: added
    Deleting module version: 1.0.r223.g304bbc1
    completely from the DKMS tree.
    Done.
    (1/1) reinstalling flashcache-dkms-git [##########################################] 100%
    >>> DKMS: Module install
    dkms install -m flashcache -v 1.0.r223.g304bbc1
    Creating symlink /var/lib/dkms/flashcache/1.0.r223.g304bbc1/source ->
    /usr/src/flashcache-1.0.r223.g304bbc1
    DKMS: add completed.
    Kernel preparation unnecessary for this kernel. Skipping...
    Building module:
    cleaning build area....
    KERNEL_TREE=/usr/lib/modules/3.15.2-1-ARCH/build make modules....(bad exit status: 2)
    Error! Bad return status for module build on kernel: 3.15.2-1-ARCH (x86_64)
    Consult /var/lib/dkms/flashcache/1.0.r223.g304bbc1/build/make.log for more information.
    modprobe: FATAL: Module flashcache not found.

  • [SOLVED] Where can I browse the Arch kernel source?

    I tried to look for the kernel source code under /usr/src/linux-3.4.9-1-ARCH but there's only a binary file (an image?) vmlinuz in there. I wanted to look for drivers concerning usb for fun, but I can't seem to find the excact location of the kernel source code.
    Last edited by burninate (2012-08-25 09:48:56)

    Sure you can, but it'll pretty much be the same as if you downloaded the code from kernel.org. You can use makepkg and the ABS to easily get the source and Arch's patch(es) on your computer.
    Edit: If you have linux-headers installed, then the path HalosGhost refers to has the headers, not the full source
    Last edited by SidK (2012-08-22 19:29:08)

  • Folio 100 update 2.2.5.0131 kernel source code

    Hi,
    I can't find anywhere the source code for the kernel used in 2.2.5.0131 update. According to GPL you MUST provide this kernel source code
    Please fix this issue as soon as possible.
    Regards.
    Message was edited by: nopy

    We are looking for the kernel source code too. Please could you provide a download link?
    Thanks.

Maybe you are looking for

  • Process Chain after EVENT - More than once

    Hi all, I would like to run a process chain after an event; everything works fine with the following model... PC1 >>      >> some processes      >> EVENT TRIGGER PC2 >>      (after EVENT) runs ok after event ONLY if I SCHEDULE it After succesfully ru

  • Problem in Customer Balance

    HI To All,                 I am using sap b1 2007b pl09 .i face one problem . i see customer balance through customer master.it shows on figure on debit and credit side on opening balance column but opening balance is 0.what is login of the figure ap

  • RFC to HTTP Synchronous and SSL encryption

    I have the a Scnario RFC --> XI ---> HTTP with responce coming back from HTTP to xi and then in turn will go back to SAP. so it is like :  RFC  to XI and then To HTTP application at BANK partner but my case more complex because before i send the mess

  • How can i refelect the Number of deliverable in Primavera

    Hi all I am preparing an engineering Schedule. in which suppose any activty such Detail drawing of Compressor will contain 20 A1 size drawing. How can i refelect this in schedule. ACTIVITY Duration Resource No Of deliverable Start Finish Detail ... 6

  • Apps para iphone 2g

    como posso encontra apps para meu iphone 2g???