VBoxManage list vms # 전체 목록 VBoxManage list runningvms # 실행중인 것만
VBoxManage startvm "{VMName}" --type headless # 혹은 VBoxHeadless -startvm "{VMName}"
powershell start-process 'C:\program files\oracle\virtualbox\vboxheadless' '-s 가상머신이름' -WindowStyle Hidden
VBoxManage controlvm <uuid|vmname> pause|resume|reset|poweroff|savestate|acpipowerbutton|acpisleepbutton
VBoxManage modifyhd
# 가상머신 실행 전 설정 VBoxManage setextradata [VM Name] CustomVideoMode[num] [width]x[height]x[color depth] # 가상머신 실행 후 변경 VBoxManage controlvm [VM Name] setvideomodehint [width] [height] [color depth]
Host + Home
→ View(보기)
→ Virtual Screen 1(가상화면 1)
에서 모니터 선택. VBoxManage.exe: error: VT-x is not available (VERR_VMX_NO_VMX)
제어판 → 프로그램 및 기능 → Windows 기능 켜기/끄기
gparted
가 있는 운영체제 ISO 로 가상머신을 부팅시켜서 gparted
로 해당 파티션 크기를 증가시켜야 한다.gparted
로 조정시, extended
파티션 안에 있는 파티션은, 먼저 extended
를 조정해준뒤에 그 안의 파티션 사이즈를 조정한다.# 명령행 Disk resize 방식 VBoxManage modifymedium disk “C:\Users\Chris\VirtualBox VMs\Windows 7\Windows 7.vdi” --resize 81920 # VBoxManage modifyhd “C:\Users\Chris\VirtualBox VMs\Windows 7\Windows 7.vdi” --resize 81920 : 구버전 VBox # 이 후 가상머신을 실행하고 디스크 파티션 관리자에서 파티션 크기 조정