lvm

Manage Linux LVM physical volumes, volume groups, and logical volumes.

6|1|Updated Feb 16, 2026
One-click install
npx skills add https://github.com/L3DigitalNet/Claude-Code-Plugins --skill lvm
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: lvm
Source: https://github.com/L3DigitalNet/Claude-Code-Plugins/tree/main/plugins/linux-sysadmin/skills/lvm
Command: npx skills add https://github.com/L3DigitalNet/Claude-Code-Plugins --skill lvm

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill simplifies the complex management of Linux Logical Volume Manager (LVM) storage, enabling efficient disk provisioning, resizing, and recovery.

Core Features & Use Cases

  • Volume Management: Create, extend, reduce, and remove physical volumes (PVs), volume groups (VGs), and logical volumes (LVs).
  • Advanced Features: Supports thin provisioning, snapshots, data migration (pvmove), and disaster recovery scenarios.
  • Use Case: You need to expand a server's storage without downtime. This Skill can guide you through extending an existing logical volume and its filesystem seamlessly.

Quick Start

Use the lvm skill to list all active logical volumes and their sizes.

Frequently Asked Questions about lvm

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I extend a logical volume and resize its filesystem in Linux without downtime?

To extend a logical volume without downtime, you add a physical volume to the volume group, use lvextend to increase the logical volume size, and then resize the filesystem online using standard LVM command-line tools.

What is thin provisioning in Linux LVM and when should I use it?

Thin provisioning in Linux LVM allocates storage space on demand rather than upfront. You should use thin provisioning when you need to over-provision disk capacity for logical volumes to maximize efficient storage utilization.

Can I create a snapshot of a logical volume for data backup and recovery?

Yes, you can create a snapshot of a logical volume. LVM snapshots capture the volume state at a specific point in time, enabling data migration, disaster recovery scenarios, and backup operations without interrupting active service.

What's the best way to migrate data between physical volumes in a volume group?

The best way to migrate data between physical volumes in a volume group is using the pvmove command. This standard LVM tool seamlessly migrates data extents to a new disk while the logical volume remains active and accessible.

Do I need standard LVM command-line tools to manage volume groups and physical volumes?

Yes, you need standard LVM command-line tools to manage volume groups and physical volumes. This Skill utilizes native Linux LVM utilities to execute operations like volume creation, resizing, provisioning, and data migration.

Why reduce a logical volume and what precautions are needed for disk storage management?

You reduce a logical volume to reclaim unused disk storage for other volumes. Precautions include shrinking the filesystem before reducing the logical volume itself to prevent severe data loss and corruption during the operation.