0

When I boot my ubuntu 20.04 on a Samsung laptop, the brand name shows up for 40 seconds. Then the ubuntu purple screen appears then it instantly loads further. Is there any way to configure some settings so as to not to wait to see my laptop's brand name for 40 seconds? My grub looks something like this.

Grub

systemd-analyze blame|head output

Also, running dmesg, I observed this

sda3 happens to be my root partition.. Is it weird that it is taking too much time?

  • Nope. it takes as long as it takes, hardware issue. – David Aug 28 '21 at 13:45
  • won't having SSD be making a difference.. I have my OS on SSD and the rest on HDD – Biplab Dutta Aug 28 '21 at 14:58
  • Can you please open a terminal and type systemd-analyze blame | head then post the result (edit your question above and add the new text). – darth_epoxy Aug 29 '21 at 04:39
  • @darth_epoxy done.. – Biplab Dutta Aug 29 '21 at 05:15
  • All the answers and comments you are getting are after the machine logo is gone and deal with the OS start up not your question. – David Aug 29 '21 at 05:19
  • Also, I had made some changes regarding Network Manager as by default, Ubuntu didn't auto-connect to hidden wifi on system boot or reboot.. – Biplab Dutta Aug 29 '21 at 05:20
  • @David actually my hardware shouldn't really be falling behind.. So, I thought there might be other issues causing the problem.. – Biplab Dutta Aug 29 '21 at 05:26
  • If you are not using snaps, you can disable snapd.service with sudo systemctl mask snapd.service See https://askubuntu.com/a/1059602/124466 – Archisman Panigrahi Aug 29 '21 at 06:53
  • 1
    @biplab-dutta since this is about laptop manufacturer logo, which would appear BEFORE grub or Ubuntu logo, have you checked settings in BIOS / UEFI? Settings like waiting for network boot or wait time before booting. Thanks. – Jags Aug 29 '21 at 07:16
  • If you F2 when you start up and go into the bios setup, can you see anything related to safe boot or secure boot? – darth_epoxy Aug 29 '21 at 10:09
  • This is a hardware problem. The OS only kicks in after GRUB and GRUB kicks in after the logo. – Rinzwind Aug 29 '21 at 13:56
  • Thanks everyone for your responses.. I have no idea what happened but now the brand logo only appears for 10 seconds.. I have no idea why it stopped misbehaving.. But if it ends well, that's what matters.. – Biplab Dutta Sep 01 '21 at 14:46

1 Answers1

-1

If you are tired of staring at the logo while it boots, you can press esc or tab whie it boots and watch the boot messages. If you like this better, you can make it permanent by removing quiet splash from the grub command line in /etc/default/grub and run update-grub. (Some people think the logo is pretty. I'd prefer to know what is going on.)

If is the slow boot that annoys you rather than actually staring at the logo, you can use systemd-analyze to mesure what is taking so long in the boot and optimize it.

For clarification, newer versions of Ubuntu show both the manufacturer's logo and graphics for Ubuntu during the boot process. So it is unclear if what you are seeing is part of the laptop's POST or if it is Ubuntu booting while leaving the manufacturer's logo on the screen.

In both cases, pressing tab may leave the logo screen to show details of what is going on. If it is the laptop's POST that is taking your 40 seconds, then there's nothing Ubuntu can do about that and it's actually off topic for this forum.

Your output from systemd-analyze blame says at least 9 seconds of that 40 could be ubuntu booting.

user10489
  • 4,051
  • The laptop's brand name appears for 40 seconds not the Ubuntu logo.. the Ubuntu logo after appearing proceeds immediately to the login screen.. so, I have no problem with the logo thing.. My main concern is how to avoid watching my laptop's brand name (not Ubuntu logo) for 40 seconds on boot – Biplab Dutta Aug 29 '21 at 05:10
  • Updated answer for clarification. Have you tried hitting tab in those 40 seconds? – user10489 Aug 29 '21 at 13:41
  • Yeah most of us totally misunderstood the question, sorry. Your BIOS when first powered up runs a hardware self test, then the UEFI BIOS has to initialise. The only thing I have noticed that is proven to increas BIOS loading time is peripherals i.e. usb connections and extra monitors. You can test this by cold booting as is, noting the time is still 40s, then shutting it down and remove EVERYTHING then power on again and time it. Let us all know please. – darth_epoxy Sep 02 '21 at 09:00