Applicable to:
- SolusVM
Question
Is it possible to add an entire HDD drive to KVM VPS as a secondary disk in SolusVM?
Answer
SolusVM does not support this scenario.
As a workaround, it can be added using the custom config:
- Add the HDD drive to the KVM slave node.
- Connect to the node via SSH
- Let's assume it is identified as /dev/sdc. Create a physical volume from this HDD:
# pvcreate /dev/sdc
- Login to SolusVM admin panel
- Go to SolusVM > Virtual Servers > {VPS} > Custom Config
- Copy Live Config and paste it in Custom Config field:
- Add the following part in <devices></devices> section:
CONFIG_TEXT: <devices>
...
<disk type='file' device='disk'>
<source file='/dev/sdc'/>
<target dev='hde' bus='virtio'/>
</disk>
...
</devices>For example:
- Tick Enable Custom Config checkbox and click Save & Reboot
Comments
0 commentsPlease sign in to leave a comment.