<?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 Linux AS2.1 - after initial install not seeing other luns sdb or sdc in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/linux-as2-1-after-initial-install-not-seeing-other-luns-sdb-or/m-p/3088284#M7018</link>
    <description>Using a diskless HP LPr booting directly from a SAN storage device (Qlogic HBA &amp;amp; XIOtech), I've successfully installed AS2.1 yet sfdisk cannot see the other 2 drives.  I've 'zoned / given ownership' of 3 drives to the HBA/server yet it sees only 1 of the 3 drives.  What Linux commands are required so that the OS can see these other drives so I can create additional mount points &amp;amp; file systems other than the core OS guys? &lt;BR /&gt;</description>
    <pubDate>Wed, 08 Oct 2003 10:38:00 GMT</pubDate>
    <dc:creator>Edward M. Hoppe, Jr.</dc:creator>
    <dc:date>2003-10-08T10:38:00Z</dc:date>
    <item>
      <title>Linux AS2.1 - after initial install not seeing other luns sdb or sdc</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-as2-1-after-initial-install-not-seeing-other-luns-sdb-or/m-p/3088284#M7018</link>
      <description>Using a diskless HP LPr booting directly from a SAN storage device (Qlogic HBA &amp;amp; XIOtech), I've successfully installed AS2.1 yet sfdisk cannot see the other 2 drives.  I've 'zoned / given ownership' of 3 drives to the HBA/server yet it sees only 1 of the 3 drives.  What Linux commands are required so that the OS can see these other drives so I can create additional mount points &amp;amp; file systems other than the core OS guys? &lt;BR /&gt;</description>
      <pubDate>Wed, 08 Oct 2003 10:38:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-as2-1-after-initial-install-not-seeing-other-luns-sdb-or/m-p/3088284#M7018</guid>
      <dc:creator>Edward M. Hoppe, Jr.</dc:creator>
      <dc:date>2003-10-08T10:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: Linux AS2.1 - after initial install not seeing other luns sdb or sdc</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-as2-1-after-initial-install-not-seeing-other-luns-sdb-or/m-p/3088285#M7019</link>
      <description>I remember reading a post here some time ago about a very similar issue.  If I recall correctly, it is because RedHat (out-of-the-box) do not enable Multi-LUN on SCSI devices.&lt;BR /&gt; &lt;BR /&gt;A quick scan of the kernel code, and there is a configurable option called 'CONFIG_SCSIP_MULTI_LUN' of which sounds about right.&lt;BR /&gt; &lt;BR /&gt;The inline-help states the following:&lt;BR /&gt; &lt;BR /&gt;If you have a SCSI device that supports more than one LUN (Logical Unit Number), e.g. a CD jukebox, and only one LUN is detected, you can say Y here to force the SCSI driver to probe for multiple LUNs.&lt;BR /&gt;A SCSI device with multiple LUNs acts logically like multiple SCSI devices. The vast majority of SCSI devices have only one LUN, and so most people can say N here and should in fact do so, because it is safer. &lt;BR /&gt; &lt;BR /&gt;This sounds like your issue.</description>
      <pubDate>Wed, 08 Oct 2003 18:40:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-as2-1-after-initial-install-not-seeing-other-luns-sdb-or/m-p/3088285#M7019</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2003-10-08T18:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: Linux AS2.1 - after initial install not seeing other luns sdb or sdc</title>
      <link>https://community.hpe.com/t5/operating-system-linux/linux-as2-1-after-initial-install-not-seeing-other-luns-sdb-or/m-p/3088286#M7020</link>
      <description>The basic problem is that the default maximum lun number in the high level scsi driver is 1.&lt;BR /&gt;If you type lsmod and you see a module named scsi_mod then the scsi high level driver is compiled as module, if not, it is compiled into the kernel.&lt;BR /&gt;&lt;BR /&gt;If the scsi hl driver is a module:&lt;BR /&gt;&lt;BR /&gt;Then you have to append the following line to /etc/modules.conf&lt;BR /&gt;options scsi_mod max_scsi_luns=3&lt;BR /&gt;&lt;BR /&gt;This would be enough, when the driver would be loaded after boot.&lt;BR /&gt;&lt;BR /&gt;But in this case the the driver is loaded at boot time and you will not be able to unload/reload this module because it is in use by the root filesystem.&lt;BR /&gt;So you have to build a new initrd too.&lt;BR /&gt;take the result of &lt;BR /&gt;uname -r &lt;BR /&gt;this will be the kernel version for instance:&lt;BR /&gt;2.4.18-10smp&lt;BR /&gt;&lt;BR /&gt;then execute &lt;BR /&gt;mkinitrd /boot/initrd-2.4.18-10smp3luns.img 2.4.18-10smp&lt;BR /&gt;This generates a new INITial Ram Disk and uses the parameters from /etc/modules.conf.&lt;BR /&gt;&lt;BR /&gt;If you are using lilo:&lt;BR /&gt;Duplicate the appropriate section in /etc/lilo.conf and customize it. &lt;BR /&gt;This should look like&lt;BR /&gt;&lt;BR /&gt;image=/boot/vmlinuz-2.4.18-10smp&lt;BR /&gt;        label=linux3luns&lt;BR /&gt;        initrd=/boot/initrd-2.4.18-10smp3luns.img&lt;BR /&gt;        read-only&lt;BR /&gt;        root= ...&lt;BR /&gt;&lt;BR /&gt;And run lilo from the command line.&lt;BR /&gt;Reboot and select linux3luns.&lt;BR /&gt;&lt;BR /&gt;If you are using grub you have to customize the /boot/grub.conf. Duplicate the appropriate section and customize it:&lt;BR /&gt;title RHAS 3 LUNS&lt;BR /&gt;        root (hd0,0)&lt;BR /&gt;        kernel /vmlinuz-2.4.18-10smp ro root=...&lt;BR /&gt;        initrd /initrd-2.4.18-10smp3luns.img&lt;BR /&gt;&lt;BR /&gt;Reboot and select the newly created entry.&lt;BR /&gt;&lt;BR /&gt;If the scsi hl driver is compiled into the kernel:&lt;BR /&gt;You can try to add at the boot prompt&lt;BR /&gt;max_scsi_luns=3&lt;BR /&gt;If this does not work, you have probably to build a new kernel with the &lt;BR /&gt;"CONFIG_SCSI_MULTI_LUN=y" option first.</description>
      <pubDate>Wed, 08 Oct 2003 18:48:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/linux-as2-1-after-initial-install-not-seeing-other-luns-sdb-or/m-p/3088286#M7020</guid>
      <dc:creator>Thilo Knoch</dc:creator>
      <dc:date>2003-10-08T18:48:37Z</dc:date>
    </item>
  </channel>
</rss>

