OEL5.5 Kernel source

Hello
I am very thankful for your support. Now I need a package kernel-2.6.18-194.el5.src.rpm for install R1soft hotcopy disk cloning software.Could you please suggest me the link from which I can download.Thanks in advance...

How about http://public-yum.oracle.com/repo/EnterpriseLinux/EL5/5/base/x86_64/kernel-2.6.18-194.el5.src.rpm
Building the kernel from scratch will be more complex then simply installing the source rpm. You will need instructions if you are not familiar with the task.
Do you really need to recompile the kernel, or do you just need to compile a kernel driver module, in which case you might just need the kernel-devel package

Similar Messages

  • How to force CoreDump in the Kernel source code

    Hi,
    Anyone know, how to force coredump in the Kernel source code?. And also to collect all information related to CPU Registers, CPU IRAM, Cache Data and complete SDRAM content.

    pull your RAM out....
    Wouldn't recommend doing that really...... And why would you want to cause a kernel panic?
    EDIT: Spelling sucked...
    Last edited by crankyadmin (2009-09-28 22:02:14)

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

  • 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

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

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

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

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

  • Solaris 11 kernel source

    I read somewhere on the Oracle Technology Network (oracle.com/technetwork) that one can
    actually get a copy of the solaris 11 kernel source, downloaded to one system, for perusal while
    developing applications and kernel modules.  The link did not provide details and I suspect that is
    only available to companies who are OPN, oracle partner network.  This link
      Resources for Oracle Solaris Developers and ISV's
    has a link to "Oracle Solaris Development Initiative - Access to Oracle Solaris, Oracle Solaris Cluster,and Oracle Solaris Studio patches & updates"
    but when I click on it, I get page not found (Error page 404).
    was I hallucinatinating when I read about access to the Solaris 11 kernel source?
    jim

    I fear you might have been reading out of date information from the OpenSolaris days.   Only a small handful of partners have access to the Solaris 11 kernel source - it's not generally available at this time.

  • Kernel sources

    hey people,
    Is it possible that I can get the kernel source tree which has been used to build the kernel26-scsi kernel? I have to install a small program which requires this... (cisco vpn client)
    see: http://www.ic.uva.nl/uvavpn/object.cfm/ … nload=true
    page 23 last paragraph it says: You must use the same copy of the kernel source that was used to build the kernel you are running.
    Now I don.t have this, and compilation of the vpn client fails because of this.
    Anyways, possible solution is to compile my own kernel. I have been compiling kernels for a long time on slackware, but the kernel26-scsi is far superior to the ones I.ve built, haha... so is it possible to see what options have been "Y" and "N" and "M" on the kernel26-scsi version that is shipped? that would help me build a better kernel!
    thanks
    rogier

    my problem was more serious than I thought... had to patch the Cisco code, and then edit it by hand again... it was not the kernels fault
    http://www.linuxquestions.org/questions … perpage=15
    thanks anyways...

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

  • Where download solaris8 kernel source??

    hi..
    i need solaris8 kernel source..
    but i don't know where download..
    where download kernel source??
    help me...
    have nice day..
    =================================
    i am sorry, i am poor english

    Its not for free any longer.....community licensing was there only for a very short time (But I am not very
    sure)

  • Error: no kernel source files found

    Trying install avira- it need's Dazuko. Installing Dazuko (yaourt -S dazuko):
    error: no kernel source files found
    Help please
    Last edited by litemotiv (2010-08-25 11:30:31)

    The package build points to a directory that doesn't exist:
    kernel source in /lib/modules/2.6.34-ARCH/source... no
    kernel build source in /lib/modules/2.6.34-ARCH/build... no
    kernel build source in /usr/src/linux... no
    kernel source in /usr/src/linux... no
    error: no kernel source files found
    This package hasn't been updated for almost 2½ years, you will have to report this to the package maintainer: http://aur.archlinux.org/packages.php?ID=3779

  • [solved]kernel source

    I do apologize - but where the heck do I find the kernel source that's being used by archlinux??
    I used to roll my own sources frequently, but ever since discovering arch - I'm more than  happy to use the default ...
    I keep a local mirror of the official one - but I'm darned if I can see any kernel sources there :-(
    This time I do need to roll my own - a 'dell precision m90' does not cater for backlight (.../drivers/acpi/video.c), so I need the patched version.
    Could anyone plueeze enlighten me? (and yes, I _have_ checked /usr/src/linux-3.4.4-3-ARCH/ - no source there ...)
    Last edited by perbh (2012-07-18 13:43:04)

    You can get the PKGBUILD and local source files from here. You can find other packages by following the "Packages" link at the top of the page.
    Once you have those, just run "makepkg -o" to download and extract the upstream sources. You will then have everything (sources + patches).
    You can use pbget to automatically retrieve PKGBUILDs for packages too.
    edit:
    If you mean the headers, then check the following packages:
    linux-api-headers
    linux-headers
    Last edited by Xyne (2012-07-18 04:32:29)

  • A2107 Kernel Source

    Hello... Just wondering if there is any kernel source available for the A2107... And if there isn't... Why are you guys not being GPL compliant...?

    Maybe I don't need to tell you this, but if you want to play with kernels on arch it might help you to keep things kiss if you get to learn PKGBUILDS a little. For more info check the wiki (e.g. http://wiki.archlinux.org/index.php/Bui … Arch_Linux
    Basically they make it simple to build and install stuff on arch. You can also check the default PKGBUILD for the kernel (or any other package) to see what sources it uses if you want.
    Hope this helps.

Maybe you are looking for