[VirtualBox] 명령어로 백그라운드(background)에서 VM 실행하기

VirtualBox 가상머신을 백그라운드에서 실행해보자


환경 및 선수조건

  • Linux or Mac
  • VirtualBox and VM(미리 만들어진)


VBoxManage 명령어

VBoxManage 명령어란?

  • VBoxManage: VBoxManage는 Oracle VirtualBox를 사용할 수 있는 커맨드라인 명령어입니다.
  • VirtualBox를 API를 통해 사용할 수 있는 명령어라고 볼 수 있습니다.
  • API DOC: https://www.virtualbox.org/manual/ch08.html


VM을 백그라운드에서 실행

  • 기본
VBoxManage startvm [VM NAME] --type headless
  • 예제
VBoxManage startvm "Ubuntu 14.04" --type headless


VM을 현재 상태로 저장

  • 기본
VBoxManage controlvm [VM NAME] savestate
  • 예제
VBoxManage controlvm "Ubuntu 14.04" savestate


참고자료