<?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: Mounting LUNs in RHEL 4 ... in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/mounting-luns-in-rhel-4/m-p/4268185#M62472</link>
    <description>Thanks Ivan Ferreira,&lt;BR /&gt;&lt;BR /&gt;One more question?&lt;BR /&gt;&lt;BR /&gt;how to auto mount the disk/mountpoint every os boot time?&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 15 Sep 2008 06:48:12 GMT</pubDate>
    <dc:creator>skhan</dc:creator>
    <dc:date>2008-09-15T06:48:12Z</dc:date>
    <item>
      <title>Mounting LUNs in RHEL 4 ...</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-luns-in-rhel-4/m-p/4268183#M62470</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;The RHEL 4 node is connected to HP MSA1000 Storage through switch.&lt;BR /&gt;I can see the luns in /proc/scsi/scsi file.&lt;BR /&gt;How to use/mount them or present the LUNs to Linux box?&lt;BR /&gt;&lt;BR /&gt;Answers will be really appreciated by quick numbers.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;</description>
      <pubDate>Fri, 12 Sep 2008 08:13:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-luns-in-rhel-4/m-p/4268183#M62470</guid>
      <dc:creator>skhan</dc:creator>
      <dc:date>2008-09-12T08:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: Mounting LUNs in RHEL 4 ...</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-luns-in-rhel-4/m-p/4268184#M62471</link>
      <description>You must first check if you can see the disk with:&lt;BR /&gt;&lt;BR /&gt;fdisk -l&lt;BR /&gt;&lt;BR /&gt;The new disk will show that "it does not contain a valid partition table"&lt;BR /&gt;&lt;BR /&gt;In the simple form, you must partition, create a file system, and mount it.&lt;BR /&gt;&lt;BR /&gt;For example, if sdb is your new disk&lt;BR /&gt;&lt;BR /&gt;Partition the disk:&lt;BR /&gt;fdisk /dev/sdb&lt;BR /&gt;n&lt;BR /&gt;p&lt;BR /&gt;1&lt;BR /&gt;ENTER&lt;BR /&gt;ENTER&lt;BR /&gt;w&lt;BR /&gt;&lt;BR /&gt;Reload partition table:&lt;BR /&gt;partprobe&lt;BR /&gt;&lt;BR /&gt;Create the file system:&lt;BR /&gt;mkfs -t ext3 /dev/sdb1&lt;BR /&gt;tune2fs -c 0 -m 0 -i 0 /dev/sdb1&lt;BR /&gt;&lt;BR /&gt;Mount:&lt;BR /&gt;&lt;BR /&gt;mkdir /mount_point&lt;BR /&gt;mount /dev/sdb1 /mount_point&lt;BR /&gt;&lt;BR /&gt;If you can go further, you may use LVM, but requieres additional job and better understanding of the whole process.&lt;BR /&gt;</description>
      <pubDate>Fri, 12 Sep 2008 14:54:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-luns-in-rhel-4/m-p/4268184#M62471</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2008-09-12T14:54:45Z</dc:date>
    </item>
    <item>
      <title>Re: Mounting LUNs in RHEL 4 ...</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-luns-in-rhel-4/m-p/4268185#M62472</link>
      <description>Thanks Ivan Ferreira,&lt;BR /&gt;&lt;BR /&gt;One more question?&lt;BR /&gt;&lt;BR /&gt;how to auto mount the disk/mountpoint every os boot time?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 15 Sep 2008 06:48:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-luns-in-rhel-4/m-p/4268185#M62472</guid>
      <dc:creator>skhan</dc:creator>
      <dc:date>2008-09-15T06:48:12Z</dc:date>
    </item>
    <item>
      <title>Re: Mounting LUNs in RHEL 4 ...</title>
      <link>https://community.hpe.com/t5/operating-system-linux/mounting-luns-in-rhel-4/m-p/4268186#M62473</link>
      <description>&amp;gt;Create the file system:&lt;BR /&gt;&amp;gt;mkfs -t ext3 /dev/sdb1&lt;BR /&gt;&amp;gt;tune2fs -c 0 -m 0 -i 0 /dev/sdb1&lt;BR /&gt;&lt;BR /&gt;If you have followed Ivan Ferriera's above instructions, then open the terminal and open a  file "fstab" which is located inside "/etc" directory, do &lt;BR /&gt;&lt;BR /&gt;# gedit /etc/fstab&lt;BR /&gt;and append/add the following line&lt;BR /&gt;/dev/sdb1   /storage   ext3  _netdev,rw,auto 1 2&lt;BR /&gt;&lt;BR /&gt;save and exit from the file&lt;BR /&gt;&lt;BR /&gt;Now create a directory, &lt;BR /&gt;# mkdir /storage&lt;BR /&gt;then &lt;BR /&gt;# mount -a&lt;BR /&gt;&lt;BR /&gt;now execute &lt;BR /&gt;# df -hT&lt;BR /&gt;the last line of the output will be&lt;BR /&gt;/dev/sdb1 ext3    total_size  used  remaining   percentage_used /storage&lt;BR /&gt;&lt;BR /&gt;Now reboot the system, then run "df -hT" to check /dev/sdb1 is mounted on /storage.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Sep 2008 02:32:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/mounting-luns-in-rhel-4/m-p/4268186#M62473</guid>
      <dc:creator>Maaz</dc:creator>
      <dc:date>2008-09-16T02:32:05Z</dc:date>
    </item>
  </channel>
</rss>

