On 2009-07-21 02:16, Masanari Iida wrote:
Hello List, I have encountered an error with vgs command. How to reproduce. (1) Initialize the PV. # pvcreate /dev/cciss/c0d3p3 (2) Create VG # vgcreate vg01 /dev/cciss/c0d3p3 (3) Use vgs command and see result code. # vgs /dev/cciss/c0d3p3 Invalid volume group name: cciss/c0d3p3
You specified a PV, not a VG. Try: # vgs vg01 Here's what it does on my system: # vgs WARNING: Ignoring duplicate config node: filter (seeking filter) VG #PV #LV #SN Attr VSize VFree main_huge_vg 9 1 0 wz--n- 2.69T 0 # vgs main_huge_vg WARNING: Ignoring duplicate config node: filter (seeking filter) VG #PV #LV #SN Attr VSize VFree main_huge_vg 9 1 0 wz--n- 2.69T 0 # pvs WARNING: Ignoring duplicate config node: filter (seeking filter) PV VG Fmt Attr PSize PFree /dev/sda2 main_huge_vg lvm2 a- 594.25G 0 /dev/sdb4 main_huge_vg lvm2 a- 529.00G 0 /dev/sdc1 main_huge_vg lvm2 a- 232.75G 0 /dev/sdc2 main_huge_vg lvm2 a- 232.75G 0 /dev/sdc3 main_huge_vg lvm2 a- 232.88G 0 /dev/sdd1 main_huge_vg lvm2 a- 232.75G 0 /dev/sdd2 main_huge_vg lvm2 a- 232.75G 0 /dev/sdd3 main_huge_vg lvm2 a- 232.75G 0 /dev/sdd4 main_huge_vg lvm2 a- 233.00G 0
# echo $? 0 The result code should be none zero value. One of a script rely on this result code, and it failed to work because of this bug. I have found this bug on RHEL5 (which uses lvm2.02.40-6) and I have checked out WHATS_NEW between 2.02-40 to 49, so far no similar symptom.
-- Scooty Puff, Sr The Doom-Bringer _______________________________________________ linux-lvm mailing list linux-lvm@redhat.com https://www.redhat.com/mailman/listinfo/linux-lvm read the LVM HOW-TO at http://tldp.org/HOWTO/LVM-HOWTO/