某运营商云电脑重装Debian 12
本文适用于某运营商云电脑重装Debian,安装分2个部分,一个是从Win安装中转系统Alpine,第二个是从Alpine安装Debian
步骤记录如下:
从Win安装到Alpine
下载 reinstall.bat ,使用管理员权限打开power shell,执行
reinstall.bat alpine-3.18
等待即可
进入Alpine配置Grub
使用账号和密码(root/123@@@)登入Alpine,编辑/etc/apk/repositories,添加
https://mirrors.tuna.tsinghua.edu.cn/alpine/v3.18/main
https://mirrors.tuna.tsinghua.edu.cn/alpine/v3.18/community
接着执行 setup-disk ,选择vda硬盘,再选择sys,然后重启
重启完成后执行
apk update
apk add grub grub-bios grub-efi wget curl bash os-prober
grub-install /dev/vda
接着编辑/etc/default/grub,末尾添加
GRUB_DISABLE_OS_PROBER=false
最后执行
grub-mkconfig -o /boot/grub/grub.cfg
然后重启
从Alpine安装Debian
登入Alpine,使用重装脚本reinstall.sh 安装debian 12
bash <(curl -Ls https://cdn.jsdelivr.net/gh/bin456789/reinstall/reinstall.sh) debian-12
等待安装结束后,使用账号密码(root/123@@@)登入即可
评论