<?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: lvm &amp;amp; resize in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/lvm-amp-resize/m-p/3337462#M13338</link>
    <description>I need to extend my LV from 100GB to 150GB. Is it safe or i should backup too?&lt;BR /&gt;&lt;BR /&gt;   PF</description>
    <pubDate>Fri, 30 Jul 2004 02:54:31 GMT</pubDate>
    <dc:creator>Josef Forman</dc:creator>
    <dc:date>2004-07-30T02:54:31Z</dc:date>
    <item>
      <title>lvm &amp; resize</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvm-amp-resize/m-p/3337457#M13333</link>
      <description>How can I change size of my LV (reiser and ext3) without loosing data?&lt;BR /&gt;</description>
      <pubDate>Wed, 21 Jul 2004 09:24:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvm-amp-resize/m-p/3337457#M13333</guid>
      <dc:creator>Josef Forman</dc:creator>
      <dc:date>2004-07-21T09:24:35Z</dc:date>
    </item>
    <item>
      <title>Re: lvm &amp; resize</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvm-amp-resize/m-p/3337458#M13334</link>
      <description>If you are using lvm for disk managment, the command is lvreduce.&lt;BR /&gt;&lt;BR /&gt;Helpful hints&lt;BR /&gt;1) Back up your data before you start, if you squeeze too hard, you'll hammer your data.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Wed, 21 Jul 2004 09:43:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvm-amp-resize/m-p/3337458#M13334</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-07-21T09:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: lvm &amp; resize</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvm-amp-resize/m-p/3337459#M13335</link>
      <description>Extending is most of the time ok :&lt;BR /&gt;lvextend -L +50M /dev/vgname/lvname&lt;BR /&gt;or&lt;BR /&gt;lvextend -L 450M /dev/vgname/lvname&lt;BR /&gt;&lt;BR /&gt;Where vgname is your group volume name, and lvname your Logical volume name.&lt;BR /&gt;You can use the +50M (say) to increase for 50 M, or put directly required new size.&lt;BR /&gt;&lt;BR /&gt;SAme with lvreduce, but it's safer to backup, as it's supposed to be safe if you reduce to a size larger than your data volume, but it happends that datas are altered...&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;&lt;BR /&gt;Jerome Henry</description>
      <pubDate>Wed, 21 Jul 2004 10:08:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvm-amp-resize/m-p/3337459#M13335</guid>
      <dc:creator>Jerome Henry</dc:creator>
      <dc:date>2004-07-21T10:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: lvm &amp; resize</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvm-amp-resize/m-p/3337460#M13336</link>
      <description>hi AliG,&lt;BR /&gt;what do you mean by the change of size - extending fs or reducing ? I have some hints for reiserfs:&lt;BR /&gt;&lt;BR /&gt;BACKUP YOUR DATA FIRST&lt;BR /&gt;&lt;BR /&gt;In case of Reiser extending:&lt;BR /&gt;1.vgdiplay -v #check free space on currentVG&lt;BR /&gt;2.lvextend -L +6G /dev/vg00/lv00 &lt;BR /&gt;3.resize_reiserfs /dev/vg00/lv00 &lt;BR /&gt;&lt;BR /&gt;In case of Reiser reducing ON value:&lt;BR /&gt;1.reduce the size of fs:&lt;BR /&gt;resize_reiserfs -s-2048M -f /dev/vg02/lv00&lt;BR /&gt;&lt;BR /&gt;2.reduce size of LV&lt;BR /&gt;lvreduce -L-2G /dev/vg02/lv00&lt;BR /&gt; &lt;BR /&gt;Be carefful, although you can do resizing on mounted fs, it is safer to do it on unmounted.&lt;BR /&gt;&lt;BR /&gt;br Jan&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 21 Jul 2004 10:39:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvm-amp-resize/m-p/3337460#M13336</guid>
      <dc:creator>Jan Sladky</dc:creator>
      <dc:date>2004-07-21T10:39:41Z</dc:date>
    </item>
    <item>
      <title>Re: lvm &amp; resize</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvm-amp-resize/m-p/3337461#M13337</link>
      <description>What do you want to do?!?!&lt;BR /&gt;Do you want extend or reduce logical volume?!&lt;BR /&gt;&lt;BR /&gt;If you want extend the command is:&lt;BR /&gt;&lt;BR /&gt;# lvextend -L 500 /dev/vg_name/lv_name&lt;BR /&gt;&lt;BR /&gt;where 500 is the new size of volume&lt;BR /&gt;&lt;BR /&gt;If you want reduce the LV is:&lt;BR /&gt;&lt;BR /&gt;# lvreduce -L 500 /dev/vg_name/lv_name&lt;BR /&gt;&lt;BR /&gt;(BACKUP YOUR DATA BEFORE REDUCE LV!!)&lt;BR /&gt;&lt;BR /&gt;Bye!</description>
      <pubDate>Thu, 29 Jul 2004 10:40:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvm-amp-resize/m-p/3337461#M13337</guid>
      <dc:creator>Marco Di Ianni</dc:creator>
      <dc:date>2004-07-29T10:40:31Z</dc:date>
    </item>
    <item>
      <title>Re: lvm &amp; resize</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvm-amp-resize/m-p/3337462#M13338</link>
      <description>I need to extend my LV from 100GB to 150GB. Is it safe or i should backup too?&lt;BR /&gt;&lt;BR /&gt;   PF</description>
      <pubDate>Fri, 30 Jul 2004 02:54:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvm-amp-resize/m-p/3337462#M13338</guid>
      <dc:creator>Josef Forman</dc:creator>
      <dc:date>2004-07-30T02:54:31Z</dc:date>
    </item>
    <item>
      <title>Re: lvm &amp; resize</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvm-amp-resize/m-p/3337463#M13339</link>
      <description>No.....for extend operation you don't need to backup data, this operation is not dangerous!  Don't worry!&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 30 Jul 2004 09:10:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvm-amp-resize/m-p/3337463#M13339</guid>
      <dc:creator>Marco Di Ianni</dc:creator>
      <dc:date>2004-07-30T09:10:03Z</dc:date>
    </item>
    <item>
      <title>Re: lvm &amp; resize</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvm-amp-resize/m-p/3337464#M13340</link>
      <description>I would back up the data prior to the extend&lt;BR /&gt;&lt;BR /&gt;There are rare cases on hp-ux (from whece lvm comes), where an extend failed and corrupted the filesystem.&lt;BR /&gt;&lt;BR /&gt;Extending a logical volume is much safer than trying to make it smaller.&lt;BR /&gt;&lt;BR /&gt;The process is:&lt;BR /&gt;&lt;BR /&gt;lvextend -L &lt;SIZE in="" mb=""&gt; /name_of_lvol /disk&lt;BR /&gt;umount the filesystem&lt;BR /&gt;extendfs&lt;BR /&gt;&lt;BR /&gt;SEP&lt;/SIZE&gt;</description>
      <pubDate>Fri, 30 Jul 2004 12:04:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvm-amp-resize/m-p/3337464#M13340</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-07-30T12:04:42Z</dc:date>
    </item>
  </channel>
</rss>

