<?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: How to create and move the LV from HPSAN to vg00 ? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456373#M561702</link>
    <description>But you should keep vg00 clean an store any data in other VGs.</description>
    <pubDate>Thu, 09 Jul 2009 08:39:29 GMT</pubDate>
    <dc:creator>Torsten.</dc:creator>
    <dc:date>2009-07-09T08:39:29Z</dc:date>
    <item>
      <title>How to create and move the LV from HPSAN to vg00 ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456371#M561700</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I have the following filesystem which mount from HP-SAN,&lt;BR /&gt;&lt;BR /&gt;/dev/vgBankHSBC/lv_bankHSBC 4012288 623909 017560   76% /bank1/opt&lt;BR /&gt;&lt;BR /&gt;Which I have to create and move to Vg00, can anyone guide me the steps ?&lt;BR /&gt;&lt;BR /&gt;Many thanks !!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Jul 2009 08:15:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456371#M561700</guid>
      <dc:creator>DnD_1</dc:creator>
      <dc:date>2009-07-09T08:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to create and move the LV from HPSAN to vg00 ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456372#M561701</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;you need to create logical volume using lvcreate.no other way.&lt;BR /&gt;lvcreate -L  size -n lvname vg00&lt;BR /&gt;newfs -F vxfs /dev/vg00/lvol&lt;BR /&gt;create mount point and mount the file system.copy the data from /bank1/opt to new mount point&lt;BR /&gt;BTW why you need to create data volume in vg00</description>
      <pubDate>Thu, 09 Jul 2009 08:27:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456372#M561701</guid>
      <dc:creator>Roopesh Francis_1</dc:creator>
      <dc:date>2009-07-09T08:27:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to create and move the LV from HPSAN to vg00 ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456373#M561702</link>
      <description>But you should keep vg00 clean an store any data in other VGs.</description>
      <pubDate>Thu, 09 Jul 2009 08:39:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456373#M561702</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2009-07-09T08:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to create and move the LV from HPSAN to vg00 ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456374#M561703</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;usually it's good to keep vg00 only for system crucial filesystems, like /stand, /usr, /opt, etc.&lt;BR /&gt;&lt;BR /&gt;Anyway if you are really interested to move data from a filesystem to another one, you can use the following command:&lt;BR /&gt;&lt;BR /&gt;- create the new filesystem on vg00 by lvcreate and newfs;&lt;BR /&gt;- move data:&lt;BR /&gt;cd /bank1/opt&lt;BR /&gt;find . -xdev -print | cpio -pdmvux /&lt;MOUNT point="" of="" new="" filesystem="" in="" vg00=""&gt;&lt;BR /&gt;&lt;BR /&gt;Otherwise you can backup data from /bank1/opt and restore them to new filesystem.&lt;BR /&gt;&lt;BR /&gt;Definitely you have some possibilities.&lt;BR /&gt;&lt;BR /&gt;HTH.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Fabio&lt;/MOUNT&gt;</description>
      <pubDate>Thu, 09 Jul 2009 08:46:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456374#M561703</guid>
      <dc:creator>Fabio Ettore</dc:creator>
      <dc:date>2009-07-09T08:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to create and move the LV from HPSAN to vg00 ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456375#M561704</link>
      <description>Hi,&lt;BR /&gt;create a new lv under vg00&lt;BR /&gt;mount it and then move all data from this lv to new lv or &lt;BR /&gt;take a backup of existing lv create a new lv under vg00, mount it and restore all data from your backup.&lt;BR /&gt;before going to create lv into vg00 check you vg00 is having sufficient space to create new lv.&lt;BR /&gt;&lt;BR /&gt;steps are&lt;BR /&gt;vgdisplay -v vg00&lt;BR /&gt;lvcreate -L 3920 -n myvolume /dev/vg00&lt;BR /&gt;newfs -F vxfs -o largfiles /dev/vg00/mymolume&lt;BR /&gt;mkdir /newmountpoint&lt;BR /&gt;&lt;BR /&gt;mount /dev/vg00/myvolume /newmountpoint&lt;BR /&gt;&lt;BR /&gt;then cipo to copy data&lt;BR /&gt;find . -print | cpio -pdl /newmountpoint&lt;BR /&gt;&lt;BR /&gt;for more info on cpio see the below link&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.ncsa.illinois.edu/UserInfo/Resources/Hardware/IBMp690/IBM/usr/share/man/info/en_US/a_doc_lib/cmds/aixcmds1/cpio.htm" target="_blank"&gt;http://www.ncsa.illinois.edu/UserInfo/Resources/Hardware/IBMp690/IBM/usr/share/man/info/en_US/a_doc_lib/cmds/aixcmds1/cpio.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Suraj&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Suraj</description>
      <pubDate>Thu, 09 Jul 2009 08:55:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456375#M561704</guid>
      <dc:creator>Suraj K Sankari</dc:creator>
      <dc:date>2009-07-09T08:55:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to create and move the LV from HPSAN to vg00 ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456376#M561705</link>
      <description>Thanks all.&lt;BR /&gt;&lt;BR /&gt;but i have to mount to the same directory /bank1/opt....how can I do that&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Jul 2009 09:35:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456376#M561705</guid>
      <dc:creator>DnD_1</dc:creator>
      <dc:date>2009-07-09T09:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to create and move the LV from HPSAN to vg00 ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456377#M561706</link>
      <description>Mount the new LVOL to another mount point, let's say&lt;BR /&gt;&lt;BR /&gt;/bank1/opt_new&lt;BR /&gt;&lt;BR /&gt;copy the data, unmount the old and mount the new LVOL to the original mount point.&lt;BR /&gt;&lt;BR /&gt;You need to stop the accessing application for that.</description>
      <pubDate>Thu, 09 Jul 2009 09:40:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456377#M561706</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2009-07-09T09:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to create and move the LV from HPSAN to vg00 ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456378#M561707</link>
      <description>Hi &lt;BR /&gt;&lt;BR /&gt;Follow the Torsten's steps.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Sunny</description>
      <pubDate>Thu, 09 Jul 2009 09:54:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456378#M561707</guid>
      <dc:creator>Sunny123_1</dc:creator>
      <dc:date>2009-07-09T09:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to create and move the LV from HPSAN to vg00 ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456379#M561708</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;Follow Above procedure BUT&lt;BR /&gt;&lt;BR /&gt;Make sure to update /etc/fstab with new changes&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Sanjeev</description>
      <pubDate>Thu, 09 Jul 2009 11:06:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456379#M561708</guid>
      <dc:creator>Sharma Sanjeev</dc:creator>
      <dc:date>2009-07-09T11:06:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to create and move the LV from HPSAN to vg00 ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456380#M561709</link>
      <description>Hi Again,&lt;BR /&gt;&amp;gt;&amp;gt;but i have to mount to the same directory /bank1/opt....how can I do that&lt;BR /&gt;&lt;BR /&gt;you already have this mount point on your system so no need to create, after creating new lv and copy or move old data into new lv just mount&lt;BR /&gt;&lt;BR /&gt;mount /dev/vg00/myvolume /bank1/opt&lt;BR /&gt;&lt;BR /&gt;and change your fstab with your new lv name.&lt;BR /&gt;&lt;BR /&gt;Suraj</description>
      <pubDate>Fri, 10 Jul 2009 03:26:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456380#M561709</guid>
      <dc:creator>Suraj K Sankari</dc:creator>
      <dc:date>2009-07-10T03:26:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to create and move the LV from HPSAN to vg00 ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456381#M561710</link>
      <description>so here are the steps,&lt;BR /&gt;&lt;BR /&gt;1. lvcreate -L 3072 -n lv_bankHSBC /dev/vg00&lt;BR /&gt;2. newFS -F vxfs /dev/vg00/rlv_bankHSBC&lt;BR /&gt;3. unmount /bank1/opt&lt;BR /&gt;4. cp all data from /bank1/opt to /bank1/new_opt/&lt;BR /&gt;5. rename /bank1/opt to /bank/opt_old&lt;BR /&gt;6. rename /bank1/new_opt to /bank1/opt&lt;BR /&gt;7. mount /dev/vg00/lv_bankHSBC /bank1/opt&lt;BR /&gt;&lt;BR /&gt;right ?&lt;BR /&gt;</description>
      <pubDate>Fri, 10 Jul 2009 07:32:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456381#M561710</guid>
      <dc:creator>DnD_1</dc:creator>
      <dc:date>2009-07-10T07:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to create and move the LV from HPSAN to vg00 ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456382#M561711</link>
      <description>First copy, then unmount the source.</description>
      <pubDate>Fri, 10 Jul 2009 07:34:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456382#M561711</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2009-07-10T07:34:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to create and move the LV from HPSAN to vg00 ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456383#M561712</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;steps are good however you don't need points 5 and 6 to rename mount points. You can change just the logical volume definition into /etc/fstab in order to have /dev/vg00/lv_bankHSBC. Then umount the old filesystem and mount the new one as follows:&lt;BR /&gt;&lt;BR /&gt;mount /bank1/opt&lt;BR /&gt;&lt;BR /&gt;This command reads into /etc/fstab and will mount the new filesystem for the lvol /dev/vg00/lv_bankHSBC.&lt;BR /&gt;&lt;BR /&gt;HTH.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Fabio</description>
      <pubDate>Tue, 14 Jul 2009 07:19:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-and-move-the-lv-from-hpsan-to-vg00/m-p/4456383#M561712</guid>
      <dc:creator>Fabio Ettore</dc:creator>
      <dc:date>2009-07-14T07:19:51Z</dc:date>
    </item>
  </channel>
</rss>

