答案1
我这样解决了这个问题(Ubuntu
没有被删除):
- 我
grub2
按照以下步骤安装在 USB 上这里 - 我重新启动了电脑并按下
F9
进入启动菜单 - 我选择“从 USB 启动”,然后
grub Terminal
出现 - 输入以下命令开始
Ubuntu
ls -l
查看我的情况,Ubuntu
您可以按完成命令(hd1,msdos5)
set root=(hd1,5)
linux /boot/vmlinuz-5.8.0-44-generic root=/dev/sda5
tab
linux /boot/
initrd /boot/initrd.img-5.8.0-44-generic
boot
- 这将开始
Ubuntu
- 一旦进入
Ubuntu
,我就会Boot Repair
修复该问题
sudo apt install software-properties-common; \ sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe"; \ sudo add-apt-repository -y ppa:yannubuntu/boot-repair; \ sudo apt-get update; \ sudo apt-get install -y boot-repair && boot-repair
。