[solved]Install a GRUB_BACKGROUND

Issues related to applications and software problems and general support
Post Reply
Hanisch
Posts: 76
Joined: 2015/08/10 13:26:03

[solved]Install a GRUB_BACKGROUND

Post by Hanisch » 2020/05/13 06:38:06

Hello,

I have to try a GRUB_BACKGROUND to install on my CentOS 8 Installation in a VirtualBox.
1)

Code: Select all

$ cat /etc/default/grub
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)"
GRUB_DEFAULT=saved
GRUB_DISABLE_SUBMENU=true
GRUB_TERMINAL_OUTPUT="console"
GRUB_CMDLINE_LINUX="crashkernel=auto resume=UUID=f461939b-dd4e-4d4f-9909-51763c6ebc90 rhgb quiet"
GRUB_DISABLE_RECOVERY="true"
GRUB_ENABLE_BLSCFG=true
GRUB_BACKGROUND="/usr/share/backgrounds/default.png"
2)

Code: Select all

$ sudo grub2-mkconfig -o /boot/grub2/grub.cfg
Generating grub configuration file ...
done
But no Background was installed.

Not necessary:

Code: Select all

sudo grub2-install /dev/sda
What is wrong here?

with regards
Ch. Hanisch
Last edited by Hanisch on 2020/05/25 08:30:40, edited 2 times in total.

tunk
Posts: 1206
Joined: 2017/02/22 15:08:17

Re: Install a GRUB_BACKGROUND

Post by tunk » 2020/05/13 11:21:52

Is this any help, in particular:
#GRUB_TERMINAL_OUTPUT="console"
viewtopic.php?t=50957

Hanisch
Posts: 76
Joined: 2015/08/10 13:26:03

Re: Install a GRUB_BACKGROUND

Post by Hanisch » 2020/05/13 11:33:15

tunk wrote:
2020/05/13 11:21:52
Is this any help, in particular:
#GRUB_TERMINAL_OUTPUT="console"
viewtopic.php?t=50957
That was the solution - thank you.

with regards
Ch. Hanisch

Post Reply