pve/scripts/install_pve.sh

382 lines
14 KiB
Bash
Raw Normal View History

2023-02-15 10:28:31 +08:00
#!/bin/bash
#from https://github.com/spiritLHLS/pve
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-04-26 16:28:30 +08:00
export DEBIAN_FRONTEND=noninteractive
2023-04-27 11:27:30 +08:00
utf8_locale=$(locale -a 2>/dev/null | grep -i -m 1 -E "UTF-8|utf8")
2023-04-24 08:51:17 +08:00
if [[ -z "$utf8_locale" ]]; then
2023-04-27 11:27:30 +08:00
echo "No UTF-8 locale found"
2023-04-24 08:51:17 +08:00
else
export LC_ALL="$utf8_locale"
export LANG="$utf8_locale"
2023-04-27 11:10:44 +08:00
export LANGUAGE="$utf8_locale"
2023-04-27 11:27:30 +08:00
echo "Locale set to $utf8_locale"
2023-04-24 08:51:17 +08:00
fi
2023-06-03 13:56:04 +08:00
temp_file_apt_fix="/tmp/apt_fix.txt"
2023-04-24 08:35:54 +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-26 11:15:25 +08:00
if [ $? -ne 0 ]; then
dpkg --configure -a
apt-get update -y
fi
if [ $? -ne 0 ]; then
apt-get install gnupg -y
fi
2023-06-03 13:56:04 +08:00
apt_update_output=$(apt-get update 2>&1)
echo "$apt_update_output" > "$temp_file_apt_fix"
if grep -q 'NO_PUBKEY' "$temp_file_apt_fix"; then
public_keys=$(grep -oE 'NO_PUBKEY [0-9A-F]+' "$temp_file_apt_fix" | awk '{ print $2 }')
joined_keys=$(echo "$public_keys" | paste -sd " ")
_yellow "No Public Keys: ${joined_keys}"
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys ${joined_keys}
apt-get update
if [ $? -eq 0 ]; then
_green "Fixed"
2023-06-03 13:37:24 +08:00
fi
2023-06-03 13:56:04 +08:00
fi
rm "$temp_file_apt_fix"
2023-06-12 17:57:16 +08:00
install_package() {
package_name=$1
if dpkg -s $package_name > /dev/null 2>&1 ; then
_green "$package_name 已经安装"
else
apt-get install -y $package_name
if [ $? -ne 0 ]; then
apt-get install -y $package_name --fix-missing
fi
_green "$package_name 已尝试安装"
fi
}
install_package wget
install_package curl
install_package sudo
install_package bc
install_package iptables
2023-02-26 10:32:11 +08:00
2023-04-24 09:01:14 +08:00
check_cdn() {
local o_url=$1
for cdn_url in "${cdn_urls[@]}"; do
if curl -sL -k "$cdn_url$o_url" --max-time 6 | grep -q "success" > /dev/null 2>&1; then
export cdn_success_url="$cdn_url"
return
fi
sleep 0.5
done
export cdn_success_url=""
}
check_cdn_file() {
check_cdn "https://raw.githubusercontent.com/spiritLHLS/ecs/main/back/test"
if [ -n "$cdn_success_url" ]; then
_yellow "CDN available, using CDN"
else
_yellow "No CDN available, no use CDN"
fi
}
2023-05-13 19:09:37 +08:00
cdn_urls=("https://cdn.spiritlhl.workers.dev/" "https://cdn3.spiritlhl.net/" "https://cdn1.spiritlhl.net/" "https://ghproxy.com/" "https://cdn2.spiritlhl.net/")
2023-04-24 09:01:14 +08:00
check_cdn_file
2023-05-24 13:48:24 +08:00
# cloud-init文件修改
2023-05-24 14:01:22 +08:00
rebuild_cloud_init(){
2023-05-12 10:02:40 +08:00
if [ -f "/etc/cloud/cloud.cfg" ]; then
2023-05-24 12:14:31 +08:00
chattr -i /etc/cloud/cloud.cfg
2023-05-24 13:28:00 +08:00
if grep -q "preserve_hostname: true" "/etc/cloud/cloud.cfg"; then
:
else
sed -E -i 's/preserve_hostname:[[:space:]]*false/preserve_hostname: true/g' "/etc/cloud/cloud.cfg"
echo "change preserve_hostname to true"
fi
2023-05-24 13:48:24 +08:00
if grep -q "disable_root: false" "/etc/cloud/cloud.cfg"; then
:
else
sed -E -i 's/disable_root:[[:space:]]*true/disable_root: false/g' "/etc/cloud/cloud.cfg"
echo "change disable_root to false"
fi
2023-05-24 15:21:19 +08:00
chattr -i /etc/cloud/cloud.cfg
content=$(cat /etc/cloud/cloud.cfg)
2023-05-24 15:39:31 +08:00
line_number=$(grep -n "^system_info:" "/etc/cloud/cloud.cfg" | cut -d ':' -f 1)
2023-05-24 15:21:19 +08:00
if [ -n "$line_number" ]; then
lines_after_system_info=$(echo "$content" | sed -n "$((line_number+1)),\$p")
if [ -n "$lines_after_system_info" ]; then
updated_content=$(echo "$content" | sed "$((line_number+1)),\$d")
2023-05-24 15:39:31 +08:00
echo "$updated_content" > "/etc/cloud/cloud.cfg"
2023-05-24 15:21:19 +08:00
fi
fi
2023-05-24 15:52:03 +08:00
sed -i '/^\s*- set-passwords/s/^/#/' /etc/cloud/cloud.cfg
2023-05-24 12:14:31 +08:00
chattr +i /etc/cloud/cloud.cfg
2023-05-12 10:02:40 +08:00
fi
2023-05-24 14:01:22 +08:00
}
rebuild_cloud_init
2023-05-24 13:48:24 +08:00
2023-05-28 17:34:36 +08:00
# 检测IPV4
2023-05-28 17:45:53 +08:00
ip=$(ip -4 addr show | grep global | awk '{print $2}' | cut -d '/' -f1 | head -n 1)
2023-05-28 17:34:36 +08:00
2023-05-24 13:48:24 +08:00
# /etc/hosts文件修改
2023-02-26 10:32:11 +08:00
hostname=$(hostname)
if [ "${hostname}" != "pve" ]; then
2023-04-04 19:16:25 +08:00
chattr -i /etc/hosts
2023-02-26 10:32:11 +08:00
hosts=$(grep -E "^[^#]*\s+${hostname}\s+${hostname}\$" /etc/hosts | grep -v "${ip}")
if [ -n "${hosts}" ]; then
# 注释掉查询到的行
sudo sed -i "s/^$(echo ${hosts} | sed 's/\//\\\//g')/# &/" /etc/hosts
# 添加新行
2023-04-04 10:57:27 +08:00
# echo "${ip} ${hostname} ${hostname}" | sudo tee -a /etc/hosts > /dev/null
# _green "已将 ${ip} ${hostname} ${hostname} 添加到 /etc/hosts 文件中"
2023-02-26 10:32:11 +08:00
else
_blue "已存在 ${ip} ${hostname} ${hostname} 的记录,无需添加"
fi
2023-05-24 14:42:28 +08:00
chattr -i /etc/hostname
2023-04-04 12:41:37 +08:00
hostnamectl set-hostname pve
2023-05-24 14:42:28 +08:00
chattr +i /etc/hostname
2023-04-04 12:41:37 +08:00
hostname=$(hostname)
if ! grep -q "::1 localhost" /etc/hosts; then
echo "::1 localhost" >> /etc/hosts
echo "Added ::1 localhost to /etc/hosts"
fi
# if grep -q "^127\.0\.0\.1 localhost$" /etc/hosts; then
# sed -i '/^127\.0\.0\.1 localhost$/ s/^/#/' /etc/hosts
# echo "Commented out 127.0.0.1 localhost in /etc/hosts"
# fi
if ! grep -q "^127\.0\.0\.1 localhost\.localdomain localhost$" /etc/hosts; then
# 127.0.1.1
echo "${ip} ${hostname}.localdomain ${hostname}" >> /etc/hosts
echo "Added ${ip} ${hostname}.localdomain ${hostname} to /etc/hosts"
fi
2023-04-04 19:16:25 +08:00
chattr +i /etc/hosts
2023-02-26 10:32:11 +08:00
fi
2023-02-15 10:40:54 +08:00
2023-05-28 17:29:38 +08:00
## 更改网络优先级为IPV4优先
sed -i 's/.*precedence ::ffff:0:0\/96.*/precedence ::ffff:0:0\/96 100/g' /etc/gai.conf && systemctl restart networking
2023-02-26 10:32:11 +08:00
## ChinaIP检测
2023-02-15 11:21:31 +08:00
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-04-01 22:43:23 +08:00
reading "是否要继续安装(非Debian系或不满足最低的配置安装要求会爆上面这个警告)(回车则默认不继续安装) [y/n] " confirm
2023-02-16 18:33:15 +08:00
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-05-15 15:35:08 +08:00
apt-get install lsb-release -y
2023-02-15 12:26:12 +08:00
version=$(lsb_release -cs)
case $version in
2023-06-12 17:57:16 +08:00
stretch|buster|bullseye|bookworm)
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-04-03 22:01:51 +08:00
2023-06-12 17:57:16 +08:00
case $version in
stretch)
if [ ! -f "/etc/apt/trusted.gpg.d/proxmox-ve-release-4.x.gpg" ]; then
wget http://download.proxmox.com/debian/proxmox-ve-release-4.x.gpg -O /etc/apt/trusted.gpg.d/proxmox-ve-release-4.x.gpg
chmod +r /etc/apt/trusted.gpg.d/proxmox-ve-release-4.x.gpg
fi
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
;;
buster)
if [ ! -f "/etc/apt/trusted.gpg.d/proxmox-ve-release-5.x.gpg" ]; then
wget http://download.proxmox.com/debian/proxmox-ve-release-5.x.gpg -O /etc/apt/trusted.gpg.d/proxmox-ve-release-5.x.gpg
chmod +r /etc/apt/trusted.gpg.d/proxmox-ve-release-5.x.gpg
fi
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
;;
bullseye)
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 [ ! -f "/etc/apt/trusted.gpg.d/proxmox-release-bullseye.gpg" ]; then
wget http://download.proxmox.com/debian/proxmox-release-bullseye.gpg -O /etc/apt/trusted.gpg.d/proxmox-release-bullseye.gpg
chmod +r /etc/apt/trusted.gpg.d/proxmox-release-bullseye.gpg
fi
;;
bookworm)
if [ ! -f "/etc/apt/trusted.gpg.d/proxmox-release-bookworm.gpg" ]; then
wget http://download.proxmox.com/debian/proxmox-release-bookworm.gpg -O /etc/apt/trusted.gpg.d/proxmox-release-bookworm.gpg
chmod +r /etc/apt/trusted.gpg.d/proxmox-release-bookworm.gpg
fi
;;
*)
_red "Error: Unsupported Debian version"
reading "是否要继续安装(非Debian系会爆上面这个警告)(回车则默认不继续安装) [y/n] " confirm
echo ""
if [ "$confirm" != "y" ]; then
exit 1
fi
;;
esac
2023-04-03 22:01:51 +08:00
2023-02-20 20:14:49 +08:00
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-06-03 13:56:04 +08:00
apt_update_output=$(apt-get update 2>&1)
echo "$apt_update_output" > "$temp_file_apt_fix"
if grep -q 'NO_PUBKEY' "$temp_file_apt_fix"; then
public_keys=$(grep -oE 'NO_PUBKEY [0-9A-F]+' "$temp_file_apt_fix" | awk '{ print $2 }')
joined_keys=$(echo "$public_keys" | paste -sd " ")
_yellow "No Public Keys: ${joined_keys}"
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys ${joined_keys}
apt-get update
if [ $? -eq 0 ]; then
_green "Fixed"
fi
2023-02-20 19:37:57 +08:00
fi
2023-06-03 13:57:03 +08:00
rm "$temp_file_apt_fix"
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-06-12 17:57:16 +08:00
install_package proxmox-ve
install_package postfix
install_package open-iscsi
2023-02-15 10:40:54 +08:00
2023-04-12 08:58:15 +08:00
# 如果是国内服务器则替换CT源为国内镜像源
if [[ -n "${CN}" ]]; then
cp -rf /usr/share/perl5/PVE/APLInfo.pm /usr/share/perl5/PVE/APLInfo.pm.bak
sed -i 's|http://download.proxmox.com|https://mirrors.tuna.tsinghua.edu.cn/proxmox|g' /usr/share/perl5/PVE/APLInfo.pm
sed -i 's|http://mirrors.ustc.edu.cn/proxmox|https://mirrors.tuna.tsinghua.edu.cn/proxmox|g' /usr/share/perl5/PVE/APLInfo.pm
fi
2023-04-04 12:21:17 +08:00
# 安装必备模块并替换apt源中的无效订阅
cp /etc/apt/sources.list.d/pve-enterprise.list /etc/apt/sources.list.d/pve-enterprise.list.bak
2023-04-04 12:56:37 +08:00
# echo "deb http://download.proxmox.com/debian/pve $(lsb_release -sc) pve-no-subscription" > /etc/apt/sources.list.d/pve-enterprise.list
rm -rf /etc/apt/sources.list.d/pve-enterprise.list
2023-04-04 12:21:17 +08:00
apt-get update
2023-06-12 17:57:16 +08:00
install_package sudo
install_package lshw
install_package iproute2
install_package ifupdown2
install_package net-tools
install_package cloud-init
install_package novnc
# install_package isc-dhcp-server
2023-05-24 14:01:22 +08:00
rebuild_cloud_init
2023-04-04 12:21:17 +08:00
2023-04-04 18:07:11 +08:00
# 打印内核
2023-04-04 13:09:31 +08:00
running_kernel=$(uname -r)
_green "Running kernel: $(pveversion)"
installed_kernels=($(dpkg -l 'pve-kernel-*' | awk '/^ii/ {print $2}' | cut -d'-' -f3- | sort -V))
latest_kernel=${installed_kernels[-1]}
2023-04-04 13:29:16 +08:00
_green "PVE latest kernel: $latest_kernel"
2023-04-04 18:07:11 +08:00
# update-grub
2023-06-12 17:57:16 +08:00
install_package ipcalc
2023-04-04 18:07:11 +08:00
# 检查/etc/network/interfaces是否有source /etc/network/interfaces.d/*行
if grep -q "source /etc/network/interfaces.d/*" /etc/network/interfaces; then
# 检查/etc/network/interfaces.d/文件夹下是否有50-cloud-init文件
if [ -f /etc/network/interfaces.d/50-cloud-init ]; then
2023-06-03 14:06:23 +08:00
# # 检查50-cloud-init文件中是否有iface eth0 inet dhcp行
# if grep -q "iface eth0 inet dhcp" /etc/network/interfaces.d/50-cloud-init; then
# cp /etc/network/interfaces.d/50-cloud-init /etc/network/interfaces.d/50-cloud-init.bak
# # 获取ipv4、subnet、gateway信息
# gateway=$(ip route | awk '/default/ {print $3}')
# eth0info=$(ip -o -4 addr show dev eth0 | awk '{print $4}')
# ipv4=$(echo $eth0info | cut -d'/' -f1)
# subnet=$(echo $eth0info | cut -d'/' -f2)
# subnet=$(ipcalc -n "$ipv4/$subnet" | grep -oP 'Netmask:\s+\K.*' | awk '{print $1}')
# chattr -i /etc/network/interfaces.d/50-cloud-init
# sed -i "/iface eth0 inet dhcp/c\
# iface eth0 inet static\n\
# address $ipv4\n\
# netmask $subnet\n\
# gateway $gateway\n\
# dns-nameservers 8.8.8.8 8.8.4.4" /etc/network/interfaces.d/50-cloud-init
# fi
2023-05-12 11:30:04 +08:00
chattr +i /etc/network/interfaces.d/50-cloud-init
2023-04-04 18:07:11 +08:00
fi
fi
2023-04-04 18:24:14 +08:00
systemctl restart networking
2023-04-04 19:12:24 +08:00
if [ ! -s "/etc/resolv.conf" ]
then
2023-05-11 12:10:53 +08:00
cp /etc/resolv.conf /etc/resolv.conf.bak
2023-04-04 19:16:25 +08:00
chattr -i /etc/resolv.conf
2023-04-04 19:12:24 +08:00
echo "nameserver 8.8.8.8" | sudo tee /etc/resolv.conf > /dev/null
2023-04-04 19:16:25 +08:00
chattr +i /etc/resolv.conf
2023-04-04 19:12:24 +08:00
fi
2023-04-04 21:14:34 +08:00
if [[ -n "${CN}" ]]; then
2023-04-24 09:01:14 +08:00
wget ${cdn_success_url}https://raw.githubusercontent.com/spiritLHLS/pve/main/scripts/check-dns.sh -O /usr/local/bin/check-dns.sh
wget ${cdn_success_url}https://raw.githubusercontent.com/spiritLHLS/pve/main/scripts/check-dns.service -O /etc/systemd/system/check-dns.service
2023-04-04 21:14:34 +08:00
else
wget https://raw.githubusercontent.com/spiritLHLS/pve/main/scripts/check-dns.sh -O /usr/local/bin/check-dns.sh
wget https://raw.githubusercontent.com/spiritLHLS/pve/main/scripts/check-dns.service -O /etc/systemd/system/check-dns.service
2023-04-04 19:24:17 +08:00
fi
2023-04-04 21:14:34 +08:00
chmod +x /usr/local/bin/check-dns.sh
chmod +x /etc/systemd/system/check-dns.service
2023-04-04 19:51:11 +08:00
systemctl daemon-reload
systemctl enable check-dns.service
systemctl start check-dns.service
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-26 10:46:31 +08:00
_green "用户名、密码就是服务器所使用的用户名、密码(如root和root用户的密码)"
2023-06-12 13:30:36 +08:00
_green "如果登录无误请不要急着重启系统,去执行预配置环境的命令后再重启系统"
2023-02-15 10:40:54 +08:00