Update cheatsheets

This commit is contained in:
ivuorinen
2026-01-03 00:21:19 +00:00
parent fe5e4dcb31
commit a44c60008a
37 changed files with 286 additions and 21 deletions

18
tldr/linux/virt-sparsify Normal file
View File

@@ -0,0 +1,18 @@
---
syntax: markdown
tags: [tldr, linux]
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}}`