From 4d32bf9830df564549abb00e5291b4911a91496f Mon Sep 17 00:00:00 2001 From: spiritLHLS <103393591+spiritLHLS@users.noreply.github.com> Date: Mon, 13 Feb 2023 17:22:41 +0800 Subject: [PATCH] Create install_pve.sh --- install_pve.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 install_pve.sh diff --git a/install_pve.sh b/install_pve.sh new file mode 100644 index 0000000..d455a75 --- /dev/null +++ b/install_pve.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +# Check if running as root +if [ "$(id -u)" != "0" ]; then + echo "This script must be run as root" 1>&2 + exit 1 +fi +echo "deb http://download.proxmox.com/debian/pve buster pve-no-subscription" > /etc/apt/sources.list.d/pve-install-repo.list +wget http://download.proxmox.com/debian/proxmox-release-bullseye.gpg -O /etc/apt/trusted.gpg.d/proxmox-release-bullseye.gpg +apt-get update +apt-get install proxmox-ve=7.2-1 +rm /etc/apt/sources.list.d/pve-install-repo.list +echo "Proxmox VE 7.2 has been successfully installed."