mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-12 00:35:45 +02:00
12 lines
277 B
Markdown
12 lines
277 B
Markdown
![]() |
# pvcreate
|
||
|
|
||
|
> Initialize a physical volume (disk or partition) for use by the Logical Volume Manager (LVM).
|
||
|
|
||
|
- Initialize the `/dev/sda1` volume for use by LVM:
|
||
|
|
||
|
`pvcreate {{/dev/sda1}}`
|
||
|
|
||
|
- Force the creation without any confirmation prompts:
|
||
|
|
||
|
`pvcreate --force {{/dev/sda1}}`
|