test / on_startup.sh
Duongkum999's picture
Update on_startup.sh
75242bf verified
raw
history blame contribute delete
631 Bytes
#!/bin/bash
# Cài đặt các phần mềm cần thiết và cấu hình máy ảo
# Ví dụ, tải về và cấu hình một máy ảo Ubuntu
VM_NAME="ubuntu-vm"
VM_IMG="/var/lib/libvirt/images/$VM_NAME.img"
# Tạo một ổ đĩa ảo
qemu-img create -f qcow2 $VM_IMG 20G
# Cài đặt máy ảo
virt-install \
--name $VM_NAME \
--os-variant ubuntu20.04 \
--vcpu 2 \
--ram 2048 \
--disk path=$VM_IMG \
--import \
--graphics none \
--console pty,target_type=serial \
--network network=default
# Cấu hình để tự động khởi động máy ảo khi container khởi động
virsh autostart $VM_NAME