I installed a fresh copy of Ubuntu 20.04 LTS on Dell Precision Tower 7910. The boot time is very long for some reason.
(base) hell@Dell-Precision-T7910:~$ systemd-analyze
Startup finished in 46.025s (firmware) + 27.522s (loader) + 10.865s (kernel) + 12.377s (userspace) = 1min 36.790s
graphical.target reached after 12.366s in userspace
Here I assume that (from this post) Ubuntu can't really do anything with firmware time as the BIOS is responsible for firmware loading time. Also, I don't want to disable any device.
Here is the output of sudo journalctl -b
. Is it safe to share this output here?
I do not understand where the problem is.
UPDATE: Adding more details
(base) hell@Dell-Precision-T7910:~$ cat /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sdb2 during installation
UUID=e5fbfc2f-b5d3-412b-97bb-1061c9616087 / ext4 errors=remount-ro 0 1
# /boot/efi was on /dev/sdb1 during installation
UUID=9BA7-EAD1 /boot/efi vfat umask=0077 0 1
/swapfile none swap sw 0 0
(base) hell@Dell-Precision-T7910:~$ lsblk -e 7 -o name,fstype,size,fsused,label,partlabel,mountpoint,uuid
NAME FSTYPE SIZE FSUSED LABEL PARTLABEL MOUNTPOINT UUID
sda 931.5G
├─sda1 vfat 512M 5.2M EFI System Partition /boot/efi 9BA7-EAD1
└─sda2 ext4 931G 29.5G / e5fbfc2f-b5d3-412b-97bb-1061c9616087
sr0 1024M
(base) hell@Dell-Precision-T7910:~$
cat /etc/fstab
&lsblk -e 7 -o name,fstype,size,fsused,label,partlabel,mountpoint,uuid
– oldfred Jun 08 '22 at 22:52