<?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: Adding disk to ML350 RHEL3 U5 in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/adding-disk-to-ml350-rhel3-u5/m-p/5034263#M48355</link>
    <description>answers solved questions</description>
    <pubDate>Mon, 26 Mar 2007 10:48:14 GMT</pubDate>
    <dc:creator>Chris Swenson</dc:creator>
    <dc:date>2007-03-26T10:48:14Z</dc:date>
    <item>
      <title>Adding disk to ML350 RHEL3 U5</title>
      <link>https://community.hpe.com/t5/operating-system-linux/adding-disk-to-ml350-rhel3-u5/m-p/5034258#M48350</link>
      <description>I have a ML350 G2 with 2 of the hot swap slots filled with 36 gig disks and a internal 72 gig disk on the scsi chain. SDA1 (36)is /boot, SDA6 is /usr,  SDB1 (36) is /var, SDC1 is /home (72).  My /var partiton is near full and I  wanted to slip in 72 gig disk into the next open hot swap slot.  While boot the bios and Rh apparently recognize the new disk, however when it gets to the file system check it pauses and offers me CTRL-D or log on as root.  I have moved partitions a number of times of the years but I am in unfamiliar territory with the hot swap disks.  Any guidence out there?&lt;BR /&gt;Thanks in advance&lt;BR /&gt;Chris S.</description>
      <pubDate>Thu, 15 Mar 2007 11:17:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/adding-disk-to-ml350-rhel3-u5/m-p/5034258#M48350</guid>
      <dc:creator>Chris Swenson</dc:creator>
      <dc:date>2007-03-15T11:17:48Z</dc:date>
    </item>
    <item>
      <title>Re: Adding disk to ML350 RHEL3 U5</title>
      <link>https://community.hpe.com/t5/operating-system-linux/adding-disk-to-ml350-rhel3-u5/m-p/5034259#M48351</link>
      <description>I think that probably the device names changed when you installed the new disk, and when the system starts and checks the disks, it cannot find a file system where it should be, for example, expect /var in sdb1 but now sdb is sdc, and so on.&lt;BR /&gt;&lt;BR /&gt;Before installing the new disk, I would modify /etc/fstab to use the file system LABEL instead of the hard partition name, for example instead of:&lt;BR /&gt;&lt;BR /&gt;/dev/sdb1 /home&lt;BR /&gt;&lt;BR /&gt;I would use&lt;BR /&gt;&lt;BR /&gt;LABEL=/home   /home&lt;BR /&gt;&lt;BR /&gt;You can check the file sytem label and set one with the e2label command.&lt;BR /&gt;&lt;BR /&gt;Once you use labels instead of hard device names, the device names can change but your won't have problems to mount your file systems.</description>
      <pubDate>Thu, 15 Mar 2007 12:05:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/adding-disk-to-ml350-rhel3-u5/m-p/5034259#M48351</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2007-03-15T12:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: Adding disk to ML350 RHEL3 U5</title>
      <link>https://community.hpe.com/t5/operating-system-linux/adding-disk-to-ml350-rhel3-u5/m-p/5034260#M48352</link>
      <description>&lt;!--!*#--&gt;So I would clean up my existing fstab (Listed at bottom) with.&lt;BR /&gt;&lt;BR /&gt;#e2label /dev/sdc1  /home&lt;BR /&gt;#e2label /dev/sdb1  /var&lt;BR /&gt;&lt;BR /&gt;Then I get a bit lost on the swap partitions&lt;BR /&gt;#e2label /dev/sda7  &lt;BR /&gt;#e2label /dev/sdb2&lt;BR /&gt;The examples I found did not address swap partitions.    &lt;BR /&gt;&lt;BR /&gt;[root@freya etc]# more fstab&lt;BR /&gt;LABEL=/         /   ext3  defaults        1 1&lt;BR /&gt;LABEL=/boot  /boot  ext3  defaults        1 2&lt;BR /&gt;none  /dev/pts    devpts  gid=5,mode=620  0 0&lt;BR /&gt;/dev/sdc1 /home     ext3   efaults        1 2&lt;BR /&gt;none  /proc       proc    defaults        0 0&lt;BR /&gt;none  /dev/shm    tmpfs   defaults        0 0&lt;BR /&gt;LABEL=/usr /usr   ext3    defaults        1 2&lt;BR /&gt;/dev/sdb1  /var   ext3    defaults        1 2&lt;BR /&gt;/dev/sda7   swap  swap    defaults        0 0&lt;BR /&gt;/dev/sdb2   swap  swap    defaults        0 0&lt;BR /&gt;/dev/cdrom  /mnt/cdrom  udf,iso9660 noauto,owner,kudzu,ro 0 0&lt;BR /&gt;/dev/fd0 /mnt/floppy auto    noauto,owner,kudzu 0 0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;CS</description>
      <pubDate>Fri, 16 Mar 2007 08:20:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/adding-disk-to-ml350-rhel3-u5/m-p/5034260#M48352</guid>
      <dc:creator>Chris Swenson</dc:creator>
      <dc:date>2007-03-16T08:20:56Z</dc:date>
    </item>
    <item>
      <title>Re: Adding disk to ML350 RHEL3 U5</title>
      <link>https://community.hpe.com/t5/operating-system-linux/adding-disk-to-ml350-rhel3-u5/m-p/5034261#M48353</link>
      <description>You need to reformat your swap partition with mkswap -L option.&lt;BR /&gt;&lt;BR /&gt;The swap partition must not be used, uncomment the swap from fstab, set the label, add again, reboot and do the same for the other swap area. Or do everything from the rescue CD.</description>
      <pubDate>Fri, 16 Mar 2007 08:56:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/adding-disk-to-ml350-rhel3-u5/m-p/5034261#M48353</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2007-03-16T08:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: Adding disk to ML350 RHEL3 U5</title>
      <link>https://community.hpe.com/t5/operating-system-linux/adding-disk-to-ml350-rhel3-u5/m-p/5034262#M48354</link>
      <description>This worked.  I did hit one hitch, I had already moved the var partiton once so an abandoned slice of the sda disk already had a label of /var.  It pays to keep a rescue disk handy.  I booted rescue and fixed the labeling up and mount the new and old disks fine.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;cs</description>
      <pubDate>Fri, 16 Mar 2007 12:11:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/adding-disk-to-ml350-rhel3-u5/m-p/5034262#M48354</guid>
      <dc:creator>Chris Swenson</dc:creator>
      <dc:date>2007-03-16T12:11:05Z</dc:date>
    </item>
    <item>
      <title>Re: Adding disk to ML350 RHEL3 U5</title>
      <link>https://community.hpe.com/t5/operating-system-linux/adding-disk-to-ml350-rhel3-u5/m-p/5034263#M48355</link>
      <description>answers solved questions</description>
      <pubDate>Mon, 26 Mar 2007 10:48:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/adding-disk-to-ml350-rhel3-u5/m-p/5034263#M48355</guid>
      <dc:creator>Chris Swenson</dc:creator>
      <dc:date>2007-03-26T10:48:14Z</dc:date>
    </item>
  </channel>
</rss>

