From 4c059df5a66283a0a7c85d653af978b21342ea06 Mon Sep 17 00:00:00 2001 From: Adam Herst Date: Wed, 21 Apr 2021 08:52:40 -0400 Subject: [PATCH] virt-install: add --name option to example (#5799) Running the existing example (on Ubuntu 20.04) gives the error message: ERROR --name is required --- pages/common/virt-install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/virt-install.md b/pages/common/virt-install.md index 963ec9dea7..86b9b40c47 100644 --- a/pages/common/virt-install.md +++ b/pages/common/virt-install.md @@ -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}}`