grub2-mkconfig 之后启动参数重复

grub2-mkconfig 之后启动参数重复

我删除了标志 'quiet' 、 'splash' ,并在文件 /etc/default/grub 中添加了其他标志,并应用了它们: grub2-mkconfig -o 。重新引导后,内核引导标志开始加倍。随着每个“grub2-mkconfig -o”命令和重新加载,选项数量会增加。日志中出现条目“未知参数”。操作系统 - Fedora 38。以下链接中的日志屏幕截图。

/etc/默认/grub

GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)"
GRUB_DEFAULT=已保存
GRUB_DISABLE_SUBMENU=true
GRUB_TERMINAL_OUTPUT="控制台"
GRUB_CMDLINE_LINUX="rhgb tsc=不稳定 & trace_clock=本地"
GRUB_DISABLE_RECOVERY="true"
GRUB_ENABLE_BLSCFG=true
GRUB_CMDLINE_LINUX_DEFAULT="rhgb flash initcall_blacklist=amd_pstate_init amd_pstate.enable=0 tsc=unstable & trace_clock=local"


cat /proc/cmdline

BOOT_IMAGE=(hd0,gpt2)/vmlinuz-6.3.12-200.fc38.x86_64 root=UUID=eba5bfa3-0cef-458d-ad0c-b629bfd7538e ro rootflags=subvol=root rhgb tsc=unstable options root=UUID=eba5bfa3-0cef-458d-ad0c-b629bfd7538e ro rootflags=subvol=root rhgb tsc=unstable options root=UUID=eba5bfa3-0cef-458d-ad0c-b629bfd7538e ro rootflags=subvol=root rhgb rd.plymouth=0 plymouth.enable=0 tsc=unstable options root=UUID=eba5bfa3-0cef-458d-ad0c-b629bfd7538e ro rootflags=subvol=root rhgb rd.plymouth=0 tsc=unstable options root=UUID=eba5bfa3-0cef-458d-ad0c-b629bfd7538e ro rootflags=subvol=root rhgb tsc=unstable options root=UUID=eba5bfa3-0cef-458d-ad0c-b629bfd7538e ro rootflags=subvol=root rhgb quiet trace_clock=local trace_clock=local trace_clock=local trace_clock=local trace_clock=local rhgb splash initcall_blacklist=amd_pstate_init amd_pstate.enable=0 tsc=unstable options root=UUID=eba5bfa3-0cef-458d-ad0c-b629bfd7538e ro rootflags=subvol=root rhgb tsc=unstable options root=UUID=eba5bfa3-0cef-458d-ad0c-b629bfd7538e ro rootflags=subvol=root rhgb rd.plymouth=0 plymouth.enable=0 tsc=unstable options root=UUID=eba5bfa3-0cef-458d-ad0c-b629bfd7538e ro rootflags=subvol=root rhgb rd.plymouth=0 tsc=unstable options root=UUID=eba5bfa3-0cef-458d-ad0c-b629bfd7538e ro rootflags=subvol=root rhgb tsc=unstable options root=UUID=eba5bfa3-0cef-458d-ad0c-b629bfd7538e ro rootflags=subvol=root rhgb quiet trace_clock=local trace_clock=local trace_clock=local trace_clock=local trace_clock=local

内核启动日志的输出:
https://drive.google.com/file/d/1-eohEvSaf6_6f5s0-qd39J2tvaXhcysv/view?usp=sharing

我怎样才能解决这个问题?

答案1

内核更新到6.4.4版本后解决了!引导设置配置正确。没有重复项。

相关内容