Quando il mio computer raggiunge il 4% della batteria, Virtualbox si spegne. Come posso disabilitare questo o cambiare quando succede?
Il manuale contiene:
Batteria scarica il livello della batteria ha raggiunto un livello critico (in genere inferiore al 5%).
This event is currently only handled on Windows hosts and Mac OS X hosts. When this event is generated, VirtualBox will save the state and terminate all VMs in preperation of a potential host power down.
The behavior can be configured. By executing the following command, no VM is saved:
VBoxManage setextradata global "VBoxInternal2/SavestateOnBatteryLow" 0
This is a global setting as well as a per-VM setting. The per-VM value has higher precedence than the global value. The following command will save the state of all VMs but will not save the state of VM “foo”:
VBoxManage setextradata global "VBoxInternal2/SavestateOnBatteryLow" 1 VBoxManage setextradata "foo" "VBoxInternal2/SavestateOnBatteryLow" 0
The first line is actually not required as by default the savestate action is performed.
Leggi altre domande sui tag virtualbox