You are not logged in.
Lately whenever I boot Arch Linux, I'm having issues with cryptsetup.
Behavior:
1. there are cryptsetup errors in the logs on every boot
2. sometimes after inserting the disk password during boot time, cryptsetup errors out and I can't get passed the password prompt and need to reboot. Usually after rebooting I can input the password and the boot sequence will continue allowing me to login into my DE, but errors are still present
NOTE that I use dracut and systemd-boot and have used it without issues for many years, but recently for some reason systemd-cryptsetup has been giving me problems
error logs
$ sudo journalctl -b 0 -u systemd-cryptsetup*
Jun 07 10:25:34 arch-pc systemd[1]: Starting Cryptography Setup for cryptroot...
Jun 07 10:25:36 arch-pc systemd[1]: Starting Cryptography Setup for luks-a033fcea-179f-4fba-8666-2e2d0d8e6455...
Jun 07 10:25:36 arch-pc systemd-cryptsetup[573]: Encountered unknown /etc/crypttab option '-', ignoring.
Jun 07 10:25:45 arch-pc systemd-cryptsetup[573]: Set cipher aes, mode xts-plain64, key size 512 bits for device /dev/nvme1n1p2.
Jun 07 10:25:45 arch-pc systemd-cryptsetup[495]: Set cipher aes, mode xts-plain64, key size 512 bits for device /dev/disk/by-uuid/a033fcea-179f-4fba-8666-2e2d0d8e6455.
Jun 07 10:25:47 arch-pc systemd[1]: systemd-cryptsetup@cryptroot.service: Deactivated successfully.
Jun 07 10:25:47 arch-pc systemd[1]: Started systemd-cryptsetup@cryptroot.service.
Jun 07 10:25:47 arch-pc systemd[1]: systemd-cryptsetup@cryptroot.service: Consumed 8.061s CPU time, 1.6M memory peak, 0B memory swap peak.
Jun 07 10:25:49 arch-pc systemd-cryptsetup[573]: Cannot use device /dev/nvme1n1p2 which is in use (already mapped or mounted).
Jun 07 10:25:49 arch-pc systemd-cryptsetup[573]: Failed to activate with specified passphrase: Device or resource busy
Jun 07 10:25:49 arch-pc systemd[1]: systemd-cryptsetup@luks\x2da033fcea\x2d179f\x2d4fba\x2d8666\x2d2e2d0d8e6455.service: Main process exited, code=exited, status=1/FAILURE
Jun 07 10:25:49 arch-pc systemd[1]: systemd-cryptsetup@luks\x2da033fcea\x2d179f\x2d4fba\x2d8666\x2d2e2d0d8e6455.service: Failed with result 'exit-code'.
Jun 07 10:25:49 arch-pc systemd[1]: Failed to start Cryptography Setup for luks-a033fcea-179f-4fba-8666-2e2d0d8e6455.
Jun 07 10:25:49 arch-pc systemd[1]: systemd-cryptsetup@luks\x2da033fcea\x2d179f\x2d4fba\x2d8666\x2d2e2d0d8e6455.service: Consumed 8.038s CPU time.blkid
/dev/nvme0n1p1: PARTLABEL="Microsoft reserved partition" PARTUUID="d62831e9-644f-4cc0-b30a-8fa8e8c8e3bb"
/dev/nvme0n1p2: BLOCK_SIZE="512" UUID="E06CA6CE6CA69EB2" TYPE="ntfs" PARTLABEL="Basic data partition" PARTUUID="e37f5722-d1b7-42f3-86ce-5bcc0c995998"
/dev/mapper/cryptroot: LABEL="system" UUID="8e5d7f83-d0c9-45d8-bd74-a1a3dce44540" UUID_SUB="b436c0cc-db99-42a7-97d0-88282a718bb1" BLOCK_SIZE="4096" TYPE="btrfs"
/dev/nvme1n1p2: UUID="a033fcea-179f-4fba-8666-2e2d0d8e6455" TYPE="crypto_LUKS" PARTLABEL="root" PARTUUID="6a31b9c5-eba7-453c-9de0-69bc09bf3c43"
/dev/nvme1n1p1: UUID="84AE-C920" BLOCK_SIZE="512" TYPE="vfat" PARTLABEL="ESP" PARTUUID="6228e2c6-0d0e-4999-a667-f7c949738d7f"
/dev/zram0: LABEL="zram0" UUID="a2ab6e45-0797-4f4a-aa8b-fef906a34c20" TYPE="swap"lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
zram0 253:0 0 4G 0 disk [SWAP]
nvme1n1 259:0 0 1.8T 0 disk
├─nvme1n1p1 259:1 0 999M 0 part /boot
│ /efi
└─nvme1n1p2 259:2 0 1.8T 0 part
└─cryptroot 254:0 0 1.8T 0 crypt /var/log
/var/cache/pacman/pkg
/opt
/home
/.snapshots
/
nvme0n1 259:3 0 1.8T 0 disk
├─nvme0n1p1 259:4 0 16M 0 part
└─nvme0n1p2 259:5 0 1.8T 0 part /etc/fstab
# Static information about the filesystems.
# See fstab(5) for details.
# <file system> <dir> <type> <options> <dump> <pass>
# /dev/mapper/cryptroot UUID=8e5d7f83-d0c9-45d8-bd74-a1a3dce44540 LABEL=system
/dev/mapper/cryptroot / btrfs rw,noatime,compress=zstd:3,ssd,space_cache=v2,subvol=/@ 0 0
# /dev/nvme1n1p1 UUID=84AE-C920
PARTLABEL=ESP /efi vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro 0 2
# /dev/mapper/cryptroot UUID=8e5d7f83-d0c9-45d8-bd74-a1a3dce44540 LABEL=system
/dev/mapper/cryptroot /home btrfs rw,noatime,compress=zstd:3,ssd,space_cache=v2,subvol=/@home 0 0
# /dev/mapper/cryptroot UUID=8e5d7f83-d0c9-45d8-bd74-a1a3dce44540 LABEL=system
/dev/mapper/cryptroot /var/log btrfs rw,noatime,compress=zstd:3,ssd,space_cache=v2,subvol=/@log 0 0
# /dev/mapper/cryptroot UUID=8e5d7f83-d0c9-45d8-bd74-a1a3dce44540 LABEL=system
/dev/mapper/cryptroot /opt btrfs rw,noatime,compress=zstd:3,ssd,space_cache=v2,subvol=/@opt 0 0
# /dev/mapper/cryptroot UUID=8e5d7f83-d0c9-45d8-bd74-a1a3dce44540 LABEL=system
/dev/mapper/cryptroot /var/cache/pacman/pkg btrfs rw,noatime,compress=zstd:3,ssd,space_cache=v2,subvol=/@pkg 0 0
# /dev/mapper/cryptroot UUID=8e5d7f83-d0c9-45d8-bd74-a1a3dce44540 LABEL=system
/dev/mapper/cryptroot /.snapshots btrfs rw,noatime,compress=zstd:3,ssd,space_cache=v2,subvol=/@snapshots 0 0
# /dev/mapper/cryptroot UUID=8e5d7f83-d0c9-45d8-bd74-a1a3dce44540 LABEL=system
/dev/mapper/cryptroot /btrfs btrfs rw,noatime,compress=zstd:3,ssd,space_cache=v2,subvol=/,noauto 0 0
/efi/arch /boot none rw,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro,bind 0 0/efi/loader/entries/arch.conf - note: using rd.luks.name
title arch linux
linux /arch/vmlinuz-linux
initrd /arch/amd-ucode.img
initrd /arch/initramfs-linux.img
options zswap.enabled=0 rd.luks.name=a033fcea-179f-4fba-8666-2e2d0d8e6455=cryptroot root=/dev/mapper/cryptroot rootflags=subvol=@ rw/etc/crypttab is empty - never needed it
Last edited by beholder (2024-06-07 17:37:55)
Offline
I was able to replicate this problem in QEMU.
I had an Arch Linux VM that had no errors booting. Then I upgraded it with pacman -Syu and now I'm getting similar errors in the journal.
This is the pacman logs from the upgrade
[2024-06-07T11:19:02-0600] [PACMAN] Running 'pacman -Syu'
[2024-06-07T11:19:02-0600] [PACMAN] synchronizing package lists
[2024-06-07T11:19:03-0600] [PACMAN] starting full system upgrade
[2024-06-07T11:19:28-0600] [ALPM] running '60-dracut-remove.hook'...
[2024-06-07T11:19:28-0600] [ALPM] transaction started
[2024-06-07T11:19:28-0600] [ALPM] removed dbus-python (1.3.2-3)
[2024-06-07T11:19:29-0600] [ALPM] upgraded glibc (2.39-4 -> 2.39+r52+gf8e4623421-1)
[2024-06-07T11:19:29-0600] [ALPM-SCRIPTLET] Generating locales...
[2024-06-07T11:19:29-0600] [ALPM-SCRIPTLET] en_US.UTF-8... done
[2024-06-07T11:19:29-0600] [ALPM-SCRIPTLET] Generation complete.
[2024-06-07T11:19:30-0600] [ALPM] upgraded gcc-libs (13.2.1-6 -> 14.1.1+r58+gfc9fb69ad62-1)
[2024-06-07T11:19:30-0600] [ALPM] upgraded ncurses (6.4_20230520-3 -> 6.5-3)
[2024-06-07T11:19:30-0600] [ALPM] installed gtest (1.14.0-1)
[2024-06-07T11:19:30-0600] [ALPM] upgraded abseil-cpp (20240116.2-1 -> 20240116.2-2)
[2024-06-07T11:19:30-0600] [ALPM] upgraded adwaita-cursors (46.0-1 -> 46.2-1)
[2024-06-07T11:19:30-0600] [ALPM] upgraded hicolor-icon-theme (0.17-3 -> 0.18-1)
[2024-06-07T11:19:30-0600] [ALPM] installed adwaita-icon-theme-legacy (46.2-1)
[2024-06-07T11:19:30-0600] [ALPM] upgraded adwaita-icon-theme (46.0-1 -> 46.2-1)
[2024-06-07T11:19:30-0600] [ALPM] upgraded alsa-card-profiles (1:1.0.5-1 -> 1:1.0.7-2)
[2024-06-07T11:19:30-0600] [ALPM] upgraded amd-ucode (20240409.1addd7dc-1 -> 20240510.b9d2bf23-1)
[2024-06-07T11:19:31-0600] [ALPM] upgraded openssl (3.3.0-1 -> 3.3.1-1)
[2024-06-07T11:19:31-0600] [ALPM] upgraded sqlite (3.45.3-1 -> 3.46.0-1)
[2024-06-07T11:19:31-0600] [ALPM] upgraded e2fsprogs (1.47.0-2 -> 1.47.1-4)
[2024-06-07T11:19:31-0600] [ALPM] upgraded python-cryptography (42.0.5-2 -> 42.0.6-1)
[2024-06-07T11:19:31-0600] [ALPM] upgraded python-jinja (1:3.1.3-2 -> 1:3.1.4-1)
[2024-06-07T11:19:31-0600] [ALPM] upgraded python-packaging (23.2-3 -> 24.0-1)
[2024-06-07T11:19:31-0600] [ALPM] upgraded python-typing_extensions (4.11.0-1 -> 4.12.1-1)
[2024-06-07T11:19:31-0600] [ALPM] upgraded ansible-core (2.16.6-3 -> 2.17.0-1)
[2024-06-07T11:19:36-0600] [ALPM] upgraded ansible (9.5.1-1 -> 10.0.1-1)
[2024-06-07T11:19:36-0600] [ALPM] upgraded libnghttp2 (1.61.0-1 -> 1.62.1-1)
[2024-06-07T11:19:36-0600] [ALPM] upgraded libnghttp3 (1.2.0-1 -> 1.3.0-1)
[2024-06-07T11:19:36-0600] [ALPM] upgraded libpsl (0.21.5-1 -> 0.21.5-2)
[2024-06-07T11:19:37-0600] [ALPM] upgraded xz (5.6.1-3 -> 5.6.2-1)
[2024-06-07T11:19:37-0600] [ALPM] upgraded zstd (1.5.5-1 -> 1.5.6-1)
[2024-06-07T11:19:37-0600] [ALPM] upgraded findutils (4.9.0-3 -> 4.10.0-1)
[2024-06-07T11:19:37-0600] [ALPM] upgraded libcap (2.69-4 -> 2.70-1)
[2024-06-07T11:19:37-0600] [ALPM] upgraded systemd-libs (255.5-4 -> 255.7-1)
[2024-06-07T11:19:37-0600] [ALPM] upgraded ca-certificates-mozilla (3.99-1 -> 3.100-1)
[2024-06-07T11:19:37-0600] [ALPM] upgraded curl (8.7.1-6 -> 8.8.0-1)
[2024-06-07T11:19:37-0600] [ALPM] upgraded git (2.45.0-1 -> 2.45.2-1)
[2024-06-07T11:19:37-0600] [ALPM] upgraded python-rpds-py (0.17.1-2 -> 0.18.1-1)
[2024-06-07T11:19:37-0600] [ALPM] upgraded python-referencing (0.33.0-3 -> 0.35.1-1)
[2024-06-07T11:19:37-0600] [ALPM] upgraded python-jsonschema (4.21.1-2 -> 4.21.1-3)
[2024-06-07T11:19:37-0600] [ALPM] upgraded python-ansible-compat (4.1.12-3 -> 24.6.1-1)
[2024-06-07T11:19:37-0600] [ALPM] upgraded python-black (24.3.0-3 -> 24.4.2-2)
[2024-06-07T11:19:37-0600] [ALPM] upgraded python-wcmatch (8.5.1-2 -> 8.5.2-1)
[2024-06-07T11:19:37-0600] [ALPM] installed python-zipp (3.18.1-2)
[2024-06-07T11:19:37-0600] [ALPM] installed python-importlib-metadata (7.1.0-1)
[2024-06-07T11:19:37-0600] [ALPM] upgraded ansible-lint (24.2.3-1 -> 24.6.0-1)
[2024-06-07T11:19:37-0600] [ALPM] upgraded icu (74.2-2 -> 75.1-1)
[2024-06-07T11:19:37-0600] [ALPM] upgraded libxml2 (2.12.6-2 -> 2.12.7-1)
[2024-06-07T11:19:37-0600] [ALPM] upgraded gettext (0.22.4-1 -> 0.22.5-1)
[2024-06-07T11:19:37-0600] [ALPM] upgraded mpfr (4.2.1-2 -> 4.2.1-3)
[2024-06-07T11:19:37-0600] [ALPM] upgraded libsysprof-capture (46.0-2 -> 46.0-3)
[2024-06-07T11:19:37-0600] [ALPM] upgraded glib2 (2.80.0-4 -> 2.80.2-2)
[2024-06-07T11:19:37-0600] [ALPM] upgraded archlinux-keyring (20240429-1 -> 20240520-1)
[2024-06-07T11:19:37-0600] [ALPM-SCRIPTLET] ==> Appending keys from archlinux.gpg...
[2024-06-07T11:19:39-0600] [ALPM-SCRIPTLET] gpg: public key DB323392796CA067 is 3037 days newer than the signature
[2024-06-07T11:19:39-0600] [ALPM-SCRIPTLET] ==> Disabling revoked keys in keyring...
[2024-06-07T11:19:39-0600] [ALPM-SCRIPTLET] -> Disabled 1 key.
[2024-06-07T11:19:39-0600] [ALPM-SCRIPTLET] ==> Updating trust database...
[2024-06-07T11:19:40-0600] [ALPM-SCRIPTLET] gpg: public key DB323392796CA067 is 3037 days newer than the signature
[2024-06-07T11:19:40-0600] [ALPM-SCRIPTLET] gpg: marginals needed: 3 completes needed: 1 trust model: pgp
[2024-06-07T11:19:40-0600] [ALPM-SCRIPTLET] gpg: depth: 0 valid: 1 signed: 5 trust: 0-, 0q, 0n, 0m, 0f, 1u
[2024-06-07T11:19:40-0600] [ALPM-SCRIPTLET] gpg: depth: 1 valid: 5 signed: 99 trust: 0-, 0q, 0n, 5m, 0f, 0u
[2024-06-07T11:19:40-0600] [ALPM-SCRIPTLET] gpg: depth: 2 valid: 75 signed: 33 trust: 75-, 0q, 0n, 0m, 0f, 0u
[2024-06-07T11:19:40-0600] [ALPM-SCRIPTLET] gpg: next trustdb check due at 2024-06-29
[2024-06-07T11:19:40-0600] [ALPM] upgraded bash-completion (2.11-3 -> 2.14.0-1)
[2024-06-07T11:19:40-0600] [ALPM] upgraded libelf (0.191-2 -> 0.191-3)
[2024-06-07T11:19:40-0600] [ALPM] upgraded binutils (2.42-3 -> 2.42+r91+g6224493e457-1)
[2024-06-07T11:19:40-0600] [ALPM] upgraded bluez (5.75-1 -> 5.76-1)
[2024-06-07T11:19:40-0600] [ALPM] upgraded bluez-libs (5.75-1 -> 5.76-1)
[2024-06-07T11:19:40-0600] [ALPM] upgraded hwdata (0.382-1 -> 0.383-1)
[2024-06-07T11:19:40-0600] [ALPM] upgraded device-mapper (2.03.23-3 -> 2.03.24-1)
[2024-06-07T11:19:40-0600] [ALPM] upgraded systemd (255.5-4 -> 255.7-1)
[2024-06-07T11:19:41-0600] [ALPM] upgraded bolt (0.9.7-2 -> 0.9.8-1)
[2024-06-07T11:19:41-0600] [ALPM] upgraded boost-libs (1.83.0-7 -> 1.83.0-8)
[2024-06-07T11:19:41-0600] [ALPM] upgraded containerd (1.7.16-1 -> 1.7.18-1)
[2024-06-07T11:19:41-0600] [ALPM] upgraded dav1d (1.4.1-1 -> 1.4.2-1)
[2024-06-07T11:19:41-0600] [ALPM] installed python-dbus (1.3.2-4)
[2024-06-07T11:19:41-0600] [ALPM] upgraded libbpf (1.3.0-1 -> 1.4.2-1)
[2024-06-07T11:19:41-0600] [ALPM] upgraded nftables (1:1.0.9-2 -> 1:1.0.9-3)
[2024-06-07T11:19:41-0600] [ALPM] upgraded iproute2 (6.8.0-2 -> 6.9.0-1)
[2024-06-07T11:19:41-0600] [ALPM] upgraded libtool (2.4.7+4+g1ec8fa28-7 -> 2.5.0+1+g38c166c8-1)
[2024-06-07T11:19:42-0600] [ALPM] upgraded docker (1:26.1.1-1 -> 1:26.1.4-1)
[2024-06-07T11:19:42-0600] [ALPM] upgraded dracut (101-1 -> 102-1)
[2024-06-07T11:19:42-0600] [ALPM] upgraded enchant (2.6.5-1 -> 2.8.0-1)
[2024-06-07T11:19:42-0600] [ALPM] upgraded libjpeg-turbo (3.0.2-2 -> 3.0.3-1)
[2024-06-07T11:19:42-0600] [ALPM] upgraded jbigkit (2.1-7 -> 2.1-8)
[2024-06-07T11:19:42-0600] [ALPM] upgraded gdk-pixbuf2 (2.42.11-2 -> 2.42.12-1)
[2024-06-07T11:19:42-0600] [ALPM] upgraded fribidi (1.0.14-1 -> 1.0.15-1)
[2024-06-07T11:19:42-0600] [ALPM] upgraded harfbuzz (8.4.0-2 -> 8.5.0-1)
[2024-06-07T11:19:42-0600] [ALPM] upgraded libcups (1:2.4.8-1 -> 2:2.4.8-2)
[2024-06-07T11:19:42-0600] [ALPM] upgraded librsvg (2:2.58.0-1 -> 2:2.58.1-1)
[2024-06-07T11:19:42-0600] [ALPM] upgraded tracker3 (3.7.3-1 -> 3.7.3-2)
[2024-06-07T11:19:42-0600] [ALPM] upgraded wayland (1.22.0-1 -> 1.23.0-1)
[2024-06-07T11:19:42-0600] [ALPM] upgraded libevdev (1.13.1-1 -> 1.13.2-1)
[2024-06-07T11:19:42-0600] [ALPM] upgraded libdrm (2.4.120-1 -> 2.4.121-1)
[2024-06-07T11:19:42-0600] [ALPM] upgraded libedit (20230828_3.1-1 -> 20240517_3.1-1)
[2024-06-07T11:19:42-0600] [ALPM] upgraded llvm-libs (17.0.6-4 -> 17.0.6-5)
[2024-06-07T11:19:42-0600] [ALPM] upgraded mesa (1:24.0.6-2 -> 1:24.1.1-1)
[2024-06-07T11:19:42-0600] [ALPM] upgraded gtk3 (1:3.24.41-1 -> 1:3.24.42-1)
[2024-06-07T11:19:42-0600] [ALPM] upgraded gspell (1.12.2-2 -> 1.12.2-3)
[2024-06-07T11:19:42-0600] [ALPM] upgraded libcdio-paranoia (10.2+2.0.1-3 -> 10.2+2.0.2-1)
[2024-06-07T11:19:42-0600] [ALPM] upgraded nss (3.99-1 -> 3.100-1)
[2024-06-07T11:19:42-0600] [ALPM] upgraded gvfs (1.54.0-2 -> 1.54.1-1)
[2024-06-07T11:19:42-0600] [ALPM] upgraded libsynctex (2024.2-1 -> 2024.2-2)
[2024-06-07T11:19:42-0600] [ALPM] upgraded poppler (24.03.0-1 -> 24.06.0-1)
[2024-06-07T11:19:42-0600] [ALPM] upgraded poppler-glib (24.03.0-1 -> 24.06.0-1)
[2024-06-07T11:19:42-0600] [ALPM] upgraded libunwind (1.8.1-2 -> 1.8.1-3)
[2024-06-07T11:19:42-0600] [ALPM] upgraded ghostscript (10.03.0-2 -> 10.03.1-1)
[2024-06-07T11:19:43-0600] [ALPM] upgraded evince (46.1-1 -> 46.3-1)
[2024-06-07T11:19:43-0600] [ALPM] upgraded vulkan-icd-loader (1.3.279-1 -> 1.3.285-1)
[2024-06-07T11:19:43-0600] [ALPM] upgraded libadwaita (1:1.5.0-1 -> 1:1.5.1-1)
[2024-06-07T11:19:43-0600] [ALPM] upgraded libnautilus-extension (46.1-1 -> 46.2-1)
[2024-06-07T11:19:43-0600] [ALPM] upgraded libpipewire (1:1.0.5-1 -> 1:1.0.7-2)
[2024-06-07T11:19:43-0600] [ALPM] upgraded libcamera-ipa (0.2.0-1 -> 0.3.0-1)
[2024-06-07T11:19:43-0600] [ALPM] upgraded libcamera (0.2.0-1 -> 0.3.0-1)
[2024-06-07T11:19:43-0600] [ALPM] upgraded pipewire (1:1.0.5-1 -> 1:1.0.7-2)
[2024-06-07T11:19:43-0600] [ALPM] upgraded geoclue (2.7.1-2 -> 2.7.1-3)
[2024-06-07T11:19:43-0600] [ALPM] upgraded file-roller (44.1-1 -> 44.3-1)
[2024-06-07T11:19:43-0600] [ALPM] upgraded noto-fonts (1:24.5.1-1 -> 1:24.6.1-1)
[2024-06-07T11:19:43-0600] [ALPM] upgraded libass (0.17.1-4 -> 0.17.2-1)
[2024-06-07T11:19:43-0600] [ALPM] upgraded libwireplumber (0.5.2-1 -> 0.5.3-1)
[2024-06-07T11:19:43-0600] [ALPM] upgraded wireplumber (0.5.2-1 -> 0.5.3-1)
[2024-06-07T11:19:43-0600] [ALPM] upgraded pipewire-audio (1:1.0.5-1 -> 1:1.0.7-2)
[2024-06-07T11:19:43-0600] [ALPM] upgraded pipewire-jack (1:1.0.5-1 -> 1:1.0.7-2)
[2024-06-07T11:19:43-0600] [ALPM] upgraded libopenmpt (0.7.6-2 -> 0.7.7-1)
[2024-06-07T11:19:43-0600] [ALPM] upgraded svt-av1 (2.0.0-1 -> 2.1.0-1)
[2024-06-07T11:19:43-0600] [ALPM] upgraded vapoursynth (R66-2 -> R68-1)
[2024-06-07T11:19:43-0600] [ALPM] upgraded highway (1.1.0-1 -> 1.2.0-1)
[2024-06-07T11:19:44-0600] [ALPM] upgraded firefox (125.0.3-2 -> 126.0.1-1)
[2024-06-07T11:19:44-0600] [ALPM] upgraded gcc (13.2.1-6 -> 14.1.1+r58+gfc9fb69ad62-1)
[2024-06-07T11:19:44-0600] [ALPM] upgraded xdg-desktop-portal-gnome (46.1-1 -> 46.2-1)
[2024-06-07T11:19:44-0600] [ALPM] upgraded gnome-session (46.0-1 -> 46.0-2)
[2024-06-07T11:19:44-0600] [ALPM] upgraded libgdm (46.0-1 -> 46.2-1)
[2024-06-07T11:19:44-0600] [ALPM] upgraded libical (3.0.18-1 -> 3.0.18-2)
[2024-06-07T11:19:44-0600] [ALPM] upgraded libnm (1.46.0-2 -> 1.48.0-1)
[2024-06-07T11:19:44-0600] [ALPM] upgraded libwacom (2.11.0-1 -> 2.12.0-1)
[2024-06-07T11:19:44-0600] [ALPM] upgraded xorg-xwayland (23.2.6-2 -> 24.1.0-1)
[2024-06-07T11:19:44-0600] [ALPM] upgraded pipewire-pulse (1:1.0.5-1 -> 1:1.0.7-2)
[2024-06-07T11:19:45-0600] [ALPM] upgraded libplist (2.5.0-1 -> 2.6.0-1)
[2024-06-07T11:19:45-0600] [ALPM] upgraded libgusb (0.4.8-2 -> 0.4.9-1)
[2024-06-07T11:19:45-0600] [ALPM] upgraded mutter (46.1-1 -> 46.2-1)
[2024-06-07T11:19:45-0600] [ALPM] upgraded harfbuzz-icu (8.4.0-2 -> 8.5.0-1)
[2024-06-07T11:19:45-0600] [ALPM] upgraded webkitgtk-6.0 (2.44.1-1 -> 2.44.2-1)
[2024-06-07T11:19:45-0600] [ALPM] upgraded js115 (115.10.0-1 -> 115.11.0-1)
[2024-06-07T11:19:45-0600] [ALPM] upgraded gnome-shell (1:46.1-2 -> 1:46.2-1)
[2024-06-07T11:19:45-0600] [ALPM] upgraded gdm (46.0-1 -> 46.2-1)
[2024-06-07T11:19:45-0600] [ALPM] upgraded libgoa (3.50.1-1 -> 3.50.2-1)
[2024-06-07T11:19:45-0600] [ALPM] upgraded gnome-online-accounts (3.50.1-1 -> 3.50.2-1)
[2024-06-07T11:19:45-0600] [ALPM] upgraded libwbclient (4.20.0-3 -> 4.20.1-2)
[2024-06-07T11:19:45-0600] [ALPM] upgraded smbclient (4.20.0-3 -> 4.20.1-2)
[2024-06-07T11:19:45-0600] [ALPM] installed gnome-keybindings (46.2-1)
[2024-06-07T11:19:45-0600] [ALPM] upgraded gnome-control-center (46.1-2 -> 46.2-1)
[2024-06-07T11:19:45-0600] [ALPM] upgraded vte-common (0.76.1-1 -> 0.76.3-1)
[2024-06-07T11:19:45-0600] [ALPM] upgraded vte3 (0.76.1-1 -> 0.76.3-1)
[2024-06-07T11:19:45-0600] [ALPM] upgraded gnome-terminal (3.52.1-1 -> 3.52.2-1)
[2024-06-07T11:19:45-0600] [ALPM] upgraded groff (1.23.0-5 -> 1.23.0-6)
[2024-06-07T11:19:45-0600] [ALPM] upgraded gst-plugin-pipewire (1:1.0.5-1 -> 1:1.0.7-2)
[2024-06-07T11:19:45-0600] [ALPM] upgraded gtksourceview5 (5.12.0-1 -> 5.12.1-1)
[2024-06-07T11:19:45-0600] [ALPM] upgraded htop (3.3.0-2 -> 3.3.0-3)
[2024-06-07T11:19:45-0600] [ALPM] upgraded iniparser (4.2-1 -> 4.2.2-1)
[2024-06-07T11:19:45-0600] [ALPM] upgraded libgedit-tepl (6.10.0-2 -> 6.10.0-3)
[2024-06-07T11:19:45-0600] [ALPM] upgraded libgit2 (1:1.8.0-2 -> 1:1.8.1-1)
[2024-06-07T11:19:45-0600] [ALPM] upgraded libimagequant (4.3.0-1 -> 4.3.1-1)
[2024-06-07T11:19:45-0600] [ALPM] upgraded libmpcdec (1:0.1+r475-4 -> 1:0.1+r475-5)
[2024-06-07T11:19:45-0600] [ALPM] upgraded libnbd (1.20.0-2 -> 1.20.0-3)
[2024-06-07T11:19:45-0600] [ALPM] upgraded libslirp (4.7.0-1 -> 4.8.0-1)
[2024-06-07T11:19:45-0600] [ALPM] upgraded libtraceevent (1:1.8.2-1 -> 1:1.8.2-2)
[2024-06-07T11:19:45-0600] [ALPM] upgraded liburing (2.6-1 -> 2.6-2)
[2024-06-07T11:19:46-0600] [ALPM] warning: directory permissions differ on /var/lib/libvirt/swtpm/, filesystem: 755 package: 711
[2024-06-07T11:19:46-0600] [ALPM] upgraded libvirt (1:10.3.0-1 -> 1:10.4.0-1)
[2024-06-07T11:19:46-0600] [ALPM] upgraded libvirt-python (1:10.3.0-1 -> 1:10.4.0-1)
[2024-06-07T11:19:46-0600] [ALPM] upgraded linux (6.8.9.arch1-1 -> 6.9.3.arch1-1)
[2024-06-07T11:19:46-0600] [ALPM] upgraded linux-firmware-whence (20240409.1addd7dc-1 -> 20240510.b9d2bf23-1)
[2024-06-07T11:19:46-0600] [ALPM] upgraded linux-firmware (20240409.1addd7dc-1 -> 20240510.b9d2bf23-1)
[2024-06-07T11:19:46-0600] [ALPM] upgraded lvm2 (2.03.23-3 -> 2.03.24-1)
[2024-06-07T11:19:47-0600] [ALPM] upgraded nautilus (46.1-1 -> 46.2-1)
[2024-06-07T11:19:47-0600] [ALPM] upgraded ndctl (78-1 -> 78-2)
[2024-06-07T11:19:47-0600] [ALPM] upgraded pciutils (3.12.0-1 -> 3.13.0-1)
[2024-06-07T11:19:47-0600] [ALPM] upgraded net-snmp (5.9.4-3 -> 5.9.4-4)
[2024-06-07T11:19:47-0600] [ALPM] upgraded osinfo-db (20231215-1 -> 20240523-1)
[2024-06-07T11:19:47-0600] [ALPM] installed composefs (1.0.3-1)
[2024-06-07T11:19:47-0600] [ALPM] upgraded ostree (2024.5-1 -> 2024.6-1)
[2024-06-07T11:19:47-0600] [ALPM] upgraded pacman-contrib (1.10.5-1 -> 1.10.6-1)
[2024-06-07T11:19:47-0600] [ALPM] upgraded pavucontrol (1:5.0+r66+gc330506-1 -> 1:6.0-1)
[2024-06-07T11:19:47-0600] [ALPM] upgraded pcsclite (2.2.0-4 -> 2.2.3-1)
[2024-06-07T11:19:47-0600] [ALPM] upgraded pipewire-alsa (1:1.0.5-1 -> 1:1.0.7-2)
[2024-06-07T11:19:47-0600] [ALPM] upgraded python-annotated-types (0.6.0-3 -> 0.7.0-1)
[2024-06-07T11:19:47-0600] [ALPM] upgraded python-lxml (5.1.0-3 -> 5.2.2-1)
[2024-06-07T11:19:47-0600] [ALPM] upgraded python-pluggy (1.4.0-4 -> 1.5.0-1)
[2024-06-07T11:19:47-0600] [ALPM] upgraded python-pydantic-core (1:2.18.2-2 -> 1:2.18.4-1)
[2024-06-07T11:19:47-0600] [ALPM] upgraded python-pydantic (2.7.1-2 -> 2.7.3-1)
[2024-06-07T11:19:47-0600] [ALPM] upgraded python-pytest (1:8.1.2-1 -> 1:8.2.2-1)
[2024-06-07T11:19:47-0600] [ALPM] upgraded python-requests (2.31.0-3 -> 2.32.3-1)
[2024-06-07T11:19:47-0600] [ALPM] upgraded python-trio (0.25.0-2 -> 0.25.1-1)
[2024-06-07T11:19:47-0600] [ALPM] upgraded python-trove-classifiers (2024.4.10-1 -> 2024.5.22-1)
[2024-06-07T11:19:47-0600] [ALPM] upgraded qt5-translations (5.15.13-1 -> 5.15.14-1)
[2024-06-07T11:19:47-0600] [ALPM] upgraded qt5-base (5.15.13+kde+r145-1 -> 5.15.14+kde+r141-1)
[2024-06-07T11:19:47-0600] [ALPM] upgraded qt5-declarative (5.15.13+kde+r30-1 -> 5.15.14+kde+r28-1)
[2024-06-07T11:19:47-0600] [ALPM] upgraded qt5-location (5.15.13+kde+r6-1 -> 5.15.14+kde+r7-1)
[2024-06-07T11:19:47-0600] [ALPM] upgraded qt5-svg (5.15.13+kde+r6-1 -> 5.15.14+kde+r5-1)
[2024-06-07T11:19:47-0600] [ALPM] upgraded qt5-webchannel (5.15.13+kde+r3-1 -> 5.15.14+kde+r3-1)
[2024-06-07T11:19:48-0600] [ALPM] upgraded qt5-webengine (5.15.16-6 -> 5.15.17-4)
[2024-06-07T11:19:48-0600] [ALPM] upgraded qt5-websockets (5.15.13+kde+r2-1 -> 5.15.14+kde+r2-1)
[2024-06-07T11:19:48-0600] [ALPM] upgraded qt5-x11extras (5.15.13-1 -> 5.15.14-1)
[2024-06-07T11:19:48-0600] [ALPM] upgraded re2 (1:20240401-1 -> 1:20240601-1)
[2024-06-07T11:19:48-0600] [ALPM] upgraded sane (1.3.0-2 -> 1.3.1-1)
[2024-06-07T11:19:48-0600] [ALPM] upgraded signal-desktop (7.7.0-1 -> 7.11.1-1)
[2024-06-07T11:19:48-0600] [ALPM] upgraded syncthing (1.27.6-1 -> 1.27.8-1)
[2024-06-07T11:19:48-0600] [ALPM] upgraded systemd-sysvcompat (255.5-4 -> 255.7-1)
[2024-06-07T11:19:48-0600] [ALPM] upgraded tmux (3.4-7 -> 3.4-8)
[2024-06-07T11:19:48-0600] [ALPM] upgraded tracker3-miners (3.7.3-1 -> 3.7.3-2)
[2024-06-07T11:19:48-0600] [ALPM] upgraded virglrenderer (0.10.4-1 -> 1.0.1-2)
[2024-06-07T11:19:48-0600] [ALPM] upgraded virtiofsd (1.10.1-1 -> 1.11.0-1)
[2024-06-07T11:19:48-0600] [ALPM] upgraded vpnc (1:0.5.3.r526.r213-1 -> 1:0.5.3.r539.r239-1)
[2024-06-07T11:19:49-0600] [ALPM] upgraded webkit2gtk-4.1 (2.44.1-1 -> 2.44.2-1)
[2024-06-07T11:19:49-0600] [ALPM] upgraded xfsprogs (6.7.0-1 -> 6.8.0-2)
[2024-06-07T11:19:49-0600] [ALPM] transaction completed
[2024-06-07T11:19:51-0600] [ALPM] running '20-systemd-sysusers.hook'...
[2024-06-07T11:19:51-0600] [ALPM] running '30-systemd-catalog.hook'...
[2024-06-07T11:19:51-0600] [ALPM] running '30-systemd-daemon-reload-system.hook'...
[2024-06-07T11:19:51-0600] [ALPM] running '30-systemd-daemon-reload-user.hook'...
[2024-06-07T11:19:51-0600] [ALPM] running '30-systemd-hwdb.hook'...
[2024-06-07T11:19:51-0600] [ALPM] running '30-systemd-sysctl.hook'...
[2024-06-07T11:19:52-0600] [ALPM] running '30-systemd-tmpfiles.hook'...
[2024-06-07T11:19:52-0600] [ALPM] running '30-systemd-udev-reload.hook'...
[2024-06-07T11:19:52-0600] [ALPM] running '30-systemd-update.hook'...
[2024-06-07T11:19:52-0600] [ALPM] running '30-update-mime-database.hook'...
[2024-06-07T11:19:52-0600] [ALPM] running '40-update-ca-trust.hook'...
[2024-06-07T11:19:53-0600] [ALPM] running '60-depmod.hook'...
[2024-06-07T11:19:54-0600] [ALPM] running '90-dracut-install.hook'...
[2024-06-07T11:19:54-0600] [ALPM-SCRIPTLET] :: Building initramfs for linux (6.9.3-arch1-1)
[2024-06-07T11:19:54-0600] [ALPM-SCRIPTLET] dracut[I]: Executing: /usr/bin/dracut --force --hostonly --no-hostonly-cmdline /usr/lib/modules/6.9.3-arch1-1/initrd 6.9.3-arch1-1
[2024-06-07T11:19:54-0600] [ALPM-SCRIPTLET] dracut[E]: Module 'systemd-pcrphase' depends on 'tpm2-tss', which can't be installed
[2024-06-07T11:19:54-0600] [ALPM-SCRIPTLET] dracut[E]: Module 'systemd-pcrphase' depends on 'tpm2-tss', which can't be installed
[2024-06-07T11:19:55-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: systemd ***
[2024-06-07T11:19:55-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: systemd-ask-password ***
[2024-06-07T11:19:55-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: systemd-initrd ***
[2024-06-07T11:19:55-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: systemd-journald ***
[2024-06-07T11:19:55-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: systemd-modules-load ***
[2024-06-07T11:19:55-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: systemd-sysctl ***
[2024-06-07T11:19:55-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: systemd-sysusers ***
[2024-06-07T11:19:55-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: systemd-tmpfiles ***
[2024-06-07T11:19:55-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: systemd-udevd ***
[2024-06-07T11:19:55-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: i18n ***
[2024-06-07T11:19:55-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: btrfs ***
[2024-06-07T11:19:55-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: crypt ***
[2024-06-07T11:19:55-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: dm ***
[2024-06-07T11:19:55-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: kernel-modules ***
[2024-06-07T11:19:55-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: kernel-modules-extra ***
[2024-06-07T11:19:55-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: pcmcia ***
[2024-06-07T11:19:55-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: qemu ***
[2024-06-07T11:19:55-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: systemd-cryptsetup ***
[2024-06-07T11:19:55-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: rootfs-block ***
[2024-06-07T11:19:55-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: terminfo ***
[2024-06-07T11:19:55-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: udev-rules ***
[2024-06-07T11:19:56-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: virtiofs ***
[2024-06-07T11:19:56-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: dracut-systemd ***
[2024-06-07T11:19:56-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: usrmount ***
[2024-06-07T11:19:56-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: base ***
[2024-06-07T11:19:56-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: fs-lib ***
[2024-06-07T11:19:56-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: shutdown ***
[2024-06-07T11:19:56-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including modules done ***
[2024-06-07T11:19:56-0600] [ALPM-SCRIPTLET] dracut[I]: *** Installing kernel module dependencies ***
[2024-06-07T11:19:56-0600] [ALPM-SCRIPTLET] dracut[I]: *** Installing kernel module dependencies done ***
[2024-06-07T11:19:56-0600] [ALPM-SCRIPTLET] dracut[I]: *** Resolving executable dependencies ***
[2024-06-07T11:19:56-0600] [ALPM-SCRIPTLET] dracut[I]: *** Resolving executable dependencies done ***
[2024-06-07T11:19:56-0600] [ALPM-SCRIPTLET] dracut[I]: *** Hardlinking files ***
[2024-06-07T11:19:56-0600] [ALPM-SCRIPTLET] dracut[I]: *** Hardlinking files done ***
[2024-06-07T11:19:56-0600] [ALPM-SCRIPTLET] dracut[I]: *** Generating early-microcode cpio image ***
[2024-06-07T11:19:56-0600] [ALPM-SCRIPTLET] dracut[I]: *** Constructing AuthenticAMD.bin ***
[2024-06-07T11:19:56-0600] [ALPM-SCRIPTLET] dracut[I]: *** Store current command line parameters ***
[2024-06-07T11:19:56-0600] [ALPM-SCRIPTLET] dracut[I]: *** Stripping files ***
[2024-06-07T11:19:57-0600] [ALPM-SCRIPTLET] dracut[I]: *** Stripping files done ***
[2024-06-07T11:19:57-0600] [ALPM-SCRIPTLET] dracut[I]: *** Creating image file '/usr/lib/modules/6.9.3-arch1-1/initrd' ***
[2024-06-07T11:19:57-0600] [ALPM-SCRIPTLET] dracut[I]: Using auto-determined compression method 'gzip'
[2024-06-07T11:20:02-0600] [ALPM-SCRIPTLET] dracut[I]: *** Creating initramfs image file '/usr/lib/modules/6.9.3-arch1-1/initrd' done ***
[2024-06-07T11:20:02-0600] [ALPM-SCRIPTLET] :: Building fallback initramfs for linux (6.9.3-arch1-1)
[2024-06-07T11:20:02-0600] [ALPM-SCRIPTLET] dracut[I]: Executing: /usr/bin/dracut --force --no-hostonly /boot/initramfs-linux-fallback.img 6.9.3-arch1-1
[2024-06-07T11:20:03-0600] [ALPM-SCRIPTLET] dracut[E]: Module 'systemd-pcrphase' depends on 'tpm2-tss', which can't be installed
[2024-06-07T11:20:03-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: systemd ***
[2024-06-07T11:20:03-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: systemd-ask-password ***
[2024-06-07T11:20:03-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: systemd-initrd ***
[2024-06-07T11:20:03-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: systemd-journald ***
[2024-06-07T11:20:03-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: systemd-modules-load ***
[2024-06-07T11:20:03-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: systemd-networkd ***
[2024-06-07T11:20:03-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: systemd-sysctl ***
[2024-06-07T11:20:03-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: systemd-sysusers ***
[2024-06-07T11:20:03-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: systemd-tmpfiles ***
[2024-06-07T11:20:03-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: systemd-udevd ***
[2024-06-07T11:20:03-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: modsign ***
[2024-06-07T11:20:03-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: i18n ***
[2024-06-07T11:20:03-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: network ***
[2024-06-07T11:20:03-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: net-lib ***
[2024-06-07T11:20:03-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: btrfs ***
[2024-06-07T11:20:03-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: crypt ***
[2024-06-07T11:20:03-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: dm ***
[2024-06-07T11:20:03-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: dmraid ***
[2024-06-07T11:20:03-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: kernel-modules ***
[2024-06-07T11:20:04-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: kernel-modules-extra ***
[2024-06-07T11:20:04-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: kernel-network-modules ***
[2024-06-07T11:20:04-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: lvm ***
[2024-06-07T11:20:04-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: mdraid ***
[2024-06-07T11:20:04-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: multipath ***
[2024-06-07T11:20:04-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: nvdimm ***
[2024-06-07T11:20:04-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: pcmcia ***
[2024-06-07T11:20:04-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: qemu ***
[2024-06-07T11:20:04-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: qemu-net ***
[2024-06-07T11:20:04-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: systemd-cryptsetup ***
[2024-06-07T11:20:04-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: fido2 ***
[2024-06-07T11:20:04-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: pkcs11 ***
[2024-06-07T11:20:04-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: cifs ***
[2024-06-07T11:20:04-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: lunmask ***
[2024-06-07T11:20:04-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: nfs ***
[2024-06-07T11:20:05-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: resume ***
[2024-06-07T11:20:05-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: rootfs-block ***
[2024-06-07T11:20:05-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: terminfo ***
[2024-06-07T11:20:05-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: udev-rules ***
[2024-06-07T11:20:05-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: virtfs ***
[2024-06-07T11:20:05-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: virtiofs ***
[2024-06-07T11:20:05-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: dracut-systemd ***
[2024-06-07T11:20:05-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: usrmount ***
[2024-06-07T11:20:05-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: base ***
[2024-06-07T11:20:05-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: fs-lib ***
[2024-06-07T11:20:05-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including module: shutdown ***
[2024-06-07T11:20:05-0600] [ALPM-SCRIPTLET] dracut[I]: *** Including modules done ***
[2024-06-07T11:20:05-0600] [ALPM-SCRIPTLET] dracut[I]: *** Installing kernel module dependencies ***
[2024-06-07T11:20:05-0600] [ALPM-SCRIPTLET] dracut[I]: *** Installing kernel module dependencies done ***
[2024-06-07T11:20:05-0600] [ALPM-SCRIPTLET] dracut[I]: *** Resolving executable dependencies ***
[2024-06-07T11:20:06-0600] [ALPM-SCRIPTLET] dracut[I]: *** Resolving executable dependencies done ***
[2024-06-07T11:20:06-0600] [ALPM-SCRIPTLET] dracut[I]: *** Hardlinking files ***
[2024-06-07T11:20:06-0600] [ALPM-SCRIPTLET] dracut[I]: *** Hardlinking files done ***
[2024-06-07T11:20:06-0600] [ALPM-SCRIPTLET] dracut[I]: *** Generating early-microcode cpio image ***
[2024-06-07T11:20:06-0600] [ALPM-SCRIPTLET] dracut[I]: *** Constructing AuthenticAMD.bin ***
[2024-06-07T11:20:06-0600] [ALPM-SCRIPTLET] dracut[I]: *** Store current command line parameters ***
[2024-06-07T11:20:06-0600] [ALPM-SCRIPTLET] dracut[I]: *** Stripping files ***
[2024-06-07T11:20:06-0600] [ALPM-SCRIPTLET] dracut[I]: *** Stripping files done ***
[2024-06-07T11:20:06-0600] [ALPM-SCRIPTLET] dracut[I]: *** Creating image file '/boot/initramfs-linux-fallback.img' ***
[2024-06-07T11:20:06-0600] [ALPM-SCRIPTLET] dracut[I]: Using auto-determined compression method 'gzip'
[2024-06-07T11:20:16-0600] [ALPM-SCRIPTLET] dracut[I]: *** Creating initramfs image file '/boot/initramfs-linux-fallback.img' done ***
[2024-06-07T11:20:16-0600] [ALPM] running 'dbus-reload.hook'...
[2024-06-07T11:20:16-0600] [ALPM] running 'detect-old-perl-modules.hook'...
[2024-06-07T11:20:16-0600] [ALPM] running 'fontconfig.hook'...
[2024-06-07T11:20:16-0600] [ALPM] running 'gdk-pixbuf-query-loaders.hook'...
[2024-06-07T11:20:16-0600] [ALPM] running 'gio-querymodules.hook'...
[2024-06-07T11:20:17-0600] [ALPM] running 'glib-compile-schemas.hook'...
[2024-06-07T11:20:17-0600] [ALPM] running 'gtk-query-immodules-3.0.hook'...
[2024-06-07T11:20:17-0600] [ALPM] running 'gtk-update-icon-cache.hook'...
[2024-06-07T11:20:17-0600] [ALPM] running 'gvfsd.hook'...
[2024-06-07T11:20:17-0600] [ALPM] running 'update-desktop-database.hook'...
[2024-06-07T11:20:17-0600] [ALPM] running 'xorg-mkfontscale.hook'...Seems to be a problem with dracut-102.
I've downgraded to dracut 101 and the error went away
sudo pacman -U file:///var/cache/pacman/pkg/dracut-101-1-x86_64.pkg.tar.zstWill look through the dracut upstream project to see if this has been reported or if theres some configuration changes needed for the upgrade from 101 to 102
EDIT: found a related issue with similar error messages: https://github.com/dracut-ng/dracut-ng/issues/333
Last edited by beholder (2024-06-07 17:50:31)
Offline
If may help upstream if you identify the causal commit using git bisection.
Offline