grub-common.service 的目的是什麼?

grub-common.service 的目的是什麼?

我正在調整機器的啟動,並注意到 grub-common.service 位於頂部systemd-analyze blame 12.628s grub-common.service

這個服務可以嗎安全地殘障人士?

答案1

從原始碼可以看出https://github.com/JoliOS/grub2/blob/1efdfd9afceeb08661a5ae0565b3651fdf180601/debian/grub-common.init 它記錄 GRUB 的成功啟動。

# Description:       GRUB displays the boot menu at the next boot if it
#                    believes that the previous boot failed. This script
#                    informs it that the system booted successfully.

另外,如果設定了 $VERBOSE(silent我認為是非模式),它會記錄其操作。

所以理論上如果你停用這個服務,每次重新啟動機器時,grub選單都會彈出。當然你可以在 中設定適當的超時時間/etc/default/grub。請注意,如果您設定的逾時太低,您可能最終會遇到循環重新啟動和日誌過度增長的情況,而這些日誌無法輪換或存檔。

確保您有 liveCD,以防萬一。

相關內容