|
|
发表于 2009-4-17 12:05:38
|
显示全部楼层
怪了, 怎么试KVM-84都不行, KVM-83就很好!
KVM启动脚本
%cat ./bin/kvm.sh
#!/bin/bash
if [ `pidof qemu-system-x86_64` ]; then
echo "KVM is already running..."
exit
fi
/usr/local/bin/qemu-system-x86_64 -M pc -m 256 -soundhw es1370 -hda /media/E/winxp.img -hdb /dev/sda7 -localtime -net nic,model=virtio -net user -nographic -daemonize -redir tcp:3389::3389 -boot c &
KVM-84与KVM-83都能正常启动! 但用如下脚本时, KVM-83很正常, 但KVM-84连不上
%cat xp.sh
rdesktop localhost:3389 -u sw2wolf -p *** -g 1440x880 -D -r sound:remote |
|