-1

After a boot entry has been selected in GRUB2, for a short time (1-2 sec) another screen is displayed which shows:

Loading initial ramdisk ...

I found out how to suppress this output (by setting the variable quiet_boot in /etc/grub.d/proxifiedScripts/linux to "1"), but the splash screen with Debian logo still appears.

Is there a way to completely prevent this screen from being shown, or at least replace the background image with a custom one?

Bernd
  • 675
  • 2
  • 8
  • 30
  • 2
    Stack Overflow is a site for programming and development questions. This question appears to be off-topic because it is not about programming or development. See [What topics can I ask about here](http://stackoverflow.com/help/on-topic) in the Help Center. Perhaps [Super User](http://superuser.com/) or [Unix & Linux Stack Exchange](http://unix.stackexchange.com/) would be a better place to ask. – jww Jun 20 '17 at 16:46
  • I'm trying to suppress this message (which doesn't appear for all kernels) in Ubuntu. But the directory `/etc/grub.d/proxifiedScripts/linux` doesn't exist? The `quiet_boot` variable does exist in `/etc/grub.d/10_linux` however I have it forced to `0` in `30_os-prober` to prevent grub menu from initially appearing over background image unless a key is pressed before time out expires. – WinEunuuchs2Unix Jun 30 '18 at 02:13

1 Answers1

-1

I found the answer finally! The mentioned screen/image which I want to remove is displayed by the so called desktop-base package. On this german Ubuntu Wiki page it is recommended to uninstall this package if someone wants to customize the graphical GRUB menu on his own, because otherwise images from this package will still be displayed (which was the case on my system). The following command prevents the screen from being displayed any more:

dpkg -r desktop-base
Bernd
  • 675
  • 2
  • 8
  • 30