-
Notifications
You must be signed in to change notification settings - Fork 2
Hippie Hacker edited this page May 4, 2015
·
1 revision
You will need: ftp://ftp.supermicro.com/utility/SMCIPMItool/ and Xephyr
~/sw/bin/start_kvms
#!/bin/bash
# Set these, or we'll use the defaults
SMC_USER=${SMC_USER:-ADMIN} # the Default
SMC_PASSWORD=${SMC_PASSWORD:-ADMIN} # the Default
for i in 1 2 3 4 5 6 7; do
echo -n Starting Xephyr :$i
sleep 0.5
Xephyr -br -ac -noreset -screen 800x600 :$i &
echo and Super Micro IPMI kvm :$i
$(sleep 1 && DISPLAY=:$i xmessage $i -buttons : )&
DISPLAY=:$i SMCIPMITool 1.1.0.$i $SMC_USER $SMC_PASSWORD ukvm &
done
~/sw/bin/kill_kvms
#!/bin/bash
killall Xephyr