LinuxCommandLibrary

pvcreate

TLDR

Initialize physical volume

$ sudo pvcreate /dev/sda1
copy
Force creation
$ sudo pvcreate -f /dev/sda1
copy

SYNOPSIS

pvcreate [OPTIONS] PhysicalVolume...

DESCRIPTION

pvcreate initializes a disk or partition for use as a physical volume in LVM. This writes LVM metadata to the device, preparing it to be added to a volume group.

PARAMETERS

-f, --force

Force creation without confirmation prompts
-y, --yes
Answer yes to all prompts
-Z, --zero y|n
Zero the first 4 sectors of the device
--metadatasize size
Size of metadata area
--dataalignment size
Align data to a multiple of this size
-u, --uuid uuid
Specify UUID for the physical volume

CAVEATS

All existing data on the device will be overwritten. The device should not be mounted or in use. Physical volumes must be created before being added to volume groups.

HISTORY

pvcreate is part of LVM2, the Linux Logical Volume Manager.

SEE ALSO

lvm(8), vgcreate(8), pvdisplay(8), pvremove(8)

Copied to clipboard