<?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: Free up some space on filesystem and use space to create another. in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/free-up-some-space-on-filesystem-and-use-space-to-create-another/m-p/4895842#M45498</link>
    <description>THANKS!</description>
    <pubDate>Wed, 13 Apr 2005 10:17:58 GMT</pubDate>
    <dc:creator>f. halili</dc:creator>
    <dc:date>2005-04-13T10:17:58Z</dc:date>
    <item>
      <title>Free up some space on filesystem and use space to create another.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/free-up-some-space-on-filesystem-and-use-space-to-create-another/m-p/4895837#M45493</link>
      <description>How can I get space from one file system and create another using filesystem using the space that will be freed up?&lt;BR /&gt;&lt;BR /&gt;Here's my df. I would like to take some space from /opt and create /webapp2. Is this possible?&lt;BR /&gt;&lt;BR /&gt;Filesystem           1K-blocks      Used Available Use% Mounted on&lt;BR /&gt;/dev/cciss/c0d0p3      6047972    224272   5516476   4% /&lt;BR /&gt;/dev/cciss/c0d0p1       296307     19093    261915   7% /boot&lt;BR /&gt;/dev/cciss/c0d0p8      3525936     98152   3248676   3% /home&lt;BR /&gt;/dev/cciss/c0d0p5      5039840     32828   4750996   1% /opt&lt;BR /&gt;/dev/cciss/c0d0p9      2923532     32980   2742044   2% /tmp&lt;BR /&gt;/dev/cciss/c0d0p7      4031856   1986608   1840436  52% /usr&lt;BR /&gt;/dev/cciss/c0d0p6      5039840    161164   4622660   4% /var&lt;BR /&gt;/dev/cciss/c0d0p2      6047972     50188   5690560   1% /webapp&lt;BR /&gt;&lt;BR /&gt;THANKS,&lt;BR /&gt;F. HALILI</description>
      <pubDate>Tue, 12 Apr 2005 13:42:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/free-up-some-space-on-filesystem-and-use-space-to-create-another/m-p/4895837#M45493</guid>
      <dc:creator>f. halili</dc:creator>
      <dc:date>2005-04-12T13:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: Free up some space on filesystem and use space to create another.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/free-up-some-space-on-filesystem-and-use-space-to-create-another/m-p/4895838#M45494</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;there is no simple because you can't free space alocated by logical partition 5. &lt;BR /&gt;I think that you can use /dev/cciss/c0d0p5 in LVM vg and then create logical-volumens:&lt;BR /&gt;1. stop all apllications which are using /opt &lt;BR /&gt;2. backup /opt&lt;BR /&gt;   cd /opt&lt;BR /&gt;   tar cvf /tmp/opt.tar  opt&lt;BR /&gt;3. umount /opt&lt;BR /&gt;4. create LVM vg group &lt;BR /&gt;   pvcreate -f /dev/cciss/c0d0p5&lt;BR /&gt;   vgcreate vg00 /dev/cciss/c0d0p5&lt;BR /&gt;5. create logical volumens for /opt and /webapp2&lt;BR /&gt;   lvcreate -L xxxM /dev/vg00&lt;BR /&gt;   lvcreate -L yyyM /dev/vg00&lt;BR /&gt;   replace xxx with your /opt size&lt;BR /&gt;   replace yyy with your /webapp2 size&lt;BR /&gt;&lt;BR /&gt;6. modify /etc/fstab&lt;BR /&gt;   for /opt&lt;BR /&gt;    replace /dev/cciss/c0d0p5 with /dev/vg00/lvol1&lt;BR /&gt;   create line for /webapp2 (/dev/vg00/lvol2)&lt;BR /&gt;&lt;BR /&gt;6. mount volumens&lt;BR /&gt;   mount -a&lt;BR /&gt;&lt;BR /&gt;7. untar /opt&lt;BR /&gt;   tar xvf /tmp/opt.tar&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;It all       &lt;BR /&gt;</description>
      <pubDate>Tue, 12 Apr 2005 13:52:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/free-up-some-space-on-filesystem-and-use-space-to-create-another/m-p/4895838#M45494</guid>
      <dc:creator>Slawomir Gora</dc:creator>
      <dc:date>2005-04-12T13:52:46Z</dc:date>
    </item>
    <item>
      <title>Re: Free up some space on filesystem and use space to create another.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/free-up-some-space-on-filesystem-and-use-space-to-create-another/m-p/4895839#M45495</link>
      <description>My linux machine is not using LVM it has a "ext3" filesystem. Here's my /etc/fstab:&lt;BR /&gt;&lt;BR /&gt;[root@ISTORE /]# more /etc/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;LABEL=/home             /home                   ext3    defaults        1 2&lt;BR /&gt;LABEL=/opt              /opt                    ext3    defaults        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=/tmp              /tmp                    ext3    defaults        1 2&lt;BR /&gt;LABEL=/usr              /usr                    ext3    defaults        1 2&lt;BR /&gt;LABEL=/var              /var                    ext3    defaults        1 2&lt;BR /&gt;LABEL=/webapp           /webapp                 ext3    defaults        1 2&lt;BR /&gt;/dev/cciss/c0d0p10      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;[root@ISTORE /]# &lt;BR /&gt;</description>
      <pubDate>Tue, 12 Apr 2005 13:57:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/free-up-some-space-on-filesystem-and-use-space-to-create-another/m-p/4895839#M45495</guid>
      <dc:creator>f. halili</dc:creator>
      <dc:date>2005-04-12T13:57:10Z</dc:date>
    </item>
    <item>
      <title>Re: Free up some space on filesystem and use space to create another.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/free-up-some-space-on-filesystem-and-use-space-to-create-another/m-p/4895840#M45496</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;LVM it not file system type but Logical Volume Manager - when you create logical volumen&lt;BR /&gt;you have to create file system on it (sorry I forget it my steps)&lt;BR /&gt;ex: for opt:&lt;BR /&gt;mkfs.ext3 /dev/vg00/lvol1&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 12 Apr 2005 14:38:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/free-up-some-space-on-filesystem-and-use-space-to-create-another/m-p/4895840#M45496</guid>
      <dc:creator>Slawomir Gora</dc:creator>
      <dc:date>2005-04-12T14:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: Free up some space on filesystem and use space to create another.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/free-up-some-space-on-filesystem-and-use-space-to-create-another/m-p/4895841#M45497</link>
      <description>You can use parted to create destroy and resize partitions.&lt;BR /&gt;&lt;BR /&gt;man parted &lt;BR /&gt;&lt;BR /&gt;--Dave</description>
      <pubDate>Tue, 12 Apr 2005 16:30:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/free-up-some-space-on-filesystem-and-use-space-to-create-another/m-p/4895841#M45497</guid>
      <dc:creator>Dave Falloon</dc:creator>
      <dc:date>2005-04-12T16:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: Free up some space on filesystem and use space to create another.</title>
      <link>https://community.hpe.com/t5/operating-system-linux/free-up-some-space-on-filesystem-and-use-space-to-create-another/m-p/4895842#M45498</link>
      <description>THANKS!</description>
      <pubDate>Wed, 13 Apr 2005 10:17:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/free-up-some-space-on-filesystem-and-use-space-to-create-another/m-p/4895842#M45498</guid>
      <dc:creator>f. halili</dc:creator>
      <dc:date>2005-04-13T10:17:58Z</dc:date>
    </item>
  </channel>
</rss>

