1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 12:45:59 +02:00

virt-install: add --name option to example (#5799)

Running the existing example (on Ubuntu 20.04) gives the error message:

ERROR    
--name is required
This commit is contained in:
Adam Herst 2021-04-21 08:52:40 -04:00 committed by GitHub
parent 44a899a354
commit 4c059df5a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,4 +5,4 @@
- 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}}`
`virt-install --name {{vm_name}} --memory {{1024}} --disk path={{path/to/image.qcow2}},size={{12}} --cdrom {{path/to/debian.iso}}`