how can I disable the splash screen and just show the text of bootup?
Do i just remove edit} grub “quiet startup” ? replace it with anything?
Thanks in advance
how can I disable the splash screen and just show the text of bootup?
Do i just remove edit} grub “quiet startup” ? replace it with anything?
Thanks in advance
I think you do the following:
Edit grub. To do so, paste this in a terminal: sudo pluma /etc/default/grub
Look for the line
GRUB_CMDLINE_LINUX_DEFAULT=“quiet splash”
and change it to
GRUB_CMDLINE_LINUX_DEFAULT=""
Then save the file.
Then in a terminal paste this: sudo update-grub
Hi @Michael_Ward, welcome!
Do you think this would be a suitable option for you?
https://wiki.ubuntu.com/Plymouth
Code:
sudo apt-get install plymouth-theme-ubuntu-text
Then run:
Code:
sudo update-alternatives --config default.plymouth
sudo update-initramfs -u
Whoops, sorry @stevecook172001; we posted together!
I add one more line to /etc/default/grub:
GRUB_GFXPAYLOAD_LINUX=text
thank you…off to try it
worked perfectly…thank you
I have been trying to find the solution, that additional line was not discussed anywhere I searched
Thanx for the info