Method: VirtualBox::Vm#start
- Defined in:
- lib/virtual_box/vm.rb
#start ⇒ VirtualBox::Vm
Starts the virtual machine.
145 146 147 148 149 150 151 |
# File 'lib/virtual_box/vm.rb', line 145 def start register unless registered? VirtualBox.run_command! ['VBoxManage', '--nologo', 'startvm', uid, '--type', gui ? 'gui' : 'headless'] self end |