Windows7 操作系统已成功删除,但无法在 Ubuntu 中启动,提示缺少 bootmgr。此外,硬盘密码已冻结。
答案1
尝试启动修复。
Boot-Repair 是一个简单的工具,用于修复您在 Ubuntu 中可能遇到的常见启动问题,例如在安装 Windows 或其他 Linux 发行版后无法启动 Ubuntu,或者在安装 Ubuntu 后无法启动 Windows,或者 GRUB 不再显示,某些升级会破坏 GRUB 等。
您可以安装 Boot-Repair,也可以下载它并从 CD 启动。
要安装它,只需按下键盘上的Ctrl+ Alt+T打开终端。打开后,运行以下命令:
sudo add-apt-repository ppa:yannubuntu/boot-repair && sudo apt-get update
sudo apt-get install -y boot-repair && (boot-repair &)
来源:启动修复
答案2
Ubuntu 的启动管理器 GRUB2 可能在你删除 Windows 时损坏。尝试使用引导修复来修复它。首先启动 Ubuntu Live CD。打开终端窗口并运行以下代码来安装和运行启动修复:
sudo add-apt-repository ppa:yannubuntu/boot-repair
sudo apt-get update
sudo apt-get install -y boot-repair
boot-repair
然后按照程序中的说明和选项修复您的启动。
你可以拜访http://www.howtogeek.com/114884/how-to-repair-grub2-when-ubuntu-wont-boot/了解更多信息。