HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Physical volume group
Operating System - HP-UX
1833387
Members
3221
Online
110052
Solutions
Forums
Categories
Company
Local Language
back
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
back
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2001 07:57 PM
04-26-2001 07:57 PM
Physical volume group
when I try to setting up mirror disk in FC10
there is PV name.
what does it mean PV ?
OS:hp-ux 11.0
there is PV name.
what does it mean PV ?
OS:hp-ux 11.0
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2001 08:26 PM
04-26-2001 08:26 PM
Re: Physical volume group
PV refers to physical volume, a disk on the system used with lvm. Did you mean PVG Name instead?
Here is an example /etc/lvmpvg file;
------
VG /dev/vg00
PVG PVG0
/dev/dsk/c2t0d0
/dev/dsk/c2t1d0
PVG PVG1
/dev/dsk/c3t0d0
/dev/dsk/c3t1d0
------
If we create an lvol in vg00 that spans /dev/dsk/c2t0d0 and c2t1d0 we can use the pvg_name (PVG0/PVG1) when making the mirrored copy.
# lvextend -m 1 /dev/vg00/lvol1 PVG1
The above lvextend command tells it we want to use PVG1, or /dev/dsk/c3t0d0 and c3t1d0.
Hope this answers your question
-denver
Here is an example /etc/lvmpvg file;
------
VG /dev/vg00
PVG PVG0
/dev/dsk/c2t0d0
/dev/dsk/c2t1d0
PVG PVG1
/dev/dsk/c3t0d0
/dev/dsk/c3t1d0
------
If we create an lvol in vg00 that spans /dev/dsk/c2t0d0 and c2t1d0 we can use the pvg_name (PVG0/PVG1) when making the mirrored copy.
# lvextend -m 1 /dev/vg00/lvol1 PVG1
The above lvextend command tells it we want to use PVG1, or /dev/dsk/c3t0d0 and c3t1d0.
Hope this answers your question
-denver
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2001 08:51 PM
04-26-2001 08:51 PM
Re: Physical volume group
PV stands for "Physical Volume".
Here are examples for one-way mirroring with device /dev/dsk/c3t3d0 available for VG01, VG00.
# pvcreate /dev/rdsk/c3t3d0
# vgextend /dev/vg01 /dev/dsk/c3t3d0
Do lvextend for every logical volume in VG01 and make sure that it's correctly been mirrored with vgdisplay or lvdisplay.
# lvextend -m 1 /dev/vg01/lvolX
For root volume, procedure is slightly different.
# pvcreate -B /dev/rdsk/c3t3d0
# mkboot /dev/rdsk/c3t3d0
# mkboot -a "hpux -lq" /dev/rdsk/c3t3d0
# vgextend /dev/vg00 /dev/dsk/c3t3d0
Perform lvextend for every logical volume.
One thing that you keep in mind is that you have to do "lvextend" in sequential for lvol1 to lvol3 or you might be in trouble.
You can check the status with "lvlnboot -v".
By the way, It's starange to see the name written in Korean in the forums.
Regards,
Here are examples for one-way mirroring with device /dev/dsk/c3t3d0 available for VG01, VG00.
# pvcreate /dev/rdsk/c3t3d0
# vgextend /dev/vg01 /dev/dsk/c3t3d0
Do lvextend for every logical volume in VG01 and make sure that it's correctly been mirrored with vgdisplay or lvdisplay.
# lvextend -m 1 /dev/vg01/lvolX
For root volume, procedure is slightly different.
# pvcreate -B /dev/rdsk/c3t3d0
# mkboot /dev/rdsk/c3t3d0
# mkboot -a "hpux -lq" /dev/rdsk/c3t3d0
# vgextend /dev/vg00 /dev/dsk/c3t3d0
Perform lvextend for every logical volume.
One thing that you keep in mind is that you have to do "lvextend" in sequential for lvol1 to lvol3 or you might be in trouble.
You can check the status with "lvlnboot -v".
By the way, It's starange to see the name written in Korean in the forums.
Regards,
Never say "no" first.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2001 05:42 AM
04-27-2001 05:42 AM
Re: Physical volume group
A physical volume is a disk.
once you do a pvcreate on a disk you call it a physical volume.
A volume group is a collection of physical volumes
and a logical volume is your 'partition' of that volume group.
Physical volume groups serve no real purpose other than to create distributed mirroring a raid 1/0 style logical volume.
The lvcreate man describes strict on group and distributed allocation policy, as do other posts.
it'd go some thing like lvcreate -s g -D y /dev/vgstriped
Later,
Bill
once you do a pvcreate on a disk you call it a physical volume.
A volume group is a collection of physical volumes
and a logical volume is your 'partition' of that volume group.
Physical volume groups serve no real purpose other than to create distributed mirroring a raid 1/0 style logical volume.
The lvcreate man describes strict on group and distributed allocation policy, as do other posts.
it'd go some thing like lvcreate -s g -D y /dev/vgstriped
Later,
Bill
It works for me (tm)
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP