操作系统:Arch Linux + Windows 10
引导程序:GRUB
因為偶爾仍然要使用 Windows 做些事情,之前每次都是通過 GURB 的界面退出操作進行重新選擇,很是麻煩,所以就嘗試進行配置 Arch Linux+Windows 的雙啟動。用的工具是 os-prober,操作很簡單。
1、首先安裝os-prober
:
[root@archlinux /]# pacman -S os-prober
2、檢查磁碟分區,確認 Windows 的安裝位置(根據自己的安裝情況選擇磁碟設備,我這裡是/dev/sda
):
[root@archlinux /]# fdisk -l /dev/sda
Disk /dev/sda: 223.6 GiB, 240057409536 bytes, 468862128 sectors
Disk model: KINGSTON SA400S3
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: 78241A73-6994-4D0B-9FCB-433076B5EC41
Device Start End Sectors Size Type
/dev/sda1 2048 1023999 1021952 499M Windows recovery environment
/dev/sda2 1024000 1228799 204800 100M EFI System
/dev/sda3 1228800 1261567 32768 16M Microsoft reserved
/dev/sda4 1261568 468860927 467599360 223G Microsoft basic data
3、找到 Windows 的 EFI 分區之後,掛載它以確保os-prober
可以發現:
[root@archlinux /]# mount /dev/sda2 /mnt/
[root@archlinux /]# ls -l /mnt/
total 1
drwxr-xr-x 4 root root 1024 Feb 23 10:24 EFI
4、然後執行os-prober
:
[root@archlinux /]# os-prober
/dev/sda2@/EFI/Microsoft/Boot/bootmgfw.efi:Windows Boot Manager:Windows:efi
5、當然,為了安全起見,首先執行下面命令,備份原有的 boot 配置:
[root@archlinux /]# cp /boot/grub/grub.cfg /boot/grub/grub.cfg.bak
6、然後,重新生成 GRUB 配置文件:
[root@archlinux /]# grub-mkconfig -o /boot/grub/grub.cfg
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-linux
Found initrd image: /boot/initramfs-linux.img
Found fallback initrd image(s) in /boot: initramfs-linux-fallback.img
Found Windows Boot Manager on /dev/sda2@/EFI/Microsoft/Boot/bootmgfw.efi
done
7、最後重啟電腦就可以在 GRUB 界面直接選擇想要進入的操作系統了。
首發於個人博客:方寸之間