Created
May 14, 2012 17:55
-
-
Save ngsw/2695355 to your computer and use it in GitHub Desktop.
KVM_install_AMD
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/sh | |
| #参考URL | |
| #Scientific Linux 6 - KVM - インストール : Server World http://www.server-world.info/query?os=Scientific_Linux_6&p=kvm&f=1 | |
| yum install qemu-kvm libvirt python-virtinst bridge-utils | |
| modprobe kvm | |
| # grep 'Intel' /proc/cpuinfo && modprobe kvm_intel || modprobe kvm_amd # OK? :( | |
| modprobe kvm_amd | |
| #modprobe kvm_intel | |
| lsmod |grep --color kvm | |
| /etc/init.d/libvirtd start | |
| chkconfig libvirtd on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment