diff --git a/pages/common/vboxmanage-clonevm.md b/pages/common/vboxmanage-clonevm.md index 7c1f60947..c79708514 100644 --- a/pages/common/vboxmanage-clonevm.md +++ b/pages/common/vboxmanage-clonevm.md @@ -1,6 +1,6 @@ # vboxmanage-clonevm -> Creates a clone of an existing virtual machine (VM). +> Create a clone of an existing virtual machine (VM). > More information: . - Clone the specified VM: @@ -15,6 +15,6 @@ `VBoxManage clonevm {{vm_name}} --basefolder {{path/to/directory}}` -- Store the cloned VM in VirtualBox: +- Register the cloned VM in VirtualBox: `VBoxManage clonevm {{vm_name}} --register` diff --git a/pages/common/vboxmanage-export.md b/pages/common/vboxmanage-export.md index a220a1d11..880b95a60 100644 --- a/pages/common/vboxmanage-export.md +++ b/pages/common/vboxmanage-export.md @@ -3,7 +3,7 @@ > Export virtual machines to a virtual appliance (ISO) or a cloud service. > More information: . -- Specify the target OVF file: +- Specify the target OVA file: `VBoxManage export --output {{path/to/filename.ova}}` @@ -19,6 +19,6 @@ `VBoxManage export --manifest` -- Specify description to the VM: +- Specify a description of the VM: -`VBoxManage export --description "{{description-info}}"` +`VBoxManage export --description "{{vm_description}}"` diff --git a/pages/common/vboxmanage-import.md b/pages/common/vboxmanage-import.md index 95baf9ce4..091b9cdf0 100644 --- a/pages/common/vboxmanage-import.md +++ b/pages/common/vboxmanage-import.md @@ -1,6 +1,6 @@ # vboxmanage-import -> Imports a virtual machine (VM) previously exported or created. +> Import a previously exported virtual machine (VM). > More information: . - Import a VM from an OVF or OVA file: diff --git a/pages/common/vboxmanage-unregistervm.md b/pages/common/vboxmanage-unregistervm.md index d65287d79..a4cf29a8d 100644 --- a/pages/common/vboxmanage-unregistervm.md +++ b/pages/common/vboxmanage-unregistervm.md @@ -7,7 +7,7 @@ `VBoxManage unregistervm {{uuid|vm_name}}` -- Delete hard disk image files, all saved state files, VM logs, XML VM machine files: +- Delete hard disk image files, all saved state files, VM logs, and XML VM machine files: `VBoxManage unregistervm {{uuid|vm_name}} --delete` diff --git a/pages/linux/exiqgrep.md b/pages/linux/exiqgrep.md index f44f77604..27b470a90 100644 --- a/pages/linux/exiqgrep.md +++ b/pages/linux/exiqgrep.md @@ -1,13 +1,13 @@ # exiqgrep -> The `exiqgrep` utility is a Perl script offering possibilities to `grep` in the Exim queue output. +> Perl script offering possibilities to `grep` in the Exim queue output. > More information: . - Match the sender address using a case-insensitive search: `exiqgrep -f '<{{email@somedomain.com}}>'` -- Match the sender address, and display message IDs only: +- Match the sender address and display message IDs only: `exiqgrep -i -f '<{{email@somedomain.com}}>'`