pvcreate

The pvcreate command in Linux is used to initialize a physical device (like a hard disk or partition) to be used by the Logical Volume Manager (LVM). It marks a storage device as a physical volume (PV) that can be incorporated into a volume group (VG) for creating logical volumes (LVs).

Purpose:

  • The command prepares a disk or partition for use with LVM by creating a new physical volume. This is the first step before adding the physical volume to a volume group, which will later be used for creating logical volumes.

Syntax:

pvcreate [options] <device>
  • <device>: The block device or partition to be initialized (e.g., /dev/sda1 or /dev/nvme0n1).

Key Options:

  • --uuid <UUID>: Assigns a specific UUID to the PV (optional).

  • --name <name>: Allows specifying a name for the physical volume.

  • --size <size>: Sets the size of the PV, if you want to allocate a specific size.

  • -f, --force: Forces the creation of the PV even if there is existing data on the device. Use this with caution.

Example Usage:

  1. Creating a Physical Volume:

    pvcreate /dev/sdb1

    This will initialize the partition /dev/sdb1 as a physical volume for LVM.

  2. Creating a PV with a Specific UUID:

    pvcreate --uuid 1234abcd-5678-efgh-ijkl-910111213141 /dev/sdc

    This command initializes /dev/sdc as a PV with the specified UUID.

  3. Force Creating a PV (Warning: Destroys Data):

    pvcreate -f /dev/sdb

    This forces the creation of a PV on /dev/sdb and overwrites any existing data on that device.

Example Output:

$ pvcreate /dev/sdb1
  Physical volume "/dev/sdb1" successfully created.

Conclusion:

The pvcreate command is essential for initializing a physical volume, which is the first step in using LVM for managing storage. Once the physical volume is created, it can be added to a volume group (VG), and logical volumes (LVs) can be created for use. Always ensure that the device being initialized doesn't contain any important data, as the process will overwrite it.

Last updated