<?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: urgent! modules at boot time! in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/urgent-modules-at-boot-time/m-p/2806154#M2496</link>
    <description>Thank you very much Kodjo,&lt;BR /&gt;&lt;BR /&gt;I think this will solve the issue.&lt;BR /&gt;I have compared the linuxrc of both servers and have found that the one&lt;BR /&gt;with the problem is missing the cciss.o module under /mnt/lib and also missing its correspondent insmod.&lt;BR /&gt;&lt;BR /&gt;I have not yet implemented the whole procedure, because this is a critical production system and I'd like to try it first on a non-production system before.&lt;BR /&gt;&lt;BR /&gt;I have another question in one of the systems I had trouble finding the running kernel version, because I found the following under /boot&lt;BR /&gt;&lt;BR /&gt;# ll /boot/vmlinuz lrwxrwxrwx    1 root     root           16 Nov 30  2001 /boot/vmlinuz -&amp;gt; vmlinuz-2.4.7-10&lt;BR /&gt;&lt;BR /&gt;vmlinuz is a symbolic link to  vmlinuz-2.4.7-10. But when you do:&lt;BR /&gt;&lt;BR /&gt;#uname -r &lt;BR /&gt;2.4.7-10smp&lt;BR /&gt;&lt;BR /&gt;So which could be the right kernel version?&lt;BR /&gt;&lt;BR /&gt;Thank you very much again in advance...</description>
    <pubDate>Fri, 13 Sep 2002 21:19:17 GMT</pubDate>
    <dc:creator>Max_4</dc:creator>
    <dc:date>2002-09-13T21:19:17Z</dc:date>
    <item>
      <title>urgent! modules at boot time!</title>
      <link>https://community.hpe.com/t5/operating-system-linux/urgent-modules-at-boot-time/m-p/2806152#M2494</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;I have two machines running Red Hat 7.2. One of them when it boots, automatically loads the module required to handle a disk array (cciss.o) and the other machine does not! I have to modprobe the module&lt;BR /&gt;manually in order for the machine to have it loaded...&lt;BR /&gt;&lt;BR /&gt;This is critical because without this module I can't mount the filesystems on the disk array which have an Oracle DB on them!&lt;BR /&gt;&lt;BR /&gt;Both /etc/modules.conf are the same on both machines... and I still trying to find a difference between them to see why this is happening...&lt;BR /&gt;&lt;BR /&gt;Can somebody help me with this? Also Could somebody explain how is the module dinamic loading process when a machine boots?&lt;BR /&gt;What do I need to set up in order to have a machine automatically load a module when it boots?&lt;BR /&gt;&lt;BR /&gt;          Thanks a lot in advance!</description>
      <pubDate>Fri, 13 Sep 2002 17:07:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/urgent-modules-at-boot-time/m-p/2806152#M2494</guid>
      <dc:creator>Max_4</dc:creator>
      <dc:date>2002-09-13T17:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: urgent! modules at boot time!</title>
      <link>https://community.hpe.com/t5/operating-system-linux/urgent-modules-at-boot-time/m-p/2806153#M2495</link>
      <description>I guess (but I'm not sure) one was installed with the disk array connected, but on the other wone, you connected the array afterwards.&lt;BR /&gt;&lt;BR /&gt;Normally, modules for critical hardware such as disks are loaded in initial ramdisk (initrd).&lt;BR /&gt;Some people use "mkinitrd" to have it re-created, but I prefer manual method. Let's say your running kernel version is 2.4.9-31&lt;BR /&gt;&lt;BR /&gt;cp /boot/initrd-2.4.9-31.img /tmp/initrd.gz&lt;BR /&gt;gunzip /tmp/initrd.gz&lt;BR /&gt;mount -oloop /tmp/initrd /mnt&lt;BR /&gt;cp -p /lib/modules/2.4.9-31/kernel/drivers/scsi/cciss.o /mnt/lib&lt;BR /&gt;&lt;BR /&gt;Edit /mnt/linuxrc and add :&lt;BR /&gt;&lt;BR /&gt;insmod /lib/cciss.o&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;cd /boot&lt;BR /&gt;umount /mnt&lt;BR /&gt;gzip /tmp/initrd&lt;BR /&gt;mv /boot/initrd-2.4.9.img /boot/initrd-2.4.9.img.old&lt;BR /&gt;mv /tmp/initrd.gz /boot/initrd-2.4.9.img&lt;BR /&gt;/sbin/lilo&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Good luck.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Kodjo&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Sep 2002 18:57:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/urgent-modules-at-boot-time/m-p/2806153#M2495</guid>
      <dc:creator>Kodjo Agbenu</dc:creator>
      <dc:date>2002-09-13T18:57:45Z</dc:date>
    </item>
    <item>
      <title>Re: urgent! modules at boot time!</title>
      <link>https://community.hpe.com/t5/operating-system-linux/urgent-modules-at-boot-time/m-p/2806154#M2496</link>
      <description>Thank you very much Kodjo,&lt;BR /&gt;&lt;BR /&gt;I think this will solve the issue.&lt;BR /&gt;I have compared the linuxrc of both servers and have found that the one&lt;BR /&gt;with the problem is missing the cciss.o module under /mnt/lib and also missing its correspondent insmod.&lt;BR /&gt;&lt;BR /&gt;I have not yet implemented the whole procedure, because this is a critical production system and I'd like to try it first on a non-production system before.&lt;BR /&gt;&lt;BR /&gt;I have another question in one of the systems I had trouble finding the running kernel version, because I found the following under /boot&lt;BR /&gt;&lt;BR /&gt;# ll /boot/vmlinuz lrwxrwxrwx    1 root     root           16 Nov 30  2001 /boot/vmlinuz -&amp;gt; vmlinuz-2.4.7-10&lt;BR /&gt;&lt;BR /&gt;vmlinuz is a symbolic link to  vmlinuz-2.4.7-10. But when you do:&lt;BR /&gt;&lt;BR /&gt;#uname -r &lt;BR /&gt;2.4.7-10smp&lt;BR /&gt;&lt;BR /&gt;So which could be the right kernel version?&lt;BR /&gt;&lt;BR /&gt;Thank you very much again in advance...</description>
      <pubDate>Fri, 13 Sep 2002 21:19:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/urgent-modules-at-boot-time/m-p/2806154#M2496</guid>
      <dc:creator>Max_4</dc:creator>
      <dc:date>2002-09-13T21:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: urgent! modules at boot time!</title>
      <link>https://community.hpe.com/t5/operating-system-linux/urgent-modules-at-boot-time/m-p/2806155#M2497</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;Normally, "uname -r" gives you the right version. The name of kernel file in /boot can be anything you want.&lt;BR /&gt;&lt;BR /&gt;You can compare "uname -r" with the result of "depmod -av".&lt;BR /&gt;&lt;BR /&gt;Good luck.&lt;BR /&gt;&lt;BR /&gt;Kodjo&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Sep 2002 21:54:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/urgent-modules-at-boot-time/m-p/2806155#M2497</guid>
      <dc:creator>Kodjo Agbenu</dc:creator>
      <dc:date>2002-09-13T21:54:15Z</dc:date>
    </item>
  </channel>
</rss>

