Forrest logo
back to the lvs tool

lvs:tldr:7baad

lvs: Change default display to show more details.
$ lvs -v
try on your machine

The command "lvs -v" is used to list information about logical volumes in a verbose format.

Here is a breakdown of the command:

  • "lvs" stands for Logical Volume Scan, which is a command-line tool in Linux used to display information about logical volumes and volume groups on the system.
  • The "-v" option stands for "verbose," which outputs more detailed information about the logical volumes.

When you run the "lvs -v" command, it will display information about each logical volume present on your system in a more detailed manner. This includes details like the name of the logical volume, its size, the volume group it belongs to, the physical volume on which it is stored, the metadata sequence number, and other relevant information.

Using the verbose option ("-v") provides additional information compared to running just the "lvs" command, which can be helpful for troubleshooting, system administration tasks, or gathering more detailed information about logical volumes.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the lvs tool