Skip to main content

腾讯云安装 Debian Netinst 镜像

众所周知,腾讯云的 Debian 镜像内置了监控,并且很难卸载干净。

一些VPS服务商支持从本地上传 ISO 安装,但是腾讯云不支持,如果想要重装干净的 Debian,需要我们自己想办法。

编辑/etc/grub.d/40_custom

menuentry "Debian Installer" {
    set root="(hd0,msdos1)"
    linux /boot/debian-installer/linux
    initrd /boot/debian-installer/initrd.gz
}
mkdir -pv /boot/debian-installer
cd /boot/debian-installer
wget https://mirrors.bfsu.edu.cn/debian/dists/bookworm/main/installer-amd64/current/images/netboot/debian-installer/amd64/initrd.gz
wget https://mirrors.bfsu.edu.cn/debian/dists/bookworm/main/installer-amd64/current/images/netboot/debian-installer/amd64/linux
update-grub
reboot

我们连接到 VNC,在 grub 选择 “Debian Installer” 这个选项,进去之后就可以看到熟悉的 Debian 安装界面。