<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: kernel in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/kernel/m-p/3782858#M23211</link>
    <description>Whoa!&lt;BR /&gt;&lt;BR /&gt;You don't need to go to a website for the kernel source.&lt;BR /&gt;&lt;BR /&gt;Once you install the rpm's I recommend you have the kernel source on your system.&lt;BR /&gt;&lt;BR /&gt;If you installed RH, you have access to the rpms.&lt;BR /&gt;&lt;BR /&gt;Best you use what came with the distribution.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
    <pubDate>Sat, 06 May 2006 15:21:52 GMT</pubDate>
    <dc:creator>Steven E. Protter</dc:creator>
    <dc:date>2006-05-06T15:21:52Z</dc:date>
    <item>
      <title>kernel</title>
      <link>https://community.hpe.com/t5/operating-system-linux/kernel/m-p/3782851#M23204</link>
      <description>Hi ,&lt;BR /&gt;i installed RH AS4 kernel 2.6.9-34EL .&lt;BR /&gt;I want to compile my kernel ( for practice) ,&lt;BR /&gt;but /usr/sec is empty :&lt;BR /&gt;1. what rpm i should install ?&lt;BR /&gt;2. i cant run : make config , make menuconfig or make xconfig , why ?&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Thu, 04 May 2006 12:59:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/kernel/m-p/3782851#M23204</guid>
      <dc:creator>Chapaya</dc:creator>
      <dc:date>2006-05-04T12:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: kernel</title>
      <link>https://community.hpe.com/t5/operating-system-linux/kernel/m-p/3782852#M23205</link>
      <description>Shalom eran,&lt;BR /&gt;&lt;BR /&gt;You need to install the kernel source packages from the cd's.&lt;BR /&gt;&lt;BR /&gt;They are named the same as the kernel on cd 2 and have the name source in them.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 04 May 2006 13:14:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/kernel/m-p/3782852#M23205</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2006-05-04T13:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: kernel</title>
      <link>https://community.hpe.com/t5/operating-system-linux/kernel/m-p/3782853#M23206</link>
      <description>I assume you mean /usr/src, right?&lt;BR /&gt;&lt;BR /&gt;1.) The package to install is kernel-devel-&lt;VERSION-NUMBER&gt;.rpm as appropriate to your kernel version. In your case, it would be something like: kernel-devel-2.6.9-34EL.rpm.&lt;BR /&gt;You probably also need kernel-&lt;VERSION-NUMBER&gt;.src.rpm.&lt;BR /&gt;&lt;BR /&gt;2.) "make" is a general-purpose tool which gets its instructions from a specific file (usually named "Makefile" or "makefile") in the current directory. Linux kernel sources have a very complex Makefile which can start up various tools to display a graphic ("make xconfig") or text-based ("make menuconfig") view of kernel configuration settings, among other things.&lt;BR /&gt;&lt;BR /&gt;Without kernel sources installed (or if you run the "make" command in a wrong directory), "make" is not going to find the instructions on how to "make config", "make menuconfig" or "make xconfig".&lt;/VERSION-NUMBER&gt;&lt;/VERSION-NUMBER&gt;</description>
      <pubDate>Thu, 04 May 2006 13:22:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/kernel/m-p/3782853#M23206</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2006-05-04T13:22:50Z</dc:date>
    </item>
    <item>
      <title>Re: kernel</title>
      <link>https://community.hpe.com/t5/operating-system-linux/kernel/m-p/3782854#M23207</link>
      <description>&lt;BR /&gt;Thanks Steven and Mati ,&lt;BR /&gt;i came from HP-UX world ,&lt;BR /&gt;What are the steps for compiling kernel ?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Eran</description>
      <pubDate>Thu, 04 May 2006 14:07:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/kernel/m-p/3782854#M23207</guid>
      <dc:creator>Chapaya</dc:creator>
      <dc:date>2006-05-04T14:07:11Z</dc:date>
    </item>
    <item>
      <title>Re: kernel</title>
      <link>https://community.hpe.com/t5/operating-system-linux/kernel/m-p/3782855#M23208</link>
      <description>After you have installed the kernel source tree (See Release Notes for information about how to do that)&lt;BR /&gt;&lt;BR /&gt;cd /usr/src/linux&lt;BR /&gt;# Save your current kernel config file (default)&lt;BR /&gt;cp .config config.bak&lt;BR /&gt;make mrproper&lt;BR /&gt;#Restore the default configuration file&lt;BR /&gt;cp config.bak .config&lt;BR /&gt;# Configure the kernel options&lt;BR /&gt;make menuconfig&lt;BR /&gt;# Build the kernel and modules&lt;BR /&gt;make dep clean bzImage modules modules_install&lt;BR /&gt;# Install the kernel&lt;BR /&gt;make install&lt;BR /&gt;reboot&lt;BR /&gt;</description>
      <pubDate>Thu, 04 May 2006 15:07:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/kernel/m-p/3782855#M23208</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2006-05-04T15:07:07Z</dc:date>
    </item>
    <item>
      <title>Re: kernel</title>
      <link>https://community.hpe.com/t5/operating-system-linux/kernel/m-p/3782856#M23209</link>
      <description>&lt;BR /&gt;Thank you all !!!</description>
      <pubDate>Fri, 05 May 2006 00:38:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/kernel/m-p/3782856#M23209</guid>
      <dc:creator>Chapaya</dc:creator>
      <dc:date>2006-05-05T00:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: kernel</title>
      <link>https://community.hpe.com/t5/operating-system-linux/kernel/m-p/3782857#M23210</link>
      <description>&lt;BR /&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;I cant find kernel source in &lt;A href="http://www.kernel.org" target="_blank"&gt;www.kernel.org&lt;/A&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 06 May 2006 09:07:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/kernel/m-p/3782857#M23210</guid>
      <dc:creator>Chapaya</dc:creator>
      <dc:date>2006-05-06T09:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: kernel</title>
      <link>https://community.hpe.com/t5/operating-system-linux/kernel/m-p/3782858#M23211</link>
      <description>Whoa!&lt;BR /&gt;&lt;BR /&gt;You don't need to go to a website for the kernel source.&lt;BR /&gt;&lt;BR /&gt;Once you install the rpm's I recommend you have the kernel source on your system.&lt;BR /&gt;&lt;BR /&gt;If you installed RH, you have access to the rpms.&lt;BR /&gt;&lt;BR /&gt;Best you use what came with the distribution.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Sat, 06 May 2006 15:21:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/kernel/m-p/3782858#M23211</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2006-05-06T15:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: kernel</title>
      <link>https://community.hpe.com/t5/operating-system-linux/kernel/m-p/3782859#M23212</link>
      <description>As Matti and Ivan mentioned, you should install kernel SRPM package in order to get kernel sources.&lt;BR /&gt;Here you can read in details about this [a little tricky] process:&lt;BR /&gt;&lt;A href="http://www.redhat.com/docs/manuals/enterprise/RHEL-4-Manual/release-notes/as-x86/" target="_blank"&gt;http://www.redhat.com/docs/manuals/enterprise/RHEL-4-Manual/release-notes/as-x86/&lt;/A&gt;</description>
      <pubDate>Sun, 07 May 2006 01:33:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/kernel/m-p/3782859#M23212</guid>
      <dc:creator>Vitaly Karasik_1</dc:creator>
      <dc:date>2006-05-07T01:33:11Z</dc:date>
    </item>
  </channel>
</rss>

