Virt-install-基本使用

RedHat virt-install 介绍

介绍

virt-install 是一个用于创建和安装各种类型的虚拟机的命令行工具 (包括 KVM, Xen 等), 是 libvirt 虚拟化库的一部分.

安装

在 Archlinux 上为:

1
sudo pacman -S virt-install

基本使用

如:

1
2
3
4
5
6
7
8
9
10
virt-install \
--name=guest1-rhel5-64 \
--file=/var/lib/libvirt/images/guest1-rhel5-64.dsk \
--file-size=8 \
--nonsparse --graphics spice \
--vcpus=2 --ram=2048 \
--location=http://example1.com/installation_tree/RHEL5.6-Server-x86_64/os \
--network bridge=br0 \
--os-type=linux \
--os-variant=rhel5.4

又如:

1
2
3
4
5
6
7
8
9
virt-install  \
--name arch-linux_testing \
--memory 1024 \
--vcpus=2,maxvcpus=4 \
--cpu host \
--cdrom $HOME/Downloads/arch-linux_install.iso \
--disk size=2,format=qcow2 \
--network user \
--virt-type kvm

Virt-install-基本使用
http://example.com/2024/05/14/Virt-install-基本使用/
作者
Jie
发布于
2024年5月14日
许可协议