安装KVM

Micheal Chen Lv6

date: 2010-03-20 12:46:04

1.安装组件

1
2
3
4
5
6
7
8
9
10
yum install kvm kmod-kvm qemu

install kmod-kvm
install kvm
install qemu

install SDL
install alsa-lib
install audiofile
install esound

2.设置内核模块

1
2
modprobe kvm-intel
lsmod | grep kvm

此步不确定是否需要

3.检查KVM设备

1
ls -l /dev/kvm

4.建立虚拟存储

1
2
3
4
mkdir /vm
cd /vm
# Note that the specified size is a maximum - the image only uses what it needs
qemu-img create -f qcow2 centos5x.img 10G

5.启动虚拟机,安装软件

1
2
export DISPLAY=192.168.1.80:0.0 #定向X Server
qemu-kvm -hda centos5x.img -m 512 -cdrom /dev/dvd -boot d

6.安装完成后,启动虚拟机运行

1
2
export DISPLAY=192.168.1.80:0.0 #定向X Server
qemu-kvm -hda centos5x.img -m 512:256

目前问题:

  • 桥接网络尚未完成,虚拟机无法访问网络
  • 虚拟机中的GNOME桌面鼠标与X Server鼠标同时出现,且不能同步
1
2
3
4
5
6
拟使用xming选项参数,待测试(此方法未解决)
-lesspointer
Hide the Microsoft Windows mouse cursor when the mouse is over
any Xming window (regardless of whether that window is active
or inactive). This prevents the Microsoft Windows mouse cursor
from being placed over the X cursor.
1
2
3
4
5
qemu-kvm命令行下让鼠标无缝链接的话,可以在命令后面加这样两个选项,
-usb -usbdevice tablet
(说明:第一个选项启用usb支持,第二个选项添加个一个名叫tablet的虚拟usb设备,
这个设备类似于一个使用绝对坐标的触摸屏,可以让qemu捕捉到你真实鼠标的位置而
无需重新渲染鼠标,以此来提高guest里鼠标的响应速度和支持无缝鼠标。)[/pre]
  • 虚拟机系统(CentOS 5.3)启动时出现内存警告: Memory for crash kernel(0x0 to 0x0) notwithin permissible range (此问题由kdump引起,无害但延缓启动速度)
  • Title: 安装KVM
  • Author: Micheal Chen
  • Created at : 2010-03-20 12:46:04
  • Updated at : 2025-03-22 21:00:48
  • Link: https://www.xhis.com/hexo/2010/03/20/notes/安装KVM/
  • License: This work is licensed under CC BY-NC-SA 4.0.
On this page
安装KVM