事前检查
查看一下linux是32位还是64位
file /bin/ls
确认一下 CPU支持硬件虚拟化(不支持也没关系,可以继续)
egrep -o '(vmx|svm)' /proc/cpuinfo
安装
为了下载快,安装建议把apt的源改为 163.com或sohu.com
apt install -y qemu-kvm qemu-system libvirt-bin bridge-utils virtinst
创建虚拟机
准备一个虚拟硬盘文件,这里写200G,可根据情况调整
qemu-img create -f qcow2 -o preallocation=metadata /home/kvm/ubuntu.qcow2 200G
以及准备一个iso文件,用来安装os.
创建虚拟机
我选择的配置:
名称:test
内存:1G
CPU:1
可适当调整
virt-install --name=test --ram 1024 --vcpus=1 -f /home/kvm/ubuntu.qcow2 --cdrom /home/ubt1710.iso --graphics vnc,listen=0.0.0.0,port=5988,password=123456, --network network=default, --force --autostart
然后就能用VNC连接了,端口5988,密码123456
启动虚拟机
virsh start test
修改密码
在命令行:
virsh edit test
会打开虚拟机的配置文件,找到
<graphics type='vnc',
在
/>
前编辑:
passwd='mypassword'
下次启动生效
参考文章
http://jamyy.us.to/blog/2011/10/3365.html
https://huataihuang.gitbooks.io/cloud-atlas/virtual/kvm/startup/in_action/kvm_libvirt_static_ip_for_dhcp_and_port_forwarding.html
https://segmentfault.com/a/1190000000644069
http://blog.csdn.net/c80486/article/details/42836169