腾讯云轻量Linux 5.10服务器DD安装Debian11解决腾讯云自带组件阻止DD安装问题
最近Debian11正式版出来了,换装Linux 5.10内核,大量软件包更新,博主的另一台主机已经更新了,用起来不错(感觉不到差别),其实主要是一直在用腾讯云自带的镜像,自带的很多腾讯的组件,我很不喜欢,这次就趁机会换一下系统。
注意
由于腾讯云自带的一些组件,会阻止我们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安装系统
点击链接加入群聊三群:751529538
点击链接加入群聊二群:376877156
点击链接加入群聊【路由器交流群:622891808已满】
本站附件分享,如果附件失效,可以去找找看
饿了么红包
于2022-01-29发布