mirror of https://github.com/CrimsonTome/tldr.git
12 lines
232 B
Markdown
12 lines
232 B
Markdown
|
# pvcreate
|
||
|
|
||
|
> Initialize a disk or partition for use by LVM (Logical Volume Manager).
|
||
|
|
||
|
- Initialize `/dev/sda1` to use lvm:
|
||
|
|
||
|
`pvcreate {{/dev/sda1}}`
|
||
|
|
||
|
- Force the creation without any confirmation:
|
||
|
|
||
|
`pvcreate --force {{/dev/sda1}}`
|