1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 14:02:08 +02:00
tldr/pages/linux/lvreduce.md
Samuel Woon 6310c08975
lvextend, lvreduce, lvresize: add page (#4239)
Co-authored-by: Zlatan Vasović <zlatanvasovic@gmail.com>
2020-08-10 13:03:18 +02:00

11 lines
256 B
Markdown

# lvreduce
> Reduce the size of a logical volume.
- Reduce a volume's size to 120GB:
`lvreduce --size {{120G}} {{logical_volume}}`
- Reduce a volume's size by 40GB as well as the underlying filesystem:
`lvreduce --size -{{40G}} -r {{logical_volume}}`