목차

VirtualBox

가상머신 목록

VBoxManage list vms # 전체 목록
VBoxManage list runningvms # 실행중인 것만

백그라운드로 VM 띄우기

VM 종료

VBoxManage controlvm <uuid|vmname> pause|resume|reset|poweroff|savestate|acpipowerbutton|acpisleepbutton

가상머신 용량 늘리기

Disk 설정

화면 사이즈 추가(Screen resolution)

# 가상머신 실행 전 설정
VBoxManage setextradata [VM Name] CustomVideoMode[num] [width]x[height]x[color depth]
 
# 가상머신 실행 후 변경
VBoxManage controlvm [VM Name] setvideomodehint [width] [height] [color depth]

Full Screen

Windows host

Disk 용량 증가시키기

# 명령행 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
 
# 이 후 가상머신을 실행하고 디스크 파티션 관리자에서 파티션 크기 조정

Host 운영체제의 Audio가 안나오고 Youtube가 멈췄다면