2023-02-15 12:38:01 +08:00
|
|
|
#!/bin/bash
|
|
|
|
#from https://github.com/spiritLHLS/pve
|
|
|
|
|
|
|
|
# 下载Ubuntu和Debian的最新系统镜像
|
|
|
|
wget -P /root/ https://cloud-images.ubuntu.com/focal/current/focal-server-cloudimg-amd64.img
|
2023-02-15 12:47:35 +08:00
|
|
|
wget -P /root/ https://github.com/spiritLHLS/pve/releases/download/debian-11.6.0-amd64-netinst.iso/debian-11.6.0-amd64-netinst.iso
|
2023-02-15 12:38:01 +08:00
|
|
|
|
|
|
|
# 将镜像文件移动到Proxmox VE的模板目录中
|
|
|
|
mv /root/focal-server-cloudimg-amd64.img /var/lib/vz/template/iso/
|
2023-02-15 12:47:35 +08:00
|
|
|
mv /root/debian-11.6.0-amd64-netinst.iso /var/lib/vz/template/iso/
|