Sha256: cb971a1c4a68995f7423d0052baada7a339351c8adef6942fa747af785ed9089
Contents?: true
Size: 469 Bytes
Versions: 53
Compression:
Stored size: 469 Bytes
Contents
#!/bin/bash NAME=$1 VBOX_DISK=$2 VBoxManage createvm --name $NAME --register VBoxManage modifyvm $NAME --memory 512 VBoxManage storagectl $NAME --name SATA --add sata --controller IntelAhci --bootable on --sataportcount 1 VBoxManage storageattach $NAME --storagectl SATA --port 0 --device 0 --type hdd --medium $VBOX_DISK #VBoxManage modifyvm $NAME --nic1 hostonly #VBoxManage modifyvm $NAME --nic1 nat VBoxManage startvm $NAME #VBoxManage unregistervm $NAME --delete
Version data entries
53 entries across 53 versions & 1 rubygems