<?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: Extending file system in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/extending-file-system/m-p/2533143#M80301</link>
    <description>Why would you need 20G for /usr ?&lt;BR /&gt;Maybe instead of moving your old /usr to this new disk you should consider moving your data out of /usr or creating a new mount point /usr/my_big_appl.&lt;BR /&gt;Just my opinion...&lt;BR /&gt;</description>
    <pubDate>Mon, 28 May 2001 11:45:04 GMT</pubDate>
    <dc:creator>Laurent Paumier</dc:creator>
    <dc:date>2001-05-28T11:45:04Z</dc:date>
    <item>
      <title>Extending file system</title>
      <link>https://community.hpe.com/t5/operating-system-linux/extending-file-system/m-p/2533140#M80298</link>
      <description>Hi&lt;BR /&gt;I have Linux 6.2 on 10gb IDE drive. I have add new 20GB on it. I used fdisk and remove old partition and create new partition. How do I add this new space in my current partation /usr?&lt;BR /&gt;I have not run any fs command on it yet.&lt;BR /&gt;&lt;BR /&gt;Sachin</description>
      <pubDate>Fri, 25 May 2001 20:16:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/extending-file-system/m-p/2533140#M80298</guid>
      <dc:creator>Sachin Patel</dc:creator>
      <dc:date>2001-05-25T20:16:29Z</dc:date>
    </item>
    <item>
      <title>Re: Extending file system</title>
      <link>https://community.hpe.com/t5/operating-system-linux/extending-file-system/m-p/2533141#M80299</link>
      <description>Hi Sachin,&lt;BR /&gt;if i understood you, you have currently mounted your /usr on an 10G partition, and want to move it to another partition with 20G.&lt;BR /&gt;&lt;BR /&gt;first you have to create a filesyste on the new partition with one of the following commands:&lt;BR /&gt;"mkreiserfs /dev/hdXX"  or "mke2fs /dev/hdXX".&lt;BR /&gt;i recommend reiserfs, cause it journals.&lt;BR /&gt;in the next step you have to move your data from the old /usr to the new one. for this mount the new partition on /mnt.&lt;BR /&gt;for copying the data your should NOT use cp!&lt;BR /&gt;cp would replace all file ownerships with the current user (in this case, normally root).&lt;BR /&gt;instead, copy the data with tar:&lt;BR /&gt;&lt;BR /&gt;cd /usr&lt;BR /&gt;tar -cSpf - * | (cd /mnt; tar -xSpvf - *)&lt;BR /&gt;&lt;BR /&gt;next verify if everything was copied correctly.&lt;BR /&gt;if so, you could umount your old /usr and mount the new one.</description>
      <pubDate>Mon, 28 May 2001 05:58:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/extending-file-system/m-p/2533141#M80299</guid>
      <dc:creator>Bernd Reize</dc:creator>
      <dc:date>2001-05-28T05:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: Extending file system</title>
      <link>https://community.hpe.com/t5/operating-system-linux/extending-file-system/m-p/2533142#M80300</link>
      <description>If you have lvm:&lt;BR /&gt;#lvextend -L xxx /dev/vgxx/lvolx&lt;BR /&gt;#extendfs /dev/vgxx/rlvolx</description>
      <pubDate>Mon, 28 May 2001 08:52:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/extending-file-system/m-p/2533142#M80300</guid>
      <dc:creator>Vincenzo Restuccia</dc:creator>
      <dc:date>2001-05-28T08:52:48Z</dc:date>
    </item>
    <item>
      <title>Re: Extending file system</title>
      <link>https://community.hpe.com/t5/operating-system-linux/extending-file-system/m-p/2533143#M80301</link>
      <description>Why would you need 20G for /usr ?&lt;BR /&gt;Maybe instead of moving your old /usr to this new disk you should consider moving your data out of /usr or creating a new mount point /usr/my_big_appl.&lt;BR /&gt;Just my opinion...&lt;BR /&gt;</description>
      <pubDate>Mon, 28 May 2001 11:45:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/extending-file-system/m-p/2533143#M80301</guid>
      <dc:creator>Laurent Paumier</dc:creator>
      <dc:date>2001-05-28T11:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: Extending file system</title>
      <link>https://community.hpe.com/t5/operating-system-linux/extending-file-system/m-p/2533144#M80302</link>
      <description>Hi Bernd,&lt;BR /&gt;Everythig works fine except I used&lt;BR /&gt;tar -cSpf - * |(cd /mnt;tar -xSpvf *) (- didn't work for me)&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Sachin</description>
      <pubDate>Tue, 29 May 2001 16:52:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/extending-file-system/m-p/2533144#M80302</guid>
      <dc:creator>Sachin Patel</dc:creator>
      <dc:date>2001-05-29T16:52:21Z</dc:date>
    </item>
    <item>
      <title>Re: Extending file system</title>
      <link>https://community.hpe.com/t5/operating-system-linux/extending-file-system/m-p/2533145#M80303</link>
      <description>I was wondering if you had tried resize2fs on this, and if so did it fail?  If you have the new partition already created, then resize2fs should work. I've had good results with it, and it seems to be the simplest method to do what you explain.</description>
      <pubDate>Sat, 02 Jun 2001 00:28:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/extending-file-system/m-p/2533145#M80303</guid>
      <dc:creator>Ted M Johnson</dc:creator>
      <dc:date>2001-06-02T00:28:03Z</dc:date>
    </item>
  </channel>
</rss>

