{"id":565,"date":"2022-07-25T20:06:40","date_gmt":"2023-07-08T20:31:12","guid":{"rendered":"https:\/\/www.silicloud.com\/blog\/uncategorized\/a-brief-overview-of-lvm-concepts-terminology-and-procedures\/"},"modified":"2024-03-07T14:52:07","modified_gmt":"2024-03-07T14:52:07","slug":"a-brief-overview-of-lvm-concepts-terminology-and-procedures","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/blog\/a-brief-overview-of-lvm-concepts-terminology-and-procedures\/","title":{"rendered":"LVM concepts, terminology, and procedures."},"content":{"rendered":"<h3>In this opening section, I will provide an overview of the topic at hand.<\/h3>\n<p>LVM, also known as Logical Volume Management, is a technology for managing storage devices that allows users to combine and organize the physical layout of storage components for easier administration. By using the device mapper framework in the Linux kernel, the latest version, <a href=\"https:\/\/sourceware.org\/lvm2\/\">LVM2<\/a>, enables the grouping of existing storage devices and allocation of logical units from the combined space as required.<\/p>\n<p>One option for paraphrasing the given text natively could be:<\/p>\n<p>LVM provides several key benefits such as enhanced abstraction, versatility, and command. Naming logical volumes with meaningful titles, such as &#8220;databases&#8221; or &#8220;root-backup&#8221;, is made possible. Furthermore, volumes can be easily resized as needed, seamlessly moved between physical devices within the pool while the system is operational, or even exported. Additionally, LVM incorporates advanced functionalities like snapshotting, striping, and mirroring.<\/p>\n<p>You will gain an understanding of LVM and get hands-on experience with essential commands to efficiently start using it on a physical server in this tutorial.<\/p>\n<h2>The structure and technical terms of LVM.<\/h2>\n<p>Before delving into the LVM administrative commands, it is crucial to grasp the fundamental concepts of how LVM organizes storage devices and the terminology it uses.<\/p>\n<h3>Structures for Managing Storage in LVM<\/h3>\n<p>LVM employs the technique of building layers on physical storage devices, wherein it utilizes various abstractions. These abstractions are arranged in a hierarchy, with the most basic ones at the foundation.<\/p>\n<ul class=\"post-ul\">\n<li>Physical Volumes: The LVM utility prefix for physical volumes is pv&#8230;. This physicallyl blocks devices or other disk-like devices (for example, other devices created by device mapper, like RAID arrays) and are used by LVM as the raw building material for higher levels of abstraction. Physical volumes are regular storage devices. LVM writes a header to the device to allocate it for management.<\/li>\n<li>Volume Groups: The LVM utility prefix for volume groups is vg&#8230;.<br \/>\nLVM combines physical volumes into storage pools known as volume groups. Volume groups abstract the characteristics of the underlying devices and function as a unified logical device with combined storage capacity of the component physical volumes.<\/li>\n<li>Logical Volumes: The LVM utility prefix for logical volumes is lv&#8230;, generic LVM utilities might begin with lvm&#8230;. A volume group can be sliced up into any number of logical volumes. Logical volumes are functionally equivalent to partitions on a physical disk, but with much more flexibility. Logical volumes are the primary component that users and applications will interact with.<\/li>\n<\/ul>\n<p>LVM serves the purpose of merging physical volumes into volume groups, allowing the consolidation of storage space on a system. Administrators can then divide the volume group into any desired logical volumes, which function as adaptable partitions.<\/p>\n<h3>Comprehending the Scope<\/h3>\n<p>All partitions within a group of partitions are divided into small, consistent-sized portions referred to as extents, which are set by the volume group. Every partition within the group follows the same extent size.<\/p>\n<p>Physical extents are referred to as extents on a physical volume, and logical extents are the extents on a logical volume. LVM establishes a mapping between logical and physical extents, which defines a logical volume. Consequently, the extent size denotes the minimum space that LVM can allocate.<\/p>\n<p>LVM&#8217;s flexibility and power are largely attributed to extents. LVM combines logical extents to create a single device, and these logical extents are not required to correspond to continuous physical extents. LVM has the ability to copy and rearrange the physical extents of a logical volume without causing any disruption to users. Additionally, the size of logical volumes can be increased or decreased by adding or removing extents.<\/p>\n<h2>Typical scenarios where something is frequently used<\/h2>\n<p>Once you have become acquainted with the terminology and structures employed by LVM, you can delve into the various ways it is commonly utilized. Commencing with a step-by-step process, you will employ two physical disks in order to create four logical volumes.<\/p>\n<h3>Labeling the physical devices as physical volumes.<\/h3>\n<p>Start by conducting a scan of the system to identify block devices that LVM can access and control. This can be accomplished by executing the following command:<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<ol>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> lvmdiskscan<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>&nbsp;<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>The result will display a list of block devices that LVM can interact with.<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<div class=\"secondary-code-label\" title=\"Output\">Output<\/div>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>\/dev\/ram0 [ 64.00 MiB] <mark>\/dev\/sda [ 200.00 GiB] <\/mark> \/dev\/ram1 [ 64.00 MiB] . . . \/dev\/ram15 [ 64.00 MiB] <mark>\/dev\/sdb [ 100.00 GiB] <\/mark> <mark>2 disks<\/mark> 17 partitions 0 LVM physical volume whole disks 0 LVM physical volumes<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>In this particular case, it is important to observe that there are presently two disks and a total of 17 partitions. These partitions primarily consist of \/dev\/ram* partitions, deployed in the system as RAM disks to optimize performance. The disks in this instance are \/dev\/sda, encompassing 200G of storage, and \/dev\/sdb, having a capacity of 100G.<\/p>\n<div class=\"post-conf-warning\">\n<p class=\"post-conf-desc\">Warning<\/p>\n<div>Please ensure to verify that the devices you plan to use with LVM do not contain any crucial data. Utilizing these devices with LVM will replace the existing content. It is advisable to create backups of any significant data on your server before proceeding.<\/div>\n<\/div>\n<p>After identifying the specific physical devices you intend to utilize, designate them as physical volumes within LVM by employing the pvcreate command.<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<ol>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> pvcreate \/dev\/<mark>sda<\/mark> \/dev\/<mark>sdb<\/mark><\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>&nbsp;<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<div class=\"secondary-code-label\" title=\"Output\">Output<\/div>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>Physical volume &#8220;\/dev\/sda&#8221; successfully created Physical volume &#8220;\/dev\/sdb&#8221; successfully created<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>This action involves creating an LVM header on the devices, indicating their readiness for addition to a volume group.<\/p>\n<p>To confirm the registration of physical volumes in LVM, execute the command &#8220;pvs&#8221; and ensure their presence.<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<ol>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> pvs<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>&nbsp;<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<div class=\"secondary-code-label\" title=\"Output\">Output<\/div>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>PV VG Fmt Attr PSize PFree \/dev\/sda lvm2 &#8212; 200.00g 200.00g \/dev\/sdb lvm2 &#8212; 100.00g 100.00g<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>Please observe that both of the devices can be found in the PV column, which represents physical volume.<\/p>\n<h3>Including the Physical Disks in a Volume Group<\/h3>\n<p>After you have successfully generated physical volumes from your devices, you are able to form a volume group. It is recommended to have only one volume group per system to achieve optimal flexibility in allocation. The given instance of a volume group is denoted as LVMVolGroup, but feel free to choose any name for your own volume group.<\/p>\n<p>To establish the volume group and incorporate both of your physical volumes, execute the following command:<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<ol>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> vgcreate <mark>LVMVolGroup<\/mark> \/dev\/<mark>sda<\/mark> \/dev\/<mark>sdb<\/mark><\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>&nbsp;<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<div class=\"secondary-code-label\" title=\"Output\">Output<\/div>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>Volume group &#8220;LVMVolGroup&#8221; successfully created<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>Upon reviewing the pvs output once more, you will observe that your physical volumes are now linked to the new volume group.<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<ol>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> pvs<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>&nbsp;<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<div class=\"secondary-code-label\" title=\"Output\">Output<\/div>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>PV VG Fmt Attr PSize PFree \/dev\/sda <mark>LVMVolGroup<\/mark> lvm2 a&#8211; 200.00g 200.00g \/dev\/sdb <mark>LVMVolGroup<\/mark> lvm2 a&#8211; 100.00g 100.00g<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>Provide a brief overview of the volume group by using the command &#8220;vgs.&#8221;<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<ol>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> vgs<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>&nbsp;<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<div class=\"secondary-code-label\" title=\"Output\">Output<\/div>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>VG #PV #LV #SN Attr VSize VFree LVMVolGroup 2 0 0 wz&#8211;n- 299.99g 299.99g<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>At present, you have two physical volumes in your volume group, with no logical volumes, and the total capacity is the sum of the underlying devices.<\/p>\n<h3>Generating Logical Volumes from the Pool of Volume Groups.<\/h3>\n<p>Once a volume group is accessible, you can utilize it as a pool to assign logical volumes. In contrast to traditional partitioning, LVM takes care of mapping and managing the volume layout, so you don&#8217;t have to worry about it. All you have to provide is the volume size and a name.<\/p>\n<p>You will divide your volume group into four distinct logical volumes in the upcoming example.<\/p>\n<ul class=\"post-ul\">\n<li>10G \u201cprojects\u201d volume<\/li>\n<li>5G \u201cwww\u201d volume for web content<\/li>\n<li>20G \u201cdb\u201d volume for a database<\/li>\n<li>\u201cworkspace\u201d volume that will fill the remaining space<\/li>\n<\/ul>\n<p>In order to generate logical volumes, employ the lvcreate command. It is mandatory to provide the volume group to extract from and the logical volume can be designated using the -n option. To specify the size explicitly, utilize the -L option. Conversely, if you prefer to specify the size based on the number of extents, employ the -l option.<\/p>\n<p>Use the -L option to establish the initial three logical volumes.<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<ol>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> lvcreate <span class=\"token parameter variable\">-L<\/span> 10G <span class=\"token parameter variable\">-n<\/span> projects LVMVolGroup<\/li>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> lvcreate <span class=\"token parameter variable\">-L<\/span> 5G <span class=\"token parameter variable\">-n<\/span> www LVMVolGroup<\/li>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> lvcreate <span class=\"token parameter variable\">-L<\/span> 20G <span class=\"token parameter variable\">-n<\/span> db LVMVolGroup<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>&nbsp;<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<div class=\"secondary-code-label\" title=\"Output\">Output<\/div>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>Logical volume &#8220;projects&#8221; created. Logical volume &#8220;www&#8221; created. Logical volume &#8220;db&#8221; created.<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>By opting for a custom output from the vgs command, you have the ability to observe the logical volumes and their correlation with the volume group.<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<ol>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> vgs <span class=\"token parameter variable\">-o<\/span> +lv_size,lv_name<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>&nbsp;<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<div class=\"secondary-code-label\" title=\"Output\">Output<\/div>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>VG #PV #LV #SN Attr VSize VFree LSize LV LVMVolGroup 2 3 0 wz&#8211;n- 299.99g 264.99g 10.00g projects LVMVolGroup 2 3 0 wz&#8211;n- 299.99g 264.99g 5.00g www LVMVolGroup 2 3 0 wz&#8211;n- 299.99g 264.99g 20.00g db<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>In this specific case, you summed up the final two columns of the output, revealing the amount of allocated space for your logical volumes.<\/p>\n<p>You now have the option to allocate the remaining space in the volume group to the &#8220;workspace&#8221; volume by using the -l flag, which functions in extents. Another way to specify your intentions more clearly is by providing a percentage and a unit. In this particular scenario, you can allocate the available free space by passing in 100%FREE.<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<ol>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> lvcreate <span class=\"token parameter variable\">-l<\/span> <span class=\"token number\">100<\/span>%FREE <span class=\"token parameter variable\">-n<\/span> workspace LVMVolGroup<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>&nbsp;<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<div class=\"secondary-code-label\" title=\"Output\">Output<\/div>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>Logical volume &#8220;workspace&#8221; created.<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>When you use the custom vgs command to inspect the volume group information, you will observe that all of the available space has been utilized.<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<ol>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> vgs <span class=\"token parameter variable\">-o<\/span> +lv_size,lv_name<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>&nbsp;<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<div class=\"secondary-code-label\" title=\"Output\">Output<\/div>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>VG #PV #LV #SN Attr VSize VFree LSize LV LVMVolGroup 2 4 0 wz&#8211;n- 299.99g <mark>0<\/mark> 10.00g projects LVMVolGroup 2 4 0 wz&#8211;n- 299.99g <mark>0<\/mark> 5.00g www LVMVolGroup 2 4 0 wz&#8211;n- 299.99g <mark>0<\/mark> 20.00g db LVMVolGroup 2 4 0 wz&#8211;n- 299.99g <mark>0<\/mark> <mark>264.99g<\/mark> workspace<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>The workspace volume has been successfully established and the entire LVMVolGroup volume group has been assigned.<\/p>\n<h3>The process of configuring and preparing the logical volumes for use.<\/h3>\n<p>Once you have logical volumes, you can utilize them as regular block devices.<\/p>\n<p>You can find the logical devices in the \/dev directory, just like other storage devices. These devices can be accessed in two different locations.<\/p>\n<ul class=\"post-ul\">\n<li>\/dev\/volume_group_name\/logical_volume_name<\/li>\n<li>\/dev\/mapper\/volume_group_name-logical_volume_name<\/li>\n<\/ul>\n<p>To format your four logical volumes using the Ext4 filesystem, execute these commands:<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<ol>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> mkfs.ext4 \/dev\/<mark>LVMVolGroup<\/mark>\/<mark>projects<\/mark><\/li>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> mkfs.ext4 \/dev\/<mark>LVMVolGroup<\/mark>\/<mark>www<\/mark><\/li>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> mkfs.ext4 \/dev\/<mark>LVMVolGroup<\/mark>\/<mark>db<\/mark><\/li>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> mkfs.ext4 \/dev\/<mark>LVMVolGroup<\/mark>\/<mark>workspace<\/mark><\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>&nbsp;<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>You also have the option to execute the following:<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<ol>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> mkfs.ext4 \/dev\/mapper\/<mark>LVMVolGroup<\/mark>&#8211;<mark>projects<\/mark><\/li>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> mkfs.ext4 \/dev\/mapper\/<mark>LVMVolGroup<\/mark>&#8211;<mark>www<\/mark><\/li>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> mkfs.ext4 \/dev\/mapper\/<mark>LVMVolGroup<\/mark>&#8211;<mark>db<\/mark><\/li>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> mkfs.ext4 \/dev\/mapper\/<mark>LVMVolGroup<\/mark>&#8211;<mark>workspace<\/mark><\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>&nbsp;<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>Once you have formatted the device, proceed to establish the designated mount points.<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<ol>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> <span class=\"token function\">mkdir<\/span> <span class=\"token parameter variable\">-p<\/span> \/mnt\/<span class=\"token punctuation\">{<\/span>projects,www,db,workspace<span class=\"token punctuation\">}<\/span><\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>&nbsp;<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>Next, proceed to attach the logical volumes to their respective destinations.<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<ol>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> <span class=\"token function\">mount<\/span> \/dev\/LVMVolGroup\/projects \/mnt\/projects<\/li>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> <span class=\"token function\">mount<\/span> \/dev\/LVMVolGroup\/www \/mnt\/www<\/li>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> <span class=\"token function\">mount<\/span> \/dev\/LVMVolGroup\/db \/mnt\/db<\/li>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> <span class=\"token function\">mount<\/span> \/dev\/LVMVolGroup\/workspace \/mnt\/workspace<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>&nbsp;<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>To ensure the mounts stay permanent, utilize your favored text editor to include them in the \/etc\/fstab file. The given illustration employs nano as an instance.<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<ol>\n<li data-prefix=\"$\"><span class=\"token function\">sudo<\/span> <span class=\"token function\">nano<\/span> \/etc\/fstab<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<p>&nbsp;<\/p>\n<pre class=\"post-pre\"><code><\/code><\/pre>\n<div>\n<p>The &#8220;\/etc\/fstab&#8221; file needs to be paraphrased natively. Here&#8217;s one option:<\/p>\n<p>&#8220;The file located at &#8220;\/etc\/fstab&#8221; requires paraphrasing.&#8221;<\/p>\n<\/div>\n<pre class=\"post-pre\"><code>. . .\r\n\r\n\/dev\/LVMVolGroup\/projects \/mnt\/projects ext4 defaults,nofail 0 0\r\n\/dev\/LVMVolGroup\/www \/mnt\/www ext4 defaults,nofail 0 0\r\n\/dev\/LVMVolGroup\/db \/mnt\/db ext4 defaults,nofail 0 0\r\n\/dev\/LVMVolGroup\/workspace \/mnt\/workspace ext4 defaults,nofail 0 0\r\n<\/code><\/pre>\n<p>Once you have finished editing your document, save and close it. In case you are using nano, press CTRL+c, followed by y, and then ENTER.<\/p>\n<p>The LVM logical volumes should be automatically mounted by the operating system during startup.<\/p>\n<h2>In summary,<\/h2>\n<p>Now you possess knowledge about the different parts that LVM oversees to establish a dynamic storage system, as well as the procedure to initiate storage devices in an LVM configuration.<\/p>\n<p>If you want to gain a deeper understanding of working with LVM, please refer to our manual on utilizing LVM alongside Ubuntu 18.04.<\/p>\n<p>&nbsp;<\/p>\n<p>More Tutorials<\/p>\n<p><a class=\"LinkSuggestion__Link-sc-1gewdgc-4 cLBplk\" href=\"https:\/\/www.silicloud.com\/blog\/permissions-in-postgresql\/\" target=\"_blank\" rel=\"noopener\">permissions in PostgreSQL<span class=\"sc-gswNZR eASTkv\">(Opens in a new browser tab)<\/span><\/a><\/p>\n<p><a class=\"LinkSuggestion__Link-sc-1gewdgc-4 cLBplk\" href=\"https:\/\/www.silicloud.com\/blog\/installation-of-arch-linux\/\" target=\"_blank\" rel=\"noopener\">Installation of Arch Linux<span class=\"sc-gswNZR eASTkv\">(Opens in a new browser tab)<\/span><\/a><\/p>\n<p><a class=\"LinkSuggestion__Link-sc-1gewdgc-4 cLBplk\" href=\"https:\/\/www.silicloud.com\/blog\/partition-in-linux\/\" target=\"_blank\" rel=\"noopener\">Partition in Linux Step-by-Step Guide<span class=\"sc-gswNZR eASTkv\">(Opens in a new browser tab)<\/span><\/a><\/p>\n<p><a class=\"LinkSuggestion__Link-sc-1gewdgc-4 cLBplk\" href=\"https:\/\/www.silicloud.com\/blog\/common-errors-that-occur-when-using-nginx-for-connections\/\" target=\"_blank\" rel=\"noopener\">Common errors that occur when using Nginx for connections.<span class=\"sc-gswNZR eASTkv\">(Opens in a new browser tab)<\/span><\/a><\/p>\n<p><a class=\"LinkSuggestion__Link-sc-1gewdgc-4 cLBplk\" href=\"https:\/\/www.silicloud.com\/blog\/spring-boot-cli\/\" target=\"_blank\" rel=\"noopener\">Spring Boot CLI<span class=\"sc-gswNZR eASTkv\">(Opens in a new browser tab)<\/span><\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this opening section, I will provide an overview of the topic at hand. LVM, also known as Logical Volume Management, is a technology for managing storage devices that allows users to combine and organize the physical layout of storage components for easier administration. By using the device mapper framework in the Linux kernel, the [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","footnotes":""},"categories":[1],"tags":[],"class_list":["post-565","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.5 (Yoast SEO v21.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>LVM concepts, terminology, and procedures. - Blog - Silicon Cloud<\/title>\n<meta name=\"description\" content=\"LVM, also known as Logical Volume Management, is a technology for managing storage devices that allows users to combine and organize\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.silicloud.com\/blog\/a-brief-overview-of-lvm-concepts-terminology-and-procedures\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"LVM concepts, terminology, and procedures.\" \/>\n<meta property=\"og:description\" content=\"LVM, also known as Logical Volume Management, is a technology for managing storage devices that allows users to combine and organize\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/blog\/a-brief-overview-of-lvm-concepts-terminology-and-procedures\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/SiliCloudGlobal\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-08T20:31:12+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-07T14:52:07+00:00\" \/>\n<meta name=\"author\" content=\"Sophia Anderson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@SiliCloudGlobal\" \/>\n<meta name=\"twitter:site\" content=\"@SiliCloudGlobal\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sophia Anderson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/a-brief-overview-of-lvm-concepts-terminology-and-procedures\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/a-brief-overview-of-lvm-concepts-terminology-and-procedures\/\"},\"author\":{\"name\":\"Sophia Anderson\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/19a24313de9c988db3d69226b4a40a30\"},\"headline\":\"LVM concepts, terminology, and procedures.\",\"datePublished\":\"2023-07-08T20:31:12+00:00\",\"dateModified\":\"2024-03-07T14:52:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/a-brief-overview-of-lvm-concepts-terminology-and-procedures\/\"},\"wordCount\":1991,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\"},\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/a-brief-overview-of-lvm-concepts-terminology-and-procedures\/\",\"url\":\"https:\/\/www.silicloud.com\/blog\/a-brief-overview-of-lvm-concepts-terminology-and-procedures\/\",\"name\":\"LVM concepts, terminology, and procedures. - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#website\"},\"datePublished\":\"2023-07-08T20:31:12+00:00\",\"dateModified\":\"2024-03-07T14:52:07+00:00\",\"description\":\"LVM, also known as Logical Volume Management, is a technology for managing storage devices that allows users to combine and organize\",\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/a-brief-overview-of-lvm-concepts-terminology-and-procedures\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/blog\/a-brief-overview-of-lvm-concepts-terminology-and-procedures\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/a-brief-overview-of-lvm-concepts-terminology-and-procedures\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.silicloud.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"LVM concepts, terminology, and procedures.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#website\",\"url\":\"https:\/\/www.silicloud.com\/blog\/\",\"name\":\"Silicon Cloud Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\"},\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#organization\",\"name\":\"Silicon Cloud Blog\",\"url\":\"https:\/\/www.silicloud.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png\",\"contentUrl\":\"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png\",\"width\":1024,\"height\":1024,\"caption\":\"Silicon Cloud Blog\"},\"image\":{\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/SiliCloudGlobal\/\",\"https:\/\/twitter.com\/SiliCloudGlobal\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/19a24313de9c988db3d69226b4a40a30\",\"name\":\"Sophia Anderson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c726c09aa40e37115fb5c62d0c3ed62c16ca255d3763e2e3ae83a70ddf8c2175?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c726c09aa40e37115fb5c62d0c3ed62c16ca255d3763e2e3ae83a70ddf8c2175?s=96&d=mm&r=g\",\"caption\":\"Sophia Anderson\"},\"url\":\"https:\/\/www.silicloud.com\/blog\/author\/sophiaanderson\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"LVM concepts, terminology, and procedures. - Blog - Silicon Cloud","description":"LVM, also known as Logical Volume Management, is a technology for managing storage devices that allows users to combine and organize","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.silicloud.com\/blog\/a-brief-overview-of-lvm-concepts-terminology-and-procedures\/","og_locale":"en_US","og_type":"article","og_title":"LVM concepts, terminology, and procedures.","og_description":"LVM, also known as Logical Volume Management, is a technology for managing storage devices that allows users to combine and organize","og_url":"https:\/\/www.silicloud.com\/blog\/a-brief-overview-of-lvm-concepts-terminology-and-procedures\/","og_site_name":"Blog - Silicon Cloud","article_publisher":"https:\/\/www.facebook.com\/SiliCloudGlobal\/","article_published_time":"2023-07-08T20:31:12+00:00","article_modified_time":"2024-03-07T14:52:07+00:00","author":"Sophia Anderson","twitter_card":"summary_large_image","twitter_creator":"@SiliCloudGlobal","twitter_site":"@SiliCloudGlobal","twitter_misc":{"Written by":"Sophia Anderson","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.silicloud.com\/blog\/a-brief-overview-of-lvm-concepts-terminology-and-procedures\/#article","isPartOf":{"@id":"https:\/\/www.silicloud.com\/blog\/a-brief-overview-of-lvm-concepts-terminology-and-procedures\/"},"author":{"name":"Sophia Anderson","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/19a24313de9c988db3d69226b4a40a30"},"headline":"LVM concepts, terminology, and procedures.","datePublished":"2023-07-08T20:31:12+00:00","dateModified":"2024-03-07T14:52:07+00:00","mainEntityOfPage":{"@id":"https:\/\/www.silicloud.com\/blog\/a-brief-overview-of-lvm-concepts-terminology-and-procedures\/"},"wordCount":1991,"commentCount":0,"publisher":{"@id":"https:\/\/www.silicloud.com\/blog\/#organization"},"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/blog\/a-brief-overview-of-lvm-concepts-terminology-and-procedures\/","url":"https:\/\/www.silicloud.com\/blog\/a-brief-overview-of-lvm-concepts-terminology-and-procedures\/","name":"LVM concepts, terminology, and procedures. - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/blog\/#website"},"datePublished":"2023-07-08T20:31:12+00:00","dateModified":"2024-03-07T14:52:07+00:00","description":"LVM, also known as Logical Volume Management, is a technology for managing storage devices that allows users to combine and organize","breadcrumb":{"@id":"https:\/\/www.silicloud.com\/blog\/a-brief-overview-of-lvm-concepts-terminology-and-procedures\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/blog\/a-brief-overview-of-lvm-concepts-terminology-and-procedures\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/blog\/a-brief-overview-of-lvm-concepts-terminology-and-procedures\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.silicloud.com\/blog\/"},{"@type":"ListItem","position":2,"name":"LVM concepts, terminology, and procedures."}]},{"@type":"WebSite","@id":"https:\/\/www.silicloud.com\/blog\/#website","url":"https:\/\/www.silicloud.com\/blog\/","name":"Silicon Cloud Blog","description":"","publisher":{"@id":"https:\/\/www.silicloud.com\/blog\/#organization"},"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.silicloud.com\/blog\/#organization","name":"Silicon Cloud Blog","url":"https:\/\/www.silicloud.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png","contentUrl":"https:\/\/www.silicloud.com\/blog\/wp-content\/uploads\/2023\/11\/EN-SILICON-Full.png","width":1024,"height":1024,"caption":"Silicon Cloud Blog"},"image":{"@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/SiliCloudGlobal\/","https:\/\/twitter.com\/SiliCloudGlobal"]},{"@type":"Person","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/19a24313de9c988db3d69226b4a40a30","name":"Sophia Anderson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.silicloud.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/c726c09aa40e37115fb5c62d0c3ed62c16ca255d3763e2e3ae83a70ddf8c2175?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c726c09aa40e37115fb5c62d0c3ed62c16ca255d3763e2e3ae83a70ddf8c2175?s=96&d=mm&r=g","caption":"Sophia Anderson"},"url":"https:\/\/www.silicloud.com\/blog\/author\/sophiaanderson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/565","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/comments?post=565"}],"version-history":[{"count":2,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/565\/revisions"}],"predecessor-version":[{"id":1787,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/posts\/565\/revisions\/1787"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/media?parent=565"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/categories?post=565"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/blog\/wp-json\/wp\/v2\/tags?post=565"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}