General-Scripts/irp-pmx8.0
2025-01-25 16:54:10 +00:00

35 lines
1.9 KiB
Text
Executable file

clear
echo ===============================================================
echo ===== Proxmox VE - Preparation Script - Tyleo Innovations =====
echo ===============================================================
echo ================= Make IT Happening, Again. ===================
echo ===============================================================
echo Removing PVE 8.0 Sub Repo...
rm -f /etc/apt/sources.list.d/pve-enterprise.list
rm -f /etc/apt/sources.list.d/ceph.list
rm -f /etc/apt/sources.list.d/pve.list
mv /etc/apt/sources.list /etc/apt/sources.list.pvedisabled
echo Adding Debian Bookworm 12 Original Repos...
echo deb http://deb.debian.org/debian bookworm main > /etc/apt/sources.list
echo deb-src http://deb.debian.org/debian bookworm main >> /etc/apt/sources.list
echo deb http://deb.debian.org/debian-security/ bookworm-security main >> /etc/apt/sources.list
echo deb-src http://deb.debian.org/debian-security/ bookworm-security main >> /etc/apt/sources.list
echo deb http://deb.debian.org/debian bookworm-updates main >> /etc/apt/sources.list
echo deb-src http://deb.debian.org/debian bookworm-updates main >> /etc/apt/sources.list
echo deb http://deb.debian.org/debian bookworm-backports main contrib non-free >> /etc/apt/sources.list
echo deb-src http://deb.debian.org/debian bookworm-backports main contrib non-free >> /etc/apt/sources.list
echo deb http://download.proxmox.com/debian/pve bookworm pve-no-subscription >> /etc/apt/sources.list.d/pve-hypervisor.list
apt update
apt install htop btop duf fish nala ncdu cockpit ssh -y
nala update
nala upgrade -y
sleep 2
pveam update
wget --no-check-certificate https://scr.tyleo.dev/runner/run-pve-patch -O /bin/pvepatch
chmod +x /bin/pvepatch
echo 'Make a Cron to execute /bin/pvepatch to autoremove Sub Message (Recommended Cron below !, /bin/pvepatch is already Executable and must be run as root.)'
echo '0 0 * * * /bin/pvepatch'
echo /bin/fish >> /etc/shells
usermod --shell /bin/fish root
echo Terminated.