本文最后更新于 2021年08月26日
目录
前言
最近Debian11正式版出来了,换装Linux 5.10内核,大量软件包更新,博主的另一台主机已经更新了,用起来不错(感觉不到差别😅),其实主要是一直在用腾讯云自带的镜像,自带的很多腾讯的组件,我很不喜欢,这次就趁机会换一下系统。
本来以为20分钟内解决战斗,没想到宕机几小时(下班坐车回家了),本篇仅纪录一下自己猜的坑
踩坑后的总结
由于腾讯云自带的一些组件,会阻止我们DD安装操作系统(安装过程会报错,无法正确写入进磁盘),所以在DD安装操作系统前,必须要禁用、删除掉这些组件
systemctl stop tat_agent
systemctl disable tat_agent
rm -rf /etc/systemd/system/tat_agent.service
rm -fr /usr/local/qcloud
ps -A | grep agent
# 检查看是否还有腾讯云组件
# kill 这个进程
所有腾讯云组件都删除后,就可以DD安装Linux/Windows了
这里我用的是hiCasper
的脚本,我看了一下代码,是没有问题的
# 安装脚本所需的组件
apt-get install -y xz-utils openssl gawk file curl wget
wget --no-check-certificate -O AutoReinstall.sh "https://cdn.jsdelivr.net/gh/hiCasper/Shell/AutoReinstall.sh" && bash AutoReinstall.sh
# 手动选择你要的操作系统,这里我选择的是Debian11
# 选择完操作系统后的操作都是全自动进行的
大概10分钟后(依你VPS的性能),全新的Debian11就安装完成了
之后就可以ssh进你的VPS进行操作了(记得更改SSH端口,并关闭密码登录)
账号:root
默认密码:Pwd@Linux
修改APT镜像源
这个DD脚本默认的是阿里云的源
,在腾讯云上非常慢,建议更换为tuna源
ssh进系统,替换阿里云源
# 无法拉取 https 源,请先使用 http 源并安装:
apt-get update -y
apt install -y apt-transport-https ca-certificates sudo
cat <<EOF > /etc/apt/sources.list
# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-updates main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ bullseye-backports main contrib non-free
deb https://mirrors.tuna.tsinghua.edu.cn/debian-security bullseye-security main contrib non-free
# deb-src https://mirrors.tuna.tsinghua.edu.cn/debian-security bullseye-security main contrib non-free
EOF
apt-get update -y
之后就可以正常使用了
尾巴
本来挺简单事,被腾讯云自带的组件恶心的够呛。网络上关于腾讯云盾的删除操作都是过时的,腾讯云自带的镜像应该都不含有删除脚本,所有目前的唯一的办法应该就是删除腾讯云组件后,杀死相关进程,之后再进行DD安装系统
原创声明
本文由 NG6 于2021年08月26日发表在 sleele的博客
如未特殊声明,本站所有文章均为原创;你可以在保留作者及原文地址的情况下转载
转载请注明:腾讯云轻量服务器 DD安装Debian11 | sleele的博客
本文由 NG6 于2021年08月26日发表在 sleele的博客
如未特殊声明,本站所有文章均为原创;你可以在保留作者及原文地址的情况下转载
转载请注明:腾讯云轻量服务器 DD安装Debian11 | sleele的博客
嗨
执行到 手动选择操作系统安装,然后选择了Debian 11之后出现了这样的报错。。。
Press any key to continue…Error! Not Found grub.
改怎么处理
@David 先用其他脚本 dd 到 Debian
@David 解决了嘛?我也遇到了
@xxx 没有。。。找不到什么解决方案 放弃了
乌龙了,自己终端有问题。