windows+linux双系统引导修复
windows
linux
sudo update-grub2# 准备一个linux安装盘,进入试用模式
# 打开终端,切换至root身份
sudo -i
# 找出当前linux系统所在设备,如下:我的linux设备在/dev/sda1
fdisk -l

参考
Last updated
Was this helpful?
sudo update-grub2# 准备一个linux安装盘,进入试用模式
# 打开终端,切换至root身份
sudo -i
# 找出当前linux系统所在设备,如下:我的linux设备在/dev/sda1
fdisk -l

Last updated
Was this helpful?
Was this helpful?
# 将设备挂载至 /mnt
mount /dev/sda1 /mnt
# 安装并更新 grub2
sudo grub-install --root-directory=/mnt/dev/sda
sudo update-grub2
# 最后重启电脑
reboot