0

Good morning folks,

I am new to Linux and am currently using Ubuntu 22.04. Currently I strictly run a Linux only environment on my laptop, got rid of Windows. However on the booting up the laptop I do notice a black screen filled with maybe around 5-10 missing or error messages which is viewable to me for less than a second.

My question is how can I figure out what drivers I may be missing or what errors are being thrown. Linux is working, but my OCD wishes to get rid of that screen with errors...

I would assume the specs of my computer matter and therefore I have a Acer Nitro 5 CPU: 12th Gen Intel i5 Memory: 16gb DDR4 GPU: 3050Ti M

John
  • 1

1 Answers1

0

During boot up you can control what is displayed ... open up a terminal ( ctrl + alt + t ) and issue

cat /etc/default/grub  

and look for the line which starts with GRUB_CMDLINE_LINUX_DEFAULT does that line look like this :

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

if not then edit that file and add those attributes to that line ( leave alone any existing attributes on that line ) ... one way to edit

sudo nano /etc/default/grub  

if you needed to do above edit then after saving engage that change by doing

sudo update-grub
reboot