- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- Windows-アプリケーション/VirtualBox/仮想マシンをコマンドラインでヘッドレスインストールする へ行く。
- 1 (2018-06-19 (火) 09:48:13)
仮想マシンをコマンドラインでヘッドレスインストールする
手順
vboxmanage createvm --name "testvm" --register vboxmanage modifyvm "testvm" --memory 1024 --acpi on --boot1 dvd --nic1 bridged --bridgeadapter1 eth0 --ostype Debian_64 VBoxManage createvdi --filename ~/VirtualBox\ VMs/testvm/testvm-disk01.vdi --size 10000 VBoxManage storagectl "testvm" --name "IDE Controller" --add ide VBoxManage storageattach "testvm" --storagectl "IDE Controller" --port 0 --device 0 --type hdd --medium ~/VirtualBox\ VMs/testvm/testvm-disk01.vdi VBoxManage storageattach "testvm" --storagectl "IDE Controller" --port 1 --device 0 --type dvddrive --medium ~/tmp/debian-9.4.0-amd64-netinst.iso vboxheadless --startvm "testvm" &
参考
http://xmodulo.com/how-to-create-and-start-virtualbox-vm-without-gui.html