I noticed that Linux server distros are using LVM as default. What is so good about LVM, and when should I use it? Is there a GUI for managing LVM volumes like GParted, or is it just through the terminal? How is it different from RAID in using multiple drives for one volume?
Something that LVM supports but ZFS and BTRFS don’t, is the ability to reduce your storage. (That is, to empty and remove a drive from the array, without having to completely destroy the storage array.) As a home user without sufficient storage to have complete duplicates of everything, I find this an important feature.
nitrolife@rekabu.ru 11 months ago
interesting facts about LVM:
You can make a volume snapshot of the system before a major change with LVM (for example, an update).
You can enable caching and use HDD together with SSD cache
You can build raid 0,1,5 directly on LVM (you still need modules from mdraid)
Even without a raid, you can expand the partition beyond one disk to another or migrate the partition from disk to disk (without even disabling it)
However, all this is done from the console and I do not know if there is a GUI.