Section 5.8 of the help file shows the following commands to limit disk bandwidth on a guest:
Code: Select all
VBoxManage bandwidthctl "VM name" add Limit --type disk --limit 20M
VBoxManage storageattach "VM name" --controller "SATA" --port 0 --device 0 --type hdd --medium disk1.vdi --bandwidthgroup LimitCode: Select all
VBoxManage bandwidthctl Win7CVXeams add CVXeams --type disk --limit 10Code: Select all
Name: 'CVXeams', Type: Disk, Limit: 10 Mbytes/secThe second command was entered like this:
Code: Select all
VBoxManage storageattach Win7CVXeams --controller "SATA" --port 0 --device 0 --type hdd --medium G:\Win7CVXeams\Win7CVXeams.vdi --bandwidthgroup CVXeamsSo I delete the "--controller" and replace it with "--storagectl", making my command this:
Code: Select all
C:\Users\RnG>VBoxManage storageattach Win7CVXeams --storagectl "SATA" --port 0 --device 0 --type hdd --medium G:\Win7CVXeams\Win7CVXeams.vdi --bandwidthgroup CVXeamsSomething I'm missing? Or does the help file need an update?