Data Recovery from LVM Volumes in Linux

Would you like to know how to use the LVM technology in Linux? How to create an LVM volume, how to configure and mount it in your operating system, how to add and remove disks, and how to recover the information you have accidentally deleted? In today’s article, you will find all of that – and even more.

Data Recovery from LVM Volumes in Linux

What is LVM?

LVM (Logical Volume Manager) is a standard disk management feature available in every version of Linux. The volume manager provides a new level of interaction between your operating system and disks or volumes which this system is using. In a conventional disk management pattern, Linux looks for available drives first, and then checks what volumes are available on these devices.

With the help of LVM, disks or volumes can be united into a single space. If the disk space is treated like that, the operating system will see no difference between them and the volume manager will show the operating system only the necessary volume groups or physical disks.

Go to view
🐧 How to Recover Data Removed from LVM Volumes in Linux 🐧

🐧 How to Recover Data Removed from LVM Volumes in Linux 🐧

In fact, LVM has several considerable advantages to offer:

  • It can create a logical volume based on any number of physical disks which will be represented in the operating system as a single disk space.
  • The number of disks included and the size of such volume can be modified without interrupting your work.
  • Also, the LVM technology lets you do many things on the fly, like copying certain volumes, or configuring the mirroring feature the way it works in RAID 1 systems.

How to add LVM to the operating system?

If you are going to use LVM options for the first time, you have to install it. Here is the command you need for installation: sudo apt install lvm2

The command for installation: <b>sudo apt install lvm2

After that, type the administrator’s password, and click Yes to confirm your intention.

Confirm installation

Some Linux versions have this feature installed by default.

This can be checked easily, by typing the command lvm in the terminal window.

Check if this component is installed

Now you can move on to dealing with disks.

How to format a physical disk

Here we are, with three empty hard disks 320 GB each, which are unformatted and without any partitions.

Three empty unformatted disks, 320 GB each

The easiest way to format a disk is by using a disk management utility. Click on a disk – open advanced settings – then format it.

Format all the disks, one by one

Specify the name and file system – Next– and click Format again to confirm your action

Select the file system and assign a name

Now you’ll need the password to your administrator account.

Type the password to the administrator account.

Now that this disk is formatted, repeat the operation for every other disk which is not.

Also, a disk can be formatted with the terminal, using the command fdisk.

Sign in with a superuser account – sudo –i – type the password.

Type the command sudo –i and the administrator’s password

Now run the following command: fdisk /dev/sdb – where sdb is the unformatted disk.

Type the command fdisk /dev/sdb

Before you continue, make sure you have selected the right disk, because this operation erases all data from there.

Type n – new volume, p – primary, 1 – first partition, then press Enter twice.

Create a new volume

Now let’s get the volume ready to be used with LVM. Type t to change the volume type, and then 8e to assign LVM type.

Get the volume ready for LVM

Check the volume properties by pressing p – you can see everything is OK, a new formatted volume with the name sdb1 appeared; press w to record the changes. Similarly, format all the disks which are not formatted yet.

Check the settings and save the changes

Now create an LVM volume on the partition you have just created, by entering the command: pvcreate /dev/sdb1.

Create an LVM volume

Repeat the command for every disk: pvcreate /dev/sdс1, pvcreate /dev/sdd1.

Use the command for every disk

Create a volume group

Combine the three disks you have just prepared into an LVM volume. Here’s the command to use:

vgcreate vg1 /dev/sdb1 dev/sdc1 dev/sdd1

where vg1 is the name of the new group. Actually, you can use any name you prefer, but it’s recommended to put the vg letter combination before the name so that you know it is a volume group.

Combine the three disks into an <b>LVM</b> volume

Create a logical volume to use LVM

When the disks are combined into the group, you need to create a new logical volume, so that you can use this group. For this purpose, type the command:

lvcreate -L 10G -n lv1 vg1

Where the -L stands for the size of the logical volume – it is 10 GB in this case, and the -n assigns a name to the volume, and the vg1 indicates from which volume the space should be taken.

Creating a new logical volume

If there is any data on the disk, the operating system will warn you about it: type yes to confirm your decision to erase the information.

How to format and mount a logical volume?

The last step you still have to take is to format the volume in the disk management utility and mount it. Click on it to open advanced settings and then format it; specify the name and file system – Next– and click Format again.

The last step - formatting the volume

Type the root (superuser) account password, and click here to start mounting. Now you can use the new volume.

Type the <b>root</b> account password, and click here to start mounting

If you need to format it with the terminal, type the following command:

mkfs -t ext4 /dev/vg1/lv1

Specify the file system as Ext4, the group name, and the volume name.

If you need to format it with the terminal, type the following command

For mounting, type the following: mkdir /mnt/lv1, and then – mount -t ext4 /dev/vg1/lv1 /mnt/lv1.

Mounting a volume with the terminal

The volume is mounted.

How to change the volume size?

One of the advantages offered by logical volumes is the opportunity to add a new hard disk on the fly and expand the volume group. And on the contrary, if there is a hard disk in the volume group which is not in use, you can remove it.

There are three main tools to make physical volumes, volume groups and logical volumes larger or smaller.

  • Resize – this command shrinks or extends physical and logical volumes, but can’t handle volume groups;
  • Extend – use it to increase logical volumes or volume groups;
  • Reduce – it can make logical volumes or volume groups smaller.
Three main tools to make volume size larger or smaller

How to add a new hard disk to a volume group

The first step when you want to add a hard disk to a group is to format it. Scroll up to find a detailed explanation of this step.

After that, run the following command: vgextend vg1 /dev/sde1

Add a new disk

where vg1 is the group name, and sde1 is the new (formatted) disk.

How to display detailed information about LVM

To display detailed information on the composition of an LVM group, run the command pvdisplay.

Displaying detailed information on the composition of an <b>LVM</b> group

It displays the path to a physical disk, the name of the virtual group where it belongs, the information on the free and used disk space, disk ID and many other things.

How to remove a logical volume

To remove a logical volume, make sure that i’s disconnected (unmounted), then run the lvremove command, and the volume will be removed.

This command will help you to remove a volume group, but before that, you need to unmount the logical volume, so use another command first: umount /mnt/lv1

The logical volume needs to be unmounted

To proceed with removal, type this command: lvremove /dev/vg1/lv1, and type Yes to confirm this operation.

Removing a logical volume

When the removal operation is successful, you’ll see this message.

Now the group can be removed, with this command: sudo vgremove vg1

Removing the group

Now it is time to remove all the disks that used to constitute the group; this command will do it: sudo pvremove /dev/sdb1 /dev/sdc1 /dev/sdd1

The last step is to remove the disks

All the formatting of the physical disk is removed, and now the disk is back to its original condition.

How to recover deleted data from an LVM volume

If you accidentally removed important information from an LVM logical volume, you can still restore it with the help of Hetman Partition Recovery.

The tool recovers data from any devices, regardless of the cause of data loss.

This utility supports LVM partitions and guarantees data recovery from there. It can handle most popular file systems used in Windows, Linux, Unix, and MacOS. It can ignore errors of the logical structure, scan the hard disk and restore the files you are looking for.

At the moment, there is no version of Hetman Partition Recovery for Linux. However, you can still run it with the help of a virtual machine based on Windows, install it as the secondary operating system on your PC, or connect the hard disk to another computer.

Start the program: after initialization, it recognized the logical volume without effort and now it displays all the data available on this volume.

It recognized the logical volume without effort and now it displays all the data available on this volume

Start with running Fast scan – right-click on the disk, Open, Fast scan – and when the scan is over, the program will display the results in the right side of the window. Removed elements are marked with a red cross.

Fast scan

If the Fast scan doesn’t find the data you need, then use Full analysis.

Hetman Partition Recovery - Full analysis

Select the files to be restored, click Recovery, choose where to save them, then click Recovery again.

Now select the files you want to restore, and click Recovery

When the process is over, you will find all the files in the folder you have selected.

Conclusion

In this article, we did our best to explain how to use Logical Volume Management – an integrated feature of Linux. We have reviewed all important stages: creating and configuring an LVM partition, adding and mounting new hard disks, shrinking and removing volumes. The LVM feature has been developed with servers in mind, but now you can enjoy all of its benefits on a desktop PC at home.

Vladimir Artiukh

Author: , Technical Writer

Vladimir Artiukh is a technical writer for Hetman Software, as well as the voice and face of their English-speaking YouTube channel, Hetman Software: Data Recovery for Windows. He handles tutorials, how-tos, and detailed reviews on how the company’s tools work with all kinds of data storage devices.

Oleg Afonin

Editor: , Technical Writer

Oleg Afonin is an expert in mobile forensics, data recovery and computer systems. He often attends large data security conferences, and writes several blogs for such resources as xaker.ru, Elcomsoft and Habr. In addition to his online activities, Oleg’s articles are also published in professional magazines. Also, Oleg Afonin is the co-author of a well-known book, Mobile Forensics - Advanced Investigative Strategies.

Recommended For You

Hello! This is AI-based Hetman Software virtual assistant, and it will answer any of your questions right away.
Start Chat