mirror of
https://github.com/thelittlerocket/pve.git
synced 2025-03-03 17:27:17 +08:00
Create install_pve.sh
This commit is contained in:
parent
1f31228c5f
commit
4d32bf9830
1 changed files with 13 additions and 0 deletions
13
install_pve.sh
Normal file
13
install_pve.sh
Normal file
|
@ -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."
|
Loading…
Reference in a new issue