Files
cheatsheet-tldr/tldr/linux/pvcreate
2025-08-26 00:19:43 +00:00

19 lines
415 B
Plaintext

---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# pvcreate
> Initialize a disk or partition for use as a physical volume.
> See also: `lvm`.
> More information: <https://manned.org/pvcreate>.
- Initialize the `/dev/sda1` volume for use by LVM:
`pvcreate {{/dev/sdXY}}`
- Force the creation without any confirmation prompts:
`pvcreate {{[-f|--force]}} {{/dev/sdXY}}`