Ubuntu 22.04 KDE 5.15.0-52 Nvidia 470 专有。我看到有很多关于这个主题的问题,但我读过的所有答案都没有解决问题。我编辑 GRUB,保存它,它会保留更改。当我“sudo update-grub”时,它不起作用。它给了我这个读出来。Sourcing file /etc/default/grub /usr/sbin/grub-mkconfig: 1: /etc/default/grub: /#: not found
- 这是 grub 文件,我添加了以下行... GRUB_SAVEDEFAULT=true GRUB_DEFAULT=saved。
/# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
# info -f grub -n 'Simple configuration'
GRUB_DEFAULT=0
GRUB_TIMEOUT_STYLE=menu
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
GRUB_SAVEDEFAULT=true
GRUB_DEFAULT=saved
# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480
# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"
# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"
GRUB_DISABLE_OS_PROBER=false
默认情况下,我尝试在内核 5.15.0-52 上启动。我无意中完全升级到 5.15.0-53,随后升级到 5.15.0-56,现在有两个不需要的内核,它不会让我清除或删除它们。(错误、未签名等)(了解到 Nvidia 专有和 nouveau w 内核升级不起作用)这是我尝试过的,它教会了我很多东西,但文件和脚本在那里。一切似乎都在它应该在的地方。
创建 update-grub 命令是为了让事情变得更简单——它只是 /usr/sbin/ 中的一个 shell 脚本:
#!/bin/sh
set -e
exec grub-mkconfig -o /boot/grub/grub.cfg "$@"
如果没有,您可以自己制作。为此,请运行它并粘贴上面的脚本:
sudo nano /usr/sbin/update-grub
使用 Ctrl+O 保存,使用 Ctrl+X 退出。
然后运行这些:
sudo chown root:root /usr/sbin/update-grub
sudo chmod 755 /usr/sbin/update-grub
您现在应该能够运行 update-grub。:-)
我还运行了“sudo update-grub”以及其他一些小事,但仍然没有更新 grub。有谁知道我错过了什么?
删除 中第一行的第一个字符
/ect/default/grub
,/
.第一行应该是注释,因此以
#
. 改变到
您还应该删除该行
因为您不想定义 GRUB_DEFAULT 两次。