<?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: Upgrade kernel in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/upgrade-kernel/m-p/3625500#M19609</link>
    <description>If you work with old kernel ?&lt;BR /&gt;You should be work without any problem with new one. &lt;BR /&gt;If you install kernelxxx.rpm it will add new kernel and will add new option into your boot manger.&lt;BR /&gt;You no need to do make .......&lt;BR /&gt;</description>
    <pubDate>Thu, 15 Sep 2005 03:06:47 GMT</pubDate>
    <dc:creator>Ivajlo Yanakiev</dc:creator>
    <dc:date>2005-09-15T03:06:47Z</dc:date>
    <item>
      <title>Upgrade kernel</title>
      <link>https://community.hpe.com/t5/operating-system-linux/upgrade-kernel/m-p/3625493#M19602</link>
      <description>I want to upgrade the RH kernel , I have downloaded the kernel src rpm file , could advise what I need to do after install the rpm ? I can't startup the server with the new kernel , it seems the new kernel can't detect the hardware , what do I need to setup ? thx</description>
      <pubDate>Wed, 14 Sep 2005 03:54:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/upgrade-kernel/m-p/3625493#M19602</guid>
      <dc:creator>hangyu</dc:creator>
      <dc:date>2005-09-14T03:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: Upgrade kernel</title>
      <link>https://community.hpe.com/t5/operating-system-linux/upgrade-kernel/m-p/3625494#M19603</link>
      <description>what is the error you are getting on rebooting machine with new kernel? &lt;BR /&gt;&lt;BR /&gt;hth.</description>
      <pubDate>Wed, 14 Sep 2005 03:56:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/upgrade-kernel/m-p/3625494#M19603</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-09-14T03:56:52Z</dc:date>
    </item>
    <item>
      <title>Re: Upgrade kernel</title>
      <link>https://community.hpe.com/t5/operating-system-linux/upgrade-kernel/m-p/3625495#M19604</link>
      <description>Hangyu,&lt;BR /&gt;have a look to these documentations:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.redhat.com/support/resources/howto/kernel-upgrade/kernel-upgrade.html" target="_blank"&gt;http://www.redhat.com/support/resources/howto/kernel-upgrade/kernel-upgrade.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.redhat.com/support/resources/howto/kernel-upgrade/s1-before-upgrade.html" target="_blank"&gt;http://www.redhat.com/support/resources/howto/kernel-upgrade/s1-before-upgrade.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Ensure you have followed all the steps.&lt;BR /&gt;And post us a more detailed explanation of the error.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Alex</description>
      <pubDate>Wed, 14 Sep 2005 04:22:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/upgrade-kernel/m-p/3625495#M19604</guid>
      <dc:creator>Alessandro Pilati</dc:creator>
      <dc:date>2005-09-14T04:22:11Z</dc:date>
    </item>
    <item>
      <title>Re: Upgrade kernel</title>
      <link>https://community.hpe.com/t5/operating-system-linux/upgrade-kernel/m-p/3625496#M19605</link>
      <description>You must compile your new kernel to reflect your hardware. By default the linux kernel will include a lot of hardware, most of them you don't need. However there is a chance that some of your hardware is not enabled by default.</description>
      <pubDate>Wed, 14 Sep 2005 04:24:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/upgrade-kernel/m-p/3625496#M19605</guid>
      <dc:creator>HugoAlmeida</dc:creator>
      <dc:date>2005-09-14T04:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: Upgrade kernel</title>
      <link>https://community.hpe.com/t5/operating-system-linux/upgrade-kernel/m-p/3625497#M19606</link>
      <description>Umm, why are you downloading a SRC RPM?&lt;BR /&gt;&lt;BR /&gt;Why not just install the pre-compiled RPM, which does all the leg-work for you?&lt;BR /&gt;&lt;BR /&gt;The SRC RPM has the kernel-source, not a compiled kernel.</description>
      <pubDate>Wed, 14 Sep 2005 04:32:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/upgrade-kernel/m-p/3625497#M19606</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2005-09-14T04:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: Upgrade kernel</title>
      <link>https://community.hpe.com/t5/operating-system-linux/upgrade-kernel/m-p/3625498#M19607</link>
      <description>As Stuart said, you need to download the kernel-version.rpm file, not the kernel-version.src.rpm.&lt;BR /&gt;&lt;BR /&gt;If you download the kernel-version.rpm file, install it using:&lt;BR /&gt;&lt;BR /&gt;rpm -ivh kernel-version.rpm&lt;BR /&gt;&lt;BR /&gt;If you download the kernel-version.src.rpm, you need to explode the source tree and then run the kernel compilation process.&lt;BR /&gt;&lt;BR /&gt;cd /usr/src/kernel-version/&lt;BR /&gt;make mrproper&lt;BR /&gt;cp /boo/config-version .config&lt;BR /&gt;make dep&lt;BR /&gt;make clean (depending of the version)&lt;BR /&gt;make bzImage&lt;BR /&gt;make modules&lt;BR /&gt;make modules_install&lt;BR /&gt;make install</description>
      <pubDate>Wed, 14 Sep 2005 09:43:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/upgrade-kernel/m-p/3625498#M19607</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2005-09-14T09:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: Upgrade kernel</title>
      <link>https://community.hpe.com/t5/operating-system-linux/upgrade-kernel/m-p/3625499#M19608</link>
      <description>I hv already install the binary rpm , but it seems not detect the existing hardware , could suggest what can i do  ? thx</description>
      <pubDate>Thu, 15 Sep 2005 00:30:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/upgrade-kernel/m-p/3625499#M19608</guid>
      <dc:creator>hangyu</dc:creator>
      <dc:date>2005-09-15T00:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: Upgrade kernel</title>
      <link>https://community.hpe.com/t5/operating-system-linux/upgrade-kernel/m-p/3625500#M19609</link>
      <description>If you work with old kernel ?&lt;BR /&gt;You should be work without any problem with new one. &lt;BR /&gt;If you install kernelxxx.rpm it will add new kernel and will add new option into your boot manger.&lt;BR /&gt;You no need to do make .......&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Sep 2005 03:06:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/upgrade-kernel/m-p/3625500#M19609</guid>
      <dc:creator>Ivajlo Yanakiev</dc:creator>
      <dc:date>2005-09-15T03:06:47Z</dc:date>
    </item>
    <item>
      <title>Re: Upgrade kernel</title>
      <link>https://community.hpe.com/t5/operating-system-linux/upgrade-kernel/m-p/3625501#M19610</link>
      <description>&lt;BR /&gt;If u used GRUB, check /etc/grub.conf file whether the new kernel &amp;amp; image is specified.&lt;BR /&gt;And also check the /boot file for the new kernel &amp;amp; image file.&lt;BR /&gt;&lt;BR /&gt;Eg:&lt;BR /&gt;&lt;BR /&gt;# ls -l /boot/initrd-2.6.&lt;XXXX&gt;.img&lt;BR /&gt;-rw-r--r--    1 root     root       146469 Aug  4  2004 /boot/initrd-2.6.&lt;XXXX&gt;.img&lt;BR /&gt;&lt;BR /&gt;# ls -l /boot/vmlinuz-2.6.&lt;XXXX&gt;&lt;BR /&gt;-rw-r--r--    1 root     root      1122186 Mar 14  2003 /boot/vmlinuz-2.6.&lt;XXXX&gt;&lt;BR /&gt;&lt;BR /&gt;Check the grupb.conf file for entries of new kernel.&lt;BR /&gt;&lt;BR /&gt;&lt;/XXXX&gt;&lt;/XXXX&gt;&lt;/XXXX&gt;&lt;/XXXX&gt;</description>
      <pubDate>Thu, 15 Sep 2005 04:34:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/upgrade-kernel/m-p/3625501#M19610</guid>
      <dc:creator>VEL_1</dc:creator>
      <dc:date>2005-09-15T04:34:56Z</dc:date>
    </item>
    <item>
      <title>Re: Upgrade kernel</title>
      <link>https://community.hpe.com/t5/operating-system-linux/upgrade-kernel/m-p/3625502#M19611</link>
      <description>thx replies, &lt;BR /&gt;&lt;BR /&gt;the error when reboot the new kernel as below,&lt;BR /&gt;&lt;BR /&gt;ERROR: /bin/insmod exited abnormally!&lt;BR /&gt;&lt;BR /&gt;Loading mptbase.o module&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hint: insmod errors can be caused by incorrect module parameters, including invalid&lt;BR /&gt;IO or IRQ parameters&lt;BR /&gt;&lt;BR /&gt;could suggest what is the problem when upgrade the server ? thx</description>
      <pubDate>Fri, 16 Sep 2005 06:09:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/upgrade-kernel/m-p/3625502#M19611</guid>
      <dc:creator>hangyu</dc:creator>
      <dc:date>2005-09-16T06:09:48Z</dc:date>
    </item>
    <item>
      <title>Re: Upgrade kernel</title>
      <link>https://community.hpe.com/t5/operating-system-linux/upgrade-kernel/m-p/3625503#M19612</link>
      <description>could suggest how to make the system detect/know the hardware ? thx</description>
      <pubDate>Sat, 17 Sep 2005 22:28:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/upgrade-kernel/m-p/3625503#M19612</guid>
      <dc:creator>peterchu</dc:creator>
      <dc:date>2005-09-17T22:28:51Z</dc:date>
    </item>
  </channel>
</rss>

