| Term |
Definition |
|---|---|
| Journaled File System (JFS) |
Unix filesystem that uses a
journaled log to record changes to the filesystem. In the event
of a failure the log can be used to recover. |
| Logical Extents |
Logical extents are used to
create the logical volume - they are the same size as physical extents |
| Logical Interchange Format (LIF) |
HP Storage format used for
interchange of files between HP systems. |
| Logical Volumes |
Allocates the space inside a
volume group, the logical volume gets the file system |
| Mirroring |
Mapping a logical extent to more
than one physical extent. Logical volumes are mirrored, not disks. |
| Physical Extent (PE) |
Unit used for allocating disk
space to logical volumes, default size is 4MB. It is a set of
contiguous disk blocks. |
| Physical Partitions |
The physical volume is organized
into blocks called physical partitions (same as physical extent??) |
| Physical Volume |
Physical disk that is being
managed by LVM |
| Striping |
A logical volume that is
configured to write across more than one disk in a stripe. |
| Volume |
A device used for storage -
either an entire disk or a partition. |
| Volume Group |
Contain one or more physical
volumes, a physical volume can only be in one volume group (pool of
partitions) |
| Command | Function |
|---|---|
| lvcreate |
Command used to create logical volumes |
| lvdisplay -v /dev/<VG>/<LV> | Command used to display information about logical volumes |
| pvchange |
Changes the attributes of
existing physical volumes. |
| pvcreate /dev/rdsk/cxtxdx pvcreate -f /dev/rdsk/cxtxdx |
Creates a physical volume by
creating the LVM data structures on the physical disk called physical
extents. The -f option will force the creation of the PV -
potentially destroying old PV information. |
| pvdisplay /dev/dsk/cxtxdx pvdisplay -v /dev/dsk/cxtxdx |
Command used to display information about physical volumes |
| vgchange |
Command used to change
information about the volume group, such as to activate an inactive vg |
| vgcreate |
Command used to create the volume groups |
| vgdisplay [-v] [VG_NAME} |
Command used to display
information about volume groups, -v is the verbose option which will
list lvs and pvs. |
| vgexport |
|
| vgimport |
| File | Description |
|---|---|
| /dev/dsk/cxtxdx | Block device for disk |
| /dev/rdsk/cxtxdx | Character device for disk |
| /dev/<volumegroup>/group |
Character device file (created with the mknod command) that allows the lvm kernel and the lvm commands to communicate |
| /etc/lvmrc |
Script that starts each volume group based upon the contents of /etc/lvmtab |
| /etc/lvmtab | This file has the device file
associated with each disk in a volume group. Access it with the
strings command. |
| /etc/vpath.cfg | If IBM SDD is being used this
file contains the mapping of vpath to the corresponding
disk-target-lun. Access it with the strings command. |