diff --git a/man/virt-image.pod b/man/virt-image.pod index 50b1ab52..5e5cf469 100644 --- a/man/virt-image.pod +++ b/man/virt-image.pod @@ -62,7 +62,7 @@ Name of the guest instance =item --memory=MEMORY -Memory to allocate for the guest, in megabytes. Defaults to C in the XML descriptor. This deprecates the -r/--ram option. +Memory to allocate for the guest, in MiB. Defaults to C in the XML descriptor. This deprecates the -r/--ram option. See L for more details. diff --git a/man/virt-install.pod b/man/virt-install.pod index 5e90b57a..e8d1d6d5 100644 --- a/man/virt-install.pod +++ b/man/virt-install.pod @@ -95,7 +95,7 @@ running C. =item --memory=MEM[,OPT1=VAL][...] -Memory to allocate for the guest, in megabytes. Sub options are available, +Memory to allocate for the guest, in MiB. Sub options are available, like 'maxmemory' and 'hugepages'. This deprecates the -r/--ram option. Use --memory=? to see a list of all available sub options. Complete details at L diff --git a/ui/createpool.ui b/ui/createpool.ui index 7285f013..f37e2259 100644 --- a/ui/createpool.ui +++ b/ui/createpool.ui @@ -319,7 +319,7 @@ True False 1 - sourcep: + sourcep: True pool-source-path diff --git a/virtinst/cli.py b/virtinst/cli.py index 771045ca..0128e917 100644 --- a/virtinst/cli.py +++ b/virtinst/cli.py @@ -615,7 +615,7 @@ def add_metadata_option(grp): def add_memory_option(grp, backcompat=False): grp.add_argument("--memory", help=_("Configure guest memory allocation. Ex:\n" - "--memory 1024 (in megabytes)\n" + "--memory 1024 (in MiB)\n" "--memory 512,maxmemory=1024")) if backcompat: grp.add_argument("-r", "--ram", type=int, dest="oldmemory",