<?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 pvmove question in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/pvmove-question/m-p/2772198#M896271</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If the lvol is span across two disks or more, can I move this lvol to a single disk (the size is sufficient for the whole lvol) using pvmove. If so, what is th syntax of the command ?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;YC</description>
    <pubDate>Thu, 25 Jul 2002 02:19:20 GMT</pubDate>
    <dc:creator>yc_2</dc:creator>
    <dc:date>2002-07-25T02:19:20Z</dc:date>
    <item>
      <title>pvmove question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pvmove-question/m-p/2772198#M896271</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If the lvol is span across two disks or more, can I move this lvol to a single disk (the size is sufficient for the whole lvol) using pvmove. If so, what is th syntax of the command ?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;YC</description>
      <pubDate>Thu, 25 Jul 2002 02:19:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pvmove-question/m-p/2772198#M896271</guid>
      <dc:creator>yc_2</dc:creator>
      <dc:date>2002-07-25T02:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: pvmove question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pvmove-question/m-p/2772199#M896272</link>
      <description>The man page isn't 100% clear on whether you can do this if the lvol spans more than 1 disk.&lt;BR /&gt;&lt;BR /&gt;I think it should work, but I'd be more tempted to just back up the LV, remove it, and re-create it.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 25 Jul 2002 02:23:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pvmove-question/m-p/2772199#M896272</guid>
      <dc:creator>Scott Van Kalken</dc:creator>
      <dc:date>2002-07-25T02:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: pvmove question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pvmove-question/m-p/2772200#M896273</link>
      <description>Hi YC,&lt;BR /&gt;&lt;BR /&gt;To move a logical volume is quite easy and the man page does sort of say how.&lt;BR /&gt;&lt;BR /&gt;First move the lvol from disk 1 to new disk&lt;BR /&gt;&lt;BR /&gt;# pvmove -n /dev/vg01/lvol2 /dev/dsk/c1t0d0 /dev/dsk/c2t0d0&lt;BR /&gt;&lt;BR /&gt;and then move the rest of the lvol from disk 2 to new disk.&lt;BR /&gt;&lt;BR /&gt;# pvmove -n /dev/vg01/lvol2 /dev/dsk/c1t0d1 /dev/dsk/c2t0d0&lt;BR /&gt;&lt;BR /&gt;Assuming the logical volume you wish to move is 'lvol2' and the disk is /dev/dsk/c2t0d0&lt;BR /&gt;You just need to do it in two passes.&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;Michael</description>
      <pubDate>Thu, 25 Jul 2002 02:51:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pvmove-question/m-p/2772200#M896273</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2002-07-25T02:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: pvmove question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pvmove-question/m-p/2772201#M896274</link>
      <description>Yes you can do this. A few things to watchout for.. I'm assuming this is not a mirrorred lvol, it's not activated in shared mode and it's not stripped. If any of the above is true, it won't work. Now the steps ..&lt;BR /&gt;say vg01 got lvol2 which spans c2t2d0 and c2t3d0 in that order. And you want to move all of lvol2 to c2t4d0 (VERY IMPORTANT.. c2t4d0 is part of vg01 and has enough PEs). Another thing I need to caution here, even though you can do an active pvmove I strongly recommend backing up the data in lvol2 first before you do this. &lt;BR /&gt;# pvmove -n /dev/vg01/lvol2 /dev/dsk/c2t2d0 /dev/dsk/c2t4d0&lt;BR /&gt;==&amp;gt; moving first "chunk" of extents from c2t2d0 to c2t4d0&lt;BR /&gt;# pvmove -n /dev/vg01/lvol2 /dev/dsk/c2t3d0 /dev/dsk/c2t4d0&lt;BR /&gt;==&amp;gt; moving the remaining "chunk" of extents from c2t3d0 to c2t4d0&lt;BR /&gt;The pvmove operation may take a while, so be patient.&lt;BR /&gt;</description>
      <pubDate>Thu, 25 Jul 2002 03:01:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pvmove-question/m-p/2772201#M896274</guid>
      <dc:creator>S.K. Chan</dc:creator>
      <dc:date>2002-07-25T03:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: pvmove question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/pvmove-question/m-p/2772202#M896275</link>
      <description>Hi,of course can! But one by one. For detail information about pvmove and how to use, the man page is just ok!&lt;BR /&gt;&lt;BR /&gt;-Live as you wish-&lt;BR /&gt;Zhou</description>
      <pubDate>Thu, 25 Jul 2002 03:02:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/pvmove-question/m-p/2772202#M896275</guid>
      <dc:creator>Fragon</dc:creator>
      <dc:date>2002-07-25T03:02:41Z</dc:date>
    </item>
  </channel>
</rss>

