Differences between revisions 1 and 5 (spanning 4 versions)
Revision 1 as of 2020-03-01 12:48:38
Size: 130
Editor: Sciuro
Comment:
Revision 5 as of 2020-03-07 11:39:24
Size: 1220
Editor: Sciuro
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
#acl All:
Line 6: Line 5:
= Item 1 = = Description =
In Linux, Logical Volume Manager (LVM) is a device mapper target that provides logical volume management for the Linux kernel.
LVM is used for the following purposes:
Line 8: Line 9:
== Subitem 1.1 ==
Text
{{{
for i in `ls`; do echo $i; done
}}}
 * Creating single logical volumes of multiple physical volumes or entire hard disks (somewhat similar to RAID 0, but more similar to JBOD), allowing for dynamic volume resizing.
 * Managing large hard disk farms by allowing disks to be added and replaced without downtime or service disruption, in combination with hot swapping.
 * On small systems (like a desktop), instead of having to estimate at installation time how big a partition might need to be, LVM allows filesystems to be easily resized as needed.
 * Performing consistent backups by taking snapshots of the logical volumes.
 * Encrypting multiple physical partitions with one password.

LVM can be considered as a thin software layer on top of the hard disks and partitions, which creates an abstraction of continuity and ease-of-use for managing hard drive replacement, repartitioning and backup.

(source: [[WikiPedia:Logical_Volume_Manager_(Linux)|WikiPedia]])

= Theory =
{{attachment:LogicalVolumenManager.jpg}}

Description

In Linux, Logical Volume Manager (LVM) is a device mapper target that provides logical volume management for the Linux kernel. LVM is used for the following purposes:

  • Creating single logical volumes of multiple physical volumes or entire hard disks (somewhat similar to RAID 0, but more similar to JBOD), allowing for dynamic volume resizing.
  • Managing large hard disk farms by allowing disks to be added and replaced without downtime or service disruption, in combination with hot swapping.
  • On small systems (like a desktop), instead of having to estimate at installation time how big a partition might need to be, LVM allows filesystems to be easily resized as needed.
  • Performing consistent backups by taking snapshots of the logical volumes.
  • Encrypting multiple physical partitions with one password.

LVM can be considered as a thin software layer on top of the hard disks and partitions, which creates an abstraction of continuity and ease-of-use for managing hard drive replacement, repartitioning and backup.

(source: WikiPedia)

Theory

LogicalVolumenManager.jpg

Howto/LVM (last edited 2020-04-30 15:55:15 by Sciuro)