[Data Mining, Data Engineering] Data Recovery from LVM Volumes in Linux

Автор Сообщение
news_bot ®

Стаж: 6 лет 2 месяца
Сообщений: 27286

Создавать темы news_bot ® написал(а)
17-Мар-2021 01:34

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.

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.
Извините, данный ресурс не поддреживается. :(
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

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

Some Linux versions have this feature installed by default.
This can be checked easily, by typing the command lvm in the terminal window.

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.

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

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

Now you’ll need the password to your 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.

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

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.

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.

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.

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

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

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.

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.

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.

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

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.

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

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.


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

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.

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

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

When the removal operation is successful, you’ll see this message.
Now the group can be removed, with this command: sudo vgremove vg1

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

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.
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.

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.

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

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

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.
See the full article with all additional video tutorials.
===========
Источник:
habr.com
===========

Похожие новости: Теги для поиска: #_data_mining, #_data_engineering, #_lvm, #_data_recovery., #_data_mining, #_data_engineering
Профиль  ЛС 
Показать сообщения:     

Вы не можете начинать темы
Вы не можете отвечать на сообщения
Вы не можете редактировать свои сообщения
Вы не можете удалять свои сообщения
Вы не можете голосовать в опросах
Вы не можете прикреплять файлы к сообщениям
Вы не можете скачивать файлы

Текущее время: 19-Апр 01:55
Часовой пояс: UTC + 5