更改 Linux Mint 启动屏幕的背景图像

更改 Linux Mint 启动屏幕的背景图像

我认为 Linux 的启动管理器称为 grub,我该如何更改它的启动图像?

更新:

上述方法并不能完全满足我的要求。这个 grub 似乎是为 linux mint 定制的(或类似的东西)。它使用图形菜单,此行/boot/grub/menu.lst负责该操作。

## Graphical boot menu location
gfxmenu=/boot/gfxmenu/linuxmint.message

答案1

本文详细说明如何设置。概括

sudo apt-get install imagemagick  # if you don't already have it
cd /boot/grub
sudo mkdir images
sudo cp menu.lst menu.lst.bak  # make a backup just in case
cd images
cp /path/to/image.jpg .
sudo convert -resize 640x480 -colors 14 image.jpg splashimage.xpm
sudo gzip splashimage.xpm

现在告诉 grub 使用该图像...

sudo gedit ../menu.lst  # or your favorite editor

在初始注释下面添加以下行:

splashimage (hd0,1)/boot/grub/images/splashimage.xpm.gz

笔记(hd0,1)对于您来说可能会有所不同,请检查内核列表menu.lst以查看它需要什么。

答案2

如果您不喜欢使用命令行,您可以使用名为“启动管理器”的工具,它可以简化操作。

启动管理器的屏幕截图

它可以用来改变很多选项,包括 Grub 背景图像。

该工具可以通过 aptitude (Debian distribs) 找到,更多信息可以在这里找到这里

(更改启动选项时请小心,因为它可能会导致您的系统无法启动。)

相关内容