我收到以下错误
我按照此视频中的说明进行操作: https ://www.youtube.com/watch?v=GaCbTe1eEes
在为 ubuntu 12.04.5 或更高版本的 i386 iso 正确配置 Grub4dos 条目以从 iso 映像引导(即允许在具有 PAE 的现代机器上引导)后,您可能会遇到以下问题 - 加载后内核你得到消息:
This kernel requires the following features not present on the CPU:
pae
Unable to boot - please use a kernel appropriate for your CPU.
应该对(几乎可以工作的)grub4dos menu.lst 条目进行哪些修改:
title Run Ubuntu 16.04.5 x86
find --set-root /ubuntu-16.04.5-desktop-i386.iso
map --read-only --heads=0 --sectors-per-track=0 /ubuntu-16.04.5-desktop-i386.iso (0xff)
map --hook
root (0xff)
kernel /casper/vmlinuz file=/cdrom/preseed/ubuntu.seed boot=casper iso-scan/filename=/ubuntu-16.04.5-desktop-i386.iso splash
initrd /casper/initrd
双启动 Windows 10 和 Ubuntu 18.10。
使用了 UUI 和 Rufus,但都不起作用。有没有办法解决这个问题?我在网上找不到这个问题的任何答案。
Booting 'Boot ubuntu'
(hd0,0)
Filesystem type is iso9660_Joliet, using whole disk
[Linux-bzImage, setup=0x4200, size=0x821b58]
initrd /casper/ILUG
Error 15:(http://grub4dos.chenall.net/e/15)
File not found
Press any key to continue...
我在 1TB 笔记本电脑的一个分区上运行 Ubuntu,保持 Windows 分区不变。我不明白为什么 Windows 会直接启动,而我朋友的笔记本电脑会显示启动 Windows 或 ubuntu 的选项。
如何配置 Grub4dos 来启动 Ubuntu 16.04?
这是我在 menu.lst 中的命令行:
title Run Ubuntu 16.04 Server
find --set-root --ignore-floppies --ignore-cd /iso/ubuntu-16.04-server-amd64.iso
map --heads=0 --sectors-per-track=0 /iso/ubuntu-16.04-server-amd64.iso (hd32)
map --hook
chainloader (hd32)
我可以引导安装 Ubuntu 16.04 环境。但我认为在第 4 步中,系统说它试图挂载 CD-ROM 会显示以下错误消息:
无法安装您的安装光盘。这可能意味着 CD-ROM 不在驱动器中。如果是这样,您可以将其插入并重试。
经过一些阅读后,我尝试了另一个命令行,如下所示:
title Run Ubuntu 16.04 Server
find --set-root /iso/ubuntu-16.04-server-amd64.iso
map /iso/ubuntu-16.04-server-amd64.iso (0xff) || map --mem /iso/ubuntu-16.04-server-amd64.iso (0xff)
map --hook
root (0xff)
kernel /casper/vmlinuz.efi file=/preseed/ubuntu.seed noprompt boot=casper iso-scan/filename=/iso/ubuntu-16.04-server-amd64.iso quiet splash --
initrd /casper/initrd.lz
这次我启动失败,Grub4Dos 显示以下错误消息:
错误 62:必须指定磁头数。'--heads=0' 选项告诉 map 为你选择一个值(但可能不适合)
什么是正确的命令行?