pve/back
2023-06-12 13:31:46 +08:00
..
back.md Update back.md 2023-06-03 14:07:38 +08:00
buildv6only.sh Rename buildv6only.sh to back/buildv6only.sh 2023-04-23 08:45:53 +08:00
get_images.py Create get_images.py 2023-04-09 01:07:45 +08:00
install_iso.sh Rename install_iso.sh to back/install_iso.sh 2023-04-10 22:37:29 +08:00
install_pve7.sh Rename install_pve7.sh to back/install_pve7.sh 2023-02-24 14:32:05 +08:00
pve6_to_pve7.sh Rename pve6_to_pve7.sh to back/pve6_to_pve7.sh 2023-04-03 21:51:25 +08:00
README.md Update README.md 2023-06-12 13:31:46 +08:00
rebuild.sh Update rebuild.sh 2023-05-07 13:13:19 +08:00
rebuild_qcow2.sh Update rebuild_qcow2.sh 2023-05-07 13:09:21 +08:00
uninstallpve.sh Update uninstallpve.sh 2023-05-11 16:08:31 +08:00

存档的脚本 - 勿要使用 - 全是BUG

pve6.4升级为最新的pve7.x

自测中,勿要使用,未完成

curl -L https://raw.githubusercontent.com/spiritLHLS/pve/main/pve6_to_pve7.sh -o pve6_to_pve7.sh && chmod +x pve6_to_pve7.sh && bash pve6_to_pve7.sh

加载系统模板

  • 加载KVM或LXC模板到PVE的ISO/CT列表中(debian11ubuntu20)
  • 加载完成后请web端查看 pve > local(pve) > ISO Images/CT Templates 刷新一下记录,直接去创建虚拟机是可能看不到已加载的
curl -L https://raw.githubusercontent.com/spiritLHLS/pve/main/install_iso.sh -o install_iso.sh && chmod +x install_iso.sh && bash install_iso.sh

替换qcow2

curl -L https://raw.githubusercontent.com/spiritLHLS/pve/main/back/rebuild.sh -o rebuild.sh && chmod +x rebuild.sh && bash rebuild.sh
guestfish -a xxx -i -c "cat /etc/ssh/sshd_config"
qm exec 虚拟机ID /bin/bash

卸载所有虚拟机

for vmid in $(qm list | awk '{if(NR>1) print $1}'); do qm stop $vmid; qm destroy $vmid; rm -rf /var/lib/vz/images/$vmid*; done
iptables -t nat -F
iptables -t filter -F
service networking restart
systemctl restart networking.service
rm -rf vm*

卸载PVE整体环境

尝试失败因为已自动替换过为PVE的内核如需卸载需要先替换为原生内核

curl -L https://raw.githubusercontent.com/spiritLHLS/pve/main/back/uninstallpve.sh -o uninstallpve.sh && chmod +x uninstallpve.sh && bash uninstallpve.sh

PVE基础安装说明

  • 配置完毕需要重启系统加载新内核
  • 重启系统前推荐挂上nezha探针方便在后台不通过SSH使用命令行避免SSH可能因为商家奇葩的预设导致重启后root密码丢失