Title here
Summary here
Notice: This is the legacy documentation. For the latest features and updates, refer to our current SolusVM documentation.
By default Linux allows you to mount up to 8 iso files simultaneously. For some XEN VPS nodes this is not enough.
CentOS 5:
To resolve this issue, open /etc/modprobe.conf :
# nano /etc/modprobe.confand add the following line:
options loop max_loop=128When you want to mount up 128 drives simultaneously, or change 20 into 15 when you only need 15 mounted iso files.
Once this has been done you need to reboot your server for the change to take effect.
CentOS 6:
Add max_loop=256 to your kernel line or run MAKEDEV -v /dev/loop
CentOS 7:
Create /etc/modprobe.d/local-loop.conf with this content:
options loop max_loop=64