关于Virtualization和Cloud的链接

1)将qcow2镜像导入virt-manager后启动不成功,报no boot device,解决方案如下

http://ubuntuforums.org/showthread.php?t=1638708

2)建立iSCSI

https://fedoraproject.org/wiki/Scsi-target-utils_Quickstart_Guide

http://www.cyberciti.biz/tips/howto-setup-linux-iscsi-target-sanwith-tgt.html

http://blog.csdn.net/starshine/article/details/7207151

3)python教程

http://woodpecker.org.cn/abyteofpython_cn/chinese/

4)建立tap网络

http://brezular.wordpress.com/2011/06/19/bridging-qemu-image-to-the-real-network-using-tap-interface/

http://blog.alantan.com/2007/01/qemu-tap-bridge-network-configuration.html

http://abelard.is-programmer.com/2011/11/28/qemu-bridge-with-tap.31035.html

步骤:

brctl addif br0 eth0

brctl addif br0 tap0

ifconfig tap0 up

qemu-system-x86_64 -hda xxx.img -boot d -m 1024 -net tap,ifname=tap0,script=no -net nic


你可能感兴趣的:(python)