This commit is contained in:
braniz
2020-11-14 18:08:10 +01:00
commit b7eb5f1bee
12 changed files with 686 additions and 0 deletions

25
start.sh Normal file
View File

@@ -0,0 +1,25 @@
#!/bin/bash
#
# @Branislav Zeljak v0.1
#
# Create VBox
# Variablen:
clear
read -p "Wievile VMs sollen gestartet werden?: " VAR_QUAN
read -p "Praefix in der VBox [ubu]: " VAR_NAME
IFS="
"
VAR_NAME=${VAR_NAME:-ubu}
VAR_VB="${HOME}/VirtualBox VMs"
VAR_VDI="${HOME}/VirtualBox VMs/VDI/ubu2004_master.vdi"
for N in $(seq 1 $VAR_QUAN)
do
VBoxManage startvm --type headless ${VAR_NAME}-${N}
done