Examine the virt-install command.
# virt-install \
-connect qemu:///system \
-virt-type kvm \
-name test \
-ram 500 \
-disk path =/var/lib/libvirt/images/test.img, size=4
-cdrom /home/user01/DownLoads/OracleLinux-R6-U5-Server-x86_64-dvd.iso\
-os-variant oe16
Which two statements are true?
A.
The-connectoption specifies the credentials for the hypervisor to use.
B.
The-nameoption specifies the name of the new guest virtual machine instance. ^
C.
The-ramoption specifies the memory to allocate for a guest instance in MB.
D.
The-virtypeoption specifies that only the keyboard, video, and mouse are fully virtualized.
E.
The-diskoption specifies the media to use as storage for the guest. The size of the storage will be 4 GB.
BCE are all correct.
–connect=CONNECT Connect to a non-default hypervisor.
–name=NAME Name of the new guest virtual machine instance. This must be
unique amongst all guests known to the hypervisor on the connection,
including those not currently active.
–ram=MEMORY Memory to allocate for guest instance in megabytes.
–disk=DISKOPTS Specifies media to use as storage for the guest, with
various options.
path: A path to some storage media to use, existing or not. Existing media
can be a file or block device.
size: size (in GB ) to use if creating new storage
–os-variant=OS_VARIANT Further optimize the guest configuration for a
specific operating system variant (ex. ‘fedora8’, ‘winxp’). This parameter
is optional, and does not require an “–os-type” to be specified.
B C E