VirtualBox guest os를 GUI 모드가 아닌 CLI 모드에서 설치/운영을 위한 간단한 설명
참고 - http://www.virtualbox.org/manual/ch07.html,
http://www.virtualbox.org/manual/ch08.html#idp55479184
* guest os 저장 디렉토리 변경
# VBoxManage setproperty machinefolder /home/vbox
* guest os를 설치하기 위한 설정
# VBoxManage createvm --name "centOS6.5" --ostype Linux26 --register
# VBoxManage storageattach "centOS6.5" --storagectl "IDE Controller" --port 0
--device 1 --type dvddrive --medium /usr/local/src/temp/CentOS-6.5-i386-bin-DVD1.iso
// IDE HDD
# VBoxManage storageattach "centOS6.5" --storagectl "IDE Controller" --port 0 --device 0--type hdd --medium "centOS6.5.vdi"
// or SATA HDD
# VBoxManage storagectl "centOS6.5" --name "SATA Controller" --add sata --controller IntelAHCI# VBoxManage storageattach "centOS6.5" --storagectl "SATA Controller" --port 0 --device 0--type hdd --medium "centOS6.5.vdi"
# VBoxHeadless --startvm "centOS6.5"
* nic를 bridged 모드로 할 경우 다음과 같은 에러 발생 시
# VBoxHeadless --startvm "centOS6.5"
Oracle VM VirtualBox Headless Interface 4.3.10
(C) 2008-2014 Oracle Corporation
All rights reserved.
Error: failed to start machine. Error message: Failed to open/create the internal network 'HostInterfaceNetworking-' (VERR_INVALID_PARAMETER).
Failed to attach the network LUN (VERR_INVALID_PARAMETER)
* 설치 완료 후 iso 이미지 제거
# VBoxManage storageattach "centOS6.5" --storagectl "IDE Controller" --port 0
--device 1 --type dvddrive --medium none
* RDP 없이 vm 시작 할 경우
# VBoxHeadless --startvm "centOS6.5" --vrde off &
'System > Linux' 카테고리의 다른 글
linux - more (0) | 2014.04.25 |
---|---|
linux - find cpu bit (0) | 2014.04.21 |
gnome - gconf (0) | 2014.03.07 |
linux - saslpasswd2 (0) | 2014.03.03 |
linux - cgroups (control groups) (0) | 2014.03.02 |