- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: good explanation of physical volumes
Categories
Company
Local Language
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
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
Community
Resources
Forums
Blogs
- 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
11-03-2000 11:38 AM
11-03-2000 11:38 AM
good explanation of physical volumes
Can anyone please tell me where can I go to get either a picture or a good understanding or what a logical volume is, physical volume, volume group, etc. Like is there a diagram of some sort that I can look at to get a better understanding of it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-03-2000 11:47 AM
11-03-2000 11:47 AM
Re: good explanation of physical volumes
check the hp docs site for the HP-UX System Administration Tasks - Chapter 3 has diagrams explaining LVs and PV etc.
http://docs.hp.com/hpux/pdf/B2355-90672.pdf
Good luck.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-03-2000 11:50 AM
11-03-2000 11:50 AM
Re: good explanation of physical volumes
http://www.docs.hp.com/hpux/onlinedocs/B2355-90672/00/00/28-con.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-03-2000 11:51 AM
11-03-2000 11:51 AM
Re: good explanation of physical volumes
http://docs.hp.com:80/dynaweb/hpux10/hpuxen0a/b2043/@ebt-link?window=CURRENT;target=%25N%14_4675_START_RESTART_N%25;DwebQuery=lvm
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-03-2000 11:57 AM
11-03-2000 11:57 AM
Re: good explanation of physical volumes
Physical Volume - A actual physical device. A hard drive in a cabinet. (Could also be a LUN on an array).
Volume Group - A group of physical volumes combined to form a larger area of disk space. (ie. 4 physical volumes(9GB each) /dev/dsk/c1t1d0, c1t2d0,c1t3d0,c1t4d0 combined to form volume group 1 - vg01 with available space of 36 GB).
Logical Volume - An area that is carved out of the volume group allowing data to be stored on it. (ie. logical volume 1 - lvol1 - is created to be 15 GB in size and mounted as /mydata on the system.)
You now have a /mydata directory that has 15 GB available. This 15 GB came from 4 PHYSICAL VOLUMES (c1t1d0, c1t2d0, c1t3d0, c1t4d0) which were combined into a VOLUME GROUP (vg01) on which the LOGICAL VOLUME lvol1 was created. lvol1 was then mounted as /mydata.
I hope this makes more sense to you now.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2000 06:48 AM
11-27-2000 06:48 AM
Re: good explanation of physical volumes
PREPARE:
a Physical Volume is an entire Disk dedicated
for lvm's usage.
ie:pvcreate
COLLECT:
The Volume Group is a collection of Disks
ie: vgcreate, vgextend
USE:
A logical Volume is to use the disk
ie: lvcreate
USE FOR SOMETHING INTERESTING:
Create a filesystem.
newfs
Think of lvm as a layer sitting in between
your filesystem and your disk drivers.
It effectively creates a device file to
create your filesystem on and links that
down to the disk.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2000 11:38 PM
11-28-2000 11:38 PM
Re: good explanation of physical volumes
hope this will help .
regards.