<?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: lvextend in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/lvextend/m-p/4501218#M38334</link>
    <description>Yes Sure....Its SLES 10 environment.&lt;BR /&gt;&lt;BR /&gt;It says,&lt;BR /&gt;&lt;BR /&gt; -f     Force checking even if the file system seems clean.&lt;BR /&gt;&lt;BR /&gt;I knew its usage but my question is why is it mendatory to run it before resize2fs?.....&lt;BR /&gt;maybe i m asking too much</description>
    <pubDate>Tue, 22 Sep 2009 08:21:12 GMT</pubDate>
    <dc:creator>admin1979</dc:creator>
    <dc:date>2009-09-22T08:21:12Z</dc:date>
    <item>
      <title>lvextend</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvextend/m-p/4501213#M38329</link>
      <description>&lt;BR /&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;On a test environment, I have created a volume group vg1 and inside that added 1 pv. Created a logical volume lv1 and the size of the lv &lt;BR /&gt;became 18GB. Formatted the logical volume and mounted the logical volume. Created few files in it. Now added another PV to VG1 inorder&lt;BR /&gt;to increase the size. Then used,&lt;BR /&gt;&lt;BR /&gt;lvextend -L +30G lv1  , the command completed successfully.&lt;BR /&gt;&lt;BR /&gt;But now the mounted lv1 is still showing the original size 18GB. I remounted the same but no help.&lt;BR /&gt;Anything to execute to take new change effect?&lt;BR /&gt;&lt;BR /&gt;Thanx,&lt;BR /&gt;admin</description>
      <pubDate>Tue, 22 Sep 2009 06:11:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvextend/m-p/4501213#M38329</guid>
      <dc:creator>admin1979</dc:creator>
      <dc:date>2009-09-22T06:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: lvextend</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvextend/m-p/4501214#M38330</link>
      <description>You probably extended the LV but not the filesystem inside it.&lt;BR /&gt;&lt;BR /&gt;After extending the LV, you must extend the filesystem. This requires a filesystem-specific tool: for ext2/ext3 filesystems, the tool is resize2fs. (RHEL4 had a different tool called ext2online for extending mounted ext3 filesystems; with newer distributions, this is integrated into resize2fs)&lt;BR /&gt;&lt;BR /&gt;For ReiserFS, the tool is resize_reiserfs. I think XFS also had its own method, but I cannot remember it just now.&lt;BR /&gt;&lt;BR /&gt;Read the man page of the respective tool for your filesystem for more details.&lt;BR /&gt;&lt;BR /&gt;Note: if you have to shrink a LV, the order of operations will be different: first shrink the filesystem (which generally cannot be done while the filesystem is mounted), then reduce the LV. The bottom line is: the filesystem must never be larger than the LV that encloses it, or else you may lose data.&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Tue, 22 Sep 2009 06:34:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvextend/m-p/4501214#M38330</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2009-09-22T06:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: lvextend</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvextend/m-p/4501215#M38331</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;lvextend extend only logical volume, not the file system.&lt;BR /&gt;&lt;BR /&gt;the command is depend which FS type is used.&lt;BR /&gt;&lt;BR /&gt;an example :&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.netadmintools.com/art366.html" target="_blank"&gt;http://www.netadmintools.com/art366.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;mikap</description>
      <pubDate>Tue, 22 Sep 2009 07:04:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvextend/m-p/4501215#M38331</guid>
      <dc:creator>Michal Kapalka (mikap)</dc:creator>
      <dc:date>2009-09-22T07:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: lvextend</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvextend/m-p/4501216#M38332</link>
      <description>Ok I ran resize2fs after unounting the filesystem. And it asked me to run&lt;BR /&gt;&lt;BR /&gt;e2fsadm -f /dev/vg1/lv1&lt;BR /&gt;&lt;BR /&gt;Is it necessary? Why? Will it harm the inside data?</description>
      <pubDate>Tue, 22 Sep 2009 08:03:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvextend/m-p/4501216#M38332</guid>
      <dc:creator>admin1979</dc:creator>
      <dc:date>2009-09-22T08:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: lvextend</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvextend/m-p/4501217#M38333</link>
      <description>Please read the man page of e2fsadm on your system to find out what the -f option does: on my RHEL3 systems, the e2fsadm does not have the -f option nor any documentation about it.&lt;BR /&gt;&lt;BR /&gt;Debian 5.0, RHEL4 and RHEL5 distributions don't seem to even have the e2fsadm command at all.&lt;BR /&gt;&lt;BR /&gt;It might be helpful if you could tell the name and version of your Linux distribution, so that someone who uses the same version could give you more detailed advice.&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Tue, 22 Sep 2009 08:18:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvextend/m-p/4501217#M38333</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2009-09-22T08:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: lvextend</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvextend/m-p/4501218#M38334</link>
      <description>Yes Sure....Its SLES 10 environment.&lt;BR /&gt;&lt;BR /&gt;It says,&lt;BR /&gt;&lt;BR /&gt; -f     Force checking even if the file system seems clean.&lt;BR /&gt;&lt;BR /&gt;I knew its usage but my question is why is it mendatory to run it before resize2fs?.....&lt;BR /&gt;maybe i m asking too much</description>
      <pubDate>Tue, 22 Sep 2009 08:21:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvextend/m-p/4501218#M38334</guid>
      <dc:creator>admin1979</dc:creator>
      <dc:date>2009-09-22T08:21:12Z</dc:date>
    </item>
  </channel>
</rss>

