mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
virt-install, virt-sparsify: add page (#4333)
This commit is contained in:
parent
4ac62cbe9c
commit
50a4126485
2 changed files with 21 additions and 0 deletions
8
pages/common/virt-install.md
Normal file
8
pages/common/virt-install.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
# virt-install
|
||||
|
||||
> Create virtual machines with libvirt and begin OS installation.
|
||||
> More information: <https://virt-manager.org/>.
|
||||
|
||||
- Create a virtual machine with 1 GiB RAM and 12 GiB storage and start Debian installation:
|
||||
|
||||
`virt-install --memory {{1024}} --disk path={{path/to/image.qcow2}},size={{12}} --cdrom {{path/to/debian.iso}}`
|
13
pages/common/virt-sparsify.md
Normal file
13
pages/common/virt-sparsify.md
Normal file
|
@ -0,0 +1,13 @@
|
|||
# virt-sparsify
|
||||
|
||||
> Make virtual machine drive images thin-provisioned.
|
||||
> NOTE: Use only for offline machines to avoid data corruption.
|
||||
> Home page: <https://libguestfs.org/>.
|
||||
|
||||
- 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}}`
|
Loading…
Add table
Reference in a new issue