我的目标是实现 Qubes OS 3.1 和 Fedora 23 Workstation (respin) 的双启动。这家伙可以在 Ubuntu 上运行,但他先安装 Ubuntu,而我先安装 Qubes。最后的办法就是跟着他从头开始重新安装,但我想学点东西。
我尝试过什么:
- 安装 Qubes OS 3.1(确定)
- 更新了 Qubes OS 3.1 dom0 和 Fedora23 模板(OK)
- 安装了最新的 Fedora 23 Workstation respin(好的,但报告了一些 GRUB2 引导加载程序故障;尽管如此,Fedora 启动正常)
- 更新了最新的 Fedora 23 Workstation(好吧,没有更新)
- 尝试启动 Qubes(失败,GRUB2 启动菜单中还没有菜单项)
- 为 Qubes 创建了一个菜单条目(好的,见下文)
- 尝试启动 Qubes(失败,请参阅截屏)
- 谷歌搜索这个解决方法并安装了包
- 我现在收到了错误消息,但几秒钟后系统会自行重新启动并无限地执行此操作
我如何添加菜单项:
我启动到 Fedora 并转到该/etc/grub.d/
文件夹,然后编辑该40_custom
文件。我将 qubes 引导分区上 /boot/grub2/grub.cfg 文件的 xen 部分之间的所有内容粘贴到40_custom
Fedora 上该文件的末尾。然后我在root下执行了以下命令
grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg
并且 qubes 菜单项已生成grub.cfg
并在启动菜单中可见。我可以稍后提供 grub.cfg 的内容,同时我想知道可能出了什么问题以及如何修复它。
值得注意的信息:
- Qubes 在传统 BIOS 上从 GPT 启动(具有 2MB BIOS 启动分区)
- Fedora 在 UEFI 上从 GPT 启动(带 EFI 分区)
- 每个操作系统都有单独的
/boot
分区以及其他分区 - 没有额外的
/boot
分区
这是承诺的 grub.cfg:
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub2-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#
### BEGIN /etc/grub.d/00_header ###
set pager=1
if [ -s $prefix/grubenv ]; then
load_env
fi
if [ "${next_entry}" ] ; then
set default="${next_entry}"
set next_entry=
save_env next_entry
set boot_once=true
else
set default="${saved_entry}"
fi
if [ x"${feature_menuentry_id}" = xy ]; then
menuentry_id_option="--id"
else
menuentry_id_option=""
fi
export menuentry_id_option
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
}
function load_video {
if [ x$feature_all_video_module = xy ]; then
insmod all_video
else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
fi
}
terminal_output console
if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
set timeout=5
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
set timeout=5
fi
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/01_users ###
if [ -f ${prefix}/user.cfg ]; then
source ${prefix}/user.cfg
if [ -n "${GRUB2_PASSWORD}" ]; then
set superusers="root"
export superusers
password_pbkdf2 root ${GRUB2_PASSWORD}
fi
fi
### END /etc/grub.d/01_users ###
### BEGIN /etc/grub.d/10_linux ###
menuentry 'Fedora (4.4.8-300.fc23.x86_64) 23 (Workstation Edition)' --class fedora --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-4.4.8-300.fc23.x86_64-advanced-d43f46bc-7649-44ca-b02d-7599d115a8e8' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
set root='hd0,gpt6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt6 --hint-efi=hd0,gpt6 --hint-baremetal=ahci0,gpt6 440e2ced-56a2-432f-95e0-c5f1c33941a9
else
search --no-floppy --fs-uuid --set=root 440e2ced-56a2-432f-95e0-c5f1c33941a9
fi
linuxefi /vmlinuz-4.4.8-300.fc23.x86_64 root=UUID=d43f46bc-7649-44ca-b02d-7599d115a8e8 ro rootflags=subvol=root00 rhgb quiet
initrdefi /initramfs-4.4.8-300.fc23.x86_64.img
}
menuentry 'Fedora (0-rescue-1dccfd914c254de687a4ba1c13e159a9) 23 (Workstation Edition)' --class fedora --class gnu-linux --class gnu --class os --unrestricted $menuentry_id_option 'gnulinux-0-rescue-1dccfd914c254de687a4ba1c13e159a9-advanced-d43f46bc-7649-44ca-b02d-7599d115a8e8' {
load_video
insmod gzio
insmod part_gpt
insmod ext2
set root='hd0,gpt6'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt6 --hint-efi=hd0,gpt6 --hint-baremetal=ahci0,gpt6 440e2ced-56a2-432f-95e0-c5f1c33941a9
else
search --no-floppy --fs-uuid --set=root 440e2ced-56a2-432f-95e0-c5f1c33941a9
fi
linuxefi /vmlinuz-0-rescue-1dccfd914c254de687a4ba1c13e159a9 root=UUID=d43f46bc-7649-44ca-b02d-7599d115a8e8 ro rootflags=subvol=root00 rhgb quiet
initrdefi /initramfs-0-rescue-1dccfd914c254de687a4ba1c13e159a9.img
}
if [ "x$default" = 'Fedora (4.4.8-300.fc23.x86_64) 23 (Workstation Edition)' ]; then default='Advanced options for Fedora>Fedora (4.4.8-300.fc23.x86_64) 23 (Workstation Edition)'; fi;
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/20_ppc_terminfo ###
### END /etc/grub.d/20_ppc_terminfo ###
### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
menuentry 'Qubes, with Xen hypervisor' --class qubes --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-simple-6e934da1-b43d-434b-83b2-878d454fb6bd' {
insmod part_gpt
insmod ext2
set root='hd0,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 --hint='hd0,gpt2' 9c6e43e7-856f-4840-a04f-6936735f5835
else
search --no-floppy --fs-uuid --set=root 9c6e43e7-856f-4840-a04f-6936735f5835
fi
echo 'Loading Xen 4.6.0 ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /xen-4.6.0.gz placeholder console=none dom0_mem=min:1024M dom0_mem=max:4096M ${xen_rm_opts}
echo 'Loading Linux 4.1.13-9.pvops.qubes.x86_64 ...'
module /vmlinuz-4.1.13-9.pvops.qubes.x86_64 placeholder root=UUID=6e934da1-b43d-434b-83b2-878d454fb6bd ro rootflags=subvol=root i915.preliminary_hw_support=1 vconsole.font=latarcyrheb-sun16 rhgb quiet
echo 'Loading initial ramdisk ...'
module /initramfs-4.1.13-9.pvops.qubes.x86_64.img
}
submenu 'Advanced options for Qubes (with Xen hypervisor)' $menuentry_id_option 'gnulinux-advanced-6e934da1-b43d-434b-83b2-878d454fb6bd' {
submenu 'Xen hypervisor, version 4.6.0' $menuentry_id_option 'xen-hypervisor-4.6.0-6e934da1-b43d-434b-83b2-878d454fb6bd' {
menuentry 'Qubes, with Xen 4.6.0 and Linux 4.1.13-9.pvops.qubes.x86_64' --class qubes --class gnu-linux --class gnu --class os --class xen $menuentry_id_option 'xen-gnulinux-4.1.13-9.pvops.qubes.x86_64-advanced-6e934da1-b43d-434b-83b2-878d454fb6bd' {
insmod part_gpt
insmod ext2
set root='hd0,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 --hint='hd0,gpt2' 9c6e43e7-856f-4840-a04f-6936735f5835
else
search --no-floppy --fs-uuid --set=root 9c6e43e7-856f-4840-a04f-6936735f5835
fi
echo 'Loading Xen 4.6.0 ...'
if [ "$grub_platform" = "pc" -o "$grub_platform" = "" ]; then
xen_rm_opts=
else
xen_rm_opts="no-real-mode edd=off"
fi
multiboot /xen-4.6.0.gz placeholder console=none dom0_mem=min:1024M dom0_mem=max:4096M ${xen_rm_opts}
echo 'Loading Linux 4.1.13-9.pvops.qubes.x86_64 ...'
module /vmlinuz-4.1.13-9.pvops.qubes.x86_64 placeholder root=UUID=6e934da1-b43d-434b-83b2-878d454fb6bd ro rootflags=subvol=root i915.preliminary_hw_support=1 vconsole.font=latarcyrheb-sun16 rhgb quiet
echo 'Loading initial ramdisk ...'
module /initramfs-4.1.13-9.pvops.qubes.x86_64.img
}
}
}
### END /etc/grub.d/40_custom ###
### BEGIN /etc/grub.d/40_custom.backup ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom.backup ###
### BEGIN /etc/grub.d/41_custom ###
if [ -f ${config_directory}/custom.cfg ]; then
source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
副本也是关于帕斯特宾。
答案1
这里有来自Qubes OS核心开发者之一Marek Marczykowski-Górecki(Invisible Things Lab)的权威解答。来源是qubes 用户论坛,我最初问这个问题的地方。
这是主要问题 - 您正在尝试从 UEFI grub (Fedora) 引导旧系统(此处为 Qubes)。您需要选择其中之一 - 要么以传统模式启动,要么以 UEFI 模式启动(或在每次启动时更改 BIOS 设置...)。因此,一种选择是在传统模式下设置 Fedora - 然后将 Qubes 传统启动项放入 40_custom 中(正如您所做的那样)就足够了。
也可以从 UEFI 启动 Qubes,但需要不同的配置。在大多数情况下,Grub 并没有让它变得更容易......无论如何你可以尝试:
找到 xen-4.6.0.efi - 它应该安装到 /boot/efi/EFI/qubes/ 中。将其放入您的 EFI 系统分区(如果 /boot/efi 尚不存在)。
在同一目录中创建 xen.cfg,内容如下:
[全局] 默认=4.1.13-8.pvops.qubes.x86_64
[4.1.13-8.pvops.qubes.x86_64] options=loglvl=all kernel=vmlinuz-4.1.13-8.pvops.qubes.x86_64 root=/dev/dm-2 vconsole.font=latarcyrheb-sun16 rd。 lvm.lv=qubes_dom0/root ramdisk=initramfs-4.1.13-8.pvops.qubes.x86_64.img
调整内核版本、root=和rd.lvm.lv=参数。
确保内核和 initramfs 文件与 xen.cfg 位于同一目录中(很可能您需要从 /boot 复制它们)。将它们放在 EFI 系统分区上至关重要(即使 Grub 可以从其他位置加载它们)。
添加 grub 条目:
menuentry 'Qubes UEFI' { chainloader /EFI/qubes/xen-4.6.0.efi }
在这里查看相关的故障排除: https://www.qubes-os.org/doc/uefi-troubleshooting/ https://github.com/QubesOS/qubes-issues/issues/794
答案2
我怀疑这会有帮助,但这是我对双启动 Qubes 和 Mint 所做的操作。这是 Micah Lee 博客的直接抄袭,因此我不承担任何责任。 (https://micahflee.com/2014/04/dual-booting-qubes-and-ubuntu-with-encrypted-disks/)
我从 Mint live DVD 启动并进行初始硬盘分区。
在 HDD 上创建三个分区:一个用于 Qubes,一个用于 Fedora,以及一个小型启动分区。格式化 Fedora 分区(ext4 或其他)和引导分区,并设置引导标志。保持 Qubes 分区不格式化——Qubes 的安装程序似乎最高兴为其加密分区找到可用空间。但先不要安装 Qubes。
在 ext4 分区上安装 Fedora,将引导加载程序安装到引导分区。不要让它将引导加载程序安装到 dev/sda。
现在从 Qubes 安装介质重新启动。安装程序应该找到未格式化的分区,您应该能够在那里安装 Qubes。
重启。当我这样做时,唯一的选择是 Qubes。继续启动 Qubes。
在 dom0 中打开终端,然后使用 vim 或其他方式编辑 /etc/grub.d/40_custom,只需在顶部添加三行:
menuentry "Fedora 23" {
set root=(hdd0,1)
chainloader +1
}
然后,根据 Micah 的博客,我重新安装了 grub:
sudo grub2-mkconfig -o /boot/grub2/grub.cfg
sudo grub2-install /dev/sda
我最终得到了一台双启动 Qubes-and-Mint 机器。
祝你好运。