Added kvm scripts

This commit is contained in:
Ubuntu
2019-05-15 05:25:39 +00:00
parent 430b8c4a6f
commit 70b5594def
3 changed files with 61 additions and 0 deletions

8
kvm/bulk Normal file
View File

@@ -0,0 +1,8 @@
name=$1
count=$2
start=$3
for i in $(seq $start $count)
do
virt-install -r 8192 --vcpus=8 --pxe --os-type=linux --bridge br0 --bridge br1 --boot=network,hd --disk size=64 --name=$name-$i&
done