尝试将 Arch Linux 添加到已安装 Ubuntu、Debian 和 GRUB 的 UEFI 硬盘中

尝试将 Arch Linux 添加到已安装 Ubuntu、Debian 和 GRUB 的 UEFI 硬盘中

我将 Arch 64 位 ISO 下载到 USB 拇指驱动器并启动它。目标系统是 Gigabyte 主板,配有 Athlon CPU 和 8GB RAM,1 TB 硬盘,带 UEFI。

按照内置的“Installation_Guide”脚本进行操作,并尽可能严格遵循。有些部分有点模糊。

我也阅读了这篇文章,但是它和安装指南都没有真正说明如果你尝试多重启动该怎么做。 https://www.tecmint.com/arch-linux-installation-and-configuration-guide/

由于我已经将第一个分区 sda1 用作“启动分区”(我猜),Ubuntu 在 sda2 上,Debian 在 sda3 上,交换在 sda4 上,因此我使用 fdisk 创建了 sda5 并将其格式化为 ext4。按照说明安装了 Arch 和 vi。使用现有的交换分区,为什么不呢?一次只能运行一个操作系统。

完成了所有语言、区域和时区配置。设置本地主机和主机名。

我创建了 fstab,它有 3 个条目,一个用于 EFI 分区,一个用于交换,另一个用于主操作系统。在 chroot 环境下安装了 GRUB。

无论如何,重启后,我只是在查看我之前所用的相同启动选项...Ubuntu(多个选项)和 Debian。我再次从 Arch USB 启动,并能够转到 sda5 并确认所有内容仍在那里。

我感觉我只是缺少一个重要的步骤,但我不知道它是什么。感谢您的指导。

这篇 5 年前的相关文章建议使用 grub-probe(我还没有尝试过)。它还指出 grub 有很多文档。为什么呢?是的。很多很多。甚至可能太多了。

https://stackoverflow.com/questions/38139756/how-to-triple-boot-debian-arch-linux-ubuntu

登录 Ubuntu,查看 /proc/partitions。仅显示来自 /dev/sda 的结果。

larry@Old-Gigabyte:~$ cat /proc/partitions 
major minor  #blocks  name

   8        0  976762584 sda
   8        1     524288 sda1
   8        2  167912448 sda2
   8        3  163086336 sda3
   8        4   16384000 sda4
   8        5   52428800 sda5
larry@Old-Gigabyte:~$ 

fdisk /dev/sda 显示:

Disk /dev/sda: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 680F4B2C-CEB6-4011-A765-471C99ED79AF

Device         Start       End   Sectors   Size Type
/dev/sda1       2048   1050623   1048576   512M EFI System
/dev/sda2    1050624 336875519 335824896 160.1G Linux filesystem
/dev/sda3  336875520 663048191 326172672 155.5G Linux filesystem
/dev/sda4  663048192 695816191  32768000  15.6G Linux swap
/dev/sda5  695816192 800673791 104857600    50G Linux filesystem

/etc/fstab 是:

    larry@Old-Gigabyte:~$ cat /mnt/arch/etc/fstab 
# /dev/sda5
UUID=ea07243f-d202-4061-bd97-aa166676e0de   /           ext4        rw,relatime 0 1

# /dev/sda1
UUID=21A8-3956          /efi        vfat        rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro   0 2

# /dev/sda4
UUID=35a1d790-7070-4056-8536-799099738d6b   none        swap        defaults    0 0

larry@Old-Gigabyte:~$ 

来自 efi 分区的一些信息:

root@Old-Gigabyte:/mnt/efi/EFI/ubuntu# cd ../..
root@Old-Gigabyte:/mnt/efi# ls -lR
.:
total 4
drwx------ 4 root root 4096 Sep  5  2019 EFI

./EFI:
total 8
drwx------ 2 root root 4096 Sep  5  2019 BOOT
drwx------ 2 root root 4096 Mar  5  2020 ubuntu

./EFI/BOOT:
total 3748
-rwx------ 1 root root 1341560 Mar 18 20:24 BOOTX64.EFI
-rwx------ 1 root root 1222800 Mar 18 20:24 fbx64.efi
-rwx------ 1 root root 1269496 Sep  5  2019 mmx64.efi

./EFI/ubuntu:
total 3672
-rwx------ 1 root root     108 Mar 18 20:24 BOOTX64.CSV
-rwx------ 1 root root     126 Mar 18 20:24 grub.cfg
-rwx------ 1 root root 1130368 Mar 18 20:24 grubx64.efi
-rwx------ 1 root root 1277024 Mar 18 20:24 mmx64.efi
-rwx------ 1 root root 1341560 Mar 18 20:24 shimx64.efi
root@Old-Gigabyte:/mnt/efi# 

root@Old-Gigabyte:/mnt/efi# cat EFI/ubuntu/BOOTX64.CSV 
shimx64.efi,ubuntu,,This is the boot entry for ubuntu
root@Old-Gigabyte:/mnt/efi# 

root@Old-Gigabyte:/mnt/efi# cat EFI/ubuntu/grub.cfg 
search.fs_uuid 0fb648e7-69b8-4701-be8f-3a01a1c820da root hd0,gpt2 
set prefix=($root)'/boot/grub'
configfile $prefix/grub.cfg
root@Old-Gigabyte:/mnt/efi# 

我在这里发现了一些东西,因为实际的 GRUB 菜单条目似乎位于 Ubuntu 分区上(这是我首先安装的)。该文件的内容似乎已生成,在顶部我看到:

root@Old-Gigabyte:/boot/grub# cat grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

我要看看 grub-mkconfig...

好的,有趣的是,Ubuntu 分区上的 grub.cfg 似乎是正确的。我猜这里面有某种菊花链?

我运行这个来更新 /boot/grub/grub.cfg:

root@Old-Gigabyte:/boot/grub# grub-mkconfig -o ./grub.cfg
Sourcing file `/etc/default/grub'
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-5.4.0-72-generic
Found initrd image: /boot/initrd.img-5.4.0-72-generic
Found linux image: /boot/vmlinuz-5.4.0-71-generic
Found initrd image: /boot/initrd.img-5.4.0-71-generic
Found Debian GNU/Linux 10 (buster) on /dev/sda3
Found Arch Linux on /dev/sda5
Adding boot menu entry for EFI firmware configuration
done
root@Old-Gigabyte:/boot/grub# 

现在重新启动,希望一切顺利。

谢谢任何线索。

深度学习

相关内容