博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ubuntu安装KVM
阅读量:5758 次
发布时间:2019-06-18

本文共 1237 字,大约阅读时间需要 4 分钟。

1. vmware安装ubuntu-14.04.1-server-amd64.iso。

2. 安装完成后关机--右键虚拟机--setting--hardware--Processors--将

      virtualize intel VT-x/EPT or AMD/RVI,

  Virtualize CPU performance counters勾选。

3. 开机执行
grep vmx /proc/cpuinfo;
lscpu | grep Virtualization;
根据返回信息,看是否支持虚拟化功能。
4. 安装KVM:
(1).Install Qemu and KVM
apt-get install qemu-kvm libvirt-bin bridge-utils virt-manager

(2). edit /etc/libvirt/qemu.conf and uncomment these lines...

user = "root"
group = "root“

(3). Restart libvirtd

  service libvirtd restart

(4). Verify KVM is ok

$ kvm-ok
  INFO: /dev/kvm exists
  KVM acceleration can be used

(5). Verify bridging has been configured
# ifconfig
.
.
.
virbr0    Link encap:Ethernet  HWaddr 52:54:00:10:be:cd 
          inet addr:192.168.122.1  Bcast:192.168.122.255  Mask:255.255.255.0
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
         RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
         collisions:0 txqueuelen:0
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

 

reference:

https://help.ubuntu.com/community/KVM/Installation
http://www.howtogeek.com/117635/how-to-install-kvm-and-create-virtual-machines-on-ubuntu/

 

安装好之后,Vmware--File--Export to OVF---保存为模板文件(Ubuntu_64-bit-disk1.vmdk, Ubuntu 64-bit.ovf, Ubuntu 64-bit.mf),以后可以直接拿来deploy。

 

转载地址:http://ycvkx.baihongyu.com/

你可能感兴趣的文章
linux sublime 安装
查看>>
Linux 文件系统剖析
查看>>
二叉树查找
查看>>
百度非会员满速下载利器(IDM)Internet Download Manager v6.30.8 中文特别版
查看>>
在线OJ的小demo
查看>>
The requested URL ***** was not found on this serve
查看>>
For input string: "..."
查看>>
code-reading-notes--libyang-1
查看>>
Python代码分行问题
查看>>
vue: data binding
查看>>
JDK自动安装脚本
查看>>
Linux-NoSQL之memcached
查看>>
json
查看>>
winform timer时间间隔小于执行时间
查看>>
dcom初步窥探一
查看>>
R语法:<<-为全局变量赋值
查看>>
排序-堆排序
查看>>
Redis 入门 安装 命令
查看>>
Datatable linq 用法
查看>>
JS写法 数值与字符串的相互转换 取字符中的一部分显示 正则表达规则
查看>>