2017-04-06 06:42:26 -05:00
|
|
|
# lvcreate
|
|
|
|
|
2023-11-15 05:25:25 +01:00
|
|
|
> Create a logical volume in an existing volume group. A volume group is a collection of logical and physical volumes.
|
2021-03-08 14:25:12 -05:00
|
|
|
> See also: `lvm`.
|
2024-06-18 17:53:38 +02:00
|
|
|
> More information: <https://manned.org/lvcreate>.
|
2017-04-06 06:42:26 -05:00
|
|
|
|
|
|
|
- Create a logical volume of 10 gigabytes in the volume group vg1:
|
|
|
|
|
2025-04-20 00:21:53 +03:00
|
|
|
`lvcreate {{[-L|--size]}} {{10G}} {{vg1}}`
|
2017-04-06 06:42:26 -05:00
|
|
|
|
|
|
|
- Create a 1500 megabyte linear logical volume named mylv in the volume group vg1:
|
|
|
|
|
2025-04-20 00:21:53 +03:00
|
|
|
`lvcreate {{[-L|--size]}} {{1500}} {{[-n|--name]}} {{mylv}} {{vg1}}`
|
2017-04-06 06:42:26 -05:00
|
|
|
|
|
|
|
- Create a logical volume called mylv that uses 60% of the total space in volume group vg1:
|
|
|
|
|
2025-04-20 00:21:53 +03:00
|
|
|
`lvcreate {{[-l|--extents]}} {{60%VG}} {{[-n|--name]}} {{mylv}} {{vg1}}`
|
2017-04-06 06:42:26 -05:00
|
|
|
|
2021-08-15 19:59:09 +02:00
|
|
|
- Create a logical volume called mylv that uses all the unallocated space in the volume group vg1:
|
2017-04-06 06:42:26 -05:00
|
|
|
|
2025-04-20 00:21:53 +03:00
|
|
|
`lvcreate {{[-l|--extents]}} {{100%FREE}} {{[-n|--name]}} {{mylv}} {{vg1}}`
|