<?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: Removing a PV in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973489#M418409</link>
    <description>"Could you post the output of the below-command...&lt;BR /&gt;&lt;BR /&gt;# strings /etc/lvmtab | grep c9t4d0"&lt;BR /&gt;&lt;BR /&gt;Here it is:&lt;BR /&gt;&lt;BR /&gt;/dev/dsk/c9t4d0&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 12 Apr 2006 18:25:59 GMT</pubDate>
    <dc:creator>Michael D. Zorn</dc:creator>
    <dc:date>2006-04-12T18:25:59Z</dc:date>
    <item>
      <title>Removing a PV</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973486#M418406</link>
      <description>I've read most of the threads I could find here, and I think I understand the basic PV/LV/VG concepts and commands.&lt;BR /&gt;&lt;BR /&gt;I have a system (HP-UX 10.x) that has a volume group (/vgfam) with 22 named lvols spread across 8 physical disks (2GB each [old system]).&lt;BR /&gt;&lt;BR /&gt;One of them is empty and unused.  (No lvols on it.)&lt;BR /&gt;&lt;BR /&gt;pvdisplay for that disk shows all 508 PE free.&lt;BR /&gt;&lt;BR /&gt;vgdisplay shows:&lt;BR /&gt;&lt;BR /&gt;...&lt;BR /&gt;Cur LV 22&lt;BR /&gt;Open LV 22&lt;BR /&gt;Max PV 16&lt;BR /&gt;Cur PV 8&lt;BR /&gt;Act PV 8&lt;BR /&gt;...&lt;BR /&gt;PE size    4 MB&lt;BR /&gt;...&lt;BR /&gt;Free PE   2261&lt;BR /&gt;----&lt;BR /&gt;&lt;BR /&gt;Two of the named LVs show &lt;BR /&gt;LV status     available/syncd&lt;BR /&gt;LV size      0&lt;BR /&gt;Current LE   0&lt;BR /&gt;Allocated PE 0&lt;BR /&gt;Used PV      0&lt;BR /&gt;&lt;BR /&gt;the "physical volumes" section at the end shows for the one I'm trying to get:&lt;BR /&gt;&lt;BR /&gt;PV name     /dev/dsk/c9t4d0&lt;BR /&gt;PV status   available&lt;BR /&gt;Total PE    508&lt;BR /&gt;Free PE     508&lt;BR /&gt;&lt;BR /&gt;Another is just like that (c9t14d0)&lt;BR /&gt;&lt;BR /&gt;I tried to extend one of my other lvols from 552 to 800MB:&lt;BR /&gt;&lt;BR /&gt;lvextend -L 800 /dev/vgfam/lvol14 /dev/dsk/c9t4d0&lt;BR /&gt;&lt;BR /&gt;"... not enough free physical extents available&lt;BR /&gt;... probably caused by contiguous allocation policy&lt;BR /&gt;... probably caused by strict allocation policy"&lt;BR /&gt;&lt;BR /&gt;Same if I leave off the last argument.&lt;BR /&gt;&lt;BR /&gt;The empty disk in question shows up in ioscan.&lt;BR /&gt;&lt;BR /&gt;This may be the problem:&lt;BR /&gt;&lt;BR /&gt;I tried doing fsck (had to try something) and got a "bad super block", so it's possible the disk needs rebuilding.&lt;BR /&gt;&lt;BR /&gt;OK, then I tried "pvcreate":&lt;BR /&gt;&lt;BR /&gt;"already belongs to a volume group".&lt;BR /&gt;&lt;BR /&gt;So now I'm stuck at: how do I get that PV out of the VG?&lt;BR /&gt;&lt;BR /&gt;There doesn't seem to be a "pvremove" or "pvdelete".&lt;BR /&gt;</description>
      <pubDate>Wed, 12 Apr 2006 18:04:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973486#M418406</guid>
      <dc:creator>Michael D. Zorn</dc:creator>
      <dc:date>2006-04-12T18:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a PV</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973487#M418407</link>
      <description>Could you post the output of the below-command...&lt;BR /&gt;&lt;BR /&gt;# strings /etc/lvmtab | grep c9t4d0&lt;BR /&gt;&lt;BR /&gt;cheers!</description>
      <pubDate>Wed, 12 Apr 2006 18:21:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973487#M418407</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2006-04-12T18:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a PV</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973488#M418408</link>
      <description>Hi Michael:&lt;BR /&gt;&lt;BR /&gt;To eliminate the physical volume from the volume group you do 'vgreduce':&lt;BR /&gt;&lt;BR /&gt;# vgreduce /dev/vgfam /dev/dsk/c9t4d0&lt;BR /&gt;&lt;BR /&gt;However, since that disk is unused, removing it isn't going to help you address the 'lvextend' error.  You already have enough free physical extents in the volume group, so either (a) you are violating the  allocation policy; or (b) you are violating the strict allocation policy.  Do a 'lvdisplay' on the *logical volume* to ascertain the allocation settings.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF... &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 12 Apr 2006 18:23:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973488#M418408</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-04-12T18:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a PV</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973489#M418409</link>
      <description>"Could you post the output of the below-command...&lt;BR /&gt;&lt;BR /&gt;# strings /etc/lvmtab | grep c9t4d0"&lt;BR /&gt;&lt;BR /&gt;Here it is:&lt;BR /&gt;&lt;BR /&gt;/dev/dsk/c9t4d0&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 12 Apr 2006 18:25:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973489#M418409</guid>
      <dc:creator>Michael D. Zorn</dc:creator>
      <dc:date>2006-04-12T18:25:59Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a PV</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973490#M418410</link>
      <description>Hi Michael,&lt;BR /&gt;&lt;BR /&gt;Which volume group does this PV belong to? You can get that with "vgdisplay -v | grep c9t4d0". Also is this system part of a MC/SG cluster?&lt;BR /&gt;&lt;BR /&gt;cheers!</description>
      <pubDate>Wed, 12 Apr 2006 18:34:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973490#M418410</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2006-04-12T18:34:09Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a PV</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973491#M418411</link>
      <description>If this disk is not being used by other server if this is in the cluster, and you are very much sure that there is no data on this disk. Then you try pvcreate with -f option:&lt;BR /&gt;#pvcreate -f /dev/rdsk/c9t4d0&lt;BR /&gt;then restore the vg configuration on this.then try extending the lvol.&lt;BR /&gt;Other way to check the disk is try dd command on this,&lt;BR /&gt;#dd if=/dev/rdsk/c9t4d0 of=/dev/null bs=1024 count=1000&lt;BR /&gt;If this succeeds then ur disk is ok if it fails there is some issue in disk and it needs replacement.</description>
      <pubDate>Thu, 13 Apr 2006 03:29:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973491#M418411</guid>
      <dc:creator>Mridul Shrivastava</dc:creator>
      <dc:date>2006-04-13T03:29:12Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a PV</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973492#M418412</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Execute lvdisplay /dev/vgfam/lvol14 and check what kind of allocation policy is implemented.</description>
      <pubDate>Thu, 13 Apr 2006 03:30:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973492#M418412</guid>
      <dc:creator>Vinoyee Madashery Poulo</dc:creator>
      <dc:date>2006-04-13T03:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a PV</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973493#M418413</link>
      <description>Hi Michael,&lt;BR /&gt;  yes,what you should do now is check the policy with the command "lvdisplay". Normally the policy should be "strict".</description>
      <pubDate>Thu, 13 Apr 2006 03:58:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973493#M418413</guid>
      <dc:creator>vofsky</dc:creator>
      <dc:date>2006-04-13T03:58:59Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a PV</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973494#M418414</link>
      <description>Hi,&lt;BR /&gt;If the lvdisplay /dev/vgfam/lvol14 shows Allocation=strict/contiguous the trying to extend the lv will result in this error message. According to your observation Total PE 508 Free PE 508, is it same with vgdisplay /dev/vgfam? If so you will get the same error though you ommit the the last argument.&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Apr 2006 04:46:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973494#M418414</guid>
      <dc:creator>Vinoyee Madashery Poulo</dc:creator>
      <dc:date>2006-04-13T04:46:49Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a PV</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973495#M418415</link>
      <description>Hi,&lt;BR /&gt;If the lvdisplay /dev/vgfam/lvol14 shows Allocation=strict/contiguous then trying to extend the lv will through this error message. According to your observation Total PE 508 Free PE 508, is it same with vgdisplay /dev/vgfam? If so you will get the same error though you ommit the the last argument.&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Apr 2006 04:47:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973495#M418415</guid>
      <dc:creator>Vinoyee Madashery Poulo</dc:creator>
      <dc:date>2006-04-13T04:47:21Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a PV</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973496#M418416</link>
      <description>Hi Michael,&lt;BR /&gt;&lt;BR /&gt;Kindly let me know the details if the logical volume(lvol14) was mirrored and it's policy allocation was set to strict, if that so you need to change the value of strict allocation to none (n). By doing this you need to issue a command of "lvchange" &lt;BR /&gt;&lt;BR /&gt;e.g #lvchange -s n /dev/vgfam/lvol14&lt;BR /&gt;&lt;BR /&gt;From your question if you want to remove the PV from the VG, just issue the cmd:&lt;BR /&gt;&lt;BR /&gt;#vgreduce /dev/vgfam /dev/dsk/c9t4d0&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Alfredo</description>
      <pubDate>Thu, 13 Apr 2006 05:18:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973496#M418416</guid>
      <dc:creator>shardam</dc:creator>
      <dc:date>2006-04-13T05:18:22Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a PV</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973497#M418417</link>
      <description>All of our lvols were set up with allocation=strict/contiguous.&lt;BR /&gt;&lt;BR /&gt;I don't know why - we're not using mirroring.&lt;BR /&gt;&lt;BR /&gt;It looks like "strict" is mainly for mirroring, but vofsky says strict is the usual.  It may be that "contiguous" is what's keeping me from extending it.&lt;BR /&gt;&lt;BR /&gt;From the HP docs site, it looks like "contiguous" is better - but the data we want to have in that system is always large files with simple sequential access.&lt;BR /&gt;&lt;BR /&gt;Sandman: the disk I'm trying to use (c9t4d0) is in VG /dev/vgfam.&lt;BR /&gt;&lt;BR /&gt;Mridul_Shrivastava: dd shows that the disk is OK.  I'll run it to completion (bs=1024) and see if I get 2GB.&lt;BR /&gt;&lt;BR /&gt;Vinoyee: vgdisplay /dev/vgfam shows total PE = Free PE = 508 on c9d4t0&lt;BR /&gt;&lt;BR /&gt;Alfredo: the disk isn't mirrored, and the allocation is strict.  &lt;BR /&gt;&lt;BR /&gt;Are there any reasons not to turn off "strict" (given that we aren't mirrored)?&lt;BR /&gt;&lt;BR /&gt;I think for a first step, I'll try to just create a brand new lvol on the empty disk.&lt;BR /&gt;&lt;BR /&gt;vgdisplay shows two lvols that we haven't been using:&lt;BR /&gt;&lt;BR /&gt;/dev/vgfam/lvol20  (and also 22)&lt;BR /&gt;LV size   0&lt;BR /&gt;Current LE  0&lt;BR /&gt;Allocated PE  0&lt;BR /&gt;Used PV    0&lt;BR /&gt;&lt;BR /&gt;(Maybe they were going to use those on the empty disk (c9t4d0), but never got around to it.&lt;BR /&gt;&lt;BR /&gt;I should be able to just extend one of those.&lt;BR /&gt;&lt;BR /&gt;(I'll come back and give everybody points after the next round.)&lt;BR /&gt;&lt;BR /&gt;lvextend -L 600 /dev/vgfam/lvol20&lt;BR /&gt;&lt;BR /&gt;I'll do that after lunch.  I hate doing these things on an empty stomach.&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Apr 2006 13:48:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973497#M418417</guid>
      <dc:creator>Michael D. Zorn</dc:creator>
      <dc:date>2006-04-13T13:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a PV</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973498#M418418</link>
      <description>Hi Michael,&lt;BR /&gt;&lt;BR /&gt;Your lvols have strict/contiguous allocation policy. Are you using PVGs (physical volume groups)? and if that's the case could you list the contents of /etc/lvmpvg and post it here.&lt;BR /&gt;&lt;BR /&gt;thanks!</description>
      <pubDate>Thu, 13 Apr 2006 14:51:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973498#M418418</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2006-04-13T14:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a PV</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973499#M418419</link>
      <description>Sandman:  nope, no PVG.&lt;BR /&gt;&lt;BR /&gt;The dd finally stopped - 2GB.  I successfully did&lt;BR /&gt;&lt;BR /&gt;lvextend -L 600 /dev/vgfam/lvol20&lt;BR /&gt;&lt;BR /&gt;vgdisplay shows&lt;BR /&gt;LV size 600&lt;BR /&gt;Current LE  150&lt;BR /&gt;Allocated PE  150&lt;BR /&gt;&lt;BR /&gt;lvdisplay - same thing&lt;BR /&gt;&lt;BR /&gt;However - - - -&lt;BR /&gt;&lt;BR /&gt;lvdisplay -v shows that the LEs went to c9t0d0 (maybe because that's the first one with free extents???), which had free PE from 326 to 507, and lvol20's PEs run from 326 to 475, so c9t0d0 now has free from 476 to 507.&lt;BR /&gt;&lt;BR /&gt;OK - I can work that out later (try to put it on the empty disk c9t4d0).&lt;BR /&gt;&lt;BR /&gt;extendfs complains:&lt;BR /&gt;&lt;BR /&gt;extendfs /dev/vgfam/rlvol20&lt;BR /&gt;"/dev/vgfam/rlvol20: not an hfs file system"&lt;BR /&gt;&lt;BR /&gt;OK - probably because it's empty and never been used.&lt;BR /&gt;&lt;BR /&gt;Maybe I have to make a fs:&lt;BR /&gt;&lt;BR /&gt;mkfs -F hfs /dev/dsk/c9t0d0...  wait - that already has a FS:&lt;BR /&gt;&lt;BR /&gt;pvdisplay -v /dev/dsk/c9t0d0&lt;BR /&gt;shows&lt;BR /&gt;&lt;BR /&gt;/dev/vgfam/lvol7&lt;BR /&gt;/dev/vgfam/lvol8&lt;BR /&gt;/dev/vgfam/lvol15&lt;BR /&gt;/dev/vgfam/lvol20  &amp;lt;--- the new one&lt;BR /&gt;&lt;BR /&gt;So - how do I get the new lvol20 to show up and be mountable? (to show up in /etc/mnttab?)&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Apr 2006 16:26:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973499#M418419</guid>
      <dc:creator>Michael D. Zorn</dc:creator>
      <dc:date>2006-04-13T16:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a PV</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973500#M418420</link>
      <description>Hi Michael,&lt;BR /&gt;  Since the policy is "strict/contiguous",you have to issue command "lvchange -C n /dev/.../lvol..." to change policy to "strict".Then you can lvextend.&lt;BR /&gt;  "Contiguous policy" is better but it require a contiguous PE.You must allocate the contiguous PE to LV without any gap.</description>
      <pubDate>Thu, 13 Apr 2006 23:06:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973500#M418420</guid>
      <dc:creator>vofsky</dc:creator>
      <dc:date>2006-04-13T23:06:47Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a PV</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973501#M418421</link>
      <description>vofsky:  I changed the allocation to "strict".  Then&lt;BR /&gt;&lt;BR /&gt;lvextend -L 800 /dev/vgfam/lvol14 /dev/dsk/c9t4d0&lt;BR /&gt;&lt;BR /&gt;...OK&lt;BR /&gt;&lt;BR /&gt;Now lvdisplay shows&lt;BR /&gt;&lt;BR /&gt;Alloc: strict&lt;BR /&gt;LV size 800&lt;BR /&gt;Current LE 200&lt;BR /&gt;Alloc PE 200&lt;BR /&gt;&lt;BR /&gt;... and the Logical Extents include the extra 62 on c9t4d0.&lt;BR /&gt;&lt;BR /&gt;But bdf shows lvol14 (/data06) at the same size as before.&lt;BR /&gt;&lt;BR /&gt;Maybe I need to extend the file system:&lt;BR /&gt;&lt;BR /&gt;umount /data06&lt;BR /&gt;extendfs -q /dev/vgfam/rlvol14&lt;BR /&gt;&lt;BR /&gt;Bingo!!!&lt;BR /&gt;&lt;BR /&gt;bdf shows&lt;BR /&gt;&lt;BR /&gt;/lvol14 ... 800811 kbytes .......&lt;BR /&gt;&lt;BR /&gt;Thanks to everyone.  Now I'll organize my notes.&lt;BR /&gt;</description>
      <pubDate>Fri, 14 Apr 2006 11:05:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973501#M418421</guid>
      <dc:creator>Michael D. Zorn</dc:creator>
      <dc:date>2006-04-14T11:05:35Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a PV</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973502#M418422</link>
      <description>Michael,&lt;BR /&gt;&lt;BR /&gt;Removing the contiguous allocation policy allowed you to extend lvol14? Otherwise the c9t4d0 PV would not have been included for extent allocation owing to continuity of extents required for lvol14 to be contiguous. Could you attach the output of the "vgdisplay -v vgfam" to this thread. Please attach NOT post as it would certainly be more legible to read and understand.&lt;BR /&gt;&lt;BR /&gt;cheers!</description>
      <pubDate>Fri, 14 Apr 2006 11:48:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973502#M418422</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2006-04-14T11:48:12Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a PV</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973503#M418423</link>
      <description>Sandman:&lt;BR /&gt;&lt;BR /&gt;Attached is the "vgdisplay -v /dev/vgfam"&lt;BR /&gt;&lt;BR /&gt;lvol14 is the one I extended.&lt;BR /&gt;c9t4d0 is the one it extended onto.&lt;BR /&gt;&lt;BR /&gt;The other lvol I'm still trying to create is /dev/vgfam/lvol20. &lt;BR /&gt;&lt;BR /&gt;pvdisplay for c9t0d0 shows 150 PEs and LEs assigned to lvol20, but I don't know how to mount a FS to it.&lt;BR /&gt;&lt;BR /&gt;The vgdisplay shows&lt;BR /&gt;&lt;BR /&gt;lvol20: 600MB, current = allocated = 150&lt;BR /&gt;&lt;BR /&gt;mount /dev/vgfam/lvol20 /ftp&lt;BR /&gt;"/dev/vgfam/lvol20: unrecognized file system"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 14 Apr 2006 12:29:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973503#M418423</guid>
      <dc:creator>Michael D. Zorn</dc:creator>
      <dc:date>2006-04-14T12:29:00Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a PV</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973504#M418424</link>
      <description>Hi Michael,&lt;BR /&gt;&lt;BR /&gt;The error message you are seeing when trying to mount lvol20 is normal since you have recently added space to it, but have not yet created a filesystem on it. A logical volume that doesn't contain a file system cannot be mounted and you'll get the "unrecognized filesystem" error. To fix this do the following.&lt;BR /&gt;&lt;BR /&gt;1. Create a new filesystem using the raw device file:&lt;BR /&gt;# newfs -F hfs /dev/vgfam/rlvol20&lt;BR /&gt;&lt;BR /&gt;2. Create the mount point:&lt;BR /&gt;# mkdir &lt;YOUR_MOUNT_POINT&gt;&lt;BR /&gt;&lt;BR /&gt;3. Mount the block special file to the mount point created above:&lt;BR /&gt;# mount /dev/vgfam/lvol20 &lt;YOUR_MOUNT_POINT&gt;&lt;BR /&gt;&lt;BR /&gt;hope it helps!&lt;BR /&gt;&lt;/YOUR_MOUNT_POINT&gt;&lt;/YOUR_MOUNT_POINT&gt;</description>
      <pubDate>Fri, 14 Apr 2006 12:46:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973504#M418424</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2006-04-14T12:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a PV</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973505#M418425</link>
      <description>Sandman:&lt;BR /&gt;&lt;BR /&gt;newfs worked.  After a mount, it shows up in bdf, and in /etc/mnttab.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 14 Apr 2006 13:45:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/removing-a-pv/m-p/4973505#M418425</guid>
      <dc:creator>Michael D. Zorn</dc:creator>
      <dc:date>2006-04-14T13:45:53Z</dc:date>
    </item>
  </channel>
</rss>

