Connect Remote KVM Virtual Machines through VNC

安装虚拟机

在 CentOS7 上使用 virt-install 安装,则虚拟机后续都可以通过 VNC 远程访问。

1
2
3
4
5
$ virt-install --name ubuntu-20.04 --ram 2048 --vcpus=4 \
--accelerate --noautoconsole \
--disk path=/home/kip/test/ubuntu-20.04.qcow2,format=qcow2,size=50,bus=virtio \
--cdrom /home/kip/Downloads/ubuntu-20.04.1-desktop-amd64.iso \
--graphics vnc,password=123456,port=5902,listen=0.0.0.0

远程访问

VNC

在另一台 Win10 主机上,VNC Viewer 通过 cent-ip:2 就可以访问这台虚拟机。

虚拟机操作系统的安装过程,即可以通过此方式完成。

SSH

若按上一篇文章 Configure Bridge Net for CentOS7 配置了网桥,那么此虚拟机会通过 DHCP 自动分配好独立的 IP 地址。

随后就可以通过 ssh username@vm-ip 连接到此虚拟。

© 2019 - 2021 · Kip Jiang · Theme Simpleness Powered by Hugo ·