<?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: Disk druid in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/disk-druid/m-p/3811652#M23960</link>
    <description>Shalom Tim,&lt;BR /&gt;&lt;BR /&gt;Since you have used lvm, you can resize, destory, rebuild, do anything you need with an LVM volume with the GUI that ships with the OS.&lt;BR /&gt;&lt;BR /&gt;I know its not real systems administration, but it is a great time saver. LVM is almost as good as disk druid.&lt;BR /&gt;&lt;BR /&gt;As far as I know, there is no way to use disk druid except at installation time.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
    <pubDate>Sun, 25 Jun 2006 12:59:38 GMT</pubDate>
    <dc:creator>Steven E. Protter</dc:creator>
    <dc:date>2006-06-25T12:59:38Z</dc:date>
    <item>
      <title>Disk druid</title>
      <link>https://community.hpe.com/t5/operating-system-linux/disk-druid/m-p/3811649#M23957</link>
      <description>When I installed RedHat EL4 I took the defaults as far as disk partitioning.  I'm now in a situation where I have:&lt;BR /&gt;&lt;BR /&gt;/dev/mapper/VolGroup00-LogVol00&lt;BR /&gt;                      67829336   2903260  61480524   5% /&lt;BR /&gt;/dev/cciss/c0d0p1       101086     19008     76859  20% /boot&lt;BR /&gt;none                    517328         0    517328   0% /dev/shm&lt;BR /&gt;&lt;BR /&gt;Rather than have a 68gb lvol mounted on / I'd like to break things up.  I was thinking I'd leave 8gb for / and then create various other lvols and filesystems for Oracle.&lt;BR /&gt;&lt;BR /&gt;I guess it's probably too late to get back into Disk Druid to set this up?  Can I just lvreduce   using something like this?&lt;BR /&gt;&lt;BR /&gt;lvreduce -L -58 VolGroup00-LogVol00  ??&lt;BR /&gt;&lt;BR /&gt;Thanks,Tim</description>
      <pubDate>Fri, 23 Jun 2006 15:34:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/disk-druid/m-p/3811649#M23957</guid>
      <dc:creator>Tim Medford</dc:creator>
      <dc:date>2006-06-23T15:34:20Z</dc:date>
    </item>
    <item>
      <title>Re: Disk druid</title>
      <link>https://community.hpe.com/t5/operating-system-linux/disk-druid/m-p/3811650#M23958</link>
      <description>Ouch. You've managed to create a thorny little problem.&lt;BR /&gt;&lt;BR /&gt;Before reducing the logical volume with lvreduce, you must first shrink the filesystem. Otherwise you'll end up with a filesystem that is trying to store things beyond the end of its container (the logical volume) which will mean bad error messages and data loss when the system starts trying to access the "extra" space.&lt;BR /&gt;&lt;BR /&gt;Looks like ext2online cannot shrink a filesystem online, only enlarge it. So you would need to umount the filesystem to shrink it with resize2fs... but we're talking about the root filesystem, which cannot really be unmounted while the system is running.&lt;BR /&gt;&lt;BR /&gt;IF the RedHat ES4 installation CD's rescue mode has resize2fs available, you could boot in rescue mode (boot from CD and see the instructions for rescue mode in the boot prompt) and resize the root filesystem from there.&lt;BR /&gt;&lt;BR /&gt;After successfully shrinking the filesystem with resize2fs, you can do the lvreduce while the system is running normally.&lt;BR /&gt;&lt;BR /&gt;When re-sizing a combination of a filesystem and its logical volume, always be very careful that the filesystem size stays smaller or equal to the size of its logical volume at all times. So, when reducing size, you first shrink the filesystem and then the underlying logical volume. When enlarging, you grow the logical volume first.&lt;BR /&gt;&lt;BR /&gt;There is a tool called "fsadm" in development which could greatly simplify filesystem/LV resizing operations, but it seems it isn't included in RHES4. Probably RedHat has judged it's not yet mature enough for production use...</description>
      <pubDate>Fri, 23 Jun 2006 16:08:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/disk-druid/m-p/3811650#M23958</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2006-06-23T16:08:18Z</dc:date>
    </item>
    <item>
      <title>Re: Disk druid</title>
      <link>https://community.hpe.com/t5/operating-system-linux/disk-druid/m-p/3811651#M23959</link>
      <description>Thanks Matti.&lt;BR /&gt;&lt;BR /&gt;It's just a test machine so I think I'll cheat and create /oracle and others just as directories on lvol00.&lt;BR /&gt;&lt;BR /&gt;This is good information to know for next time though!  My experience is all with HPUX, very little with Linux.&lt;BR /&gt;&lt;BR /&gt;I'd like to know if most folks bother creating separate logical volumes for the root filesystems.  For example on HPUX by default you get lvol1-lvol8 with /stand, swap, /, /var,/usr,/home all mounted as separate filesystems.  Seems like in Redhat it wants to put all the root filesystems under lvol00.&lt;BR /&gt;&lt;BR /&gt;For next round seems like 8gb is plenty for the OS and I'll leave the rest unallocated for future use.&lt;BR /&gt;&lt;BR /&gt;THanks, Tim</description>
      <pubDate>Fri, 23 Jun 2006 16:16:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/disk-druid/m-p/3811651#M23959</guid>
      <dc:creator>Tim Medford</dc:creator>
      <dc:date>2006-06-23T16:16:55Z</dc:date>
    </item>
    <item>
      <title>Re: Disk druid</title>
      <link>https://community.hpe.com/t5/operating-system-linux/disk-druid/m-p/3811652#M23960</link>
      <description>Shalom Tim,&lt;BR /&gt;&lt;BR /&gt;Since you have used lvm, you can resize, destory, rebuild, do anything you need with an LVM volume with the GUI that ships with the OS.&lt;BR /&gt;&lt;BR /&gt;I know its not real systems administration, but it is a great time saver. LVM is almost as good as disk druid.&lt;BR /&gt;&lt;BR /&gt;As far as I know, there is no way to use disk druid except at installation time.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Sun, 25 Jun 2006 12:59:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/disk-druid/m-p/3811652#M23960</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2006-06-25T12:59:38Z</dc:date>
    </item>
  </channel>
</rss>

