Hello,
On boot the following job hangs forever:
This happens with kernel 6.8.10-300.fc40.x86_64 and 6.8.11-300.fc40.x86_64. Kernel 6.8.9-300.fc40.x86_64 boots quickly to desktop.
Here is /etc/fstab:
$ cat /etc/fstab
#
# /etc/fstab
# Created by anaconda on Thu Apr 4 19:51:01 2024
#
# Accessible filesystems, by reference, are maintained under '/dev/disk/'.
# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info.
#
# After editing this file, run 'systemctl daemon-reload' to update systemd
# units generated from this file.
#
UUID=73875c79-d107-48f1-b8c6-2391be03002a / btrfs defaults 0 0
UUID=493A-5A8A /boot/efi vfat umask=0077,shortname=winnt 0 2
UUID=2dcc25c9-02b8-4011-8baf-3466568ad71c /home btrfs defaults 0 0
# UUID=bdc712fc-8366-4620-845b-017b333dba32 none swap defaults 0 0
I was experiencing a similar boot delay a few months ago, but it would time out at 1m30s and continue to desktop. The problem was solved when I commented out the swap partition in fstab above; I figured zram would be enough for my uses. But here is my swap info:
$ swapon -s
Filename Type Size Used Priority
/dev/zram0 partition 8388604 0 100
/dev/nvme0n1p3 partition 27291440 0 -2
And here is my partition arrangement:
$ lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
sda 8:0 0 178.9G 0 disk
├─sda1 8:1 0 600M 0 part
├─sda2 8:2 0 1G 0 part
└─sda3 8:3 0 177.3G 0 part
sdb 8:16 0 931.5G 0 disk
└─sdb1 8:17 0 931.5G 0 part
zram0 252:0 0 8G 0 disk [SWAP]
nvme1n1 259:0 0 465.8G 0 disk
└─nvme1n1p1 259:1 0 465.8G 0 part /home
nvme0n1 259:2 0 1.9T 0 disk
├─nvme0n1p1 259:3 0 1G 0 part /boot/efi
├─nvme0n1p2 259:4 0 1.8T 0 part /
└─nvme0n1p3 259:5 0 26G 0 part [SWAP]
What do I do? What is the job waiting for? Why did it change in the most recent two kernels, and why is it allowed to wait forever?
This is Fedora 40 x86_64 KDE, custom desktop. Thanks in advance for any guidance.