mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
19 lines
529 B
Plaintext
19 lines
529 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# virt-sparsify
|
|
|
|
> Make virtual machine drive images thin-provisioned.
|
|
> Note: Use only for offline machines to avoid data corruption.
|
|
> More information: <https://manned.org/virt-sparsify>.
|
|
|
|
- Create a sparsified compressed image without snapshots from an unsparsified one:
|
|
|
|
`virt-sparsify --compress {{path/to/image.qcow2}} {{path/to/image_new.qcow2}}`
|
|
|
|
- Sparsify an image in-place:
|
|
|
|
`virt-sparsify --in-place {{path/to/image.img}}`
|