>cat ~/bin/kvm
#!/bin/bash
if [ `pidof qemu-kvm` ]; then
echo "KVM is already running..."
exit
fi
/usr/bin/qemu-kvm -enable-kvm -m 192 -soundhw es1370 -hda /home/sw2wolf/winxp.img -hdb /dev/sda7 -localtime -net nic -net user -nographic -daemonize -redir tcp:3389::3389 -boot c -k en-us &
I can still use KVM normally! However, i want to know what this message means ?
Sincerely!
Post new comment