A.32 create VmDiskMapping

Maps a virtual disk or CDROM to a virtual machine disk slot.

Syntax

create VmDiskMapping slot=value [storageDevice=value] name=value [description=value] on Vm instance

Where instance is:

{ id=id | name=name }

Description

This command maps a virtual disk or CDROM to a virtual machine disk slot. To create an empty CDROM drive, do not provide the storageDevice option. To edit a virtual disk or eject a CDROM, remove it using the delete VmDiskMapping command, then use the create VmDiskMapping command again to remap it to a virtual machine with any changed settings.

Options

The following table shows the available options for this command.

Option

Description

slot=value

The slot number for the disk in the virtual machine, starting at 0.

storageDevice=value

The name or ID of the disk; either a virtual disk, a virtual CDROM or a physical disk. If this option is not provided, an empty CDROM is created.

name=value

A name to identify the disk mapping.

Tip

To find this name after a virtual disk is mapped to a virtual machine, use the list VmDiskMapping command. You will need the name or ID of this to delete a disk mapping from a virtual machine with the delete VmDiskMapping command.

description=value

Optional description for the disk mapping object.

{ id=id | name=name }

The instance of the object using either the id or name option, for example name=MyVM.

Note

Any create command only creates a single instance of an object, and therefore only accepts a single object instance as an attribute. Providing more than one object of the same attribute type as a parameter always results in the last attribute value taking precedence.

Examples

Example A.41 Mapping a virtual disk to a virtual machine

OVM> create VmDiskMapping slot=0 storageDevice=MyVMDisk name=BootDisk on Vm name=MyVM

Example A.42 Mapping an ISO file to a virtual machine

OVM> create VmDiskMapping slot=1 storageDevice=OracleLinux-R6-U2-Server-x86_64-dvd.iso \
  name=CDROM on Vm name=MyVM

Example A.43 Mapping an empty CDROM drive

OVM> create VmDiskMapping slot=2 name="CDROM Drive" on Vm name=MyVM

See Also