Linux

無法更改 grub 的引導順序

  • October 28, 2021

我的系統中有拱門和窗戶。在啟動期間,它預設使用 Arch 啟動。我想把它改成windows。grub中的條目是這樣的

  1. 具有多個選項的拱門
  2. 視窗

我已嘗試更改 /etc/default/grub 中的 GRUB_DEFAULT=2 ,如多個位置所示作為此問題的答案。它仍在使用預設 Arch 啟動。

設置後GRUB_DEFAULT=2,確保執行

$ sudo update-grub

如果您收到錯誤

bash: update-grub: command not found

然後你需要安裝update-grub.

$ sudo pacman -S git base-devel
$ git clone https://aur.archlinux.org/update-grub.git
$ yay -S update-grub
$ sudo update-grub

引用自:https://unix.stackexchange.com/questions/675205