杨庆荣的博客

工作之余接单:公司产品展示网站建设、电商网站建设、小程序、app开发。+86 13714715608

笔记:在MX linux 23.3版中添加win10引导

点击 0    创建时间 2024-07-21 13:37:28

一、 编辑Grub自定义菜单

su root
cd /etc/grub.d
featherpad /etc/grub.d/40_custom &

在文件/etc/grub.d/40_custom中添加一个win10的EFI菜单。

#!/bin/sh
exec tail -n +3 $0
# 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 "Windows 10" {
    insmod part_gpt
    search --no-floppy --set=root --fs-uuid C525-4E09
    echo "Booting win10 EFI,Please wait for a moment..."

    chainloader   (${root})/EFI/Win10/Boot/bootmgfw.efi

}

这里的C525-4E09EFI分区UUID。你可以这样查看自己的EFI分区 UUID

# blkid
/dev/sdb: UUID="C525-4E09" TYPE="ext4"
/dev/sda1: UUID="61086e-2f14-426c-810b-8e683f" TYPE="xfs"

另外注意把/EFI/Win10/Boot/bootmgfw.efi改成你自己的路径。它通常在EFI分区中。

二、 生成配置、更新grub

# grub-mkconfig -o /boot/grub/grub.cfg
# update-grub

三、 重启

reboot

上一篇: vue2 通过 store 传递消息