2023-02-15 10:28:31 +08:00
|
|
|
|
#!/bin/bash
|
|
|
|
|
#from https://github.com/spiritLHLS/pve
|
2023-02-15 11:07:15 +08:00
|
|
|
|
# pve 6
|
2023-02-15 10:28:31 +08:00
|
|
|
|
|
2023-02-15 10:56:06 +08:00
|
|
|
|
# 打印信息
|
|
|
|
|
_red() { echo -e "\033[31m\033[01m$@\033[0m"; }
|
|
|
|
|
_green() { echo -e "\033[32m\033[01m$@\033[0m"; }
|
|
|
|
|
_yellow() { echo -e "\033[33m\033[01m$@\033[0m"; }
|
|
|
|
|
_blue() { echo -e "\033[36m\033[01m$@\033[0m"; }
|
2023-02-16 21:03:48 +08:00
|
|
|
|
reading(){ read -rp "$(_green "$1")" "$2"; }
|
2023-02-15 10:56:06 +08:00
|
|
|
|
|
2023-02-15 10:28:31 +08:00
|
|
|
|
# 前置环境安装
|
|
|
|
|
if [ "$(id -u)" != "0" ]; then
|
2023-02-15 10:56:06 +08:00
|
|
|
|
_red "This script must be run as root" 1>&2
|
2023-02-15 10:28:31 +08:00
|
|
|
|
exit 1
|
|
|
|
|
fi
|
2023-02-15 11:14:30 +08:00
|
|
|
|
apt-get update -y
|
2023-02-15 10:28:31 +08:00
|
|
|
|
if ! command -v wget > /dev/null 2>&1; then
|
|
|
|
|
apt-get install -y wget
|
|
|
|
|
fi
|
|
|
|
|
if ! command -v curl > /dev/null 2>&1; then
|
|
|
|
|
apt-get install -y curl
|
|
|
|
|
fi
|
2023-02-17 09:56:19 +08:00
|
|
|
|
if ! command -v sudo > /dev/null 2>&1; then
|
|
|
|
|
apt-get install -y sudo
|
|
|
|
|
fi
|
|
|
|
|
if ! command -v bc > /dev/null 2>&1; then
|
|
|
|
|
apt-get install -y bc
|
|
|
|
|
fi
|
|
|
|
|
if ! command -v iptables > /dev/null 2>&1; then
|
|
|
|
|
apt-get install -y iptables
|
|
|
|
|
fi
|
2023-02-15 10:28:31 +08:00
|
|
|
|
curl -L https://raw.githubusercontent.com/spiritLHLS/one-click-installation-script/main/check_sudo.sh -o check_sudo.sh && chmod +x check_sudo.sh && bash check_sudo.sh > /dev/null 2>&1
|
|
|
|
|
hostnamectl set-hostname pve
|
2023-02-15 10:40:54 +08:00
|
|
|
|
ip=$(curl -s ipv4.ip.sb)
|
2023-02-20 20:14:49 +08:00
|
|
|
|
if ! grep -q "127.0.0.1 localhost.localdomain localhost" /etc/hosts; then
|
|
|
|
|
echo "127.0.0.1 localhost.localdomain localhost" >> /etc/hosts
|
|
|
|
|
echo "Added 127.0.0.1 localhost.localdomain localhost to /etc/hosts"
|
|
|
|
|
fi
|
|
|
|
|
if ! grep -q "${ip} pve.proxmox.com pve" /etc/hosts; then
|
|
|
|
|
echo "${ip} pve.proxmox.com pve" >> /etc/hosts
|
|
|
|
|
echo "Added ${ip} pve.proxmox.com pve to /etc/hosts"
|
|
|
|
|
fi
|
2023-02-19 09:52:43 +08:00
|
|
|
|
sudo chattr +i /etc/hosts
|
2023-02-15 10:40:54 +08:00
|
|
|
|
|
2023-02-15 11:21:31 +08:00
|
|
|
|
## China_IP
|
|
|
|
|
if [[ -z "${CN}" ]]; then
|
|
|
|
|
if [[ $(curl -m 10 -s https://ipapi.co/json | grep 'China') != "" ]]; then
|
|
|
|
|
_yellow "根据ipapi.co提供的信息,当前IP可能在中国"
|
|
|
|
|
read -e -r -p "是否选用中国镜像完成安装? [Y/n] " input
|
|
|
|
|
case $input in
|
|
|
|
|
[yY][eE][sS] | [yY])
|
|
|
|
|
echo "使用中国镜像"
|
|
|
|
|
CN=true
|
|
|
|
|
;;
|
|
|
|
|
[nN][oO] | [nN])
|
|
|
|
|
echo "不使用中国镜像"
|
|
|
|
|
;;
|
|
|
|
|
*)
|
|
|
|
|
echo "使用中国镜像"
|
|
|
|
|
CN=true
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
|
2023-02-15 10:40:54 +08:00
|
|
|
|
# 再次预检查
|
|
|
|
|
apt-get install gnupg -y
|
|
|
|
|
if [ $(uname -m) != "x86_64" ] || [ ! -f /etc/debian_version ] || [ $(grep MemTotal /proc/meminfo | awk '{print $2}') -lt 2000000 ] || [ $(grep -c ^processor /proc/cpuinfo) -lt 2 ] || [ $(ping -c 3 google.com > /dev/null 2>&1; echo $?) -ne 0 ]; then
|
2023-02-15 10:56:06 +08:00
|
|
|
|
_red "Error: This system does not meet the minimum requirements for Proxmox VE installation."
|
2023-02-16 18:33:15 +08:00
|
|
|
|
reading "是否要继续安装(非Debian系会爆上面这个警告)?(回车则默认不继续安装) [y/n] " confirm
|
|
|
|
|
echo ""
|
2023-02-16 21:08:26 +08:00
|
|
|
|
if [ "$confirm" != "y" ]; then
|
2023-02-16 18:33:15 +08:00
|
|
|
|
exit 1
|
|
|
|
|
fi
|
2023-02-15 10:40:54 +08:00
|
|
|
|
else
|
2023-02-15 11:07:15 +08:00
|
|
|
|
_green "The system meets the minimum requirements for Proxmox VE installation."
|
2023-02-15 10:40:54 +08:00
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# 新增pve源
|
2023-02-15 12:26:12 +08:00
|
|
|
|
version=$(lsb_release -cs)
|
|
|
|
|
case $version in
|
2023-02-15 11:21:31 +08:00
|
|
|
|
jessie|stretch|buster|bullseye)
|
2023-02-15 12:29:34 +08:00
|
|
|
|
repo_url="deb http://download.proxmox.com/debian/pve ${version} pve-no-subscription"
|
2023-02-15 11:21:31 +08:00
|
|
|
|
if [[ -n "${CN}" ]]; then
|
2023-02-15 12:29:34 +08:00
|
|
|
|
repo_url="deb https://mirrors.tuna.tsinghua.edu.cn/proxmox/debian/pve ${version} pve-no-subscription"
|
2023-02-15 11:21:31 +08:00
|
|
|
|
fi
|
|
|
|
|
;;
|
|
|
|
|
*)
|
|
|
|
|
_red "Error: Unsupported Debian version"
|
2023-02-16 18:37:04 +08:00
|
|
|
|
reading "是否要继续安装(非Debian系会爆上面这个警告)?(回车则默认不继续安装) [y/n] " confirm
|
|
|
|
|
echo ""
|
2023-02-16 21:08:26 +08:00
|
|
|
|
if [ "$confirm" != "y" ]; then
|
2023-02-16 18:37:04 +08:00
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
repo_url="deb http://download.proxmox.com/debian/pve bullseye pve-no-subscription"
|
|
|
|
|
if [[ -n "${CN}" ]]; then
|
|
|
|
|
repo_url="deb https://mirrors.tuna.tsinghua.edu.cn/proxmox/debian/pve bullseye pve-no-subscription"
|
|
|
|
|
fi
|
2023-02-15 11:21:31 +08:00
|
|
|
|
;;
|
|
|
|
|
esac
|
2023-02-20 20:14:49 +08:00
|
|
|
|
if [ ! -f "/etc/apt/trusted.gpg.d/proxmox-ve-release-6.x.gpg" ]; then
|
|
|
|
|
wget http://download.proxmox.com/debian/proxmox-ve-release-6.x.gpg -O /etc/apt/trusted.gpg.d/proxmox-ve-release-6.x.gpg
|
|
|
|
|
chmod +r /etc/apt/trusted.gpg.d/proxmox-ve-release-6.x.gpg
|
|
|
|
|
fi
|
|
|
|
|
if ! grep -q "^deb.*pve-no-subscription" /etc/apt/sources.list; then
|
|
|
|
|
echo "$repo_url" >> /etc/apt/sources.list
|
|
|
|
|
fi
|
2023-02-15 10:40:54 +08:00
|
|
|
|
|
|
|
|
|
# 下载pve
|
2023-02-15 11:02:52 +08:00
|
|
|
|
apt-get update -y && apt-get full-upgrade -y
|
2023-02-15 10:40:54 +08:00
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
|
apt-get install debian-keyring debian-archive-keyring -y
|
2023-02-15 11:02:52 +08:00
|
|
|
|
apt-get update -y && apt-get full-upgrade -y
|
2023-02-15 10:40:54 +08:00
|
|
|
|
fi
|
2023-02-20 19:37:57 +08:00
|
|
|
|
output=$(apt-get update 2>&1)
|
|
|
|
|
if echo $output | grep -q "NO_PUBKEY"; then
|
|
|
|
|
echo "Some keys are missing, attempting to retrieve them now..."
|
|
|
|
|
missing_keys=$(echo $output | grep "NO_PUBKEY" | awk -F' ' '{print $NF}')
|
|
|
|
|
for key in $missing_keys; do
|
|
|
|
|
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys $key
|
|
|
|
|
done
|
|
|
|
|
apt-get update
|
|
|
|
|
else
|
|
|
|
|
echo "All keys are present."
|
|
|
|
|
fi
|
2023-02-20 20:14:49 +08:00
|
|
|
|
output=$(apt-get update 2>&1)
|
|
|
|
|
if echo $output | grep -q "NO_PUBKEY"; then
|
|
|
|
|
_yellow "try sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys missing key"
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
2023-02-15 10:40:54 +08:00
|
|
|
|
apt -y install proxmox-ve postfix open-iscsi
|
|
|
|
|
|
2023-02-15 10:56:06 +08:00
|
|
|
|
# 打印安装后的信息
|
2023-02-15 10:40:54 +08:00
|
|
|
|
url="https://${ip}:8006/"
|
2023-02-15 11:12:21 +08:00
|
|
|
|
_green "安装完毕,请打开HTTPS网页 $url"
|
2023-02-15 10:56:06 +08:00
|
|
|
|
_green "用户名、密码就是服务器所使用的用户名、密码"
|
2023-02-15 10:40:54 +08:00
|
|
|
|
|
|
|
|
|
|