pve/install_pve7.sh

101 lines
3.2 KiB
Bash
Raw Normal View History

2023-02-13 17:22:41 +08:00
#!/bin/bash
#from https://github.com/spiritLHLS/pve
2023-02-13 18:20:44 +08:00
# pve 7
2023-02-15 11:07:22 +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-13 18:27:13 +08:00
# 前置环境安装
2023-02-13 17:22:41 +08:00
if [ "$(id -u)" != "0" ]; then
echo "This script must be run as root" 1>&2
exit 1
fi
2023-02-15 11:14:35 +08:00
apt-get update -y
2023-02-13 17:30:33 +08:00
if ! command -v wget > /dev/null 2>&1; then
apt-get install -y wget
fi
2023-02-13 17:59:35 +08:00
if ! command -v curl > /dev/null 2>&1; then
apt-get install -y curl
fi
2023-02-13 19:34:33 +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
2023-02-13 21:20:26 +08:00
# sysctl -w net.ipv6.conf.all.disable_ipv6=1
# sysctl -w net.ipv6.conf.default.disable_ipv6=1
2023-02-13 22:13:21 +08:00
2023-02-15 11:22:12 +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-13 22:03:59 +08:00
# 修改 /etc/hosts
2023-02-15 10:06:44 +08:00
hostnamectl set-hostname pve
2023-02-13 22:03:59 +08:00
ip=$(curl -s ipv4.ip.sb)
2023-02-15 11:07:22 +08:00
echo "127.0.0.1 localhost.localdomain localhost" | tee -a /etc/hosts
echo "${ip} pve.proxmox.com pve" | tee -a /etc/hosts
2023-02-15 10:06:44 +08:00
2023-02-13 22:13:21 +08:00
# 再次预检查
2023-02-13 18:25:04 +08:00
apt-get install gnupg -y
2023-02-13 18:52:59 +08:00
if ! nc -z localhost 7789; then
iptables -A INPUT -p tcp --dport 7789 -j ACCEPT
iptables-save > /etc/iptables.rules
fi
2023-02-13 19:02:10 +08:00
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 11:07:22 +08:00
_red "Error: This system does not meet the minimum requirements for Proxmox VE installation."
2023-02-13 19:02:10 +08:00
exit 1
else
2023-02-15 11:07:22 +08:00
_green "The system meets the minimum requirements for Proxmox VE installation."
2023-02-13 19:02:10 +08:00
fi
2023-02-13 17:59:35 +08:00
2023-02-13 18:27:13 +08:00
# 新增pve源
2023-02-15 12:26:00 +08:00
version=$(lsb_release -cs)
case $version in
2023-02-15 11:22:12 +08:00
jessie|stretch|buster|bullseye)
repo_url="deb https://mirrors.tuna.tsinghua.edu.cn/proxmox/debian/pve ${version} pve-no-subscription"
if [[ -n "${CN}" ]]; then
repo_url="deb http://download.proxmox.com/debian/pve ${version} pve-no-subscription"
fi
;;
*)
_red "Error: Unsupported Debian version"
exit 1
;;
esac
2023-02-15 11:07:22 +08:00
wget http://download.proxmox.com/debian/proxmox-release-bullseye.gpg -O /etc/apt/trusted.gpg.d/proxmox-release-bullseye.gpg
apt-key add /etc/apt/trusted.gpg.d/proxmox-release-bullseye.gpg
2023-02-13 17:52:49 +08:00
echo "$repo_url" >> /etc/apt/sources.list
2023-02-13 17:59:35 +08:00
2023-02-13 18:27:13 +08:00
# 下载pve
2023-02-13 18:20:26 +08:00
apt-get update && apt-get full-upgrade
2023-02-13 18:56:00 +08:00
if [ $? -ne 0 ]; then
apt-get install debian-keyring debian-archive-keyring -y
apt-get update && apt-get full-upgrade
fi
2023-02-13 19:02:10 +08:00
apt-get -y install postfix open-iscsi
apt-get -y install proxmox-ve
2023-02-13 17:38:03 +08:00
2023-02-15 11:07:22 +08:00
# 打印安装后的信息
url="https://${ip}:8006/"
2023-02-15 11:12:18 +08:00
_green "安装完毕请打开HTTPS网页 $url"
2023-02-15 11:07:22 +08:00
_green "用户名、密码就是服务器所使用的用户名、密码"
2023-02-13 18:40:42 +08:00