To disable the graphical splash screen in GRUB, you will need to edit the /etc/default/grub
configuration file.
/etc/default/grub
file:sudo nano /etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT
line and add "nomodeset"
at the end of the line. It should look something like this:GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset"
Save the file and exit the editor.
Run the following command to update the GRUB configuration:
sudo update-grub
This will disable the graphical splash screen in GRUB and instead display the boot menu in text mode. You may need to reboot your system for the changes to take effect.
Note: If you are using a different distribution of Linux, the location and name of the configuration file may be different. Consult the documentation for your specific distribution for more information.