Is there a possibility to mount ISO images on existing SolusVM 2 VM

Have more questions? Submit a request

Applicable to:

  • SolusVM 2

Question

Is there a possibility to mount ISO images on existing SolusVM 2 VM?

Answer

There is a feature request to add Mount ISO functionality on our Suggest Idea portal and it has Under Consideration status. It means that the request has been reviewed by our developers and is on the evaluation stage.

In the meantime it is possible to mount ISO manually via VPS's configuration file:

  1. Log into SolusVM 2 and find virtual machine's UUID
    mceclip0.png
  2. Create configuration file backup (replace PATH with the path to a file you want to save backup):

    # virsh dumpxml UUID > PATH

  3. Start editing the configuration of the virtual machine as per the command below:

    # virsh edit UUID

  4. Change the boot order and path to ISO:

    CONFIG_TEXT: ...
    <os>
    <type arch='x86_64'>hvm</type>
    <boot dev='cdrom'/> << change this line
    </os>
    ...
    <disk type='file' device='cdrom'>
    <driver name='qemu' type='raw'/>
    <source file='path-to-iso'/>         << put the path to corresponding iso file
    <target dev='hda' bus='ide'/>
    <readonly/>
    </disk>

  5. Reboot virtual machine after editing configuration to apply changes:

    # virsh reboot UUID

Articles in this section

Was this article helpful?
0 out of 0 found this helpful
Share

Comments

0 comments

Please sign in to leave a comment.