Linux双系统启动失败的修复方法

By admin , 24 六月, 2025

安装了Windows、Ubuntu双系统,UEFI启动方式。选择Ubuntu启动连Grub都进不去,以下是修复方法:

1. 使用 Live CD 进入急救模式

  • 制作 Linux 启动盘(如 Ubuntu Live CD),插入电脑后在 BIOS 中设置从 U 盘启动。
  • 进入 Live 系统后,打开终端,执行以下步骤修复引导:

2. 检查硬盘分区与挂载

bash
# 查看所有硬盘分区
fdisk -l
# 假设Linux系统安装在/dev/sda3分区,挂载该分区
sudo mount /dev/sda3 /mnt
# 挂载引导分区(若有单独的/boot分区)
sudo mount /dev/sda2 /mnt/boot
  • 3. 使用自动修复工具(推荐 Ubuntu)
    安装boot-repair工具:
    bash
    sudo add-apt-repository ppa:yannubuntu/boot-repair
    sudo apt update && sudo apt install boot-repair
    sudo boot-repair
    
     

 

  • 运行后选择 “推荐修复”,工具会自动重建 GRUB。

 

标签

评论

Restricted HTML

  • 允许的HTML标签:<a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd> <h2 id> <h3 id> <h4 id> <h5 id> <h6 id> <img src>
  • 自动断行和分段。
  • 网页和电子邮件地址自动转换为链接。
CAPTCHA
请输入"Drupal"
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.

最新内容

最新评论