F9 for bios options, and enable KVM in Advanced ---> Processor Options
kvm, kvm-kmp-default packages
# modprobe kvm # modprobe kvm-amd
# qemu-img create -f qcow fc6.img 10G
linux askmethod to access the install media options.
# qemu-kvm -hda fc6.img -cdrom /path/to/boot-media.iso -boot d -m 1024
# qemu-kvm -hda ./fc6.img -boot c -m 1024
uml-utilities, if required
# modprobe tun
# tunctl
# ifconfig tap0 192.168.100.1
192.168.100.1
iptables on the host to forward the packets from VM
# echo "1" > /proc/sys/net/ipv4/ip_forward
# iptables -t nat -A POSTROUTING -o eth1 -j MASQUERADE
brctl addbr br0
ifconfig eth1 0.0.0.0 promisc up
brctl addif br0 eth1
qemu-ifup script to attach the tap0 device to the bridge
switch = $(ip route list | awk '/^default / {print $NF}')
ifconfig $1 0.0.0.0 promisc up
brctl addif $switch $1
/etc/sysconfig/SuSEfirewall2 to allow the VMs to access the network
FW_FORWARD_ALWAYS_INOUT_DEV = "br0"