Come disabilitare Virtualbox auto-close

0

Quando il mio computer raggiunge il 4% della batteria, Virtualbox si spegne. Come posso disabilitare questo o cambiare quando succede?

    
posta tejgop 12.01.2016 - 02:48
fonte

1 risposta

1

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.

    
risposta data 12.01.2016 - 02:59
fonte

Leggi altre domande sui tag