VirtualBox 기본
페이지 정보
작성자 조희승 댓글 0건 조회 11,141회 작성일 12-09-21 20:34본문
사이트
소스로 빌드
유저 메뉴얼
./configure --disable-hardening --disable-docs --disable-java
java interface와 docs는 생성하지 않음
kmk all
나머지는 대부분 build menual 에서 시키는 대로 하면 됨
vm 만들기
VBoxManage createvm --name g1 --ostype Ubuntu_64 --register
VBoxManage modifyvm g1 --memory 1024
VBoxManage createhd --filename '/root/VirtualBox VMs/g1/g1.vdi' --size 4096
VBoxManage storagectl g1 --name IDE --add ide --controller PIIX4 --bootable on
VBoxManage storagectl g1 --name SATA --add sata --controller IntelAhci --bootable on
VBoxManage storageattach g1 --storagectl SATA --port 0 --device 0 --type hdd --medium '/root/VirtualBox VMs/g1/g1.vdi'
VBoxManage storageattach g1 --storagectl SATA --port 0 --device 0 --type hdd --medium '/root/VirtualBox VMs/g1/g1.vdi'
VBoxManage storageattach g1 --storagectl IDE --port 0 --device 0 --type dvddrive --medium "/root/project/cdimages/ubuntu-12.04-desktop-amd64.iso"
VBoxManage modifyvm g1 --vram 128 --accelerate3d off --audio none --usb off
VBoxManage modifyvm g1 --boot1 dvd --boot2 disk
# NAT
VBoxManage modifyvm g1 --nic1 nat --nictype1 82540EM --cableconnected1 on
# Briged ------------------ modprobe vboxnetflt
VBoxManage modifyvm g1 --nic1 bridged --bridgeadapter1 eth1 --nictype1 82540EM --cableconnected1 on
# hostonly
VBoxManage modifyvm g1 --nic1 hostonly --nictype1 82540EM --cableconnected1 on
VBoxManage modifyvm g1 --nic1 nat --nictype1 82540EM --cableconnected1 on
# Briged ------------------ modprobe vboxnetflt
VBoxManage modifyvm g1 --nic1 bridged --bridgeadapter1 eth1 --nictype1 82540EM --cableconnected1 on
# hostonly
VBoxManage modifyvm g1 --nic1 hostonly --nictype1 82540EM --cableconnected1 on
VBoxManage modifyvm g1 --vrde on --vrdeport 5012 --vrdeaddress xxx.xxx.xxx.xxx
VBoxManage startvm g1 --type headless
VBoxManage controlvm g1 poweroff
# 아래는 참고
VBoxManage modifyvm g1 --memory 1024 --boot1 dvd --boot2 disk --clipboard bidirectional --acpi on --cpus 1 --hwvirtex on --nestedpaging on --vram 12 --accelerate3d off --vrde on --vrdeport 3390 --dvd /root/project/cdimages/ubuntu-12.04-desktop-amd64.iso --floppy disabled --audio none --nic1 bridged --bridgeadapter1 eth0 --nictype1 Am79C973 --cableconnected1 on --usb off
VBoxManage modifyvm g1 --memory 1024 --boot1 dvd --boot2 disk --clipboard bidirectional --acpi on --cpus 1 --hwvirtex on --nestedpaging on --vram 12 --accelerate3d off --vrde on --vrdeport 3390 --dvd /root/project/cdimages/ubuntu-12.04-desktop-amd64.iso --floppy disabled --audio none --nic1 bridged --bridgeadapter1 eth0 --nictype1 Am79C973 --cableconnected1 on --usb off
vrde 사용하기
extpack을 깔아야한다.
virtualbox 버전에 맞는 것을 깔아야함
VBoxManager extpack install /root/project/Oracle_VM_VirtualBox_Extension_Pack-4.2.0-80737.vbox-extpack
(extpack은 tar gz 압축파일임)
그담부턴 vrde사용가능!
댓글목록
등록된 댓글이 없습니다.