You are not logged in.
I've been using TPM2 for a long time to automatically release the LUKS passphrase during boot. This is the UKI configuration I’ve been using:
/etc/kernel/uki.conf
--------------------------------------------------------
[UKI]
OSRelease=@/etc/os-release
PCRBanks=sha256
[PCRSignature:initrd]
Phases=enter-initrd
PCRPrivateKey=/etc/kernel/pcr-initrd.key.pem
PCRPublicKey=/etc/kernel/pcr-initrd.pub.pemEverything worked fine until a recent upgrade to systemd 259. After the update, both systemd-tpm2-setup-early.service and systemd-tpm2-setup.service started failing. According to the Arch Wiki, removing the Phases=enter-initrd line fixes the issue, and indeed the services now start correctly. However, my system now boots around 10 seconds slower than before.
Can someone please help me with these confusions I'm having?
• Are these TPM2 setup services new in systemd 259?
• If not, why didn’t I see the slowdown before the update?
• Do I even need these services for my setup, or can I safely disable them?
For context, I only use TPM2 to unlock the LUKS passphrase for my root partition. The secret is sealed against PCR 0 and 7, with an additional PCR policy for the initrd phase.
Offline
https://www.freedesktop.org/software/sy … rvice.html - has existed since 255
https://bbs.archlinux.org/viewtopic.php … 2#p2278972
https://github.com/systemd/systemd/issues/40159
Is the stall persistent or only on that one boot?
Seems the "if it hasn't been generated yet" provision would not hold - do you dual boot?
Do you get any (other) tpm related errors in the journal w/ 259? What is actually going on during those 10 seconds?
Offline
https://www.freedesktop.org/software/sy … rvice.html - has existed since 255
https://bbs.archlinux.org/viewtopic.php … 2#p2278972
https://github.com/systemd/systemd/issues/40159Is the stall persistent or only on that one boot?
Seems the "if it hasn't been generated yet" provision would not hold - do you dual boot?
Do you get any (other) tpm related errors in the journal w/ 259? What is actually going on during those 10 seconds?
The slowdown is persistent and happens on every boot. By “stall” I mean that these services now take noticeably longer to start than they did before the update.
Before upgrading systemd, boot was quite fast and services started almost immediately. After the update, the system unlocks the disk normally and boot continues, but before reaching graphical.target there is a ~7–10 second delay. During this time, the following services start sequentially:
systemd-tpm2-setup-early.service
systemd-tpm2-setup.service
Each service takes around 3 seconds to start. You can visibly see the “Starting …” message with a timer counting up to ~3 seconds before it completes, then the next service does the same. This cumulative wait is what extends the overall boot time.
Before removing the Phases=enter-initrd line, TPM-based root unlock still worked correctly, but both of the above services failed to start. After removing that line, the services now start successfully, but with the added delay described above. This behavior was not present before the systemd update. If the said services are not new, they started very fast before the update.
Inspecting the service status shows the following output
❯ sudo systemctl status systemd-tpm2-setup-early.service
● systemd-tpm2-setup-early.service - Early TPM SRK Setup
Loaded: loaded (/usr/lib/systemd/system/systemd-tpm2-setup-early.service; static)
Active: active (exited) since Thu 2026-02-26 19:03:37 IST; 3min 42s ago
Invocation: 3105c38160ed4c2480d7f641373f53e9
Docs: man:systemd-tpm2-setup.service(8)
Process: 635 ExecStart=/usr/lib/systemd/systemd-tpm2-setup --early=yes --graceful (code=exited, status=0/SUCCESS)
Main PID: 635 (code=exited, status=0/SUCCESS)
Mem peak: 3.5M
CPU: 31ms
Feb 26 19:03:30 void systemd-tpm2-setup[635]: SRK already stored in the TPM.
Feb 26 19:03:30 void systemd-tpm2-setup[635]: SRK fingerprint is 5671fe0b94d29550cd998adb186a5c0a0adda22212ab8006d34cbe01313815a1.
Feb 26 19:03:30 void systemd-tpm2-setup[635]: SRK public key saved to '/run/systemd/tpm2-srk-public-key.pem' in PEM format.
Feb 26 19:03:30 void systemd-tpm2-setup[635]: SRK public key saved to '/run/systemd/tpm2-srk-public-key.tpm2b_public' in TPM2B_PUBLIC format.
Feb 26 19:03:37 void systemd-tpm2-setup[635]: WARNING:esys:src/tss2-esys/api/Esys_NV_DefineSpace.c:345:Esys_NV_DefineSpace_Finish() Received TPM Error
Feb 26 19:03:37 void systemd-tpm2-setup[635]: ERROR:esys:src/tss2-esys/api/Esys_NV_DefineSpace.c:121:Esys_NV_DefineSpace() Esys Finish ErrorCode (0x0000014c)
Feb 26 19:03:37 void systemd-tpm2-setup[635]: 1 NvPCRs initialized. (1 NvPCRs were already initialized.)
Feb 26 19:03:37 void systemd[1]: Finished Early TPM SRK Setup.
❯ sudo systemctl status systemd-tpm2-setup.service
● systemd-tpm2-setup.service - TPM SRK Setup
Loaded: loaded (/usr/lib/systemd/system/systemd-tpm2-setup.service; static)
Active: active (exited) since Thu 2026-02-26 19:03:41 IST; 3min 43s ago
Invocation: 27b584e079384bb09892655755afd3e0
Docs: man:systemd-tpm2-setup.service(8)
Process: 831 ExecStart=/usr/lib/systemd/systemd-tpm2-setup --graceful (code=exited, status=0/SUCCESS)
Main PID: 831 (code=exited, status=0/SUCCESS)
Mem peak: 3.3M
CPU: 33ms
Feb 26 19:03:37 void systemd[1]: Starting TPM SRK Setup...
Feb 26 19:03:37 void systemd-tpm2-setup[831]: SRK already stored in the TPM.
Feb 26 19:03:37 void systemd-tpm2-setup[831]: SRK fingerprint is 5671fe0b94d29550cd998adb186a5c0a0adda22212ab8006d34cbe01313815a1.
Feb 26 19:03:37 void systemd-tpm2-setup[831]: SRK saved in '/var/lib/systemd/tpm2-srk-public-key.pem' matches SRK in TPM2.
Feb 26 19:03:41 void systemd-tpm2-setup[831]: 2 NvPCRs already initialized.
Feb 26 19:03:41 void systemd[1]: Finished TPM SRK Setup.Also, I don't dualboot.
Last edited by x254lb (2026-02-26 13:38:19)
Offline
Feb 26 19:03:30 void systemd-tpm2-setup[635]: SRK public key saved to '/run/systemd/tpm2-srk-public-key.tpm2b_public' in TPM2B_PUBLIC format.
Feb 26 19:03:37 void systemd-tpm2-setup[635]: WARNING:esys:src/tss2-esys/api/Esys_NV_DefineSpace.c:345:Esys_NV_DefineSpace_Finish() Received TPM Error
Feb 26 19:03:37 void systemd-tpm2-setup[635]: ERROR:esys:src/tss2-esys/api/Esys_NV_DefineSpace.c:121:Esys_NV_DefineSpace() Esys Finish ErrorCode (0x0000014c)Question is whether the delay delays the warning or the warning causes the delay.
Do you have the systemd-tpm2-setup logs from an older journal?
Eg. "sudo journalctl -b -5" for 5 boots ago.
Also check the *complete* current journal for what actually happens during that 7s
Offline
Feb 26 19:03:30 void systemd-tpm2-setup[635]: SRK public key saved to '/run/systemd/tpm2-srk-public-key.tpm2b_public' in TPM2B_PUBLIC format. Feb 26 19:03:37 void systemd-tpm2-setup[635]: WARNING:esys:src/tss2-esys/api/Esys_NV_DefineSpace.c:345:Esys_NV_DefineSpace_Finish() Received TPM Error Feb 26 19:03:37 void systemd-tpm2-setup[635]: ERROR:esys:src/tss2-esys/api/Esys_NV_DefineSpace.c:121:Esys_NV_DefineSpace() Esys Finish ErrorCode (0x0000014c)Question is whether the delay delays the warning or the warning causes the delay.
Do you have the systemd-tpm2-setup logs from an older journal?
Eg. "sudo journalctl -b -5" for 5 boots ago.
Also check the *complete* current journal for what actually happens during that 7s
I don’t have older journals from before the upgrade since I reinstalled, but I was able to compare against an Arch USB install running systemd 258.
On that system, both systemd-tpm2-setup-early.service and systemd-tpm2-setup.service start and finish immediately (same-second timestamps) and there is no Esys_NV_DefineSpace warning. That setup does not use TPM for LUKS unlock, but if I'm right, that does not matter here.
❯ sudo systemctl status systemd-tpm2-setup-early.service
● systemd-tpm2-setup-early.service - Early TPM SRK Setup
Loaded: loaded (/usr/lib/systemd/system/systemd-tpm2-setup-early.service; static)
Active: active (exited) since Thu 2026-02-26 22:17:09 IST; 1min 24s ago
Invocation: ef88c1a72971423bac4d8ed4d9c6af00
Docs: man:systemd-tpm2-setup.service(8)
Process: 532 ExecStart=/usr/lib/systemd/systemd-tpm2-setup --early=yes --graceful (code=exited, status=0/SUCCESS)
Main PID: 532 (code=exited, status=0/SUCCESS)
Mem peak: 2.2M
CPU: 10ms
Feb 26 22:17:09 archusb systemd-tpm2-setup[532]: SRK already stored in the TPM.
Feb 26 22:17:09 archusb systemd-tpm2-setup[532]: SRK fingerprint is 5671fe0b94d29550cd998adb186a5c0a0adda22212ab8006d34cbe01313815a1.
Feb 26 22:17:09 archusb systemd-tpm2-setup[532]: SRK public key saved to '/run/systemd/tpm2-srk-public-key.pem' in PEM format.
Feb 26 22:17:09 archusb systemd-tpm2-setup[532]: SRK public key saved to '/run/systemd/tpm2-srk-public-key.tpm2b_public' in TPM2B_PUBLIC format.
Feb 26 22:17:09 archusb systemd[1]: Finished Early TPM SRK Setup.
❯ sudo systemctl status systemd-tpm2-setup.service
● systemd-tpm2-setup.service - TPM SRK Setup
Loaded: loaded (/usr/lib/systemd/system/systemd-tpm2-setup.service; static)
Active: active (exited) since Thu 2026-02-26 22:17:10 IST; 1min 43s ago
Invocation: 57f73b33ef2547f9a3045e007ecee002
Docs: man:systemd-tpm2-setup.service(8)
Process: 555 ExecStart=/usr/lib/systemd/systemd-tpm2-setup --graceful (code=exited, status=0/SUCCESS)
Main PID: 555 (code=exited, status=0/SUCCESS)
Mem peak: 2.4M
CPU: 12ms
Feb 26 22:17:09 archusb systemd[1]: Starting TPM SRK Setup...
Feb 26 22:17:10 archusb systemd[1]: Finished TPM SRK Setup.
❯ /sbin/init --version
systemd 258 (258.1-1-arch)
+PAM +AUDIT -SELINUX +APPARMOR -IMA +IPE +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF +XKBCOMMON +UTMP -SYSVINIT +LIBARCHIVEAs for current system logs, i tried the following.
❯ sudo journalctl -b -u systemd-tpm2-setup-early.service
Feb 26 22:23:28 void systemd-tpm2-setup[595]: SRK already stored in the TPM.
Feb 26 22:23:28 void systemd-tpm2-setup[595]: SRK fingerprint is 5671fe0b94d29550cd998adb186a5c0a0adda22212ab8006d34cbe01313815a1.
Feb 26 22:23:28 void systemd-tpm2-setup[595]: SRK public key saved to '/run/systemd/tpm2-srk-public-key.pem' in PEM format.
Feb 26 22:23:28 void systemd-tpm2-setup[595]: SRK public key saved to '/run/systemd/tpm2-srk-public-key.tpm2b_public' in TPM2B_PUBLIC format.
Feb 26 22:23:35 void systemd-tpm2-setup[595]: WARNING:esys:src/tss2-esys/api/Esys_NV_DefineSpace.c:345:Esys_NV_DefineSpace_Finish() Received TPM Error
Feb 26 22:23:35 void systemd-tpm2-setup[595]: ERROR:esys:src/tss2-esys/api/Esys_NV_DefineSpace.c:121:Esys_NV_DefineSpace() Esys Finish ErrorCode (0x0000014c)
Feb 26 22:23:35 void systemd-tpm2-setup[595]: 1 NvPCRs initialized. (1 NvPCRs were already initialized.)
Feb 26 22:23:35 void systemd[1]: Finished Early TPM SRK Setup.❯ sudo journalctl -b -u systemd-tpm2-setup.service
Feb 26 22:23:35 void systemd[1]: Starting TPM SRK Setup...
Feb 26 22:23:35 void systemd-tpm2-setup[804]: SRK already stored in the TPM.
Feb 26 22:23:35 void systemd-tpm2-setup[804]: SRK fingerprint is 5671fe0b94d29550cd998adb186a5c0a0adda22212ab8006d34cbe01313815a1.
Feb 26 22:23:35 void systemd-tpm2-setup[804]: SRK saved in '/var/lib/systemd/tpm2-srk-public-key.pem' matches SRK in TPM2.
Feb 26 22:23:39 void systemd-tpm2-setup[804]: 2 NvPCRs already initialized.
Feb 26 22:23:39 void systemd[1]: Finished TPM SRK Setup.❯ systemd-analyze critical-chain systemd-tpm2-setup-early.service
The time when unit became active or started is printed after the "@" character.
The time the unit took to start is printed after the "+" character.
systemd-tpm2-setup-early.service +7.202s
└─tpm2.target @771ms
└─dev-tpm0.device❯ systemd-analyze blame
7.202s systemd-tpm2-setup-early.service
4.032s dev-tpm0.device
4.032s sys-devices-LNXSYSTM:00-LNXSYBUS:00-MSFT0101:00-tpm-tpm0.device
4.018s sys-devices-LNXSYSTM:00-LNXSYBUS:00-MSFT0101:00-tpmrm-tpmrm0.device
4.018s dev-tpmrm0.device
4.018s sys-devices-platform-serial8250-serial8250:0-serial8250:0.2-tty-ttyS2.device
4.018s dev-ttyS2.device
4.017s sys-devices-platform-serial8250-serial8250:0-serial8250:0.1-tty-ttyS1.device
4.017s dev-ttyS1.device
4.017s dev-ttyS3.device
4.017s sys-devices-platform-serial8250-serial8250:0-serial8250:0.3-tty-ttyS3.device
4.016s sys-devices-platform-serial8250-serial8250:0-serial8250:0.0-tty-ttyS0.device
4.016s dev-ttyS0.device
4.004s sys-module-fuse.device
4.004s sys-module-configfs.device
3.913s dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1\x2dpart-by\x2dpartnum-2.device
3.913s dev-disk-by\x2duuid-fc3cbc27\x2d93b5\x2d4758\x2da095\x2db932f012d4e8.device
3.912s dev-disk-by\x2did-nvme\x2deui.000000000000000100a0752345fdb9c1\x2dpart2.device
3.912s dev-disk-by\x2ddiskseq-1\x2dpart1.device
3.912s dev-disk-by\x2ddiskseq-1\x2dpart2.device
3.912s sys-devices-pci0000:00-0000:00:02.4-0000:04:00.0-nvme-nvme0-nvme0n1-nvme0n1p2.device
3.912s dev-disk-by\x2dpartuuid-41970780\x2da76c\x2d4655\x2db2eb\x2d71ae052de9ee.device
3.912s dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1\x2dpart2.device
3.912s dev-disk-by\x2did-nvme\x2dMTFDKBA512QFM\x2d1BD1AABGB_235345FDB9C1_1\x2dpart2.device
3.912s dev-disk-by\x2did-nvme\x2dMTFDKBA512QFM\x2d1BD1AABGB_235345FDB9C1\x2dpart2.device
3.912s dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1\x2dpart-by\x2dpartuuid-41970780\x2da76c\x2d4655\x2db2eb\x2d71ae052de9ee.device
3.912s dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1\x2dpart-by\x2duuid-fc3cbc27\x2d93b5\x2d4758\x2da095\x2db932f012d4e8.device
3.912s dev-disk-by\x2ddesignator-esp.device
3.912s dev-disk-by\x2duuid-FDAE\x2d0B04.device
3.912s dev-nvme0n1p1.device
3.912s dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1\x2dpart1.device
3.912s dev-nvme0n1p2.device
3.912s dev-disk-by\x2dpartuuid-f700a7f0\x2d95af\x2d41ac\x2d86fc\x2de5983a551ef3.device
3.912s dev-disk-by\x2did-nvme\x2dMTFDKBA512QFM\x2d1BD1AABGB_235345FDB9C1_1\x2dpart1.device
3.912s dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1\x2dpart-by\x2dpartuuid-f700a7f0\x2d95af\x2d41ac\x2d86fc\x2de5983a551ef3.device
3.912s dev-disk-by\x2did-nvme\x2deui.000000000000000100a0752345fdb9c1\x2dpart1.device
3.912s dev-disk-by\x2did-nvme\x2dMTFDKBA512QFM\x2d1BD1AABGB_235345FDB9C1\x2dpart1.device
3.912s dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1\x2dpart-by\x2dpartnum-1.device
3.912s dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1\x2dpart-by\x2duuid-FDAE\x2d0B04.device
3.912s sys-devices-pci0000:00-0000:00:02.4-0000:04:00.0-nvme-nvme0-nvme0n1-nvme0n1p1.device
3.897s dev-disk-by\x2ddiskseq-1.device
3.897s dev-disk-by\x2did-nvme\x2deui.000000000000000100a0752345fdb9c1.device
3.897s sys-devices-pci0000:00-0000:00:02.4-0000:04:00.0-nvme-nvme0-nvme0n1.device
3.897s dev-disk-by\x2dpath-pci\x2d0000:04:00.0\x2dnvme\x2d1.device
3.897s dev-disk-by\x2did-nvme\x2dMTFDKBA512QFM\x2d1BD1AABGB_235345FDB9C1.device
3.897s dev-nvme0n1.device
3.897s dev-disk-by\x2did-nvme\x2dMTFDKBA512QFM\x2d1BD1AABGB_235345FDB9C1_1.device
3.621s systemd-pcrproduct.service
3.590s systemd-tpm2-setup.service
1.134s asusd.service
610ms NetworkManager.service
574ms initrd-switch-root.service
353ms tailscaled.service
313ms systemd-modules-load.service
248ms systemd-udev-trigger.service
192ms upower.service
145ms ldconfig.service
136ms systemd-journal-flush.service
124ms systemd-pcrmachine.service
119ms power-profiles-daemon.service
114ms systemd-tmpfiles-setup-dev-early.service
94ms user@1000.service
83ms libvirtd.service
74ms systemd-tmpfiles-setup.service
69ms systemd-pcrnvdone.service
63ms polkit.service
62ms systemd-journald.service
59ms systemd-udevd.service
56ms systemd-hostnamed.service
51ms systemd-logind.service
50ms systemd-tmpfiles-setup-dev.service
50ms systemd-tmpfiles-clean.service
48ms dbus-broker.service
44ms systemd-userdbd.service
43ms initrd-cleanup.service
40ms systemd-fsck-root.service
40ms systemd-sysusers.service
39ms systemd-pcrphase-sysinit.service
33ms systemd-vconsole-setup.service
32ms systemd-journal-catalog-update.service
31ms systemd-pcrphase-initrd.service
31ms dev-hugepages.mount
30ms dev-mqueue.mount
30ms systemd-boot-random-seed.service
29ms efi.mount
29ms sys-kernel-debug.mount
27ms wpa_supplicant.service
25ms systemd-pcrphase.service
23ms initrd-udevadm-cleanup-db.service
22ms systemd-update-done.service
22ms user-runtime-dir@1000.service
22ms systemd-battery-check.service
22ms initrd-parse-etc.service
20ms systemd-backlight@backlight:nvidia_wmi_ec_backlight.service
18ms systemd-sysctl.service
17ms sys-kernel-tracing.mount
17ms systemd-backlight@leds:asus::kbd_backlight.service
16ms systemd-machined.service
16ms kmod-static-nodes.service
16ms systemd-random-seed.service
15ms sys-kernel-config.mount
15ms swapfile.swap
15ms sys-fs-fuse-connections.mount
14ms systemd-rfkill.service
14ms systemd-remount-fs.service
14ms systemd-update-utmp.service
12ms tmp.mount
11ms systemd-udev-load-credentials.service
11ms systemd-userdb-load-credentials.service
8ms systemd-user-sessions.service
6ms proc-sys-fs-binfmt_misc.mount
1ms sshd-unix-local.socket
1ms polkit-agent-helper.socket
969us systemd-pcrextend.socket
814us systemd-coredump.socket
802us systemd-mute-console.socket
763us systemd-bootctl.socket
680us systemd-ask-password.socket
619us systemd-factory-reset.socket
616us systemd-pcrlock.socket
553us systemd-sysext.socket
535us systemd-repart.socket
468us systemd-creds.socket
141us dirmngr@etc-pacman.d-gnupg.socket
95us gpg-agent-browser@etc-pacman.d-gnupg.socket
69us systemd-journald-dev-log.socket
61us systemd-machined.socket
54us gpg-agent-extra@etc-pacman.d-gnupg.socket
53us systemd-journald.socket
53us gpg-agent@etc-pacman.d-gnupg.socket
53us keyboxd@etc-pacman.d-gnupg.socket
52us dbus.socket
52us gpg-agent-ssh@etc-pacman.d-gnupg.socket
51us systemd-rfkill.socket
43us libvirtd.socket
32us systemd-logind-varlink.socket
30us dm-event.socket
30us systemd-userdbd.socket
28us virtlogd.socket
28us systemd-importd.socket
27us virtlockd-admin.socket
27us libvirtd-admin.socket
27us systemd-hostnamed.socket
27us virtlockd.socket
25us libvirtd-ro.socket
25us systemd-udevd-varlink.socket
25us virtlogd-admin.socket
21us systemd-udevd-control.socket
17us systemd-udevd-kernel.socketI hope this helps.. Let me know if i should open an issue upstream
Offline
Esys_NV_DefineSpace() receives TPM Error 0x0000014c which causes a boot loop
Do you think this is same as my issue?
Offline
Don't filter journal or analysis (you'll never learn whether something else influences this outcome) - the upstream bug has some errors from the tpm kernel module, do you get those as well?
The service is old but there were obviously code changes and https://github.com/systemd/systemd/issu … 3760597003 lists 4 different problems w/ that (one is the phase restriction)
Can you please post your complete system journal for the boot:
sudo journalctl -b | curl -F 'file=@-' 0x0.stOffline
Don't filter journal or analysis (you'll never learn whether something else influences this outcome) - the upstream bug has some errors from the tpm kernel module, do you get those as well?
The service is old but there were obviously code changes and https://github.com/systemd/systemd/issu … 3760597003 lists 4 different problems w/ that (one is the phase restriction)
Can you please post your complete system journal for the boot:sudo journalctl -b | curl -F 'file=@-' 0x0.st
Okay, here's the full system journal
Offline
Feb 27 07:56:20 archlinux systemd[1]: Finished File System Check on /dev/mapper/root.
Feb 27 07:56:20 archlinux systemd[1]: Mounting /sysroot...
Feb 27 07:56:20 archlinux kernel: EXT4-fs (dm-0): mounted filesystem 1fd5f280-5bc4-4bce-8161-c9738f31beef r/w with ordered data mode. Quota mode: none.
Feb 27 07:56:21 void systemd[1]: Starting Remount Root and Kernel File Systems...
Feb 27 07:56:21 void systemd[1]: Starting Early TPM SRK Setup...
Feb 27 07:56:29 void systemd[1]: Finished Early TPM SRK Setup.Looks like the systemd-tpm2-setup-early.service isn't running in the initramfs but does run after the root switch… probably a consequence of removing
Phases=enter-initrd ?
What if you restore that and add the others, https://github.com/systemd/systemd/issu … 3765146912 ?
Offline
Feb 27 07:56:20 archlinux systemd[1]: Finished File System Check on /dev/mapper/root. Feb 27 07:56:20 archlinux systemd[1]: Mounting /sysroot... Feb 27 07:56:20 archlinux kernel: EXT4-fs (dm-0): mounted filesystem 1fd5f280-5bc4-4bce-8161-c9738f31beef r/w with ordered data mode. Quota mode: none. Feb 27 07:56:21 void systemd[1]: Starting Remount Root and Kernel File Systems... Feb 27 07:56:21 void systemd[1]: Starting Early TPM SRK Setup... Feb 27 07:56:29 void systemd[1]: Finished Early TPM SRK Setup.Looks like the systemd-tpm2-setup-early.service isn't running in the initramfs but does run after the root switch… probably a consequence of removing
Phases=enter-initrd?
What if you restore that and add the others, https://github.com/systemd/systemd/issu … 3765146912 ?
Do you mean to use this config?
[UKI]
...
[PCRSignature:initrd]
PCRPrivateKey=tpm2-pcr-initrd-private-key.pem
PCRPublicKey=tpm2-pcr-initrd-public-key.pem
Phases=enter-initrd
[PCRSignature:system]
PCRPrivateKey=tpm2-pcr-private-key-system.pem
PCRPublicKey=tpm2-pcr-public-key-system.pem
Phases=enter-initrd:leave-initrd
enter-initrd:leave-initrd:sysinit
enter-initrd:leave-initrd:sysinit:readyOffline
The idea would be more like
[PCRSignature:initrd]
PCRPrivateKey=tpm2-pcr-initrd-private-key.pem
PCRPublicKey=tpm2-pcr-initrd-public-key.pem
Phases=enter-initrd
enter-initrd:leave-initrd
enter-initrd:leave-initrd:sysinit
enter-initrd:leave-initrd:sysinit:readyBut nb. https://github.com/systemd/systemd/issu … 3765160720
Last edited by seth (2026-02-27 09:03:43)
Offline
The idea would be more like..
[PCRSignature:initrd]
PCRPrivateKey=tpm2-pcr-initrd-private-key.pem
PCRPublicKey=tpm2-pcr-initrd-public-key.pem
Phases=enter-initrd
enter-initrd:leave-initrd
enter-initrd:leave-initrd:sysinit
enter-initrd:leave-initrd:sysinit:readySure, I'll try this one out as soon as I get to my system
Offline
The idea would be more like
[PCRSignature:initrd] PCRPrivateKey=tpm2-pcr-initrd-private-key.pem PCRPublicKey=tpm2-pcr-initrd-public-key.pem Phases=enter-initrd enter-initrd:leave-initrd enter-initrd:leave-initrd:sysinit enter-initrd:leave-initrd:sysinit:readyBut nb. https://github.com/systemd/systemd/issu … 3765160720
I tried it. But it changed nothing.
I've attached the new logs.
Offline
Feb 27 17:53:17 void systemd[1]: Starting Remount Root and Kernel File Systems...
Feb 27 17:53:17 void systemd[1]: Starting Early TPM SRK Setup...What do things look like when you downgrade systemdumb and restore the previous config (ie. when things actually worked as should)?
Offline
Feb 27 17:53:17 void systemd[1]: Starting Remount Root and Kernel File Systems... Feb 27 17:53:17 void systemd[1]: Starting Early TPM SRK Setup...What do things look like when you downgrade systemdumb and restore the previous config (ie. when things actually worked as should)?
I downgraded systemd from 259 to 258.3.
And restored previous uki.conf
[UKI]
OSRelease=@/etc/os-release
PCRBanks=sha256
[PCRSignature:initrd]
Phases=enter-initrd
PCRPrivateKey=/etc/kernel/pcr-initrd.key.pem
PCRPublicKey=/etc/kernel/pcr-initrd.pub.pemAnd it's working fine.
❯ systemd-analyze
Startup finished in 5.648s (firmware) + 3.642s (loader) + 755ms (kernel) + 3.402s (initrd) + 2.842s (userspace) = 16.290s
graphical.target reached after 2.773s in userspace.Here is the journal.
Feb 27 20:56:01 archlinux kernel: Linux version 6.18.9-arch1-2 (linux@archlinux) (gcc (GCC) 15.2.1 20260209, GNU ld (GNU Binutils) 2.46) #1 SMP PREEMPT_DYNAMIC Mon, 09 Feb 2026 17:16:33 +0000
Feb 27 20:56:01 archlinux kernel: Command line: rd.luks.name=fc3cbc27-93b5-4758-a095-b932f012d4e8=root root=/dev/mapper/root rw rootfstype=ext4 rd.shell=0 rd.emergency=reboot
Feb 27 20:56:01 archlinux kernel: BIOS-provided physical RAM map:
Feb 27 20:56:01 archlinux kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
Feb 27 20:56:01 archlinux kernel: BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
Feb 27 20:56:01 archlinux kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000009afefff] usable
Feb 27 20:56:01 archlinux kernel: BIOS-e820: [mem 0x0000000009aff000-0x0000000009ffffff] reserved
Feb 27 20:56:01 archlinux kernel: BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
Feb 27 20:56:01 archlinux kernel: BIOS-e820: [mem 0x000000000a200000-0x000000000a213fff] ACPI NVS
Feb 27 20:56:01 archlinux kernel: BIOS-e820: [mem 0x000000000a214000-0x000000006f95ffff] usable
Feb 27 20:56:01 archlinux kernel: BIOS-e820: [mem 0x000000006f960000-0x00000000724b9fff] reserved
Feb 27 20:56:01 archlinux kernel: BIOS-e820: [mem 0x00000000724ba000-0x0000000072538fff] ACPI data
Feb 27 20:56:01 archlinux kernel: BIOS-e820: [mem 0x0000000072539000-0x000000007786dfff] ACPI NVS
Feb 27 20:56:01 archlinux kernel: BIOS-e820: [mem 0x000000007786e000-0x0000000078bfdfff] reserved
Feb 27 20:56:01 archlinux kernel: BIOS-e820: [mem 0x0000000078bfe000-0x0000000078bfefff] usable
Feb 27 20:56:01 archlinux kernel: BIOS-e820: [mem 0x0000000078bff000-0x0000000078bfffff] reserved
Feb 27 20:56:01 archlinux kernel: BIOS-e820: [mem 0x0000000078c00000-0x000000007affcfff] usable
Feb 27 20:56:01 archlinux kernel: BIOS-e820: [mem 0x000000007affd000-0x000000007bffffff] reserved
Feb 27 20:56:01 archlinux kernel: BIOS-e820: [mem 0x000000007ce00000-0x000000007fffffff] reserved
Feb 27 20:56:01 archlinux kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Feb 27 20:56:01 archlinux kernel: BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
Feb 27 20:56:01 archlinux kernel: BIOS-e820: [mem 0x0000000100000000-0x000000045e2fffff] usable
Feb 27 20:56:01 archlinux kernel: BIOS-e820: [mem 0x000000045f340000-0x00000004a01fffff] reserved
Feb 27 20:56:01 archlinux kernel: NX (Execute Disable) protection: active
Feb 27 20:56:01 archlinux kernel: APIC: Static calls initialized
Feb 27 20:56:01 archlinux kernel: efi: EFI v2.8 by American Megatrends
Feb 27 20:56:01 archlinux kernel: efi: ACPI=0x72538000 ACPI 2.0=0x72538014 TPMFinalLog=0x77823000 SMBIOS=0x789c4000 SMBIOS 3.0=0x789c3000 MEMATTR=0x68eeb018 ESRT=0x68eeef98 RNG=0x724d2f18 INITRD=0x62f91a98 TPMEventLog=0x724ca018
Feb 27 20:56:01 archlinux kernel: random: crng init done
Feb 27 20:56:01 archlinux kernel: efi: Remove mem62: MMIO range=[0xe0000000-0xefffffff] (256MB) from e820 map
Feb 27 20:56:01 archlinux kernel: e820: remove [mem 0xe0000000-0xefffffff] reserved
Feb 27 20:56:01 archlinux kernel: efi: Remove mem63: MMIO range=[0xfd000000-0xfedfffff] (30MB) from e820 map
Feb 27 20:56:01 archlinux kernel: e820: remove [mem 0xfd000000-0xfedfffff] reserved
Feb 27 20:56:01 archlinux kernel: efi: Not removing mem64: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
Feb 27 20:56:01 archlinux kernel: efi: Remove mem65: MMIO range=[0xfee01000-0xffffffff] (17MB) from e820 map
Feb 27 20:56:01 archlinux kernel: e820: remove [mem 0xfee01000-0xffffffff] reserved
Feb 27 20:56:01 archlinux kernel: efi: Remove mem67: MMIO range=[0x480000000-0x4a01fffff] (514MB) from e820 map
Feb 27 20:56:01 archlinux kernel: e820: remove [mem 0x480000000-0x4a01fffff] reserved
Feb 27 20:56:01 archlinux kernel: SMBIOS 3.4.0 present.
Feb 27 20:56:01 archlinux kernel: DMI: ASUSTeK COMPUTER INC. ASUS TUF Gaming A15 FA507NU_FA577NU/FA507NU, BIOS FA507NU.316 11/04/2024
Feb 27 20:56:01 archlinux kernel: DMI: Memory slots populated: 2/2
Feb 27 20:56:01 archlinux kernel: tsc: Fast TSC calibration using PIT
Feb 27 20:56:01 archlinux kernel: tsc: Detected 3193.961 MHz processor
Feb 27 20:56:01 archlinux kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Feb 27 20:56:01 archlinux kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Feb 27 20:56:01 archlinux kernel: last_pfn = 0x45e300 max_arch_pfn = 0x400000000
Feb 27 20:56:01 archlinux kernel: MTRR map: 6 entries (3 fixed + 3 variable; max 20), built from 9 variable MTRRs
Feb 27 20:56:01 archlinux kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
Feb 27 20:56:01 archlinux kernel: last_pfn = 0x7affd max_arch_pfn = 0x400000000
Feb 27 20:56:01 archlinux kernel: esrt: Reserving ESRT space from 0x0000000068eeef98 to 0x0000000068eeefd0.
Feb 27 20:56:01 archlinux kernel: e820: update [mem 0x68eee000-0x68eeefff] usable ==> reserved
Feb 27 20:56:01 archlinux kernel: Using GB pages for direct mapping
Feb 27 20:56:01 archlinux kernel: Secure boot enabled
Feb 27 20:56:01 archlinux kernel: RAMDISK: [mem 0x4ee06000-0x586ddfff]
Feb 27 20:56:01 archlinux kernel: ACPI: Early table checksum verification disabled
Feb 27 20:56:01 archlinux kernel: ACPI: RSDP 0x0000000072538014 000024 (v02 _ASUS_)
Feb 27 20:56:01 archlinux kernel: ACPI: XSDT 0x0000000072537728 00012C (v01 _ASUS_ Notebook 01072009 AMI 01000013)
Feb 27 20:56:01 archlinux kernel: ACPI: FACP 0x000000007252C000 000114 (v06 _ASUS_ Notebook 01072009 AMI 00010013)
Feb 27 20:56:01 archlinux kernel: ACPI: DSDT 0x000000007251F000 00CD2F (v02 _ASUS_ Notebook 01072009 INTL 20230331)
Feb 27 20:56:01 archlinux kernel: ACPI: FACS 0x0000000077821000 000040
Feb 27 20:56:01 archlinux kernel: ACPI: MSDM 0x0000000072536000 000055 (v03 _ASUS_ Notebook 01072009 ASUS 00000001)
Feb 27 20:56:01 archlinux kernel: ACPI: SSDT 0x0000000072535000 0001CC (v01 AMD STD3 00000001 INTL 20230331)
Feb 27 20:56:01 archlinux kernel: ACPI: SSDT 0x000000007252D000 007F5B (v02 AMD AmdTable 00000002 MSFT 02000002)
Feb 27 20:56:01 archlinux kernel: ACPI: FIDT 0x000000007251E000 00009C (v01 _ASUS_ Notebook 01072009 AMI 00010013)
Feb 27 20:56:01 archlinux kernel: ACPI: MCFG 0x000000007251D000 00003C (v01 _ASUS_ Notebook 01072009 MSFT 00010013)
Feb 27 20:56:01 archlinux kernel: ACPI: FPDT 0x000000007251C000 000044 (v01 _ASUS_ A M I 01072009 AMI 01000013)
Feb 27 20:56:01 archlinux kernel: ACPI: VFCT 0x0000000072511000 00AE84 (v01 _ASUS_ Notebook 00000001 AMD 31504F47)
Feb 27 20:56:01 archlinux kernel: ACPI: BGRT 0x0000000072510000 000038 (v01 _ASUS_ Notebook 01072009 AMI 00010013)
Feb 27 20:56:01 archlinux kernel: ACPI: TPM2 0x000000007250F000 00004C (v04 _ASUS_ Notebook 00000001 AMI 00000000)
Feb 27 20:56:01 archlinux kernel: ACPI: SSDT 0x0000000072509000 005354 (v02 AMD AmdTable 00000001 AMD 00000001)
Feb 27 20:56:01 archlinux kernel: ACPI: CRAT 0x0000000072508000 000EE8 (v01 AMD AmdTable 00000001 AMD 00000001)
Feb 27 20:56:01 archlinux kernel: ACPI: CDIT 0x0000000072507000 000029 (v01 AMD AmdTable 00000001 AMD 00000001)
Feb 27 20:56:01 archlinux kernel: ACPI: SSDT 0x0000000072502000 004E26 (v01 OptRf2 Opt2Tabl 00001000 INTL 20230331)
Feb 27 20:56:01 archlinux kernel: ACPI: SSDT 0x0000000072500000 0015A0 (v01 AMD AmdTable 00000001 INTL 20230331)
Feb 27 20:56:01 archlinux kernel: ACPI: SSDT 0x00000000724FD000 0029B0 (v01 AMD AmdTable 00000001 INTL 20230331)
Feb 27 20:56:01 archlinux kernel: ACPI: SSDT 0x00000000724F9000 0000D3 (v01 AMD AmdTable 00000001 INTL 20230331)
Feb 27 20:56:01 archlinux kernel: ACPI: SSDT 0x00000000724F1000 007EC6 (v01 AMD AmdTable 00000001 INTL 20230331)
Feb 27 20:56:01 archlinux kernel: ACPI: WSMT 0x00000000724FC000 000028 (v01 _ASUS_ Notebook 01072009 AMI 00010013)
Feb 27 20:56:01 archlinux kernel: ACPI: APIC 0x00000000724FB000 0000E8 (v05 _ASUS_ Notebook 01072009 AMI 00010013)
Feb 27 20:56:01 archlinux kernel: ACPI: SSDT 0x00000000724EE000 0022AF (v01 AMD AOD 00000001 INTL 20230331)
Feb 27 20:56:01 archlinux kernel: ACPI: IVRS 0x00000000724FA000 0001A4 (v02 AMD AmdTable 00000001 AMD 00000001)
Feb 27 20:56:01 archlinux kernel: ACPI: SSDT 0x00000000724ED000 0007D7 (v01 AMD AmdTable 00000001 INTL 20230331)
Feb 27 20:56:01 archlinux kernel: ACPI: SSDT 0x00000000724EB000 0010A5 (v01 AMD AmdTable 00000001 INTL 20230331)
Feb 27 20:56:01 archlinux kernel: ACPI: SSDT 0x00000000724E1000 009303 (v01 AMD AmdTable 00000001 INTL 20230331)
Feb 27 20:56:01 archlinux kernel: ACPI: SSDT 0x00000000724DB000 005022 (v01 AMD AmdTable 00000001 INTL 20230331)
Feb 27 20:56:01 archlinux kernel: ACPI: SSDT 0x00000000724DA000 000A6A (v01 AMD AmdTable 00000001 INTL 20230331)
Feb 27 20:56:01 archlinux kernel: ACPI: SSDT 0x00000000724D9000 00008D (v01 AMD AmdTable 00000001 INTL 20230331)
Feb 27 20:56:01 archlinux kernel: ACPI: SSDT 0x00000000724D8000 000B50 (v01 AMD AmdTable 00000001 INTL 20230331)
Feb 27 20:56:01 archlinux kernel: ACPI: SSDT 0x00000000724D7000 000AFD (v02 AMD AmdTable 00000001 INTL 20230331)
Feb 27 20:56:01 archlinux kernel: ACPI: SSDT 0x00000000724D6000 00071A (v01 AMD AmdTable 00000001 INTL 20230331)
Feb 27 20:56:01 archlinux kernel: ACPI: SSDT 0x00000000724D5000 0008DE (v01 AMD AmdTable 00000001 INTL 20230331)
Feb 27 20:56:01 archlinux kernel: ACPI: SSDT 0x00000000724D3000 001471 (v01 AMD AmdTable 00000001 INTL 20230331)
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving FACP table memory at [mem 0x7252c000-0x7252c113]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving DSDT table memory at [mem 0x7251f000-0x7252bd2e]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving FACS table memory at [mem 0x77821000-0x7782103f]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving MSDM table memory at [mem 0x72536000-0x72536054]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x72535000-0x725351cb]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7252d000-0x72534f5a]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving FIDT table memory at [mem 0x7251e000-0x7251e09b]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving MCFG table memory at [mem 0x7251d000-0x7251d03b]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving FPDT table memory at [mem 0x7251c000-0x7251c043]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving VFCT table memory at [mem 0x72511000-0x7251be83]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving BGRT table memory at [mem 0x72510000-0x72510037]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving TPM2 table memory at [mem 0x7250f000-0x7250f04b]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x72509000-0x7250e353]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving CRAT table memory at [mem 0x72508000-0x72508ee7]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving CDIT table memory at [mem 0x72507000-0x72507028]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x72502000-0x72506e25]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x72500000-0x7250159f]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x724fd000-0x724ff9af]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x724f9000-0x724f90d2]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x724f1000-0x724f8ec5]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving WSMT table memory at [mem 0x724fc000-0x724fc027]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving APIC table memory at [mem 0x724fb000-0x724fb0e7]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x724ee000-0x724f02ae]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving IVRS table memory at [mem 0x724fa000-0x724fa1a3]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x724ed000-0x724ed7d6]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x724eb000-0x724ec0a4]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x724e1000-0x724ea302]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x724db000-0x724e0021]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x724da000-0x724daa69]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x724d9000-0x724d908c]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x724d8000-0x724d8b4f]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x724d7000-0x724d7afc]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x724d6000-0x724d6719]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x724d5000-0x724d58dd]
Feb 27 20:56:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x724d3000-0x724d4470]
Feb 27 20:56:01 archlinux kernel: No NUMA configuration found
Feb 27 20:56:01 archlinux kernel: Faking a node at [mem 0x0000000000000000-0x000000045e2fffff]
Feb 27 20:56:01 archlinux kernel: NODE_DATA(0) allocated [mem 0x45e2d5280-0x45e2fffff]
Feb 27 20:56:01 archlinux kernel: Zone ranges:
Feb 27 20:56:01 archlinux kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
Feb 27 20:56:01 archlinux kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
Feb 27 20:56:01 archlinux kernel: Normal [mem 0x0000000100000000-0x000000045e2fffff]
Feb 27 20:56:01 archlinux kernel: Device empty
Feb 27 20:56:01 archlinux kernel: Movable zone start for each node
Feb 27 20:56:01 archlinux kernel: Early memory node ranges
Feb 27 20:56:01 archlinux kernel: node 0: [mem 0x0000000000001000-0x000000000009ffff]
Feb 27 20:56:01 archlinux kernel: node 0: [mem 0x0000000000100000-0x0000000009afefff]
Feb 27 20:56:01 archlinux kernel: node 0: [mem 0x000000000a000000-0x000000000a1fffff]
Feb 27 20:56:01 archlinux kernel: node 0: [mem 0x000000000a214000-0x000000006f95ffff]
Feb 27 20:56:01 archlinux kernel: node 0: [mem 0x0000000078bfe000-0x0000000078bfefff]
Feb 27 20:56:01 archlinux kernel: node 0: [mem 0x0000000078c00000-0x000000007affcfff]
Feb 27 20:56:01 archlinux kernel: node 0: [mem 0x0000000100000000-0x000000045e2fffff]
Feb 27 20:56:01 archlinux kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000045e2fffff]
Feb 27 20:56:01 archlinux kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Feb 27 20:56:01 archlinux kernel: On node 0, zone DMA: 96 pages in unavailable ranges
Feb 27 20:56:01 archlinux kernel: On node 0, zone DMA32: 1281 pages in unavailable ranges
Feb 27 20:56:01 archlinux kernel: On node 0, zone DMA32: 20 pages in unavailable ranges
Feb 27 20:56:01 archlinux kernel: On node 0, zone DMA32: 4766 pages in unavailable ranges
Feb 27 20:56:01 archlinux kernel: On node 0, zone DMA32: 1 pages in unavailable ranges
Feb 27 20:56:01 archlinux kernel: On node 0, zone Normal: 20483 pages in unavailable ranges
Feb 27 20:56:01 archlinux kernel: On node 0, zone Normal: 7424 pages in unavailable ranges
Feb 27 20:56:01 archlinux kernel: ACPI: PM-Timer IO Port: 0x808
Feb 27 20:56:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
Feb 27 20:56:01 archlinux kernel: IOAPIC[0]: apic_id 33, version 33, address 0xfec00000, GSI 0-23
Feb 27 20:56:01 archlinux kernel: IOAPIC[1]: apic_id 34, version 33, address 0xfec01000, GSI 24-55
Feb 27 20:56:01 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Feb 27 20:56:01 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 1 global_irq 1 low edge)
Feb 27 20:56:01 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
Feb 27 20:56:01 archlinux kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Feb 27 20:56:01 archlinux kernel: e820: update [mem 0x694aa000-0x694d8fff] usable ==> reserved
Feb 27 20:56:01 archlinux kernel: CPU topo: Max. logical packages: 1
Feb 27 20:56:01 archlinux kernel: CPU topo: Max. logical dies: 1
Feb 27 20:56:01 archlinux kernel: CPU topo: Max. dies per package: 1
Feb 27 20:56:01 archlinux kernel: CPU topo: Max. threads per core: 2
Feb 27 20:56:01 archlinux kernel: CPU topo: Num. cores per package: 8
Feb 27 20:56:01 archlinux kernel: CPU topo: Num. threads per package: 16
Feb 27 20:56:01 archlinux kernel: CPU topo: Allowing 16 present CPUs plus 0 hotplug CPUs
Feb 27 20:56:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Feb 27 20:56:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
Feb 27 20:56:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x09aff000-0x09ffffff]
Feb 27 20:56:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a213fff]
Feb 27 20:56:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x68eee000-0x68eeefff]
Feb 27 20:56:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x694aa000-0x694d8fff]
Feb 27 20:56:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x6f960000-0x78bfdfff]
Feb 27 20:56:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x78bff000-0x78bfffff]
Feb 27 20:56:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x7affd000-0xffffffff]
Feb 27 20:56:01 archlinux kernel: [mem 0x80000000-0xfedfffff] available for PCI devices
Feb 27 20:56:01 archlinux kernel: Booting paravirtualized kernel on bare hardware
Feb 27 20:56:01 archlinux kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
Feb 27 20:56:01 archlinux kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
Feb 27 20:56:01 archlinux kernel: percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
Feb 27 20:56:01 archlinux kernel: pcpu-alloc: s217088 r8192 d28672 u262144 alloc=1*2097152
Feb 27 20:56:01 archlinux kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15
Feb 27 20:56:01 archlinux kernel: Kernel command line: rd.luks.name=fc3cbc27-93b5-4758-a095-b932f012d4e8=root root=/dev/mapper/root rw rootfstype=ext4 rd.shell=0 rd.emergency=reboot
Feb 27 20:56:01 archlinux kernel: printk: log buffer data + meta data: 131072 + 458752 = 589824 bytes
Feb 27 20:56:01 archlinux kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
Feb 27 20:56:01 archlinux kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
Feb 27 20:56:01 archlinux kernel: software IO TLB: area num 16.
Feb 27 20:56:01 archlinux kernel: Fallback order for Node 0: 0
Feb 27 20:56:01 archlinux kernel: Built 1 zonelists, mobility grouping on. Total pages: 3996392
Feb 27 20:56:01 archlinux kernel: Policy zone: Normal
Feb 27 20:56:01 archlinux kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
Feb 27 20:56:01 archlinux kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
Feb 27 20:56:01 archlinux kernel: ftrace: allocating 57056 entries in 224 pages
Feb 27 20:56:01 archlinux kernel: ftrace: allocated 224 pages with 3 groups
Feb 27 20:56:01 archlinux kernel: Dynamic Preempt: full
Feb 27 20:56:01 archlinux kernel: rcu: Preemptible hierarchical RCU implementation.
Feb 27 20:56:01 archlinux kernel: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=16.
Feb 27 20:56:01 archlinux kernel: rcu: RCU priority boosting: priority 1 delay 500 ms.
Feb 27 20:56:01 archlinux kernel: Trampoline variant of Tasks RCU enabled.
Feb 27 20:56:01 archlinux kernel: Rude variant of Tasks RCU enabled.
Feb 27 20:56:01 archlinux kernel: Tracing variant of Tasks RCU enabled.
Feb 27 20:56:01 archlinux kernel: rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
Feb 27 20:56:01 archlinux kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
Feb 27 20:56:01 archlinux kernel: RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
Feb 27 20:56:01 archlinux kernel: RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
Feb 27 20:56:01 archlinux kernel: RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
Feb 27 20:56:01 archlinux kernel: NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
Feb 27 20:56:01 archlinux kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
Feb 27 20:56:01 archlinux kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
Feb 27 20:56:01 archlinux kernel: Console: colour dummy device 80x25
Feb 27 20:56:01 archlinux kernel: printk: legacy console [tty0] enabled
Feb 27 20:56:01 archlinux kernel: ACPI: Core revision 20250807
Feb 27 20:56:01 archlinux kernel: APIC: Switch to symmetric I/O mode setup
Feb 27 20:56:01 archlinux kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR0, rdevid:0xa0
Feb 27 20:56:01 archlinux kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR1, rdevid:0xa0
Feb 27 20:56:01 archlinux kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR2, rdevid:0xa0
Feb 27 20:56:01 archlinux kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR3, rdevid:0xa0
Feb 27 20:56:01 archlinux kernel: AMD-Vi: Using global IVHD EFR:0x246577efa2254afa, EFR2:0x0
Feb 27 20:56:01 archlinux kernel: x2apic: IRQ remapping doesn't support X2APIC mode
Feb 27 20:56:01 archlinux kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Feb 27 20:56:01 archlinux kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2e0a011a876, max_idle_ns: 440795241200 ns
Feb 27 20:56:01 archlinux kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6387.92 BogoMIPS (lpj=3193961)
Feb 27 20:56:01 archlinux kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
Feb 27 20:56:01 archlinux kernel: LVT offset 1 assigned for vector 0xf9
Feb 27 20:56:01 archlinux kernel: LVT offset 2 assigned for vector 0xf4
Feb 27 20:56:01 archlinux kernel: Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
Feb 27 20:56:01 archlinux kernel: Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
Feb 27 20:56:01 archlinux kernel: process: using mwait in idle threads
Feb 27 20:56:01 archlinux kernel: mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
Feb 27 20:56:01 archlinux kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
Feb 27 20:56:01 archlinux kernel: Transient Scheduler Attacks: Mitigation: Clear CPU buffers
Feb 27 20:56:01 archlinux kernel: Spectre V2 : Mitigation: Retpolines
Feb 27 20:56:01 archlinux kernel: Spectre V2 : User space: Mitigation: STIBP always-on protection
Feb 27 20:56:01 archlinux kernel: Speculative Return Stack Overflow: Mitigation: Safe RET
Feb 27 20:56:01 archlinux kernel: VMSCAPE: Mitigation: IBPB before exit to userspace
Feb 27 20:56:01 archlinux kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Feb 27 20:56:01 archlinux kernel: Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
Feb 27 20:56:01 archlinux kernel: Spectre V2 : Enabling Restricted Speculation for firmware calls
Feb 27 20:56:01 archlinux kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Feb 27 20:56:01 archlinux kernel: active return thunk: srso_alias_return_thunk
Feb 27 20:56:01 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Feb 27 20:56:01 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Feb 27 20:56:01 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Feb 27 20:56:01 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
Feb 27 20:56:01 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
Feb 27 20:56:01 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x1000: 'Control-flow Kernel registers (KVM only)'
Feb 27 20:56:01 archlinux kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
Feb 27 20:56:01 archlinux kernel: x86/fpu: xstate_offset[9]: 832, xstate_sizes[9]: 8
Feb 27 20:56:01 archlinux kernel: x86/fpu: xstate_offset[11]: 840, xstate_sizes[11]: 16
Feb 27 20:56:01 archlinux kernel: x86/fpu: xstate_offset[12]: 856, xstate_sizes[12]: 24
Feb 27 20:56:01 archlinux kernel: x86/fpu: Enabled xstate features 0x1a07, context size is 880 bytes, using 'compacted' format.
Feb 27 20:56:01 archlinux kernel: Freeing SMP alternatives memory: 56K
Feb 27 20:56:01 archlinux kernel: pid_max: default: 32768 minimum: 301
Feb 27 20:56:01 archlinux kernel: LSM: initializing lsm=capability,landlock,lockdown,yama,bpf
Feb 27 20:56:01 archlinux kernel: landlock: Up and running.
Feb 27 20:56:01 archlinux kernel: Yama: becoming mindful.
Feb 27 20:56:01 archlinux kernel: LSM support for eBPF active
Feb 27 20:56:01 archlinux kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
Feb 27 20:56:01 archlinux kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
Feb 27 20:56:01 archlinux kernel: smpboot: CPU0: AMD Ryzen 7 7735HS with Radeon Graphics (family: 0x19, model: 0x44, stepping: 0x1)
Feb 27 20:56:01 archlinux kernel: Performance Events: Fam17h+ core perfctr, AMD PMU driver.
Feb 27 20:56:01 archlinux kernel: ... version: 0
Feb 27 20:56:01 archlinux kernel: ... bit width: 48
Feb 27 20:56:01 archlinux kernel: ... generic counters: 6
Feb 27 20:56:01 archlinux kernel: ... generic bitmap: 000000000000003f
Feb 27 20:56:01 archlinux kernel: ... fixed-purpose counters: 0
Feb 27 20:56:01 archlinux kernel: ... fixed-purpose bitmap: 0000000000000000
Feb 27 20:56:01 archlinux kernel: ... value mask: 0000ffffffffffff
Feb 27 20:56:01 archlinux kernel: ... max period: 00007fffffffffff
Feb 27 20:56:01 archlinux kernel: ... global_ctrl mask: 000000000000003f
Feb 27 20:56:01 archlinux kernel: signal: max sigframe size: 3376
Feb 27 20:56:01 archlinux kernel: rcu: Hierarchical SRCU implementation.
Feb 27 20:56:01 archlinux kernel: rcu: Max phase no-delay instances is 400.
Feb 27 20:56:01 archlinux kernel: Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
Feb 27 20:56:01 archlinux kernel: MCE: In-kernel MCE decoding enabled.
Feb 27 20:56:01 archlinux kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Feb 27 20:56:01 archlinux kernel: smp: Bringing up secondary CPUs ...
Feb 27 20:56:01 archlinux kernel: smpboot: x86: Booting SMP configuration:
Feb 27 20:56:01 archlinux kernel: .... node #0, CPUs: #2 #4 #6 #8 #10 #12 #14 #1 #3 #5 #7 #9 #11 #13 #15
Feb 27 20:56:01 archlinux kernel: Spectre V2 : Update user space SMT mitigation: STIBP always-on
Feb 27 20:56:01 archlinux kernel: smp: Brought up 1 node, 16 CPUs
Feb 27 20:56:01 archlinux kernel: smpboot: Total of 16 processors activated (102206.75 BogoMIPS)
Feb 27 20:56:01 archlinux kernel: Memory: 15400624K/15985568K available (20315K kernel code, 2939K rwdata, 16372K rodata, 4732K init, 4776K bss, 562140K reserved, 0K cma-reserved)
Feb 27 20:56:01 archlinux kernel: devtmpfs: initialized
Feb 27 20:56:01 archlinux kernel: x86/mm: Memory block size: 128MB
Feb 27 20:56:01 archlinux kernel: ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a213fff] (81920 bytes)
Feb 27 20:56:01 archlinux kernel: ACPI: PM: Registering ACPI NVS region [mem 0x72539000-0x7786dfff] (87248896 bytes)
Feb 27 20:56:01 archlinux kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
Feb 27 20:56:01 archlinux kernel: posixtimers hash table entries: 8192 (order: 5, 131072 bytes, linear)
Feb 27 20:56:01 archlinux kernel: futex hash table entries: 4096 (262144 bytes on 1 NUMA nodes, total 256 KiB, linear).
Feb 27 20:56:01 archlinux kernel: pinctrl core: initialized pinctrl subsystem
Feb 27 20:56:01 archlinux kernel: PM: RTC time: 15:26:01, date: 2026-02-27
Feb 27 20:56:01 archlinux kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Feb 27 20:56:01 archlinux kernel: DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
Feb 27 20:56:01 archlinux kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Feb 27 20:56:01 archlinux kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Feb 27 20:56:01 archlinux kernel: audit: initializing netlink subsys (disabled)
Feb 27 20:56:01 archlinux kernel: audit: type=2000 audit(1772205961.166:1): state=initialized audit_enabled=0 res=1
Feb 27 20:56:01 archlinux kernel: thermal_sys: Registered thermal governor 'fair_share'
Feb 27 20:56:01 archlinux kernel: thermal_sys: Registered thermal governor 'bang_bang'
Feb 27 20:56:01 archlinux kernel: thermal_sys: Registered thermal governor 'step_wise'
Feb 27 20:56:01 archlinux kernel: thermal_sys: Registered thermal governor 'user_space'
Feb 27 20:56:01 archlinux kernel: thermal_sys: Registered thermal governor 'power_allocator'
Feb 27 20:56:01 archlinux kernel: cpuidle: using governor ladder
Feb 27 20:56:01 archlinux kernel: cpuidle: using governor menu
Feb 27 20:56:01 archlinux kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Feb 27 20:56:01 archlinux kernel: PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
Feb 27 20:56:01 archlinux kernel: PCI: Using configuration type 1 for base access
Feb 27 20:56:01 archlinux kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
Feb 27 20:56:01 archlinux kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
Feb 27 20:56:01 archlinux kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
Feb 27 20:56:01 archlinux kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
Feb 27 20:56:01 archlinux kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
Feb 27 20:56:01 archlinux kernel: raid6: skipped pq benchmark and selected avx2x4
Feb 27 20:56:01 archlinux kernel: raid6: using avx2x2 recovery algorithm
Feb 27 20:56:01 archlinux kernel: ACPI: Added _OSI(Module Device)
Feb 27 20:56:01 archlinux kernel: ACPI: Added _OSI(Processor Device)
Feb 27 20:56:01 archlinux kernel: ACPI: Added _OSI(Processor Aggregator Device)
Feb 27 20:56:01 archlinux kernel: ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.GPP2.WWAN], AE_NOT_FOUND (20250807/dswload2-162)
Feb 27 20:56:01 archlinux kernel: fbcon: Taking over console
Feb 27 20:56:01 archlinux kernel: ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20250807/psobject-220)
Feb 27 20:56:01 archlinux kernel: ACPI: Skipping parse of AML opcode: Scope (0x0010)
Feb 27 20:56:01 archlinux kernel: ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.GPP2.WWAN], AE_NOT_FOUND (20250807/dswload2-162)
Feb 27 20:56:01 archlinux kernel: ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20250807/psobject-220)
Feb 27 20:56:01 archlinux kernel: ACPI: Skipping parse of AML opcode: Scope (0x0010)
Feb 27 20:56:01 archlinux kernel: ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.GPP5.RTL8], AE_NOT_FOUND (20250807/dswload2-162)
Feb 27 20:56:01 archlinux kernel: ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20250807/psobject-220)
Feb 27 20:56:01 archlinux kernel: ACPI: Skipping parse of AML opcode: Scope (0x0010)
Feb 27 20:56:01 archlinux kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.GPP6.WLAN._S0W], AE_ALREADY_EXISTS (20250807/dswload2-326)
Feb 27 20:56:01 archlinux kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20250807/psobject-220)
Feb 27 20:56:01 archlinux kernel: ACPI: Skipping parse of AML opcode: Method (0x0014)
Feb 27 20:56:01 archlinux kernel: ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.GPP7.DEV0], AE_NOT_FOUND (20250807/dswload2-162)
Feb 27 20:56:01 archlinux kernel: ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20250807/psobject-220)
Feb 27 20:56:01 archlinux kernel: ACPI: Skipping parse of AML opcode: Scope (0x0010)
Feb 27 20:56:01 archlinux kernel: ACPI: 21 ACPI AML tables successfully acquired and loaded
Feb 27 20:56:01 archlinux kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Feb 27 20:56:01 archlinux kernel: ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
Feb 27 20:56:01 archlinux kernel: ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
Feb 27 20:56:01 archlinux kernel: ACPI: EC: EC started
Feb 27 20:56:01 archlinux kernel: ACPI: EC: interrupt blocked
Feb 27 20:56:01 archlinux kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: Boot DSDT EC used to handle transactions
Feb 27 20:56:01 archlinux kernel: ACPI: Interpreter enabled
Feb 27 20:56:01 archlinux kernel: ACPI: PM: (supports S0 S4 S5)
Feb 27 20:56:01 archlinux kernel: ACPI: Using IOAPIC for interrupt routing
Feb 27 20:56:01 archlinux kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Feb 27 20:56:01 archlinux kernel: PCI: Ignoring E820 reservations for host bridge windows
Feb 27 20:56:01 archlinux kernel: ACPI: Enabled 2 GPEs in block 00 to 1F
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GPP2.P0WW: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GPP0.PG00: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GPP6.WLAN.WRST: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GPP8.P0NV: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GP11.PWRS: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GP11: Overriding _PRW sleep state (S4) by S0 from power resources
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GP11.SWUS.PWRS: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GP12.PWRS: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GP12: Overriding _PRW sleep state (S4) by S0 from power resources
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GP12.SWUS.PWRS: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GP17.PWRS: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GP17.VGA_.PWRS: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GP17.HDAU.PWRS: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GP17.ACP_.PWRS: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GP17.AZAL.PWRS: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GP17.XHC0.PWRS: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GP17.XHC1.PWRS: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.DBTP: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GP17.XHC1.RHUB.PRT3.BTRT: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GP18.SATA.P0S0: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GP18.SATA.P3S0: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GP19.XHC2.PWRS: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GP19.XHC3.PWRS: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GP19.XHC4.PWRS: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GP19.NHI0.PWRS: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GP19.NHI0: Overriding _PRW sleep state (S3) by S0 from power resources
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GP19.NHI1.PWRS: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.GP19.NHI1: Overriding _PRW sleep state (S4) by S0 from power resources
Feb 27 20:56:01 archlinux kernel: ACPI: \_TZ_.QFAN: New power resource
Feb 27 20:56:01 archlinux kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Feb 27 20:56:01 archlinux kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Feb 27 20:56:01 archlinux kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
Feb 27 20:56:01 archlinux kernel: PCI host bridge to bus 0000:00
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x03af window]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x80000000-0xdfffffff window]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x480000000-0x7fffffffff window]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:00.0: [1022:14b5] type 00 class 0x060000 conventional PCI endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:00:00.2: [1022:14b6] type 00 class 0x080600 conventional PCI endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:00:01.0: [1022:14b7] type 00 class 0x060000 conventional PCI endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:00:01.1: [1022:14b8] type 01 class 0x060400 PCIe Root Port
Feb 27 20:56:01 archlinux kernel: pci 0000:00:01.1: PCI bridge to [bus 01]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:01.1: bridge window [io 0xf000-0xffff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:01.1: bridge window [mem 0xdc000000-0xdd0fffff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:01.1: bridge window [mem 0x7c00000000-0x7e01ffffff 64bit pref]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.0: [1022:14b7] type 00 class 0x060000 conventional PCI endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.1: [1022:14ba] type 01 class 0x060400 PCIe Root Port
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.1: PCI bridge to [bus 02]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.1: bridge window [io 0xe000-0xefff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.1: bridge window [mem 0xddc00000-0xddcfffff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.1: enabling Extended Tags
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.1: PME# supported from D0 D3hot D3cold
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.2: [1022:14ba] type 01 class 0x060400 PCIe Root Port
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.2: PCI bridge to [bus 03]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.2: bridge window [io 0xd000-0xdfff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.2: bridge window [mem 0xddb00000-0xddbfffff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.2: enabling Extended Tags
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.4: [1022:14ba] type 01 class 0x060400 PCIe Root Port
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.4: PCI bridge to [bus 04]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.4: bridge window [mem 0xdda00000-0xddafffff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.4: enabling Extended Tags
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.4: PME# supported from D0 D3hot D3cold
Feb 27 20:56:01 archlinux kernel: pci 0000:00:03.0: [1022:14b7] type 00 class 0x060000 conventional PCI endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:00:03.1: [1022:14cd] type 01 class 0x060400 PCIe Root Port
Feb 27 20:56:01 archlinux kernel: pci 0000:00:03.1: PCI bridge to [bus 05-34]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:03.1: bridge window [io 0xa000-0xbfff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:03.1: bridge window [mem 0xc4000000-0xdbffffff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:03.1: bridge window [mem 0x7e10000000-0x7e37ffffff 64bit pref]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:03.1: enabling Extended Tags
Feb 27 20:56:01 archlinux kernel: pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
Feb 27 20:56:01 archlinux kernel: pci 0000:00:04.0: [1022:14b7] type 00 class 0x060000 conventional PCI endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.0: [1022:14b7] type 00 class 0x060000 conventional PCI endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.1: [1022:14b9] type 01 class 0x060400 PCIe Root Port
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.1: PCI bridge to [bus 35]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.1: bridge window [io 0xc000-0xcfff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.1: bridge window [mem 0xdd600000-0xdd9fffff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.1: bridge window [mem 0x7e40000000-0x7e501fffff 64bit pref]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.1: enabling Extended Tags
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.3: [1022:14b9] type 01 class 0x060400 PCIe Root Port
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.3: PCI bridge to [bus 36]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.3: bridge window [mem 0xdd200000-0xdd5fffff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.3: enabling Extended Tags
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.3: PME# supported from D0 D3hot D3cold
Feb 27 20:56:01 archlinux kernel: pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:00:18.0: [1022:1679] type 00 class 0x060000 conventional PCI endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:00:18.1: [1022:167a] type 00 class 0x060000 conventional PCI endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:00:18.2: [1022:167b] type 00 class 0x060000 conventional PCI endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:00:18.3: [1022:167c] type 00 class 0x060000 conventional PCI endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:00:18.4: [1022:167d] type 00 class 0x060000 conventional PCI endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:00:18.5: [1022:167e] type 00 class 0x060000 conventional PCI endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:00:18.6: [1022:167f] type 00 class 0x060000 conventional PCI endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:00:18.7: [1022:1680] type 00 class 0x060000 conventional PCI endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:01:00.0: [10de:28e1] type 00 class 0x030000 PCIe Legacy Endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:01:00.0: BAR 0 [mem 0xdc000000-0xdcffffff]
Feb 27 20:56:01 archlinux kernel: pci 0000:01:00.0: BAR 1 [mem 0x7c00000000-0x7dffffffff 64bit pref]
Feb 27 20:56:01 archlinux kernel: pci 0000:01:00.0: BAR 3 [mem 0x7e00000000-0x7e01ffffff 64bit pref]
Feb 27 20:56:01 archlinux kernel: pci 0000:01:00.0: BAR 5 [io 0xf000-0xf07f]
Feb 27 20:56:01 archlinux kernel: pci 0000:01:00.0: ROM [mem 0xdd000000-0xdd07ffff pref]
Feb 27 20:56:01 archlinux kernel: pci 0000:01:00.0: PME# supported from D0 D3hot
Feb 27 20:56:01 archlinux kernel: pci 0000:01:00.1: [10de:22be] type 00 class 0x040300 PCIe Endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:01:00.1: BAR 0 [mem 0xdd080000-0xdd083fff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:01.1: PCI bridge to [bus 01]
Feb 27 20:56:01 archlinux kernel: pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000 PCIe Endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:02:00.0: BAR 0 [io 0xe000-0xe0ff]
Feb 27 20:56:01 archlinux kernel: pci 0000:02:00.0: BAR 2 [mem 0xddc04000-0xddc04fff 64bit]
Feb 27 20:56:01 archlinux kernel: pci 0000:02:00.0: BAR 4 [mem 0xddc00000-0xddc03fff 64bit]
Feb 27 20:56:01 archlinux kernel: pci 0000:02:00.0: supports D1 D2
Feb 27 20:56:01 archlinux kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.1: PCI bridge to [bus 02]
Feb 27 20:56:01 archlinux kernel: pci 0000:03:00.0: [10ec:b852] type 00 class 0x028000 PCIe Endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:03:00.0: BAR 0 [io 0xd000-0xd0ff]
Feb 27 20:56:01 archlinux kernel: pci 0000:03:00.0: BAR 2 [mem 0xddb00000-0xddbfffff 64bit]
Feb 27 20:56:01 archlinux kernel: pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.2: PCI bridge to [bus 03]
Feb 27 20:56:01 archlinux kernel: pci 0000:04:00.0: [1344:5413] type 00 class 0x010802 PCIe Endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:04:00.0: BAR 0 [mem 0xdda00000-0xdda03fff 64bit]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.4: PCI bridge to [bus 04]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:03.1: PCI bridge to [bus 05-34]
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.0: [1002:1681] type 00 class 0x030000 PCIe Legacy Endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.0: BAR 0 [mem 0x7e40000000-0x7e4fffffff 64bit pref]
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.0: BAR 2 [mem 0x7e50000000-0x7e501fffff 64bit pref]
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.0: BAR 4 [io 0xc000-0xc0ff]
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.0: BAR 5 [mem 0xdd900000-0xdd97ffff]
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.0: enabling Extended Tags
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.0: PME# supported from D1 D2 D3hot D3cold
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.1: [1002:1640] type 00 class 0x040300 PCIe Legacy Endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.1: BAR 0 [mem 0xdd9c8000-0xdd9cbfff]
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.1: enabling Extended Tags
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.1: PME# supported from D1 D2 D3hot D3cold
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.2: [1022:1649] type 00 class 0x108000 PCIe Endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.2: BAR 2 [mem 0xdd800000-0xdd8fffff]
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.2: BAR 5 [mem 0xdd9cc000-0xdd9cdfff]
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.2: enabling Extended Tags
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.3: [1022:161d] type 00 class 0x0c0330 PCIe Endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.3: BAR 0 [mem 0xdd700000-0xdd7fffff 64bit]
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.3: enabling Extended Tags
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.3: PME# supported from D0 D3hot D3cold
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.4: [1022:161e] type 00 class 0x0c0330 PCIe Endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.4: BAR 0 [mem 0xdd600000-0xdd6fffff 64bit]
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.4: enabling Extended Tags
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.4: PME# supported from D0 D3hot D3cold
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.5: [1022:15e2] type 00 class 0x048000 PCIe Endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.5: BAR 0 [mem 0xdd980000-0xdd9bffff]
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.5: enabling Extended Tags
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.5: PME# supported from D0 D3hot D3cold
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.6: [1022:15e3] type 00 class 0x040300 PCIe Endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.6: BAR 0 [mem 0xdd9c0000-0xdd9c7fff]
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.6: enabling Extended Tags
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.6: PME# supported from D0 D3hot D3cold
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.1: PCI bridge to [bus 35]
Feb 27 20:56:01 archlinux kernel: pci 0000:36:00.0: [1022:161f] type 00 class 0x0c0330 PCIe Endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:36:00.0: BAR 0 [mem 0xdd400000-0xdd4fffff 64bit]
Feb 27 20:56:01 archlinux kernel: pci 0000:36:00.0: enabling Extended Tags
Feb 27 20:56:01 archlinux kernel: pci 0000:36:00.0: PME# supported from D0 D3hot D3cold
Feb 27 20:56:01 archlinux kernel: pci 0000:36:00.3: [1022:15d6] type 00 class 0x0c0330 PCIe Endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:36:00.3: BAR 0 [mem 0xdd300000-0xdd3fffff 64bit]
Feb 27 20:56:01 archlinux kernel: pci 0000:36:00.3: enabling Extended Tags
Feb 27 20:56:01 archlinux kernel: pci 0000:36:00.3: PME# supported from D0 D3hot D3cold
Feb 27 20:56:01 archlinux kernel: pci 0000:36:00.4: [1022:15d7] type 00 class 0x0c0330 PCIe Endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:36:00.4: BAR 0 [mem 0xdd200000-0xdd2fffff 64bit]
Feb 27 20:56:01 archlinux kernel: pci 0000:36:00.4: enabling Extended Tags
Feb 27 20:56:01 archlinux kernel: pci 0000:36:00.4: PME# supported from D0 D3hot D3cold
Feb 27 20:56:01 archlinux kernel: pci 0000:36:00.5: [1022:162e] type 00 class 0x0c0340 PCIe Endpoint
Feb 27 20:56:01 archlinux kernel: pci 0000:36:00.5: BAR 0 [mem 0xdd500000-0xdd57ffff 64bit]
Feb 27 20:56:01 archlinux kernel: pci 0000:36:00.5: enabling Extended Tags
Feb 27 20:56:01 archlinux kernel: pci 0000:36:00.5: PME# supported from D0 D3hot D3cold
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.3: PCI bridge to [bus 36]
Feb 27 20:56:01 archlinux kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 0
Feb 27 20:56:01 archlinux kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 0
Feb 27 20:56:01 archlinux kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 0
Feb 27 20:56:01 archlinux kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 0
Feb 27 20:56:01 archlinux kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
Feb 27 20:56:01 archlinux kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 0
Feb 27 20:56:01 archlinux kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
Feb 27 20:56:01 archlinux kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 0
Feb 27 20:56:01 archlinux kernel: Low-power S0 idle used by default for system suspend
Feb 27 20:56:01 archlinux kernel: ACPI: EC: interrupt unblocked
Feb 27 20:56:01 archlinux kernel: ACPI: EC: event unblocked
Feb 27 20:56:01 archlinux kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Feb 27 20:56:01 archlinux kernel: ACPI: EC: GPE=0x4
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: Boot DSDT EC initialization complete
Feb 27 20:56:01 archlinux kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: EC: Used to handle transactions and events
Feb 27 20:56:01 archlinux kernel: iommu: Default domain type: Translated
Feb 27 20:56:01 archlinux kernel: iommu: DMA domain TLB invalidation policy: lazy mode
Feb 27 20:56:01 archlinux kernel: SCSI subsystem initialized
Feb 27 20:56:01 archlinux kernel: libata version 3.00 loaded.
Feb 27 20:56:01 archlinux kernel: ACPI: bus type USB registered
Feb 27 20:56:01 archlinux kernel: usbcore: registered new interface driver usbfs
Feb 27 20:56:01 archlinux kernel: usbcore: registered new interface driver hub
Feb 27 20:56:01 archlinux kernel: usbcore: registered new device driver usb
Feb 27 20:56:01 archlinux kernel: EDAC MC: Ver: 3.0.0
Feb 27 20:56:01 archlinux kernel: efivars: Registered efivars operations
Feb 27 20:56:01 archlinux kernel: NetLabel: Initializing
Feb 27 20:56:01 archlinux kernel: NetLabel: domain hash size = 128
Feb 27 20:56:01 archlinux kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
Feb 27 20:56:01 archlinux kernel: NetLabel: unlabeled traffic allowed by default
Feb 27 20:56:01 archlinux kernel: mctp: management component transport protocol core
Feb 27 20:56:01 archlinux kernel: NET: Registered PF_MCTP protocol family
Feb 27 20:56:01 archlinux kernel: PCI: Using ACPI for IRQ routing
Feb 27 20:56:01 archlinux kernel: PCI: pci_cache_line_size set to 64 bytes
Feb 27 20:56:01 archlinux kernel: e820: reserve RAM buffer [mem 0x09aff000-0x0bffffff]
Feb 27 20:56:01 archlinux kernel: e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
Feb 27 20:56:01 archlinux kernel: e820: reserve RAM buffer [mem 0x68eee000-0x6bffffff]
Feb 27 20:56:01 archlinux kernel: e820: reserve RAM buffer [mem 0x694aa000-0x6bffffff]
Feb 27 20:56:01 archlinux kernel: e820: reserve RAM buffer [mem 0x6f960000-0x6fffffff]
Feb 27 20:56:01 archlinux kernel: e820: reserve RAM buffer [mem 0x78bff000-0x7bffffff]
Feb 27 20:56:01 archlinux kernel: e820: reserve RAM buffer [mem 0x7affd000-0x7bffffff]
Feb 27 20:56:01 archlinux kernel: e820: reserve RAM buffer [mem 0x45e300000-0x45fffffff]
Feb 27 20:56:01 archlinux kernel: pci 0000:01:00.0: vgaarb: bridge control possible
Feb 27 20:56:01 archlinux kernel: pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.0: vgaarb: setting as boot VGA device
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.0: vgaarb: bridge control possible
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
Feb 27 20:56:01 archlinux kernel: vgaarb: loaded
Feb 27 20:56:01 archlinux kernel: clocksource: Switched to clocksource tsc-early
Feb 27 20:56:01 archlinux kernel: VFS: Disk quotas dquot_6.6.0
Feb 27 20:56:01 archlinux kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Feb 27 20:56:01 archlinux kernel: pnp: PnP ACPI init
Feb 27 20:56:01 archlinux kernel: system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
Feb 27 20:56:01 archlinux kernel: ACPI: IRQ 1 override to edge, low(!)
Feb 27 20:56:01 archlinux kernel: system 00:03: [io 0x04d0-0x04d1] has been reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [io 0x040b] has been reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [io 0x04d6] has been reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [io 0x0c00-0x0c01] has been reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [io 0x0c14] has been reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [io 0x0c50-0x0c51] has been reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [io 0x0c52] has been reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [io 0x0c6c] has been reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [io 0x0c6f] has been reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [io 0x0cd0-0x0cd1] has been reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [io 0x0cd2-0x0cd3] has been reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [io 0x0cd4-0x0cd5] has been reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [io 0x0cd6-0x0cd7] has been reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [io 0x0cd8-0x0cdf] has been reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [io 0x0800-0x089f] has been reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [io 0x0b00-0x0b0f] has been reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [io 0x0b20-0x0b3f] has been reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [io 0x0900-0x090f] has been reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [io 0x0910-0x091f] has been reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [mem 0xfec00000-0xfec00fff] could not be reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [mem 0xfec01000-0xfec01fff] could not be reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [mem 0xfedc0000-0xfedc0fff] has been reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [mem 0xfee00000-0xfee00fff] has been reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [mem 0xfed80000-0xfed8ffff] could not be reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [mem 0xfec10000-0xfec10fff] has been reserved
Feb 27 20:56:01 archlinux kernel: system 00:03: [mem 0xff000000-0xffffffff] has been reserved
Feb 27 20:56:01 archlinux kernel: pnp: PnP ACPI: found 4 devices
Feb 27 20:56:01 archlinux kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Feb 27 20:56:01 archlinux kernel: NET: Registered PF_INET protocol family
Feb 27 20:56:01 archlinux kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Feb 27 20:56:01 archlinux kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
Feb 27 20:56:01 archlinux kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
Feb 27 20:56:01 archlinux kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Feb 27 20:56:01 archlinux kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
Feb 27 20:56:01 archlinux kernel: TCP: Hash tables configured (established 131072 bind 65536)
Feb 27 20:56:01 archlinux kernel: MPTCP token hash table entries: 16384 (order: 7, 393216 bytes, linear)
Feb 27 20:56:01 archlinux kernel: UDP hash table entries: 8192 (order: 7, 524288 bytes, linear)
Feb 27 20:56:01 archlinux kernel: UDP-Lite hash table entries: 8192 (order: 7, 524288 bytes, linear)
Feb 27 20:56:01 archlinux kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Feb 27 20:56:01 archlinux kernel: NET: Registered PF_XDP protocol family
Feb 27 20:56:01 archlinux kernel: pci 0000:00:01.1: PCI bridge to [bus 01]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:01.1: bridge window [io 0xf000-0xffff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:01.1: bridge window [mem 0xdc000000-0xdd0fffff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:01.1: bridge window [mem 0x7c00000000-0x7e01ffffff 64bit pref]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.1: PCI bridge to [bus 02]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.1: bridge window [io 0xe000-0xefff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.1: bridge window [mem 0xddc00000-0xddcfffff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.2: PCI bridge to [bus 03]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.2: bridge window [io 0xd000-0xdfff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.2: bridge window [mem 0xddb00000-0xddbfffff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.4: PCI bridge to [bus 04]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.4: bridge window [mem 0xdda00000-0xddafffff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:03.1: PCI bridge to [bus 05-34]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:03.1: bridge window [io 0xa000-0xbfff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:03.1: bridge window [mem 0xc4000000-0xdbffffff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:03.1: bridge window [mem 0x7e10000000-0x7e37ffffff 64bit pref]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.1: PCI bridge to [bus 35]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.1: bridge window [io 0xc000-0xcfff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.1: bridge window [mem 0xdd600000-0xdd9fffff]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.1: bridge window [mem 0x7e40000000-0x7e501fffff 64bit pref]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.3: PCI bridge to [bus 36]
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.3: bridge window [mem 0xdd200000-0xdd5fffff]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x03af window]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:00: resource 9 [mem 0x80000000-0xdfffffff window]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:00: resource 10 [mem 0x480000000-0x7fffffffff window]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:01: resource 0 [io 0xf000-0xffff]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:01: resource 1 [mem 0xdc000000-0xdd0fffff]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:01: resource 2 [mem 0x7c00000000-0x7e01ffffff 64bit pref]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:02: resource 0 [io 0xe000-0xefff]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:02: resource 1 [mem 0xddc00000-0xddcfffff]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:03: resource 0 [io 0xd000-0xdfff]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:03: resource 1 [mem 0xddb00000-0xddbfffff]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:04: resource 1 [mem 0xdda00000-0xddafffff]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:05: resource 0 [io 0xa000-0xbfff]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:05: resource 1 [mem 0xc4000000-0xdbffffff]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:05: resource 2 [mem 0x7e10000000-0x7e37ffffff 64bit pref]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:35: resource 0 [io 0xc000-0xcfff]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:35: resource 1 [mem 0xdd600000-0xdd9fffff]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:35: resource 2 [mem 0x7e40000000-0x7e501fffff 64bit pref]
Feb 27 20:56:01 archlinux kernel: pci_bus 0000:36: resource 1 [mem 0xdd200000-0xdd5fffff]
Feb 27 20:56:01 archlinux kernel: pci 0000:01:00.1: extending delay after power-on from D3hot to 20 msec
Feb 27 20:56:01 archlinux kernel: pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.1: D0 power state depends on 0000:35:00.0
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.1: can't derive routing for PCI INT A
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.1: PCI INT A: not connected
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.3: can't derive routing for PCI INT A
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.3: PCI INT A: not connected
Feb 27 20:56:01 archlinux kernel: PCI: CLS 64 bytes, default 64
Feb 27 20:56:01 archlinux kernel: pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
Feb 27 20:56:01 archlinux kernel: Trying to unpack rootfs image as initramfs...
Feb 27 20:56:01 archlinux kernel: pci 0000:00:01.0: Adding to iommu group 0
Feb 27 20:56:01 archlinux kernel: pci 0000:00:01.1: Adding to iommu group 1
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.0: Adding to iommu group 2
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.1: Adding to iommu group 3
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.2: Adding to iommu group 4
Feb 27 20:56:01 archlinux kernel: pci 0000:00:02.4: Adding to iommu group 5
Feb 27 20:56:01 archlinux kernel: pci 0000:00:03.0: Adding to iommu group 6
Feb 27 20:56:01 archlinux kernel: pci 0000:00:03.1: Adding to iommu group 6
Feb 27 20:56:01 archlinux kernel: pci 0000:00:04.0: Adding to iommu group 7
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.0: Adding to iommu group 8
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.1: Adding to iommu group 9
Feb 27 20:56:01 archlinux kernel: pci 0000:00:08.3: Adding to iommu group 10
Feb 27 20:56:01 archlinux kernel: pci 0000:00:14.0: Adding to iommu group 11
Feb 27 20:56:01 archlinux kernel: pci 0000:00:14.3: Adding to iommu group 11
Feb 27 20:56:01 archlinux kernel: pci 0000:00:18.0: Adding to iommu group 12
Feb 27 20:56:01 archlinux kernel: pci 0000:00:18.1: Adding to iommu group 12
Feb 27 20:56:01 archlinux kernel: pci 0000:00:18.2: Adding to iommu group 12
Feb 27 20:56:01 archlinux kernel: pci 0000:00:18.3: Adding to iommu group 12
Feb 27 20:56:01 archlinux kernel: pci 0000:00:18.4: Adding to iommu group 12
Feb 27 20:56:01 archlinux kernel: pci 0000:00:18.5: Adding to iommu group 12
Feb 27 20:56:01 archlinux kernel: pci 0000:00:18.6: Adding to iommu group 12
Feb 27 20:56:01 archlinux kernel: pci 0000:00:18.7: Adding to iommu group 12
Feb 27 20:56:01 archlinux kernel: pci 0000:01:00.0: Adding to iommu group 13
Feb 27 20:56:01 archlinux kernel: pci 0000:01:00.1: Adding to iommu group 13
Feb 27 20:56:01 archlinux kernel: pci 0000:02:00.0: Adding to iommu group 14
Feb 27 20:56:01 archlinux kernel: pci 0000:03:00.0: Adding to iommu group 15
Feb 27 20:56:01 archlinux kernel: pci 0000:04:00.0: Adding to iommu group 16
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.0: Adding to iommu group 17
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.1: Adding to iommu group 18
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.2: Adding to iommu group 19
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.3: Adding to iommu group 20
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.4: Adding to iommu group 21
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.5: Adding to iommu group 22
Feb 27 20:56:01 archlinux kernel: pci 0000:35:00.6: Adding to iommu group 23
Feb 27 20:56:01 archlinux kernel: pci 0000:36:00.0: Adding to iommu group 24
Feb 27 20:56:01 archlinux kernel: pci 0000:36:00.3: Adding to iommu group 25
Feb 27 20:56:01 archlinux kernel: pci 0000:36:00.4: Adding to iommu group 26
Feb 27 20:56:01 archlinux kernel: pci 0000:36:00.5: Adding to iommu group 27
Feb 27 20:56:01 archlinux kernel: AMD-Vi: Extended features (0x246577efa2254afa, 0x0): PPR NX GT [5] IA GA PC GA_vAPIC
Feb 27 20:56:01 archlinux kernel: AMD-Vi: Interrupt remapping enabled
Feb 27 20:56:01 archlinux kernel: AMD-Vi: Virtual APIC enabled
Feb 27 20:56:01 archlinux kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Feb 27 20:56:01 archlinux kernel: software IO TLB: mapped [mem 0x000000005ef93000-0x0000000062f93000] (64MB)
Feb 27 20:56:01 archlinux kernel: LVT offset 0 assigned for vector 0x400
Feb 27 20:56:01 archlinux kernel: perf: AMD IBS detected (0x000003fd)
Feb 27 20:56:01 archlinux kernel: perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
Feb 27 20:56:01 archlinux kernel: Initialise system trusted keyrings
Feb 27 20:56:01 archlinux kernel: Key type blacklist registered
Feb 27 20:56:01 archlinux kernel: workingset: timestamp_bits=36 max_order=22 bucket_order=0
Feb 27 20:56:01 archlinux kernel: fuse: init (API version 7.45)
Feb 27 20:56:01 archlinux kernel: integrity: Platform Keyring initialized
Feb 27 20:56:01 archlinux kernel: integrity: Machine keyring initialized
Feb 27 20:56:01 archlinux kernel: xor: automatically using best checksumming function avx
Feb 27 20:56:01 archlinux kernel: Key type asymmetric registered
Feb 27 20:56:01 archlinux kernel: Asymmetric key parser 'x509' registered
Feb 27 20:56:01 archlinux kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
Feb 27 20:56:01 archlinux kernel: io scheduler mq-deadline registered
Feb 27 20:56:01 archlinux kernel: io scheduler kyber registered
Feb 27 20:56:01 archlinux kernel: io scheduler bfq registered
Feb 27 20:56:01 archlinux kernel: ledtrig-cpu: registered to indicate activity on CPUs
Feb 27 20:56:01 archlinux kernel: pcieport 0000:00:01.1: PME: Signaling with IRQ 32
Feb 27 20:56:01 archlinux kernel: pcieport 0000:00:01.1: AER: enabled with IRQ 32
Feb 27 20:56:01 archlinux kernel: pcieport 0000:00:01.1: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise- Interlock- NoCompl+ IbPresDis- LLActRep+
Feb 27 20:56:01 archlinux kernel: pcieport 0000:00:02.1: PME: Signaling with IRQ 33
Feb 27 20:56:01 archlinux kernel: pcieport 0000:00:02.1: AER: enabled with IRQ 33
Feb 27 20:56:01 archlinux kernel: pcieport 0000:00:02.2: PME: Signaling with IRQ 34
Feb 27 20:56:01 archlinux kernel: pcieport 0000:00:02.2: AER: enabled with IRQ 34
Feb 27 20:56:01 archlinux kernel: pcieport 0000:00:02.4: PME: Signaling with IRQ 35
Feb 27 20:56:01 archlinux kernel: pcieport 0000:00:02.4: AER: enabled with IRQ 35
Feb 27 20:56:01 archlinux kernel: pcieport 0000:00:03.1: PME: Signaling with IRQ 36
Feb 27 20:56:01 archlinux kernel: pcieport 0000:00:03.1: AER: enabled with IRQ 36
Feb 27 20:56:01 archlinux kernel: pcieport 0000:00:03.1: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
Feb 27 20:56:01 archlinux kernel: pcieport 0000:00:08.1: PME: Signaling with IRQ 37
Feb 27 20:56:01 archlinux kernel: pcieport 0000:00:08.3: PME: Signaling with IRQ 38
Feb 27 20:56:01 archlinux kernel: pcieport 0000:00:08.3: AER: enabled with IRQ 38
Feb 27 20:56:01 archlinux kernel: ACPI: AC: AC Adapter [ACAD] (on-line)
Feb 27 20:56:01 archlinux kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Feb 27 20:56:01 archlinux kernel: ACPI: button: Power Button [PWRB]
Feb 27 20:56:01 archlinux kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
Feb 27 20:56:01 archlinux kernel: ACPI: button: Sleep Button [SLPB]
Feb 27 20:56:01 archlinux kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
Feb 27 20:56:01 archlinux kernel: ACPI: button: Lid Switch [LID0]
Feb 27 20:56:01 archlinux kernel: Monitor-Mwait will be used to enter C-1 state
Feb 27 20:56:01 archlinux kernel: Estimated ratio of average max frequency by base frequency (times 1024): 1284
Feb 27 20:56:01 archlinux kernel: ACPI BIOS Error (bug): Could not resolve symbol [\_TZ.THRM._SCP.CTYP], AE_NOT_FOUND (20250807/psargs-332)
Feb 27 20:56:01 archlinux kernel: ACPI Error: Aborting method \_TZ.THRM._SCP due to previous error (AE_NOT_FOUND) (20250807/psparse-529)
Feb 27 20:56:01 archlinux kernel: thermal LNXTHERM:00: registered as thermal_zone0
Feb 27 20:56:01 archlinux kernel: ACPI: thermal: Thermal Zone [THRM] (79 C)
Feb 27 20:56:01 archlinux kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Feb 27 20:56:01 archlinux kernel: ACPI: battery: Slot [BAT1] (battery present)
Feb 27 20:56:01 archlinux kernel: hpet_acpi_add: no address or irqs in _CRS
Feb 27 20:56:01 archlinux kernel: Non-volatile memory driver v1.3
Feb 27 20:56:01 archlinux kernel: Linux agpgart interface v0.103
Feb 27 20:56:01 archlinux kernel: Freeing initrd memory: 156512K
Feb 27 20:56:01 archlinux kernel: tpm_crb MSFT0101:00: Disabling hwrng
Feb 27 20:56:01 archlinux kernel: ACPI: bus type drm_connector registered
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:35:00.3: xHCI Host Controller
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:35:00.3: new USB bus registered, assigned bus number 1
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:35:00.3: hcc params 0x0120ffc5 hci version 0x120 quirks 0x0000000200000010
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:35:00.3: xHCI Host Controller
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:35:00.3: new USB bus registered, assigned bus number 2
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:35:00.3: Host supports USB 3.1 Enhanced SuperSpeed
Feb 27 20:56:01 archlinux kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.18
Feb 27 20:56:01 archlinux kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Feb 27 20:56:01 archlinux kernel: usb usb1: Product: xHCI Host Controller
Feb 27 20:56:01 archlinux kernel: usb usb1: Manufacturer: Linux 6.18.9-arch1-2 xhci-hcd
Feb 27 20:56:01 archlinux kernel: usb usb1: SerialNumber: 0000:35:00.3
Feb 27 20:56:01 archlinux kernel: hub 1-0:1.0: USB hub found
Feb 27 20:56:01 archlinux kernel: hub 1-0:1.0: 4 ports detected
Feb 27 20:56:01 archlinux kernel: usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
Feb 27 20:56:01 archlinux kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.18
Feb 27 20:56:01 archlinux kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Feb 27 20:56:01 archlinux kernel: usb usb2: Product: xHCI Host Controller
Feb 27 20:56:01 archlinux kernel: usb usb2: Manufacturer: Linux 6.18.9-arch1-2 xhci-hcd
Feb 27 20:56:01 archlinux kernel: usb usb2: SerialNumber: 0000:35:00.3
Feb 27 20:56:01 archlinux kernel: hub 2-0:1.0: USB hub found
Feb 27 20:56:01 archlinux kernel: hub 2-0:1.0: 2 ports detected
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:35:00.4: xHCI Host Controller
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:35:00.4: new USB bus registered, assigned bus number 3
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:35:00.4: hcc params 0x0120ffc5 hci version 0x120 quirks 0x0000000200000010
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:35:00.4: xHCI Host Controller
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:35:00.4: new USB bus registered, assigned bus number 4
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:35:00.4: Host supports USB 3.1 Enhanced SuperSpeed
Feb 27 20:56:01 archlinux kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.18
Feb 27 20:56:01 archlinux kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Feb 27 20:56:01 archlinux kernel: usb usb3: Product: xHCI Host Controller
Feb 27 20:56:01 archlinux kernel: usb usb3: Manufacturer: Linux 6.18.9-arch1-2 xhci-hcd
Feb 27 20:56:01 archlinux kernel: usb usb3: SerialNumber: 0000:35:00.4
Feb 27 20:56:01 archlinux kernel: hub 3-0:1.0: USB hub found
Feb 27 20:56:01 archlinux kernel: hub 3-0:1.0: 3 ports detected
Feb 27 20:56:01 archlinux kernel: usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
Feb 27 20:56:01 archlinux kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.18
Feb 27 20:56:01 archlinux kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Feb 27 20:56:01 archlinux kernel: usb usb4: Product: xHCI Host Controller
Feb 27 20:56:01 archlinux kernel: usb usb4: Manufacturer: Linux 6.18.9-arch1-2 xhci-hcd
Feb 27 20:56:01 archlinux kernel: usb usb4: SerialNumber: 0000:35:00.4
Feb 27 20:56:01 archlinux kernel: hub 4-0:1.0: USB hub found
Feb 27 20:56:01 archlinux kernel: hub 4-0:1.0: 2 ports detected
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:36:00.0: xHCI Host Controller
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:36:00.0: new USB bus registered, assigned bus number 5
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:36:00.0: USB3 root hub has no ports
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:36:00.0: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000010
Feb 27 20:56:01 archlinux kernel: usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.18
Feb 27 20:56:01 archlinux kernel: usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Feb 27 20:56:01 archlinux kernel: usb usb5: Product: xHCI Host Controller
Feb 27 20:56:01 archlinux kernel: usb usb5: Manufacturer: Linux 6.18.9-arch1-2 xhci-hcd
Feb 27 20:56:01 archlinux kernel: usb usb5: SerialNumber: 0000:36:00.0
Feb 27 20:56:01 archlinux kernel: hub 5-0:1.0: USB hub found
Feb 27 20:56:01 archlinux kernel: hub 5-0:1.0: 1 port detected
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:36:00.3: xHCI Host Controller
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:36:00.3: new USB bus registered, assigned bus number 6
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:36:00.3: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000010
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:36:00.3: xHCI Host Controller
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:36:00.3: new USB bus registered, assigned bus number 7
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:36:00.3: Host supports USB 3.1 Enhanced SuperSpeed
Feb 27 20:56:01 archlinux kernel: usb usb6: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.18
Feb 27 20:56:01 archlinux kernel: usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Feb 27 20:56:01 archlinux kernel: usb usb6: Product: xHCI Host Controller
Feb 27 20:56:01 archlinux kernel: usb usb6: Manufacturer: Linux 6.18.9-arch1-2 xhci-hcd
Feb 27 20:56:01 archlinux kernel: usb usb6: SerialNumber: 0000:36:00.3
Feb 27 20:56:01 archlinux kernel: hub 6-0:1.0: USB hub found
Feb 27 20:56:01 archlinux kernel: hub 6-0:1.0: 1 port detected
Feb 27 20:56:01 archlinux kernel: usb usb7: We don't know the algorithms for LPM for this host, disabling LPM.
Feb 27 20:56:01 archlinux kernel: usb usb7: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.18
Feb 27 20:56:01 archlinux kernel: usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Feb 27 20:56:01 archlinux kernel: usb usb7: Product: xHCI Host Controller
Feb 27 20:56:01 archlinux kernel: usb usb7: Manufacturer: Linux 6.18.9-arch1-2 xhci-hcd
Feb 27 20:56:01 archlinux kernel: usb usb7: SerialNumber: 0000:36:00.3
Feb 27 20:56:01 archlinux kernel: hub 7-0:1.0: USB hub found
Feb 27 20:56:01 archlinux kernel: hub 7-0:1.0: 1 port detected
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:36:00.4: xHCI Host Controller
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:36:00.4: new USB bus registered, assigned bus number 8
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:36:00.4: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000010
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:36:00.4: xHCI Host Controller
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:36:00.4: new USB bus registered, assigned bus number 9
Feb 27 20:56:01 archlinux kernel: xhci_hcd 0000:36:00.4: Host supports USB 3.1 Enhanced SuperSpeed
Feb 27 20:56:01 archlinux kernel: usb usb8: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.18
Feb 27 20:56:01 archlinux kernel: usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Feb 27 20:56:01 archlinux kernel: usb usb8: Product: xHCI Host Controller
Feb 27 20:56:01 archlinux kernel: usb usb8: Manufacturer: Linux 6.18.9-arch1-2 xhci-hcd
Feb 27 20:56:01 archlinux kernel: usb usb8: SerialNumber: 0000:36:00.4
Feb 27 20:56:01 archlinux kernel: hub 8-0:1.0: USB hub found
Feb 27 20:56:01 archlinux kernel: hub 8-0:1.0: 1 port detected
Feb 27 20:56:01 archlinux kernel: usb usb9: We don't know the algorithms for LPM for this host, disabling LPM.
Feb 27 20:56:01 archlinux kernel: usb usb9: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.18
Feb 27 20:56:01 archlinux kernel: usb usb9: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Feb 27 20:56:01 archlinux kernel: usb usb9: Product: xHCI Host Controller
Feb 27 20:56:01 archlinux kernel: usb usb9: Manufacturer: Linux 6.18.9-arch1-2 xhci-hcd
Feb 27 20:56:01 archlinux kernel: usb usb9: SerialNumber: 0000:36:00.4
Feb 27 20:56:01 archlinux kernel: hub 9-0:1.0: USB hub found
Feb 27 20:56:01 archlinux kernel: hub 9-0:1.0: 1 port detected
Feb 27 20:56:01 archlinux kernel: usbcore: registered new interface driver usbserial_generic
Feb 27 20:56:01 archlinux kernel: usbserial: USB Serial support registered for generic
Feb 27 20:56:01 archlinux kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
Feb 27 20:56:01 archlinux kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
Feb 27 20:56:01 archlinux kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Feb 27 20:56:01 archlinux kernel: rtc_cmos 00:01: RTC can wake from S4
Feb 27 20:56:01 archlinux kernel: rtc_cmos 00:01: registered as rtc0
Feb 27 20:56:01 archlinux kernel: rtc_cmos 00:01: setting system clock to 2026-02-27T15:26:01 UTC (1772205961)
Feb 27 20:56:01 archlinux kernel: rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram
Feb 27 20:56:01 archlinux kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
Feb 27 20:56:01 archlinux kernel: simple-framebuffer simple-framebuffer.0: [drm] Registered 1 planes with drm panic
Feb 27 20:56:01 archlinux kernel: [drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0
Feb 27 20:56:01 archlinux kernel: Console: switching to colour frame buffer device 240x67
Feb 27 20:56:01 archlinux kernel: simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
Feb 27 20:56:01 archlinux kernel: hid: raw HID events driver (C) Jiri Kosina
Feb 27 20:56:01 archlinux kernel: usbcore: registered new interface driver usbhid
Feb 27 20:56:01 archlinux kernel: usbhid: USB HID core driver
Feb 27 20:56:01 archlinux kernel: rust_binder: Loaded Rust Binder.
Feb 27 20:56:01 archlinux kernel: drop_monitor: Initializing network drop monitor service
Feb 27 20:56:01 archlinux kernel: NET: Registered PF_INET6 protocol family
Feb 27 20:56:01 archlinux kernel: Segment Routing with IPv6
Feb 27 20:56:01 archlinux kernel: RPL Segment Routing with IPv6
Feb 27 20:56:01 archlinux kernel: In-situ OAM (IOAM) with IPv6
Feb 27 20:56:01 archlinux kernel: NET: Registered PF_PACKET protocol family
Feb 27 20:56:01 archlinux kernel: x86/amd: Previous system reset reason [0x00080800]: software wrote 0x6 to reset control register 0xCF9
Feb 27 20:56:01 archlinux kernel: microcode: Current revision: 0x0a404108
Feb 27 20:56:01 archlinux kernel: microcode: Updated early from: 0x0a404107
Feb 27 20:56:01 archlinux kernel: resctrl: L3 allocation detected
Feb 27 20:56:01 archlinux kernel: resctrl: MB allocation detected
Feb 27 20:56:01 archlinux kernel: resctrl: L3 monitoring detected
Feb 27 20:56:01 archlinux kernel: IPI shorthand broadcast: enabled
Feb 27 20:56:01 archlinux kernel: sched_clock: Marking stable (663847025, 1433581)->(682324092, -17043486)
Feb 27 20:56:01 archlinux kernel: registered taskstats version 1
Feb 27 20:56:01 archlinux kernel: Loading compiled-in X.509 certificates
Feb 27 20:56:01 archlinux kernel: Loaded X.509 cert 'Build time autogenerated kernel key: bd75f57764373954f9094fd02f3449c1c19f0d83'
Feb 27 20:56:01 archlinux kernel: zswap: loaded using pool zstd
Feb 27 20:56:01 archlinux kernel: Demotion targets for Node 0: null
Feb 27 20:56:01 archlinux kernel: Key type .fscrypt registered
Feb 27 20:56:01 archlinux kernel: Key type fscrypt-provisioning registered
Feb 27 20:56:01 archlinux kernel: Btrfs loaded, zoned=yes, fsverity=yes
Feb 27 20:56:01 archlinux kernel: Key type big_key registered
Feb 27 20:56:01 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
Feb 27 20:56:01 archlinux kernel: integrity: Loaded X.509 cert 'Database Key: 00b30d8b8843ca011801bd63ed99376304'
Feb 27 20:56:01 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
Feb 27 20:56:01 archlinux kernel: integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
Feb 27 20:56:01 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
Feb 27 20:56:01 archlinux kernel: integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
Feb 27 20:56:01 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
Feb 27 20:56:01 archlinux kernel: integrity: Loaded X.509 cert 'Microsoft Option ROM UEFI CA 2023: 514fbf937fa46fb57bf07af8bed84b3b864b1711'
Feb 27 20:56:01 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
Feb 27 20:56:01 archlinux kernel: integrity: Loaded X.509 cert 'Microsoft UEFI CA 2023: 81aa6b3244c935bce0d6628af39827421e32497d'
Feb 27 20:56:01 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
Feb 27 20:56:01 archlinux kernel: integrity: Loaded X.509 cert 'Microsoft Corporation: Windows UEFI CA 2023: aefc5fbbbe055d8f8daa585473499417ab5a5272'
Feb 27 20:56:01 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
Feb 27 20:56:01 archlinux kernel: integrity: Loaded X.509 cert 'ASUSTeK Notebook SW Key Certificate: b8e581e4df77a5bb4282d5ccfc00c071'
Feb 27 20:56:01 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
Feb 27 20:56:01 archlinux kernel: integrity: Loaded X.509 cert 'ASUSTeK MotherBoard SW Key Certificate: da83b990422ebc8c441f8d8b039a65a2'
Feb 27 20:56:01 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
Feb 27 20:56:01 archlinux kernel: integrity: Loaded X.509 cert 'Canonical Ltd. Master Certificate Authority: ad91990bc22ab1f517048c23b6655a268e345a63'
Feb 27 20:56:01 archlinux kernel: PM: Magic number: 14:968:437
Feb 27 20:56:01 archlinux kernel: RAS: Correctable Errors collector initialized.
Feb 27 20:56:01 archlinux kernel: clk: Disabling unused clocks
Feb 27 20:56:01 archlinux kernel: PM: genpd: Disabling unused power domains
Feb 27 20:56:01 archlinux kernel: Freeing unused decrypted memory: 2028K
Feb 27 20:56:01 archlinux kernel: Freeing unused kernel image (initmem) memory: 4732K
Feb 27 20:56:01 archlinux kernel: Write protecting the kernel read-only data: 36864k
Feb 27 20:56:01 archlinux kernel: Freeing unused kernel image (text/rodata gap) memory: 164K
Feb 27 20:56:01 archlinux kernel: Freeing unused kernel image (rodata/data gap) memory: 12K
Feb 27 20:56:01 archlinux kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Feb 27 20:56:01 archlinux kernel: rodata_test: all tests were successful
Feb 27 20:56:01 archlinux kernel: Run /init as init process
Feb 27 20:56:01 archlinux kernel: with arguments:
Feb 27 20:56:01 archlinux kernel: /init
Feb 27 20:56:01 archlinux kernel: with environment:
Feb 27 20:56:01 archlinux kernel: HOME=/
Feb 27 20:56:01 archlinux kernel: TERM=linux
Feb 27 20:56:01 archlinux systemd[1]: Successfully made /usr/ read-only.
Feb 27 20:56:01 archlinux systemd[1]: systemd 258.3-1-arch running in system mode (+PAM +AUDIT -SELINUX +APPARMOR -IMA +IPE +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF +XKBCOMMON +UTMP -SYSVINIT +LIBARCHIVE)
Feb 27 20:56:01 archlinux systemd[1]: Detected architecture x86-64.
Feb 27 20:56:01 archlinux systemd[1]: Running in initrd.
Feb 27 20:56:01 archlinux systemd[1]: Received untrusted credentials: nvpcr-anchor.56540f92b6f44db0acf3ce8a3f761b70
Feb 27 20:56:01 archlinux systemd[1]: Acquired 0 regular credentials, 1 untrusted credentials.
Feb 27 20:56:01 archlinux systemd[1]: Initializing machine ID from random generator.
Feb 27 20:56:01 archlinux systemd[1]: Queued start job for default target Initrd Default Target.
Feb 27 20:56:01 archlinux systemd[1]: Created slice Slice /system/systemd-cryptsetup.
Feb 27 20:56:01 archlinux systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Feb 27 20:56:01 archlinux systemd[1]: Expecting device /dev/disk/by-uuid/fc3cbc27-93b5-4758-a095-b932f012d4e8...
Feb 27 20:56:01 archlinux systemd[1]: Expecting device /dev/mapper/root...
Feb 27 20:56:01 archlinux systemd[1]: Reached target Path Units.
Feb 27 20:56:01 archlinux systemd[1]: Reached target Slice Units.
Feb 27 20:56:01 archlinux systemd[1]: Reached target Swaps.
Feb 27 20:56:01 archlinux systemd[1]: Reached target Timer Units.
Feb 27 20:56:01 archlinux systemd[1]: Listening on Journal Socket (/dev/log).
Feb 27 20:56:01 archlinux systemd[1]: Listening on Journal Sockets.
Feb 27 20:56:01 archlinux systemd[1]: Listening on udev Control Socket.
Feb 27 20:56:01 archlinux systemd[1]: Listening on udev Kernel Socket.
Feb 27 20:56:01 archlinux systemd[1]: Reached target Socket Units.
Feb 27 20:56:01 archlinux systemd[1]: Starting Create List of Static Device Nodes...
Feb 27 20:56:01 archlinux systemd[1]: Starting Check battery level during early boot...
Feb 27 20:56:01 archlinux systemd[1]: Starting Journal Service...
Feb 27 20:56:01 archlinux systemd[1]: Starting Load Kernel Modules...
Feb 27 20:56:01 archlinux systemd[1]: Starting TPM PCR Barrier (initrd)...
Feb 27 20:56:01 archlinux systemd[1]: Starting Create Static Device Nodes in /dev...
Feb 27 20:56:01 archlinux systemd[1]: Starting Coldplug All udev Devices...
Feb 27 20:56:01 archlinux systemd[1]: Finished Create List of Static Device Nodes.
Feb 27 20:56:01 archlinux systemd[1]: Finished Load Kernel Modules.
Feb 27 20:56:01 archlinux systemd[1]: Finished Check battery level during early boot.
Feb 27 20:56:01 archlinux systemd[1]: Started Display Boot-Time Emergency Messages In Full Screen.
Feb 27 20:56:01 archlinux systemd[1]: Finished Create Static Device Nodes in /dev.
Feb 27 20:56:01 archlinux systemd[1]: Reached target Preparation for Local File Systems.
Feb 27 20:56:01 archlinux systemd[1]: Reached target Local File Systems.
Feb 27 20:56:01 archlinux systemd-journald[200]: Collecting audit messages is disabled.
Feb 27 20:56:01 archlinux systemd[1]: Starting Rule-based Manager for Device Events and Files...
Feb 27 20:56:01 archlinux systemd[1]: Finished TPM PCR Barrier (initrd).
Feb 27 20:56:01 archlinux systemd[1]: Started Rule-based Manager for Device Events and Files.
Feb 27 20:56:01 archlinux kernel: usb 3-2: new full-speed USB device number 2 using xhci_hcd
Feb 27 20:56:01 archlinux kernel: usb 1-4: new high-speed USB device number 2 using xhci_hcd
Feb 27 20:56:01 archlinux systemd-journald[200]: Journal started
Feb 27 20:56:01 archlinux systemd-journald[200]: Runtime Journal (/run/log/journal/c9fc6f8f44ba43b6b6ff115346ea785b) is 8M, max 304.4M, 296.4M free.
Feb 27 20:56:01 archlinux systemd-udevd[217]: Using default interface naming scheme 'v258'.
Feb 27 20:56:01 archlinux systemd-pcrextend[204]: Extended PCR index 11 with 'enter-initrd' (banks sha256).
Feb 27 20:56:01 archlinux systemd[1]: Started Journal Service.
Feb 27 20:56:01 archlinux systemd[1]: Starting Create System Files and Directories...
Feb 27 20:56:01 archlinux systemd[1]: Finished Create System Files and Directories.
Feb 27 20:56:01 archlinux systemd[1]: Finished Coldplug All udev Devices.
Feb 27 20:56:01 archlinux kernel: usb 3-2: New USB device found, idVendor=32c2, idProduct=0018, bcdDevice= 2.00
Feb 27 20:56:01 archlinux kernel: usb 3-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Feb 27 20:56:01 archlinux kernel: usb 3-2: Product: 2.4G Wireless Receiver
Feb 27 20:56:01 archlinux kernel: usb 3-2: Manufacturer: HS6209
Feb 27 20:56:01 archlinux kernel: usb 3-2: SerialNumber: No.161-0047-5
Feb 27 20:56:01 archlinux kernel: usb 1-4: New USB device found, idVendor=322e, idProduct=2233, bcdDevice=11.01
Feb 27 20:56:01 archlinux kernel: usb 1-4: New USB device strings: Mfr=2, Product=1, SerialNumber=0
Feb 27 20:56:01 archlinux kernel: usb 1-4: Product: USB2.0 HD UVC WebCam
Feb 27 20:56:01 archlinux kernel: usb 1-4: Manufacturer: Sonix Technology Co., Ltd.
Feb 27 20:56:01 archlinux kernel: input: HS6209 2.4G Wireless Receiver as /devices/pci0000:00/0000:00:08.1/0000:35:00.4/usb3/3-2/3-2:1.0/0003:32C2:0018.0001/input/input4
Feb 27 20:56:01 archlinux kernel: wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQ00 data block query control method not found
Feb 27 20:56:01 archlinux kernel: ACPI: video: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
Feb 27 20:56:01 archlinux kernel: ACPI: video: Video Device [PEGP] (multi-head: yes rom: yes post: no)
Feb 27 20:56:01 archlinux kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06/LNXVIDEO:00/input/input5
Feb 27 20:56:01 archlinux kernel: ccp 0000:35:00.2: enabling device (0000 -> 0002)
Feb 27 20:56:01 archlinux kernel: ccp 0000:35:00.2: tee enabled
Feb 27 20:56:01 archlinux kernel: ccp 0000:35:00.2: psp enabled
Feb 27 20:56:01 archlinux kernel: Key type psk registered
Feb 27 20:56:01 archlinux kernel: nvme 0000:04:00.0: platform quirk: setting simple suspend
Feb 27 20:56:01 archlinux kernel: nvme nvme0: pci function 0000:04:00.0
Feb 27 20:56:01 archlinux kernel: nvme nvme0: allocated 64 MiB host memory buffer (1 segment).
Feb 27 20:56:01 archlinux kernel: hid-generic 0003:32C2:0018.0001: input,hidraw0: USB HID v1.10 Keyboard [HS6209 2.4G Wireless Receiver] on usb-0000:35:00.4-2/input0
Feb 27 20:56:01 archlinux kernel: ACPI: video: Video Device [VGA] (multi-head: yes rom: no post: no)
Feb 27 20:56:01 archlinux kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:22/LNXVIDEO:01/input/input6
Feb 27 20:56:01 archlinux kernel: input: HS6209 2.4G Wireless Receiver Keyboard as /devices/pci0000:00/0000:00:08.1/0000:35:00.4/usb3/3-2/3-2:1.1/0003:32C2:0018.0002/input/input7
Feb 27 20:56:02 archlinux kernel: nvme nvme0: 16/0/0 default/read/poll queues
Feb 27 20:56:02 archlinux kernel: nvme0n1: p1 p2
Feb 27 20:56:02 archlinux kernel: hid-generic 0003:32C2:0018.0002: input,hidraw1: USB HID v1.10 Keyboard [HS6209 2.4G Wireless Receiver] on usb-0000:35:00.4-2/input1
Feb 27 20:56:02 archlinux kernel: input: HS6209 2.4G Wireless Receiver Mouse as /devices/pci0000:00/0000:00:08.1/0000:35:00.4/usb3/3-2/3-2:1.2/0003:32C2:0018.0003/input/input8
Feb 27 20:56:02 archlinux kernel: input: HS6209 2.4G Wireless Receiver as /devices/pci0000:00/0000:00:08.1/0000:35:00.4/usb3/3-2/3-2:1.2/0003:32C2:0018.0003/input/input9
Feb 27 20:56:02 archlinux kernel: hid-generic 0003:32C2:0018.0003: input,hiddev96,hidraw2: USB HID v1.10 Mouse [HS6209 2.4G Wireless Receiver] on usb-0000:35:00.4-2/input2
Feb 27 20:56:02 archlinux systemd[1]: Found device MTFDKBA512QFM-1BD1AABGB 2.
Feb 27 20:56:02 archlinux systemd[1]: Starting Cryptography Setup for root...
Feb 27 20:56:02 archlinux kernel: device-mapper: uevent: version 1.0.3
Feb 27 20:56:02 archlinux kernel: device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists.linux.dev
Feb 27 20:56:02 archlinux kernel: usb 3-3: new full-speed USB device number 3 using xhci_hcd
Feb 27 20:56:02 archlinux kernel: usb 3-3: New USB device found, idVendor=13d3, idProduct=3571, bcdDevice= 0.00
Feb 27 20:56:02 archlinux kernel: usb 3-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Feb 27 20:56:02 archlinux kernel: usb 3-3: Product: Bluetooth Radio
Feb 27 20:56:02 archlinux kernel: usb 3-3: Manufacturer: Realtek
Feb 27 20:56:02 archlinux kernel: usb 3-3: SerialNumber: 00e04c000001
Feb 27 20:56:02 archlinux kernel: tsc: Refined TSC clocksource calibration: 3193.999 MHz
Feb 27 20:56:02 archlinux kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2e0a24cf65f, max_idle_ns: 440795271781 ns
Feb 27 20:56:02 archlinux kernel: clocksource: Switched to clocksource tsc
Feb 27 20:56:03 archlinux kernel: [drm] amdgpu kernel modesetting enabled.
Feb 27 20:56:03 archlinux kernel: amdgpu: vga_switcheroo: detected switching method \_SB_.PCI0.GP17.VGA_.ATPX handle
Feb 27 20:56:03 archlinux kernel: amdgpu: ATPX version 1, functions 0x00000801
Feb 27 20:56:03 archlinux kernel: amdgpu: ATPX Hybrid Graphics
Feb 27 20:56:03 archlinux kernel: amdgpu: Virtual CRAT table created for CPU
Feb 27 20:56:03 archlinux kernel: amdgpu: Topology: Add CPU node
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: enabling device (0006 -> 0007)
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: initializing kernel modesetting (YELLOW_CARP 0x1002:0x1681 0x1043:0x14C3 0x0A).
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: register mmio base: 0xDD900000
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: register mmio size: 524288
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: detected ip block number 0 <common_v1_0_0> (nv_common)
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: detected ip block number 1 <gmc_v10_0_0> (gmc_v10_0)
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: detected ip block number 2 <ih_v5_0_0> (navi10_ih)
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: detected ip block number 3 <psp_v13_0_0> (psp)
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: detected ip block number 4 <smu_v13_0_0> (smu)
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: detected ip block number 5 <dce_v1_0_0> (dm)
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: detected ip block number 6 <gfx_v10_0_0> (gfx_v10_0)
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: detected ip block number 7 <sdma_v5_2_0> (sdma_v5_2)
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: detected ip block number 8 <vcn_v3_0_0> (vcn_v3_0)
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: detected ip block number 9 <jpeg_v3_0_0> (jpeg_v3_0)
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: Fetched VBIOS from VFCT
Feb 27 20:56:03 archlinux kernel: amdgpu: ATOM BIOS: 113-REMBRANDT-X37
Feb 27 20:56:03 archlinux kernel: Console: switching to colour dummy device 80x25
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: vgaarb: deactivate vga console
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: Trusted Memory Zone (TMZ) feature disabled as experimental (default)
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: VRAM: 512M 0x000000F400000000 - 0x000000F41FFFFFFF (512M used)
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: GART: 1024M 0x0000000000000000 - 0x000000003FFFFFFF
Feb 27 20:56:03 archlinux kernel: [drm] Detected VRAM RAM=512M, BAR=512M
Feb 27 20:56:03 archlinux kernel: [drm] RAM width 128bits DDR5
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: amdgpu: 512M of VRAM memory ready
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: amdgpu: 7610M of GTT memory ready.
Feb 27 20:56:03 archlinux kernel: [drm] GART: num cpu pages 262144, num gpu pages 262144
Feb 27 20:56:03 archlinux kernel: [drm] PCIE GART of 1024M enabled (table at 0x000000F41FC00000).
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: [drm] Loading DMUB firmware via PSP: version=0x04000047
Feb 27 20:56:03 archlinux kernel: [drm] use_doorbell being set to: [true]
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: [VCN instance 0] Found VCN firmware Version ENC: 1.33 DEC: 4 VEP: 0 Revision: 14
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: reserve 0xa00000 from 0xf41e000000 for PSP TMR
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: RAS: optional ras ta ucode is not available
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: RAP: optional rap ta ucode is not available
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: SECUREDISPLAY: optional securedisplay ta ucode is not available
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: SMU is initialized successfully!
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: [drm] Display Core v3.2.351 initialized on DCN 3.1.2
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: [drm] DP-HDMI FRL PCON supported
Feb 27 20:56:03 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: [drm] DMUB hardware initialized: version=0x04000047
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: [drm] eDP-1: PSR support 1, DC PSR ver 0, sink PSR ver 1 DPCD caps 0x2a su_y_granularity 0
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: [drm] DP-1: PSR support 0, DC PSR ver -1, sink PSR ver 0 DPCD caps 0x0 su_y_granularity 0
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: [drm] DP-2: PSR support 0, DC PSR ver -1, sink PSR ver 0 DPCD caps 0x0 su_y_granularity 0
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: [drm] DP-3: PSR support 0, DC PSR ver -1, sink PSR ver 0 DPCD caps 0x0 su_y_granularity 0
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: [drm] DP-4: PSR support 0, DC PSR ver -1, sink PSR ver 0 DPCD caps 0x0 su_y_granularity 0
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: [drm] DP-5: PSR support 0, DC PSR ver -1, sink PSR ver 0 DPCD caps 0x0 su_y_granularity 0
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: [drm] DP-6: PSR support 0, DC PSR ver -1, sink PSR ver 0 DPCD caps 0x0 su_y_granularity 0
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: [drm] DP-7: PSR support 0, DC PSR ver -1, sink PSR ver 0 DPCD caps 0x0 su_y_granularity 0
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: [drm] DP-8: PSR support 0, DC PSR ver -1, sink PSR ver 0 DPCD caps 0x0 su_y_granularity 0
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: kiq ring mec 2 pipe 1 q 0
Feb 27 20:56:04 archlinux kernel: kfd kfd: amdgpu: Allocated 3969056 bytes on gart
Feb 27 20:56:04 archlinux kernel: kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
Feb 27 20:56:04 archlinux kernel: amdgpu: Virtual CRAT table created for GPU
Feb 27 20:56:04 archlinux kernel: amdgpu: Topology: Add dGPU node [0x1681:0x1002]
Feb 27 20:56:04 archlinux kernel: kfd kfd: amdgpu: added device 1002:1681
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: SE 1, SH per SE 2, CU per SH 6, active_cu_number 12
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: ring gfx_0.1.0 uses VM inv eng 1 on hub 0
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 4 on hub 0
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 5 on hub 0
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: ring kiq_0.2.1.0 uses VM inv eng 12 on hub 0
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: ring sdma0 uses VM inv eng 13 on hub 0
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: ring vcn_dec_0 uses VM inv eng 0 on hub 8
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: ring vcn_enc_0.0 uses VM inv eng 1 on hub 8
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: ring vcn_enc_0.1 uses VM inv eng 4 on hub 8
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 8
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: Runtime PM not available
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: amdgpu: [drm] Skipping amdgpu DM backlight registration
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: [drm] Registered 4 planes with drm panic
Feb 27 20:56:04 archlinux kernel: [drm] Initialized amdgpu 3.64.0 for 0000:35:00.0 on minor 1
Feb 27 20:56:04 archlinux kernel: fbcon: amdgpudrmfb (fb0) is primary device
Feb 27 20:56:04 archlinux kernel: [drm] pre_validate_dsc:1667 MST_DSC dsc precompute is not needed
Feb 27 20:56:04 archlinux kernel: Console: switching to colour frame buffer device 240x67
Feb 27 20:56:04 archlinux kernel: amdgpu 0000:35:00.0: [drm] fb0: amdgpudrmfb frame buffer device
Feb 27 20:56:04 archlinux kernel: Key type trusted registered
Feb 27 20:56:04 archlinux kernel: Key type encrypted registered
Feb 27 20:56:04 archlinux systemd[1]: Found device /dev/mapper/root.
Feb 27 20:56:04 archlinux systemd[1]: Finished Cryptography Setup for root.
Feb 27 20:56:04 archlinux systemd[1]: Reached target Local Encrypted Volumes.
Feb 27 20:56:04 archlinux systemd[1]: Reached target Initrd Root Device.
Feb 27 20:56:04 archlinux systemd[1]: Reached target System Initialization.
Feb 27 20:56:04 archlinux systemd[1]: Reached target Basic System.
Feb 27 20:56:04 archlinux systemd[1]: Starting File System Check on /dev/mapper/root...
Feb 27 20:56:04 archlinux systemd-fsck[345]: /dev/mapper/root: clean, 433407/31195136 files, 22379711/124760320 blocks
Feb 27 20:56:04 archlinux systemd[1]: Finished File System Check on /dev/mapper/root.
Feb 27 20:56:04 archlinux systemd[1]: Mounting /sysroot...
Feb 27 20:56:04 archlinux systemd[1]: Mounted /sysroot.
Feb 27 20:56:04 archlinux kernel: EXT4-fs (dm-0): mounted filesystem 1fd5f280-5bc4-4bce-8161-c9738f31beef r/w with ordered data mode. Quota mode: none.
Feb 27 20:56:04 archlinux systemd[1]: Reached target Initrd Root File System.
Feb 27 20:56:04 archlinux systemd[1]: Starting Mountpoints Configured in the Real Root...
Feb 27 20:56:04 archlinux systemd[1]: initrd-parse-etc.service: Deactivated successfully.
Feb 27 20:56:04 archlinux systemd[1]: Finished Mountpoints Configured in the Real Root.
Feb 27 20:56:04 archlinux systemd[1]: initrd-parse-etc.service: Triggering OnSuccess= dependencies.
Feb 27 20:56:04 archlinux systemd[1]: Reached target Initrd File Systems.
Feb 27 20:56:04 archlinux systemd[1]: Reached target Initrd Default Target.
Feb 27 20:56:04 archlinux systemd[1]: Starting Cleaning Up and Shutting Down Daemons...
Feb 27 20:56:04 archlinux systemd[1]: Stopped target Initrd Default Target.
Feb 27 20:56:04 archlinux systemd[1]: Stopped target Basic System.
Feb 27 20:56:04 archlinux systemd[1]: Stopped target Initrd Root Device.
Feb 27 20:56:04 archlinux systemd[1]: Stopped target Path Units.
Feb 27 20:56:04 archlinux systemd[1]: Stopped target Slice Units.
Feb 27 20:56:04 archlinux systemd[1]: Stopped target Socket Units.
Feb 27 20:56:04 archlinux systemd[1]: Stopped target System Initialization.
Feb 27 20:56:04 archlinux systemd[1]: Stopped target Local Encrypted Volumes.
Feb 27 20:56:04 archlinux systemd[1]: systemd-ask-password-console.path: Deactivated successfully.
Feb 27 20:56:04 archlinux systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
Feb 27 20:56:04 archlinux systemd[1]: Stopped target Swaps.
Feb 27 20:56:04 archlinux systemd[1]: Stopped target Timer Units.
Feb 27 20:56:04 archlinux systemd[1]: kmod-static-nodes.service: Deactivated successfully.
Feb 27 20:56:04 archlinux systemd[1]: Stopped Create List of Static Device Nodes.
Feb 27 20:56:04 archlinux systemd[1]: Stopping Display Boot-Time Emergency Messages In Full Screen...
Feb 27 20:56:04 archlinux systemd[1]: systemd-modules-load.service: Deactivated successfully.
Feb 27 20:56:04 archlinux systemd[1]: Stopped Load Kernel Modules.
Feb 27 20:56:04 archlinux systemd[1]: Stopping TPM PCR Barrier (initrd)...
Feb 27 20:56:04 archlinux systemd[1]: systemd-tmpfiles-setup.service: Deactivated successfully.
Feb 27 20:56:04 archlinux systemd[1]: Stopped Create System Files and Directories.
Feb 27 20:56:04 archlinux systemd[1]: Stopped target Local File Systems.
Feb 27 20:56:04 archlinux systemd[1]: Stopped target Preparation for Local File Systems.
Feb 27 20:56:04 archlinux systemd[1]: systemd-udev-trigger.service: Deactivated successfully.
Feb 27 20:56:04 archlinux systemd[1]: Stopped Coldplug All udev Devices.
Feb 27 20:56:04 archlinux systemd[1]: Stopping Rule-based Manager for Device Events and Files...
Feb 27 20:56:04 archlinux systemd[1]: systemd-bsod.service: Deactivated successfully.
Feb 27 20:56:04 archlinux systemd[1]: Stopped Display Boot-Time Emergency Messages In Full Screen.
Feb 27 20:56:04 archlinux systemd[1]: initrd-cleanup.service: Deactivated successfully.
Feb 27 20:56:04 archlinux systemd[1]: Finished Cleaning Up and Shutting Down Daemons.
Feb 27 20:56:04 archlinux systemd[1]: systemd-battery-check.service: Deactivated successfully.
Feb 27 20:56:04 archlinux systemd[1]: Stopped Check battery level during early boot.
Feb 27 20:56:04 archlinux systemd-pcrextend[357]: Extended PCR index 11 with 'leave-initrd' (banks sha256).
Feb 27 20:56:04 archlinux systemd[1]: systemd-pcrphase-initrd.service: Deactivated successfully.
Feb 27 20:56:04 archlinux systemd[1]: Stopped TPM PCR Barrier (initrd).
Feb 27 20:56:04 archlinux systemd[1]: systemd-udevd.service: Deactivated successfully.
Feb 27 20:56:04 archlinux systemd[1]: Stopped Rule-based Manager for Device Events and Files.
Feb 27 20:56:04 archlinux systemd[1]: systemd-udevd.service: Consumed 2.415s CPU time, 32.4M memory peak.
Feb 27 20:56:04 archlinux systemd[1]: systemd-udevd-control.socket: Deactivated successfully.
Feb 27 20:56:04 archlinux systemd[1]: Closed udev Control Socket.
Feb 27 20:56:04 archlinux systemd[1]: Starting Cleanup udev Database...
Feb 27 20:56:04 archlinux systemd[1]: systemd-tmpfiles-setup-dev.service: Deactivated successfully.
Feb 27 20:56:04 archlinux systemd[1]: Stopped Create Static Device Nodes in /dev.
Feb 27 20:56:04 archlinux systemd[1]: initrd-udevadm-cleanup-db.service: Deactivated successfully.
Feb 27 20:56:04 archlinux systemd[1]: Finished Cleanup udev Database.
Feb 27 20:56:04 archlinux systemd[1]: Reached target Switch Root.
Feb 27 20:56:04 archlinux systemd[1]: Starting Switch Root...
Feb 27 20:56:04 archlinux systemd[1]: Switching root.
Feb 27 20:56:04 archlinux systemd-journald[200]: Journal stopped
Feb 27 20:56:05 void systemd-journald[200]: Received SIGTERM from PID 1 (systemd).
Feb 27 20:56:05 void systemd[1]: systemd 258.3-1-arch running in system mode (+PAM +AUDIT -SELINUX +APPARMOR -IMA +IPE +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF +XKBCOMMON +UTMP -SYSVINIT +LIBARCHIVE)
Feb 27 20:56:05 void systemd[1]: Detected architecture x86-64.
Feb 27 20:56:05 void systemd[1]: Received untrusted credentials: nvpcr-anchor.56540f92b6f44db0acf3ce8a3f761b70
Feb 27 20:56:05 void systemd[1]: Acquired 0 regular credentials, 1 untrusted credentials.
Feb 27 20:56:05 void systemd[1]: Hostname set to <void>.
Feb 27 20:56:05 void systemd[1]: bpf-restrict-fs: LSM BPF program attached
Feb 27 20:56:05 void systemd[1]: initrd-switch-root.service: Deactivated successfully.
Feb 27 20:56:05 void systemd[1]: Stopped Switch Root.
Feb 27 20:56:05 void systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
Feb 27 20:56:05 void systemd[1]: Created slice Virtual Machine and Container Slice.
Feb 27 20:56:05 void systemd[1]: Created slice Slice /system/dirmngr.
Feb 27 20:56:05 void systemd[1]: Created slice Slice /system/getty.
Feb 27 20:56:05 void systemd[1]: Created slice Slice /system/gpg-agent.
Feb 27 20:56:05 void systemd[1]: Created slice Slice /system/gpg-agent-browser.
Feb 27 20:56:05 void systemd[1]: Created slice Slice /system/gpg-agent-extra.
Feb 27 20:56:05 void systemd[1]: Created slice Slice /system/gpg-agent-ssh.
Feb 27 20:56:05 void systemd[1]: Created slice Slice /system/keyboxd.
Feb 27 20:56:05 void systemd[1]: Created slice Slice /system/modprobe.
Feb 27 20:56:05 void systemd[1]: Created slice User and Session Slice.
Feb 27 20:56:05 void systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Feb 27 20:56:05 void systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Feb 27 20:56:05 void systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Feb 27 20:56:05 void systemd[1]: Expecting device /dev/disk/by-uuid/FDAE-0B04...
Feb 27 20:56:05 void systemd[1]: Reached target Local Encrypted Volumes.
Feb 27 20:56:05 void systemd[1]: Reached target Login Prompts.
Feb 27 20:56:05 void systemd[1]: Reached target Image Downloads.
Feb 27 20:56:05 void systemd[1]: Stopped target Switch Root.
Feb 27 20:56:05 void systemd[1]: Stopped target Initrd File Systems.
Feb 27 20:56:05 void systemd[1]: Stopped target Initrd Root File System.
Feb 27 20:56:05 void systemd[1]: Reached target Local Integrity Protected Volumes.
Feb 27 20:56:05 void systemd[1]: Reached target Preparation for Network.
Feb 27 20:56:05 void systemd[1]: Reached target Path Units.
Feb 27 20:56:05 void systemd[1]: Reached target Remote File Systems.
Feb 27 20:56:05 void systemd[1]: Reached target Slice Units.
Feb 27 20:56:05 void systemd[1]: Reached target Local Verity Protected Volumes.
Feb 27 20:56:05 void systemd[1]: Listening on Device-mapper event daemon FIFOs.
Feb 27 20:56:05 void systemd[1]: Listening on Query the User Interactively for a Password.
Feb 27 20:56:05 void systemd[1]: Listening on Process Core Dump Socket.
Feb 27 20:56:05 void systemd[1]: Listening on Credential Encryption/Decryption.
Feb 27 20:56:05 void systemd[1]: Listening on Factory Reset Management.
Feb 27 20:56:05 void systemd[1]: Listening on TPM PCR Measurements.
Feb 27 20:56:05 void systemd[1]: Listening on Make TPM PCR Policy.
Feb 27 20:56:05 void systemd[1]: Listening on udev Control Socket.
Feb 27 20:56:05 void systemd[1]: Listening on udev Varlink Socket.
Feb 27 20:56:05 void systemd[1]: Listening on User Database Manager Socket.
Feb 27 20:56:05 void systemd[1]: Mounting Huge Pages File System...
Feb 27 20:56:05 void systemd[1]: Mounting POSIX Message Queue File System...
Feb 27 20:56:05 void systemd[1]: Mounting Kernel Debug File System...
Feb 27 20:56:05 void systemd[1]: Mounting Kernel Trace File System...
Feb 27 20:56:05 void systemd[1]: Starting Create List of Static Device Nodes...
Feb 27 20:56:05 void systemd[1]: Load Kernel Module configfs was skipped because of an unmet condition check (ConditionKernelModuleLoaded=!configfs).
Feb 27 20:56:05 void systemd[1]: Mounting Kernel Configuration File System...
Feb 27 20:56:05 void systemd[1]: Load Kernel Module dm_mod was skipped because of an unmet condition check (ConditionKernelModuleLoaded=!dm_mod).
Feb 27 20:56:05 void systemd[1]: Load Kernel Module drm was skipped because of an unmet condition check (ConditionKernelModuleLoaded=!drm).
Feb 27 20:56:05 void systemd[1]: Load Kernel Module fuse was skipped because of an unmet condition check (ConditionKernelModuleLoaded=!fuse).
Feb 27 20:56:05 void systemd[1]: Mounting FUSE Control File System...
Feb 27 20:56:05 void systemd[1]: Starting Load Kernel Module loop...
Feb 27 20:56:05 void systemd[1]: systemd-cryptsetup@root.service: Deactivated successfully.
Feb 27 20:56:05 void systemd[1]: Stopped systemd-cryptsetup@root.service.
Feb 27 20:56:05 void systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
Feb 27 20:56:05 void systemd[1]: Starting Journal Service...
Feb 27 20:56:05 void systemd[1]: Starting Load Kernel Modules...
Feb 27 20:56:05 void systemd[1]: Starting TPM PCR Machine ID Measurement...
Feb 27 20:56:05 void systemd[1]: Starting Remount Root and Kernel File Systems...
Feb 27 20:56:05 void systemd[1]: Starting Early TPM SRK Setup...
Feb 27 20:56:05 void systemd[1]: Starting Load udev Rules from Credentials...
Feb 27 20:56:05 void systemd[1]: Starting Coldplug All udev Devices...
Feb 27 20:56:05 void kernel: loop: module loaded
Feb 27 20:56:05 void systemd[1]: Mounted Huge Pages File System.
Feb 27 20:56:05 void systemd[1]: Mounted POSIX Message Queue File System.
Feb 27 20:56:05 void systemd[1]: Mounted Kernel Debug File System.
Feb 27 20:56:05 void systemd[1]: Mounted Kernel Trace File System.
Feb 27 20:56:05 void systemd[1]: Finished Create List of Static Device Nodes.
Feb 27 20:56:05 void systemd[1]: Mounted Kernel Configuration File System.
Feb 27 20:56:05 void systemd[1]: Mounted FUSE Control File System.
Feb 27 20:56:05 void systemd[1]: modprobe@loop.service: Deactivated successfully.
Feb 27 20:56:05 void systemd[1]: Finished Load Kernel Module loop.
Feb 27 20:56:05 void systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
Feb 27 20:56:05 void kernel: kvmfr: loading out-of-tree module taints kernel.
Feb 27 20:56:05 void kernel: kvmfr: module verification failed: signature and/or required key missing - tainting kernel
Feb 27 20:56:05 void systemd-journald[411]: Collecting audit messages is disabled.
Feb 27 20:56:05 void systemd[1]: Finished Load udev Rules from Credentials.
Feb 27 20:56:05 void kernel: kvmfr: creating 1 static devices
Feb 27 20:56:05 void systemd-journald[411]: Journal started
Feb 27 20:56:05 void systemd-journald[411]: Runtime Journal (/run/log/journal/56540f92b6f44db0acf3ce8a3f761b70) is 8M, max 304.4M, 296.4M free.
Feb 27 20:56:05 void systemd[1]: Queued start job for default target Graphical Interface.
Feb 27 20:56:05 void systemd[1]: systemd-journald.service: Deactivated successfully.
Feb 27 20:56:05 void systemd[1]: Started Journal Service.
Feb 27 20:56:05 void systemd-modules-load[412]: Inserted module 'crypto_user'
Feb 27 20:56:05 void systemd-modules-load[412]: Inserted module 'kvmfr'
Feb 27 20:56:05 void kernel: kvmfr: kvmfr_module_init: module loaded
Feb 27 20:56:05 void kernel: EXT4-fs (dm-0): re-mounted 1fd5f280-5bc4-4bce-8161-c9738f31beef.
Feb 27 20:56:05 void systemd[1]: Finished Remount Root and Kernel File Systems.
Feb 27 20:56:05 void systemd[1]: Activating swap /swapfile...
Feb 27 20:56:05 void systemd[1]: Rebuild Hardware Database was skipped because no trigger condition checks were met.
Feb 27 20:56:05 void systemd[1]: Starting Flush Journal to Persistent Storage...
Feb 27 20:56:05 void systemd[1]: Starting Load/Save OS Random Seed...
Feb 27 20:56:05 void systemd-journald[411]: Time spent on flushing to /var/log/journal/56540f92b6f44db0acf3ce8a3f761b70 is 278.127ms for 1285 entries.
Feb 27 20:56:05 void systemd-journald[411]: System Journal (/var/log/journal/56540f92b6f44db0acf3ce8a3f761b70) is 48M, max 4G, 3.9G free.
Feb 27 20:56:05 void systemd-tpm2-setup[417]: SRK already stored in the TPM.
Feb 27 20:56:05 void systemd-journald[411]: Received client request to flush runtime journal.
Feb 27 20:56:05 void systemd[1]: Activated swap /swapfile.
Feb 27 20:56:05 void kernel: Adding 8388604k swap on /swapfile. Priority:-2 extents:8 across:8945660k SS
Feb 27 20:56:05 void systemd[1]: Reached target Swaps.
Feb 27 20:56:05 void kernel: nvidia-nvlink: Nvlink Core is being initialized, major device number 510
Feb 27 20:56:05 void systemd[1]: Starting User Database Manager...
Feb 27 20:56:05 void kernel:
Feb 27 20:56:05 void systemd[1]: Finished Load/Save OS Random Seed.
Feb 27 20:56:05 void kernel: nvidia 0000:01:00.0: enabling device (0000 -> 0003)
Feb 27 20:56:05 void systemd-pcrextend[413]: Extended PCR index 15 with 'machine-id:56540f92b6f44db0acf3ce8a3f761b70' (banks sha256).
Feb 27 20:56:05 void kernel: nvidia 0000:01:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=none
Feb 27 20:56:05 void systemd-tpm2-setup[417]: SRK fingerprint is 5671fe0b94d29550cd998adb186a5c0a0adda22212ab8006d34cbe01313815a1.
Feb 27 20:56:05 void kernel: NVRM: loading NVIDIA UNIX Open Kernel Module for x86_64 590.48.01 Release Build (root@)
Feb 27 20:56:05 void systemd-tpm2-setup[417]: SRK public key saved to '/run/systemd/tpm2-srk-public-key.pem' in PEM format.
Feb 27 20:56:05 void systemd-tpm2-setup[417]: SRK public key saved to '/run/systemd/tpm2-srk-public-key.tpm2b_public' in TPM2B_PUBLIC format.
Feb 27 20:56:05 void systemd[1]: Finished TPM PCR Machine ID Measurement.
Feb 27 20:56:05 void systemd[1]: Finished Early TPM SRK Setup.
Feb 27 20:56:05 void systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
Feb 27 20:56:05 void systemd[1]: Starting TPM SRK Setup...
Feb 27 20:56:05 void systemd[1]: Started User Database Manager.
Feb 27 20:56:05 void systemd-tpm2-setup[446]: SRK already stored in the TPM.
Feb 27 20:56:05 void systemd-tpm2-setup[446]: SRK fingerprint is 5671fe0b94d29550cd998adb186a5c0a0adda22212ab8006d34cbe01313815a1.
Feb 27 20:56:05 void systemd-tpm2-setup[446]: SRK saved in '/var/lib/systemd/tpm2-srk-public-key.pem' matches SRK in TPM2.
Feb 27 20:56:05 void systemd[1]: Finished TPM SRK Setup.
Feb 27 20:56:05 void systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
Feb 27 20:56:05 void systemd[1]: Starting Create System Users...
Feb 27 20:56:05 void systemd[1]: Finished Create System Users.
Feb 27 20:56:05 void systemd[1]: Starting Create Static Device Nodes in /dev...
Feb 27 20:56:05 void systemd[1]: Finished Create Static Device Nodes in /dev.
Feb 27 20:56:05 void systemd[1]: Reached target Preparation for Local File Systems.
Feb 27 20:56:05 void systemd[1]: Starting Rule-based Manager for Device Events and Files...
Feb 27 20:56:05 void systemd-udevd[456]: Using default interface naming scheme 'v258'.
Feb 27 20:56:05 void systemd-udevd[456]: /etc/udev/rules.d/00-kvmfr.rules:1 User 'x254lb' is not a system user, ignoring.
Feb 27 20:56:05 void systemd[1]: Finished Coldplug All udev Devices.
Feb 27 20:56:05 void systemd[1]: Started Rule-based Manager for Device Events and Files.
Feb 27 20:56:05 void systemd-modules-load[412]: Inserted module 'nvidia_uvm'
Feb 27 20:56:05 void systemd[1]: Finished Load Kernel Modules.
Feb 27 20:56:05 void systemd[1]: Starting Apply Kernel Variables...
Feb 27 20:56:05 void systemd[1]: Finished Flush Journal to Persistent Storage.
Feb 27 20:56:05 void systemd[1]: Finished Apply Kernel Variables.
Feb 27 20:56:05 void systemd[1]: Load Kernel Module configfs was skipped because of an unmet condition check (ConditionKernelModuleLoaded=!configfs).
Feb 27 20:56:05 void systemd[1]: Load Kernel Module fuse was skipped because of an unmet condition check (ConditionKernelModuleLoaded=!fuse).
Feb 27 20:56:05 void systemd[1]: Condition check resulted in /dev/tpmrm0 being skipped.
Feb 27 20:56:05 void systemd[1]: Expecting device /dev/tpm0...
Feb 27 20:56:05 void mtp-probe[534]: checking bus 3, device 2: "/sys/devices/pci0000:00/0000:00:08.1/0000:35:00.4/usb3/3-2"
Feb 27 20:56:05 void mtp-probe[534]: bus: 3, device: 2 was not an MTP device
Feb 27 20:56:05 void systemd[1]: Condition check resulted in /dev/tpm0 being skipped.
Feb 27 20:56:05 void systemd[1]: Reached target Trusted Platform Module.
Feb 27 20:56:05 void systemd[1]: Condition check resulted in MTFDKBA512QFM-1BD1AABGB 1 being skipped.
Feb 27 20:56:05 void kernel: ACPI: bus type thunderbolt registered
Feb 27 20:56:05 void kernel: mousedev: PS/2 mouse device common for all mice
Feb 27 20:56:05 void mtp-probe[547]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:08.1/0000:35:00.3/usb1/1-4"
Feb 27 20:56:05 void mtp-probe[547]: bus: 1, device: 2 was not an MTP device
Feb 27 20:56:05 void kernel: input: PC Speaker as /devices/platform/pcspkr/input/input10
Feb 27 20:56:05 void kernel: mc: Linux media interface: v0.10
Feb 27 20:56:05 void kernel: RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
Feb 27 20:56:05 void kernel: RAPL PMU: hw unit of domain package 2^-16 Joules
Feb 27 20:56:05 void kernel: RAPL PMU: hw unit of domain core 2^-16 Joules
Feb 27 20:56:05 void kernel: input: ITE5570:00 048D:8051 as /devices/platform/AMDI0010:00/i2c-0/i2c-ITE5570:00/0018:048D:8051.0004/input/input11
Feb 27 20:56:05 void kernel: hid-generic 0018:048D:8051.0004: input,hidraw3: I2C HID v1.00 Device [ITE5570:00 048D:8051] on i2c-ITE5570:00
Feb 27 20:56:05 void systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Feb 27 20:56:05 void systemd[1]: Starting Virtual Console Setup...
Feb 27 20:56:06 void kernel: input: ASUF1204:00 2808:0202 Mouse as /devices/platform/AMDI0010:01/i2c-1/i2c-ASUF1204:00/0018:2808:0202.0005/input/input12
Feb 27 20:56:06 void kernel: input: ASUF1204:00 2808:0202 Touchpad as /devices/platform/AMDI0010:01/i2c-1/i2c-ASUF1204:00/0018:2808:0202.0005/input/input13
Feb 27 20:56:06 void kernel: hid-generic 0018:2808:0202.0005: input,hidraw4: I2C HID v1.00 Mouse [ASUF1204:00 2808:0202] on i2c-ASUF1204:00
Feb 27 20:56:06 void kernel: piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
Feb 27 20:56:06 void kernel: piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
Feb 27 20:56:06 void kernel: i2c i2c-21: Successfully instantiated SPD at 0x50
Feb 27 20:56:06 void kernel: i2c i2c-21: Successfully instantiated SPD at 0x51
Feb 27 20:56:06 void kernel: piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
Feb 27 20:56:06 void systemd[1]: Created slice Slice /system/systemd-backlight.
Feb 27 20:56:06 void systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:nvidia_wmi_ec_backlight...
Feb 27 20:56:06 void kernel: sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
Feb 27 20:56:06 void kernel: asus_wmi: ASUS WMI generic driver loaded
Feb 27 20:56:06 void kernel: videodev: Linux video capture interface: v2.00
Feb 27 20:56:06 void kernel: sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
Feb 27 20:56:06 void kernel: sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
Feb 27 20:56:06 void systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:nvidia_wmi_ec_backlight.
Feb 27 20:56:06 void systemd[1]: Finished Virtual Console Setup.
Feb 27 20:56:06 void kernel: input: ASUF1204:00 2808:0202 Mouse as /devices/platform/AMDI0010:01/i2c-1/i2c-ASUF1204:00/0018:2808:0202.0005/input/input16
Feb 27 20:56:06 void kernel: input: ASUF1204:00 2808:0202 Touchpad as /devices/platform/AMDI0010:01/i2c-1/i2c-ASUF1204:00/0018:2808:0202.0005/input/input17
Feb 27 20:56:06 void kernel: hid-multitouch 0018:2808:0202.0005: input,hidraw4: I2C HID v1.00 Mouse [ASUF1204:00 2808:0202] on i2c-ASUF1204:00
Feb 27 20:56:06 void kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Feb 27 20:56:06 void kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Feb 27 20:56:06 void kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
Feb 27 20:56:06 void kernel: asus_wmi: Initialization: 0x1
Feb 27 20:56:06 void kernel: Bluetooth: Core ver 2.22
Feb 27 20:56:06 void kernel: NET: Registered PF_BLUETOOTH protocol family
Feb 27 20:56:06 void kernel: Bluetooth: HCI device and connection manager initialized
Feb 27 20:56:06 void kernel: Bluetooth: HCI socket layer initialized
Feb 27 20:56:06 void kernel: Bluetooth: L2CAP socket layer initialized
Feb 27 20:56:06 void kernel: Bluetooth: SCO socket layer initialized
Feb 27 20:56:06 void kernel: asus_wmi: SFUN value: 0x21
Feb 27 20:56:06 void kernel: asus-nb-wmi asus-nb-wmi: Detected ATK, not ASUSWMI, use DSTS
Feb 27 20:56:06 void kernel: spd5118 21-0050: DDR5 temperature sensor: vendor 0x00:0xb3 revision 2.2
Feb 27 20:56:06 void systemd[1]: Load Kernel Module dm_mod was skipped because of an unmet condition check (ConditionKernelModuleLoaded=!dm_mod).
Feb 27 20:56:06 void systemd[1]: Load Kernel Module loop was skipped because of an unmet condition check (ConditionKernelModuleLoaded=!loop).
Feb 27 20:56:06 void systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
Feb 27 20:56:06 void systemd[1]: Rebuild Hardware Database was skipped because no trigger condition checks were met.
Feb 27 20:56:06 void systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
Feb 27 20:56:06 void kernel: faux_driver regulatory: Direct firmware load for regulatory.db failed with error -2
Feb 27 20:56:06 void kernel: cfg80211: failed to load regulatory.db
Feb 27 20:56:06 void kernel: snd_pci_acp6x 0000:35:00.5: enabling device (0000 -> 0002)
Feb 27 20:56:06 void kernel: spd5118 21-0051: DDR5 temperature sensor: vendor 0x00:0xb3 revision 2.2
Feb 27 20:56:06 void kernel: kvm_amd: TSC scaling supported
Feb 27 20:56:06 void kernel: kvm_amd: Nested Virtualization enabled
Feb 27 20:56:06 void kernel: kvm_amd: Nested Paging enabled
Feb 27 20:56:06 void kernel: kvm_amd: LBR virtualization supported
Feb 27 20:56:06 void kernel: kvm_amd: Virtual VMLOAD VMSAVE supported
Feb 27 20:56:06 void kernel: kvm_amd: Virtual GIF supported
Feb 27 20:56:06 void kernel: asus-nb-wmi asus-nb-wmi: Using throttle_thermal_policy for platform_profile support
Feb 27 20:56:06 void kernel: r8169 0000:02:00.0 eth0: RTL8168h/8111h, cc:28:aa:16:9e:25, XID 541, IRQ 91
Feb 27 20:56:06 void kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
Feb 27 20:56:06 void kernel: r8169 0000:02:00.0 eno1: renamed from eth0
Feb 27 20:56:06 void kernel: input: Asus WMI hotkeys as /devices/platform/asus-nb-wmi/input/input20
Feb 27 20:56:06 void kernel: asus_wmi: fan_curve_get_factory_default (0x00110032) failed: -19
Feb 27 20:56:06 void kernel: asus_wmi: using asus-wmi for asus::kbd_backlight
Feb 27 20:56:06 void systemd[1]: Starting Load/Save Screen Backlight Brightness of leds:asus::kbd_backlight...
Feb 27 20:56:06 void kernel: ACPI: battery: new hook: ASUS Battery Extension
Feb 27 20:56:06 void kernel: usbcore: registered new interface driver btusb
Feb 27 20:56:06 void systemd[1]: Starting Load/Save RF Kill Switch Status...
Feb 27 20:56:06 void kernel: uvcvideo 1-4:1.0: Found UVC 1.00 device USB2.0 HD UVC WebCam (322e:2233)
Feb 27 20:56:06 void kernel: Bluetooth: hci0: RTL: examining hci_ver=0b hci_rev=000b lmp_ver=0b lmp_subver=8852
Feb 27 20:56:06 void kernel: Bluetooth: hci0: RTL: rom_version status=0 version=1
Feb 27 20:56:06 void kernel: Bluetooth: hci0: RTL: btrtl_initialize: key id 0
Feb 27 20:56:06 void kernel: Bluetooth: hci0: RTL: loading rtl_bt/rtl8852bu_fw.bin
Feb 27 20:56:06 void systemd[1]: Finished Load/Save Screen Backlight Brightness of leds:asus::kbd_backlight.
Feb 27 20:56:06 void systemd[1]: Reached target Bluetooth Support.
Feb 27 20:56:06 void systemd[1]: Started Load/Save RF Kill Switch Status.
Feb 27 20:56:06 void kernel: Bluetooth: hci0: RTL: loading rtl_bt/rtl8852bu_config.bin
Feb 27 20:56:06 void kernel: Bluetooth: hci0: RTL: cfg_sz 6, total sz 60107
Feb 27 20:56:06 void kernel: usbcore: registered new interface driver uvcvideo
Feb 27 20:56:06 void kernel: amd_atl: AMD Address Translation Library initialized
Feb 27 20:56:06 void kernel: intel_rapl_common: Found RAPL domain package
Feb 27 20:56:06 void kernel: intel_rapl_common: Found RAPL domain core
Feb 27 20:56:06 void kernel: rtw89_8852be 0000:03:00.0: loaded firmware rtw89/rtw8852b_fw-1.bin
Feb 27 20:56:06 void kernel: rtw89_8852be 0000:03:00.0: Firmware version 0.29.29.15 (6fb3ec41), cmd version 0, type 5
Feb 27 20:56:06 void kernel: rtw89_8852be 0000:03:00.0: Firmware version 0.29.29.15 (6fb3ec41), cmd version 0, type 3
Feb 27 20:56:06 void systemd[1]: Mounting /efi...
Feb 27 20:56:06 void systemd[1]: Mounting Temporary Directory /tmp...
Feb 27 20:56:06 void systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
Feb 27 20:56:06 void systemd[1]: Listening on Disk Image Download Service Socket.
Feb 27 20:56:06 void systemd[1]: Mounted Temporary Directory /tmp.
Feb 27 20:56:06 void systemd[1]: Mounted /efi.
Feb 27 20:56:06 void systemd[1]: Reached target Local File Systems.
Feb 27 20:56:06 void systemd[1]: Listening on Boot Entries Service Socket.
Feb 27 20:56:06 void systemd[1]: Listening on System Extension Image Management.
Feb 27 20:56:06 void systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
Feb 27 20:56:06 void systemd[1]: Starting Update Boot Loader Random Seed...
Feb 27 20:56:06 void systemd[1]: Starting Create System Files and Directories...
Feb 27 20:56:06 void systemd[1]: Starting Load JSON user/group Records from Credentials...
Feb 27 20:56:06 void systemd[1]: Finished Load JSON user/group Records from Credentials.
Feb 27 20:56:06 void kernel: snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
Feb 27 20:56:06 void kernel: snd_hda_intel 0000:01:00.1: Disabling MSI
Feb 27 20:56:06 void kernel: snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
Feb 27 20:56:06 void kernel: snd_hda_intel 0000:35:00.1: enabling device (0000 -> 0002)
Feb 27 20:56:06 void kernel: snd_hda_intel 0000:35:00.1: Handle vga_switcheroo audio client
Feb 27 20:56:06 void kernel: snd_hda_intel 0000:35:00.6: enabling device (0000 -> 0002)
Feb 27 20:56:06 void bootctl[592]: Random seed file /efi/loader/random-seed successfully refreshed (32 bytes).
Feb 27 20:56:06 void kernel: snd_hda_intel 0000:35:00.1: bound 0000:35:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
Feb 27 20:56:06 void kernel: input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.1/0000:35:00.1/sound/card1/input21
Feb 27 20:56:06 void systemd[1]: Finished Update Boot Loader Random Seed.
Feb 27 20:56:06 void systemd[1]: Reached target Sound Card.
Feb 27 20:56:06 void kernel: input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/0000:01:00.1/sound/card0/input22
Feb 27 20:56:06 void kernel: input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.1/0000:01:00.1/sound/card0/input23
Feb 27 20:56:06 void kernel: input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.1/0000:01:00.1/sound/card0/input24
Feb 27 20:56:06 void kernel: input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.1/0000:01:00.1/sound/card0/input25
Feb 27 20:56:06 void kernel: nvidia-modeset: Loading NVIDIA UNIX Open Kernel Mode Setting Driver for x86_64 590.48.01 Release Build (root@)
Feb 27 20:56:06 void kernel: snd_hda_codec_alc269 hdaudioC2D0: ALC256: picked fixup (pin match)
Feb 27 20:56:06 void kernel: snd_hda_codec_alc269 hdaudioC2D0: autoconfig for ALC256: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
Feb 27 20:56:06 void kernel: snd_hda_codec_alc269 hdaudioC2D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Feb 27 20:56:06 void kernel: snd_hda_codec_alc269 hdaudioC2D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
Feb 27 20:56:06 void kernel: snd_hda_codec_alc269 hdaudioC2D0: mono: mono_out=0x0
Feb 27 20:56:06 void kernel: snd_hda_codec_alc269 hdaudioC2D0: inputs:
Feb 27 20:56:06 void kernel: snd_hda_codec_alc269 hdaudioC2D0: Internal Mic=0x12
Feb 27 20:56:06 void kernel: snd_hda_codec_alc269 hdaudioC2D0: Headset Mic=0x19
Feb 27 20:56:06 void kernel: [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
Feb 27 20:56:06 void systemd[1]: Finished Create System Files and Directories.
Feb 27 20:56:06 void systemd[1]: Starting Rebuild Dynamic Linker Cache...
Feb 27 20:56:06 void systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Feb 27 20:56:06 void systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Feb 27 20:56:06 void systemd[1]: Starting Rebuild Journal Catalog...
Feb 27 20:56:06 void systemd[1]: Save Transient machine-id to Disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
Feb 27 20:56:06 void systemd[1]: Starting Record System Boot/Shutdown in UTMP...
Feb 27 20:56:06 void kernel: typec port1: bound usb2-port2 (ops connector_ops)
Feb 27 20:56:06 void kernel: typec port1: bound usb8-port1 (ops connector_ops)
Feb 27 20:56:06 void kernel: typec port1: bound usb9-port1 (ops connector_ops)
Feb 27 20:56:06 void systemd[1]: Finished Record System Boot/Shutdown in UTMP.
Feb 27 20:56:06 void systemd[1]: Finished Rebuild Journal Catalog.
Feb 27 20:56:06 void kernel: rtw89_8852be 0000:03:00.0: chip rfe_type is 1
Feb 27 20:56:06 void kernel: rtw89_8852be 0000:03:00.0: rfkill hardware state changed to enable
Feb 27 20:56:06 void kernel: rtw89_8852be 0000:03:00.0 wlp3s0: renamed from wlan0
Feb 27 20:56:06 void systemd[1]: Finished Rebuild Dynamic Linker Cache.
Feb 27 20:56:06 void systemd[1]: Starting Update is Completed...
Feb 27 20:56:06 void kernel: input: HD-Audio Generic Headphone as /devices/pci0000:00/0000:00:08.1/0000:35:00.6/sound/card2/input26
Feb 27 20:56:06 void systemd[1]: Finished Update is Completed.
Feb 27 20:56:06 void systemd[1]: Reached target System Initialization.
Feb 27 20:56:06 void systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
Feb 27 20:56:06 void systemd[1]: Started Daily verification of password and group files.
Feb 27 20:56:06 void systemd[1]: Started Daily Cleanup of Temporary Directories.
Feb 27 20:56:06 void systemd[1]: Reached target Timer Units.
Feb 27 20:56:06 void systemd[1]: Listening on D-Bus System Message Bus Socket.
Feb 27 20:56:06 void systemd[1]: Listening on GnuPG network certificate management daemon for /etc/pacman.d/gnupg.
Feb 27 20:56:06 void systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers) for /etc/pacman.d/gnupg.
Feb 27 20:56:06 void systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (restricted) for /etc/pacman.d/gnupg.
Feb 27 20:56:06 void systemd[1]: Listening on GnuPG cryptographic agent (ssh-agent emulation) for /etc/pacman.d/gnupg.
Feb 27 20:56:06 void systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache for /etc/pacman.d/gnupg.
Feb 27 20:56:06 void systemd[1]: Listening on GnuPG public key management service for /etc/pacman.d/gnupg.
Feb 27 20:56:06 void systemd[1]: Listening on libvirt legacy monolithic daemon socket.
Feb 27 20:56:06 void systemd[1]: Listening on libvirt legacy monolithic daemon admin socket.
Feb 27 20:56:06 void systemd[1]: Listening on libvirt legacy monolithic daemon read-only socket.
Feb 27 20:56:06 void systemd[1]: Listening on Authorization Manager Agent Helper.
Feb 27 20:56:06 void systemd[1]: Listening on OpenSSH Server Socket (systemd-ssh-generator, AF_UNIX Local).
Feb 27 20:56:06 void kernel: ACPI Warning: \_SB.NPCF._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20250807/nsarguments-61)
Feb 27 20:56:06 void kernel: ACPI Warning: \_SB.PCI0.GPP0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20250807/nsarguments-61)
Feb 27 20:56:06 void kernel: NVRM: GPU0 testIfDsmSubFunctionEnabled: GPS ACPI DSM called before _acpiDsmSupportedFuncCacheInit subfunction = 11.
Feb 27 20:56:06 void systemd[1]: Listening on Hostname Service Socket.
Feb 27 20:56:06 void systemd[1]: Listening on User Login Management Varlink Socket.
Feb 27 20:56:06 void systemd[1]: Listening on Virtual Machine and Container Registration Service Socket.
Feb 27 20:56:06 void systemd[1]: Listening on libvirt locking daemon socket.
Feb 27 20:56:06 void systemd[1]: Listening on libvirt locking daemon admin socket.
Feb 27 20:56:06 void systemd[1]: Listening on libvirt logging daemon socket.
Feb 27 20:56:06 void systemd[1]: Listening on libvirt logging daemon admin socket.
Feb 27 20:56:06 void systemd[1]: Reached target Socket Units.
Feb 27 20:56:06 void systemd[1]: Starting D-Bus System Message Bus...
Feb 27 20:56:06 void systemd[1]: Starting TPM PCR Barrier (Initialization)...
Feb 27 20:56:06 void dbus-broker-launch[634]: Looking up NSS group entry for 'sudo'...
Feb 27 20:56:06 void dbus-broker-launch[634]: NSS returned no entry for 'sudo'
Feb 27 20:56:06 void dbus-broker-launch[634]: Invalid group-name in /usr/share/dbus-1/system.d/asusd.conf +9: group="sudo"
Feb 27 20:56:06 void systemd[1]: Started D-Bus System Message Bus.
Feb 27 20:56:06 void dbus-broker-launch[634]: Ready
Feb 27 20:56:06 void systemd-pcrextend[635]: Extended PCR index 11 with 'sysinit' (banks sha256).
Feb 27 20:56:06 void systemd[1]: Finished TPM PCR Barrier (Initialization).
Feb 27 20:56:06 void systemd[1]: Reached target Basic System.
Feb 27 20:56:06 void systemd[1]: Starting Network Manager...
Feb 27 20:56:06 void systemd[1]: Started nvidia-powerd service.
Feb 27 20:56:06 void systemd[1]: Starting ASUS Notebook Control...
Feb 27 20:56:06 void systemd[1]: Starting User Login Management...
Feb 27 20:56:06 void systemd[1]: Starting Virtual Machine and Container Registration Service...
Feb 27 20:56:06 void systemd[1]: Starting TPM PCR Barrier (User)...
Feb 27 20:56:06 void systemd[1]: Started Virtual Machine and Container Registration Service.
Feb 27 20:56:06 void nvidia-powerd[641]: nvidia-powerd version:2.0 (build 1)
Feb 27 20:56:06 void systemd-pcrextend[645]: Extended PCR index 11 with 'ready' (banks sha256).
Feb 27 20:56:06 void systemd[1]: Finished TPM PCR Barrier (User).
Feb 27 20:56:06 void systemd-logind[643]: New seat seat0.
Feb 27 20:56:06 void systemd-logind[643]: Watching system buttons on /dev/input/event0 (Power Button)
Feb 27 20:56:06 void systemd-logind[643]: Watching system buttons on /dev/input/event2 (Lid Switch)
Feb 27 20:56:06 void systemd-logind[643]: Watching system buttons on /dev/input/event1 (Sleep Button)
Feb 27 20:56:06 void systemd-logind[643]: Watching system buttons on /dev/input/event4 (HS6209 2.4G Wireless Receiver)
Feb 27 20:56:06 void systemd-logind[643]: Watching system buttons on /dev/input/event7 (HS6209 2.4G Wireless Receiver Keyboard)
Feb 27 20:56:06 void systemd-logind[643]: Watching system buttons on /dev/input/event3 (AT Translated Set 2 keyboard)
Feb 27 20:56:06 void systemd[1]: Started User Login Management.
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.7676] NetworkManager (version 1.54.3-1) is starting... (boot:116ac615-74fa-42ee-896f-ab47f8d7f4e5)
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.7678] Read config: /etc/NetworkManager/NetworkManager.conf, /usr/lib/NetworkManager/conf.d/20-connectivity.conf
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.7753] manager[0x558b89dacfd0]: monitoring kernel firmware directory '/lib/firmware'.
Feb 27 20:56:06 void systemd[1]: Starting Hostname Service...
Feb 27 20:56:06 void systemd[1]: Started Hostname Service.
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.8387] hostname: hostname: using hostnamed
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.8387] hostname: static hostname changed from (none) to "void"
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.8390] dns-mgr: init: dns=default,systemd-resolved rc-manager=symlink
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.8409] rfkill1: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:02.2/0000:03:00.0/ieee80211/phy0/rfkill1) (driver rtw89_8852be)
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.8412] manager[0x558b89dacfd0]: rfkill: Wi-Fi hardware radio set enabled
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.8412] manager[0x558b89dacfd0]: rfkill: WWAN hardware radio set enabled
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.8481] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.54.3-1/libnm-device-plugin-wwan.so)
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.8492] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.54.3-1/libnm-device-plugin-wifi.so)
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.8507] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.54.3-1/libnm-device-plugin-ovs.so)
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.8511] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.54.3-1/libnm-device-plugin-bluetooth.so)
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.8515] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.54.3-1/libnm-device-plugin-adsl.so)
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.8746] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.54.3-1/libnm-device-plugin-team.so)
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.8752] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.8752] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.8753] manager: Networking is enabled by state file
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.8757] settings: Loaded settings plugin: keyfile (internal)
Feb 27 20:56:06 void systemd[1]: Starting Network Manager Script Dispatcher Service...
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.8799] dhcp: init: Using DHCP client 'internal'
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.8801] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1)
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.8813] device (lo): state change: unmanaged -> unavailable (reason 'connection-assumed', managed-type: 'external')
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.8815] device (lo): state change: unavailable -> disconnected (reason 'connection-assumed', managed-type: 'external')
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.8822] device (lo): Activation: starting connection 'lo' (6d84757d-0a37-45f5-8879-42e165566ed4)
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.8827] manager: (eno1): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.8836] settings: (eno1): created default wired connection 'Wired connection 1'
Feb 27 20:56:06 void NetworkManager[640]: <info> [1772205966.8836] device (eno1): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
Feb 27 20:56:06 void systemd[1]: Started Network Manager Script Dispatcher Service.
Feb 27 20:56:06 void kernel: Generic FE-GE Realtek PHY r8169-0-200:00: attached PHY driver (mii_bus:phy_addr=r8169-0-200:00, irq=MAC)
Feb 27 20:56:06 void kernel: Bluetooth: hci0: RTL: fw version 0x42d34e04
Feb 27 20:56:07 void kernel: r8169 0000:02:00.0 eno1: Link is Down
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.0828] device (wlp3s0): driver supports Access Point (AP) mode
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.0836] manager: (wlp3s0): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/3)
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.0838] device (wlp3s0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
Feb 27 20:56:07 void kernel: Bluetooth: hci0: AOSP extensions version v1.00
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.2047] device (wlp3s0): set-hw-addr: set MAC address to FA:89:7E:1E:C4:70 (scanning)
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.3311] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Feb 27 20:56:07 void systemd[1]: Started Network Manager.
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.3334] ovsdb: disconnected from ovsdb
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.3334] device (lo): state change: disconnected -> prepare (reason 'none', managed-type: 'external')
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.3335] device (lo): state change: prepare -> config (reason 'none', managed-type: 'external')
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.3336] device (lo): state change: config -> ip-config (reason 'none', managed-type: 'external')
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.3338] device (lo): state change: ip-config -> ip-check (reason 'none', managed-type: 'external')
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.3346] device (lo): state change: ip-check -> secondaries (reason 'none', managed-type: 'external')
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.3346] device (lo): state change: secondaries -> activated (reason 'none', managed-type: 'external')
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.3348] device (lo): Activation: successful, device activated.
Feb 27 20:56:07 void systemd[1]: Starting Tailscale node agent...
Feb 27 20:56:07 void systemd[1]: Starting WPA supplicant...
Feb 27 20:56:07 void systemd[1]: Started WPA supplicant.
Feb 27 20:56:07 void wpa_supplicant[684]: Successfully initialized wpa_supplicant
Feb 27 20:56:07 void systemd[1]: Reached target Network.
Feb 27 20:56:07 void systemd[1]: Starting libvirt legacy monolithic daemon...
Feb 27 20:56:07 void systemd[1]: Starting Permit User Sessions...
Feb 27 20:56:07 void systemd[1]: Finished Permit User Sessions.
Feb 27 20:56:07 void systemd[1]: Started Simple Desktop Display Manager.
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.3961] device (wlp3s0): supplicant interface state: internal-starting -> disconnected
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.3961] Wi-Fi P2P device controlled by interface wlp3s0 created
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.3962] manager: (p2p-dev-wlp3s0): new 802.11 Wi-Fi P2P device (/org/freedesktop/NetworkManager/Devices/4)
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.3963] device (p2p-dev-wlp3s0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
Feb 27 20:56:07 void NetworkManager[640]: <warn> [1772205967.3964] device (p2p-dev-wlp3s0): error setting IPv4 forwarding to '0': Resource temporarily unavailable
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.3965] device (wlp3s0): state change: unavailable -> disconnected (reason 'supplicant-available', managed-type: 'full')
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.3968] device (p2p-dev-wlp3s0): state change: unavailable -> disconnected (reason 'none', managed-type: 'full')
Feb 27 20:56:07 void systemd[1]: Started libvirt legacy monolithic daemon.
Feb 27 20:56:07 void sddm[696]: Initializing...
Feb 27 20:56:07 void sddm[696]: Starting...
Feb 27 20:56:07 void sddm[696]: Logind interface found
Feb 27 20:56:07 void sddm[696]: Adding new display...
Feb 27 20:56:07 void sddm[696]: Loaded empty theme configuration
Feb 27 20:56:07 void sddm[696]: Xauthority path: "/run/sddm/xauth_gwveWb"
Feb 27 20:56:07 void sddm[696]: Using VT 2
Feb 27 20:56:07 void sddm[696]: Display server starting...
Feb 27 20:56:07 void sddm[696]: Writing cookie to "/run/sddm/xauth_gwveWb"
Feb 27 20:56:07 void sddm[696]: Running: /usr/bin/X -nolisten tcp -background none -seat seat0 vt2 -auth /run/sddm/xauth_gwveWb -noreset -displayfd 16
Feb 27 20:56:07 void tailscaled[683]: TPM: successfully read all properties
Feb 27 20:56:07 void kernel: bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.4924] manager: (virbr0): new Bridge device (/org/freedesktop/NetworkManager/Devices/5)
Feb 27 20:56:07 void tailscaled[683]: logtail started
Feb 27 20:56:07 void tailscaled[683]: Program starting: v1.94.2, Go 1.25.7 X:nodwarf5: []string{"/usr/sbin/tailscaled", "--state=/var/lib/tailscale/tailscaled.state", "--socket=/run/tailscale/tailscaled.sock", "--port=41641"}
Feb 27 20:56:07 void tailscaled[683]: LogID: 5411eadfa621cd792e1df6f005308d032017a329da5f3ddcd1f2946c4aa2079a
Feb 27 20:56:07 void tailscaled[683]: logpolicy: using $STATE_DIRECTORY, "/var/lib/tailscale"
Feb 27 20:56:07 void dbus-broker-launch[634]: Activation request for 'org.freedesktop.resolve1' failed: The systemd unit 'dbus-org.freedesktop.resolve1.service' could not be found.
Feb 27 20:56:07 void tailscaled[683]: dns: [rc=nm resolved=nss nm-resolved=yes nm-resolved=no ret=direct]
Feb 27 20:56:07 void tailscaled[683]: dns: using "direct" mode
Feb 27 20:56:07 void tailscaled[683]: dns: using *dns.directManager
Feb 27 20:56:07 void tailscaled[683]: dns: inotify: NewDirWatcher: context canceled
Feb 27 20:56:07 void tailscaled[683]: logtail: dial "log.tailscale.com:443" failed: dial tcp: lookup log.tailscale.com: Temporary failure in name resolution (in 6ms), trying bootstrap...
Feb 27 20:56:07 void tailscaled[683]: trying bootstrapDNS("derp2e.tailscale.com", "192.73.252.134") for "log.tailscale.com" ...
Feb 27 20:56:07 void tailscaled[683]: bootstrapDNS("derp2e.tailscale.com", "192.73.252.134") for "log.tailscale.com" error: Get "https://derp2e.tailscale.com/bootstrap-dns?q=log.tailscale.com": dial tcp 192.73.252.134:443: connect: network is unreachable
Feb 27 20:56:07 void tailscaled[683]: trying bootstrapDNS("derp11.tailscale.com", "2600:1f1e:ee4:5611:ec5c:1736:d43b:a454") for "log.tailscale.com" ...
Feb 27 20:56:07 void tailscaled[683]: bootstrapDNS("derp11.tailscale.com", "2600:1f1e:ee4:5611:ec5c:1736:d43b:a454") for "log.tailscale.com" error: Get "https://derp11.tailscale.com/bootstrap-dns?q=log.tailscale.com": dial tcp [2600:1f1e:ee4:5611:ec5c:1736:d43b:a454]:443: connect: network is unreachable
Feb 27 20:56:07 void tailscaled[683]: trying bootstrapDNS("derp3.tailscale.com", "68.183.179.66") for "log.tailscale.com" ...
Feb 27 20:56:07 void tailscaled[683]: bootstrapDNS("derp3.tailscale.com", "68.183.179.66") for "log.tailscale.com" error: Get "https://derp3.tailscale.com/bootstrap-dns?q=log.tailscale.com": dial tcp 68.183.179.66:443: connect: network is unreachable
Feb 27 20:56:07 void tailscaled[683]: trying bootstrapDNS("derp12c.tailscale.com", "2001:19f0:5c01:2cb:5400:3ff:fe8d:cb60") for "log.tailscale.com" ...
Feb 27 20:56:07 void tailscaled[683]: bootstrapDNS("derp12c.tailscale.com", "2001:19f0:5c01:2cb:5400:3ff:fe8d:cb60") for "log.tailscale.com" error: Get "https://derp12c.tailscale.com/bootstrap-dns?q=log.tailscale.com": dial tcp [2001:19f0:5c01:2cb:5400:3ff:fe8d:cb60]:443: connect: network is unreachable
Feb 27 20:56:07 void tailscaled[683]: trying bootstrapDNS("derp2d.tailscale.com", "192.73.252.65") for "log.tailscale.com" ...
Feb 27 20:56:07 void tailscaled[683]: bootstrapDNS("derp2d.tailscale.com", "192.73.252.65") for "log.tailscale.com" error: Get "https://derp2d.tailscale.com/bootstrap-dns?q=log.tailscale.com": dial tcp 192.73.252.65:443: connect: network is unreachable
Feb 27 20:56:07 void tailscaled[683]: trying bootstrapDNS("derp4c.tailscale.com", "2a03:b0c0:3:d0::1501:6001") for "log.tailscale.com" ...
Feb 27 20:56:07 void tailscaled[683]: bootstrapDNS("derp4c.tailscale.com", "2a03:b0c0:3:d0::1501:6001") for "log.tailscale.com" error: Get "https://derp4c.tailscale.com/bootstrap-dns?q=log.tailscale.com": dial tcp [2a03:b0c0:3:d0::1501:6001]:443: connect: network is unreachable
Feb 27 20:56:07 void tailscaled[683]: trying bootstrapDNS("derp4c.tailscale.com", "134.122.77.138") for "log.tailscale.com" ...
Feb 27 20:56:07 void tailscaled[683]: bootstrapDNS("derp4c.tailscale.com", "134.122.77.138") for "log.tailscale.com" error: Get "https://derp4c.tailscale.com/bootstrap-dns?q=log.tailscale.com": dial tcp 134.122.77.138:443: connect: network is unreachable
Feb 27 20:56:07 void tailscaled[683]: trying bootstrapDNS("derp9c.tailscale.com", "2001:19f0:6401:fe7:5400:3ff:fe8d:6d9c") for "log.tailscale.com" ...
Feb 27 20:56:07 void tailscaled[683]: bootstrapDNS("derp9c.tailscale.com", "2001:19f0:6401:fe7:5400:3ff:fe8d:6d9c") for "log.tailscale.com" error: Get "https://derp9c.tailscale.com/bootstrap-dns?q=log.tailscale.com": dial tcp [2001:19f0:6401:fe7:5400:3ff:fe8d:6d9c]:443: connect: network is unreachable
Feb 27 20:56:07 void tailscaled[683]: trying bootstrapDNS("derp2f.tailscale.com", "208.111.34.178") for "log.tailscale.com" ...
Feb 27 20:56:07 void tailscaled[683]: bootstrapDNS("derp2f.tailscale.com", "208.111.34.178") for "log.tailscale.com" error: Get "https://derp2f.tailscale.com/bootstrap-dns?q=log.tailscale.com": dial tcp 208.111.34.178:443: connect: network is unreachable
Feb 27 20:56:07 void tailscaled[683]: trying bootstrapDNS("derp5.tailscale.com", "2001:19f0:5801:10b7:5400:2ff:feaa:284c") for "log.tailscale.com" ...
Feb 27 20:56:07 void tailscaled[683]: bootstrapDNS("derp5.tailscale.com", "2001:19f0:5801:10b7:5400:2ff:feaa:284c") for "log.tailscale.com" error: Get "https://derp5.tailscale.com/bootstrap-dns?q=log.tailscale.com": dial tcp [2001:19f0:5801:10b7:5400:2ff:feaa:284c]:443: connect: network is unreachable
Feb 27 20:56:07 void tailscaled[683]: trying bootstrapDNS("derp1e.tailscale.com", "64.225.56.166") for "log.tailscale.com" ...
Feb 27 20:56:07 void tailscaled[683]: bootstrapDNS("derp1e.tailscale.com", "64.225.56.166") for "log.tailscale.com" error: Get "https://derp1e.tailscale.com/bootstrap-dns?q=log.tailscale.com": dial tcp 64.225.56.166:443: connect: network is unreachable
Feb 27 20:56:07 void tailscaled[683]: trying bootstrapDNS("derp4c.tailscale.com", "2a03:b0c0:3:d0::1501:6001") for "log.tailscale.com" ...
Feb 27 20:56:07 void tailscaled[683]: bootstrapDNS("derp4c.tailscale.com", "2a03:b0c0:3:d0::1501:6001") for "log.tailscale.com" error: Get "https://derp4c.tailscale.com/bootstrap-dns?q=log.tailscale.com": dial tcp [2a03:b0c0:3:d0::1501:6001]:443: connect: network is unreachable
Feb 27 20:56:07 void tailscaled[683]: logtail: upload: log upload of 330 bytes compressed failed: Post "https://log.tailscale.com/c/tailnode.log.tailscale.io/b094562f3b8efdd4e651d3cdb6defee58992d0b88f76c8eaf8b316c5b928eb60": failed to resolve "log.tailscale.com": no DNS fallback candidates remain for "log.tailscale.com"
Feb 27 20:56:07 void kernel: u32 classifier
Feb 27 20:56:07 void kernel: Performance counters on
Feb 27 20:56:07 void kernel: input device check on
Feb 27 20:56:07 void kernel: Actions configured
Feb 27 20:56:07 void tailscaled[683]: wgengine.NewUserspaceEngine(tun "tailscale0") ...
Feb 27 20:56:07 void systemd[1]: Started Tailscale node agent.
Feb 27 20:56:07 void systemd[1]: Reached target Multi-User System.
Feb 27 20:56:07 void systemd[1]: Starting Power Profiles daemon...
Feb 27 20:56:07 void kernel: tun: Universal TUN/TAP device driver, 1.6
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.7018] manager: (tailscale0): new Tun device (/org/freedesktop/NetworkManager/Devices/6)
Feb 27 20:56:07 void systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 749 (tailscaled)
Feb 27 20:56:07 void systemd[1]: Mounting Arbitrary Executable File Formats File System...
Feb 27 20:56:07 void systemd[1]: Mounted Arbitrary Executable File Formats File System.
Feb 27 20:56:07 void tailscaled[683]: dns: [rc=nm resolved=nss nm-resolved=yes nm-resolved=no ret=direct]
Feb 27 20:56:07 void tailscaled[683]: dns: using "direct" mode
Feb 27 20:56:07 void tailscaled[683]: dns: using *dns.directManager
Feb 27 20:56:07 void tailscaled[683]: link state: interfaces.State{defaultRoute= ifs={} v4=false v6=false}
Feb 27 20:56:07 void tailscaled[683]: router: portUpdate(port=41641, network=udp6)
Feb 27 20:56:07 void tailscaled[683]: magicsock: disco key = d:ff982522edcccf05
Feb 27 20:56:07 void tailscaled[683]: magicsock: SetNetworkUp(false)
Feb 27 20:56:07 void tailscaled[683]: Creating WireGuard device...
Feb 27 20:56:07 void tailscaled[683]: router: using firewall mode pref
Feb 27 20:56:07 void tailscaled[683]: Bringing WireGuard device up...
Feb 27 20:56:07 void tailscaled[683]: Bringing router up...
Feb 27 20:56:07 void tailscaled[683]: external route: up
Feb 27 20:56:07 void tailscaled[683]: router: default choosing iptables
Feb 27 20:56:07 void tailscaled[683]: router: netfilter running in iptables mode v6 = true, v6filter = true, v6nat = true
Feb 27 20:56:07 void tailscaled[683]: router: portUpdate(port=41641, network=udp4)
Feb 27 20:56:07 void tailscaled[683]: Clearing router settings...
Feb 27 20:56:07 void tailscaled[683]: Starting network monitor...
Feb 27 20:56:07 void tailscaled[683]: Engine created.
Feb 27 20:56:07 void tailscaled[683]: magicsock: SetNetworkUp(true)
Feb 27 20:56:07 void tailscaled[683]: pm: using backend prefs for "profile-76a7": Prefs{ra=true dns=true want=true routes=[] statefulFiltering=false nf=on op="x254lb" update=check Persist{o=, n=[9UmGD] u="x254lbmathewthomas@github" ak=-}}
Feb 27 20:56:07 void tailscaled[683]: envknob: PORT="41641"
Feb 27 20:56:07 void tailscaled[683]: logpolicy: using $STATE_DIRECTORY, "/var/lib/tailscale"
Feb 27 20:56:07 void tailscaled[683]: linkChange: in state NoState; PAC or proxyConfig changed; updating routes
Feb 27 20:56:07 void tailscaled[683]: got LocalBackend in 39ms
Feb 27 20:56:07 void tailscaled[683]: Start
Feb 27 20:56:07 void tailscaled[683]: ipnext: active extensions: taildrop, conn25, portlist, posture, clientupdate, relayserver
Feb 27 20:56:07 void tailscaled[683]: Backend: logs: be:5411eadfa621cd792e1df6f005308d032017a329da5f3ddcd1f2946c4aa2079a fe:
Feb 27 20:56:07 void tailscaled[683]: control: client.Login(0)
Feb 27 20:56:07 void tailscaled[683]: control: setPaused(true)
Feb 27 20:56:07 void tailscaled[683]: control: updateRoutine: awaiting unpause
Feb 27 20:56:07 void tailscaled[683]: control: mapRoutine: awaiting unpause
Feb 27 20:56:07 void tailscaled[683]: control: authRoutine: awaiting unpause
Feb 27 20:56:07 void tailscaled[683]: health(warnable=warming-up): error: Tailscale is starting. Please wait.
Feb 27 20:56:07 void systemd[1]: Starting Authorization Manager...
Feb 27 20:56:07 void asusd[815]: Starting asusd daemon...
Feb 27 20:56:07 void asusd[815]: [INFO asusd] daemon v6.3.2
Feb 27 20:56:07 void asusd[815]: [INFO asusd] rog-anime v6.3.2
Feb 27 20:56:07 void asusd[815]: [INFO asusd] rog-slash v6.3.2
Feb 27 20:56:07 void asusd[815]: [INFO asusd] rog-aura v6.3.2
Feb 27 20:56:07 void asusd[815]: [INFO asusd] rog-profiles v6.3.2
Feb 27 20:56:07 void asusd[815]: [INFO asusd] rog-platform v6.3.2
Feb 27 20:56:07 void asusd[815]: [INFO asusd] Product family: ASUS TUF Gaming A15
Feb 27 20:56:07 void asusd[815]: [INFO asusd] Board name: FA507NU
Feb 27 20:56:07 void asusd[815]: [INFO zbus::connection] start_object_server; started_event=None
Feb 27 20:56:07 void asusd[815]: [INFO config_traits] Parsed RON for "asusd::config::Config"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::platform] Found platform support at "asus-nb-wmi"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::power] Power: Checking "/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0A:00/power_supply/BAT1"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::power] Found a battery
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::power] Checking battery attributes
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::power] Found battery power at "BAT1", matched charge_control_end_threshold. Current level: "100"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::power] Power: Checking "/sys/devices/platform/ACPI0003:00/power_supply/ACAD"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::power] Found mains power at "ACAD"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::power] Power: Checking "/sys/devices/platform/USBC000:00/power_supply/ucsi-source-psy-USBC000:001"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::power] Found USB-C power at "ucsi-source-psy-USBC000:001"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::power] Power: Checking "/sys/devices/platform/USBC000:00/power_supply/ucsi-source-psy-USBC000:002"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::power] Found USB-C power at "ucsi-source-psy-USBC000:002"
Feb 27 20:56:07 void asusd[815]: [INFO asusd] attribute on zbus initialized
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::platform] Found platform support at "asus-nb-wmi"
Feb 27 20:56:07 void polkitd[820]: Started polkitd version 127
Feb 27 20:56:07 void asusd[815]: [INFO asusd::ctrl_fancurves] Device has profile control available
Feb 27 20:56:07 void systemd[1]: Started Authorization Manager.
Feb 27 20:56:07 void systemd[1]: Started Power Profiles daemon.
Feb 27 20:56:07 void systemd[1]: Reached target Graphical Interface.
Feb 27 20:56:07 void asusd[815]: [INFO asusd::ctrl_fancurves] Device has fan curves available
Feb 27 20:56:07 void asusd[815]: [INFO config_traits] Parsed RON for "asusd::ctrl_fancurves::FanCurveConfig"
Feb 27 20:56:07 void asusd[815]: [INFO asusd::ctrl_fancurves] Fan curves previously stored, loading...
Feb 27 20:56:07 void asusd[815]: [INFO config_traits] Parsed RON for "asusd::ctrl_fancurves::FanCurveConfig"
Feb 27 20:56:07 void asusd[815]: [INFO asusd] FanCurves: found supported fancurves
Feb 27 20:56:07 void tailscaled[683]: monitor: RTM_NEWROUTE: src=192.168.122.1/0, dst=192.168.122.1/32, gw=, outif=4, table=255
Feb 27 20:56:07 void tailscaled[683]: monitor: RTM_NEWROUTE: src=192.168.122.1/0, dst=192.168.122.255/32, gw=, outif=4, table=255
Feb 27 20:56:07 void tailscaled[683]: monitor: RTM_NEWROUTE: src=192.168.122.1/0, dst=192.168.122.0/24, gw=, outif=4, table=254
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.7896] device (virbr0): state change: unmanaged -> unavailable (reason 'connection-assumed', managed-type: 'external')
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.7898] device (virbr0): state change: unavailable -> disconnected (reason 'connection-assumed', managed-type: 'external')
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.7900] device (virbr0): Activation: starting connection 'virbr0' (70e02b30-bbf1-49b9-a3a2-d4ee120bd00a)
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.7901] device (virbr0): state change: disconnected -> prepare (reason 'none', managed-type: 'external')
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.7902] device (virbr0): state change: prepare -> config (reason 'none', managed-type: 'external')
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.7902] device (virbr0): state change: config -> ip-config (reason 'none', managed-type: 'external')
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.7903] device (virbr0): state change: ip-config -> ip-check (reason 'none', managed-type: 'external')
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.7908] device (virbr0): state change: ip-check -> secondaries (reason 'none', managed-type: 'external')
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.7908] device (virbr0): state change: secondaries -> activated (reason 'none', managed-type: 'external')
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.7909] manager: NetworkManager state is now CONNECTED_LOCAL
Feb 27 20:56:07 void NetworkManager[640]: <info> [1772205967.7910] device (virbr0): Activation: successful, device activated.
Feb 27 20:56:07 void asusd[815]: [DEBUG rog_profiles] write_profile_curve_to_platform: writing profile:(balanced), CurveData { fan: CPU, pwm: [5, 22, 38, 74, 102, 104, 129, 154], temp: [45, 49, 54, 60, 70, 75, 81, 89], enabled: true }
Feb 27 20:56:07 void asusd[815]: [DEBUG rog_profiles] write_profile_curve_to_platform: writing profile:(balanced), CurveData { fan: GPU, pwm: [5, 20, 38, 78, 103, 128, 154, 180], temp: [40, 42, 43, 52, 61, 69, 79, 89], enabled: true }
Feb 27 20:56:07 void asusd[815]: [INFO asusd] FanCurves: initialized
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::backlight] Backlight: Checking "/sys/devices/pci0000:00/PNP0C14:00/wmi_bus/wmi_bus-PNP0C14:00/603E9613-EF25-4338-A3D0-C46177516DB7-0/backlight/nvidia_wmi_ec_backlight"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::backlight] Backlight: Checking "/sys/devices/pci0000:00/PNP0C14:00/wmi_bus/wmi_bus-PNP0C14:00/603E9613-EF25-4338-A3D0-C46177516DB7-0/backlight/nvidia_wmi_ec_backlight"
Feb 27 20:56:07 void asusd[815]: [ERROR asusd] Backlight: Missing functionality: No backlights found
Feb 27 20:56:07 void asusd[815]: [DEBUG asusd::ctrl_fancurves] watch_platform_profile changed
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::cpu] Found CPU support at "cpu0", checking supported items
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::cpu] cpufreq/scaling_available_governors: "performance powersave"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::cpu] cpufreq/scaling_governor: "performance"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::cpu] cpufreq/energy_performance_available_preferences: "performance"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::cpu] cpufreq/energy_performance_preference: "performance"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::cpu] Adding: "/sys/devices/system/cpu/cpu0"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::cpu] Adding: "/sys/devices/system/cpu/cpu1"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::cpu] Adding: "/sys/devices/system/cpu/cpu10"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::cpu] Adding: "/sys/devices/system/cpu/cpu11"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::cpu] Adding: "/sys/devices/system/cpu/cpu12"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::cpu] Adding: "/sys/devices/system/cpu/cpu13"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::cpu] Adding: "/sys/devices/system/cpu/cpu14"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::cpu] Adding: "/sys/devices/system/cpu/cpu15"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::cpu] Adding: "/sys/devices/system/cpu/cpu2"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::cpu] Adding: "/sys/devices/system/cpu/cpu3"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::cpu] Adding: "/sys/devices/system/cpu/cpu4"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::cpu] Adding: "/sys/devices/system/cpu/cpu5"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::cpu] Adding: "/sys/devices/system/cpu/cpu6"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::cpu] Adding: "/sys/devices/system/cpu/cpu7"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::cpu] Adding: "/sys/devices/system/cpu/cpu8"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::cpu] Adding: "/sys/devices/system/cpu/cpu9"
Feb 27 20:56:07 void asusd[815]: [INFO asusd] CtrlPlatform: initialized
Feb 27 20:56:07 void asusd[815]: [INFO asusd::ctrl_platform] Begin Platform settings restore
Feb 27 20:56:07 void asusd[815]: [INFO asusd::ctrl_platform] Starting inotify watch for asusd config file
Feb 27 20:56:07 void asusd[815]: [INFO asusd::ctrl_platform] reloading charge_control_end_threshold to 80
Feb 27 20:56:07 void asusd[815]: [DEBUG asusd::ctrl_platform] Setting Performance before EPP
Feb 27 20:56:07 void asusd[815]: [INFO asusd::ctrl_platform] ThrottlePolicy setting EPP
Feb 27 20:56:07 void asusd[815]: [DEBUG asusd::ctrl_platform] Available EPP: [Performance]
Feb 27 20:56:07 void asusd[815]: [DEBUG asusd::ctrl_platform] Setting Performance
Feb 27 20:56:07 void dnsmasq[863]: started, version 2.92 cachesize 150
Feb 27 20:56:07 void dnsmasq[863]: compile time options: IPv6 GNU-getopt DBus no-UBus i18n IDN2 DHCP DHCPv6 no-Lua TFTP conntrack ipset nftset auth DNSSEC loop-detect inotify dumpfile
Feb 27 20:56:07 void dnsmasq-dhcp[863]: DHCP, IP range 192.168.122.2 -- 192.168.122.254, lease time 1h
Feb 27 20:56:07 void dnsmasq-dhcp[863]: DHCP, sockets bound exclusively to interface virbr0
Feb 27 20:56:07 void dnsmasq[863]: no servers found in /etc/resolv.conf, will retry
Feb 27 20:56:07 void dnsmasq[863]: read /etc/hosts - 4 names
Feb 27 20:56:07 void dnsmasq[863]: read /var/lib/libvirt/dnsmasq/default.addnhosts - 0 names
Feb 27 20:56:07 void dnsmasq-dhcp[863]: read /var/lib/libvirt/dnsmasq/default.hostsfile
Feb 27 20:56:07 void asusd[815]: [DEBUG rog_profiles] write_profile_curve_to_platform: writing profile:(performance), CurveData { fan: CPU, pwm: [28, 45, 63, 81, 94, 129, 181, 254], temp: [20, 52, 57, 62, 67, 70, 80, 99], enabled: true }
Feb 27 20:56:07 void asusd[815]: [DEBUG rog_profiles] write_profile_curve_to_platform: writing profile:(performance), CurveData { fan: GPU, pwm: [25, 43, 66, 84, 112, 154, 206, 254], temp: [20, 39, 45, 50, 55, 66, 79, 99], enabled: true }
Feb 27 20:56:07 void asusd[815]: [DEBUG asusd::ctrl_fancurves] watch_platform_profile changed
Feb 27 20:56:07 void asusd[815]: [INFO asusd] CtrlPlatform: tasks started
Feb 27 20:56:07 void asusd[815]: [DEBUG asusd::aura_manager] Not ASUS vendor ID: 32c2
Feb 27 20:56:07 void asusd[815]: [DEBUG asusd::aura_manager] Not ASUS vendor ID: 32c2
Feb 27 20:56:07 void asusd[815]: [DEBUG asusd::aura_manager] Not ASUS vendor ID: 32c2
Feb 27 20:56:07 void asusd[815]: [DEBUG asusd::aura_types] Testing for USB Slash
Feb 27 20:56:07 void asusd[815]: [INFO asusd::aura_manager] Tested device was not Slash
Feb 27 20:56:07 void asusd[815]: [DEBUG asusd::aura_types] Testing for USB AniMe
Feb 27 20:56:07 void asusd[815]: [INFO asusd::aura_types] No Anime Matrix capable laptop found
Feb 27 20:56:07 void asusd[815]: [INFO asusd::aura_manager] Tested device was not AniMe Matrix
Feb 27 20:56:07 void asusd[815]: [INFO asusd::aura_manager] No USB keyboard aura, system is ASUS TUF Gaming A15 FA507NU_FA577NU, try using sysfs backlight control
Feb 27 20:56:07 void asusd[815]: [INFO asusd::aura_manager] TUF laptop, try using sysfs backlight control
Feb 27 20:56:07 void asusd[815]: [DEBUG asusd::aura_types] Testing for laptop aura
Feb 27 20:56:07 void asusd[815]: [INFO asusd::aura_types] Found laptop aura type "tuf"
Feb 27 20:56:07 void asusd[815]: [INFO rog_platform::keyboard_led] Found keyboard LED controls at "asus::kbd_backlight"
Feb 27 20:56:07 void asusd[815]: [INFO asusd::aura_types] Found sysfs backlight control
Feb 27 20:56:07 void asusd[815]: [INFO asusd::aura_laptop::config] Setting up AuraConfig for "tuf"
Feb 27 20:56:07 void asusd[815]: [INFO rog_aura::aura_detection] Loaded default LED support data from /usr/share/asusd/aura_support.ron
Feb 27 20:56:07 void asusd[815]: [INFO rog_aura::aura_detection] Matched to FA507
Feb 27 20:56:07 void asusd[815]: [DEBUG asusd::aura_laptop::config] creating default for Static
Feb 27 20:56:07 void asusd[815]: [DEBUG asusd::aura_laptop::config] creating default for Breathe
Feb 27 20:56:07 void asusd[815]: [DEBUG asusd::aura_laptop::config] creating default for RainbowCycle
Feb 27 20:56:07 void asusd[815]: [DEBUG asusd::aura_laptop::config] creating default for RainbowWave
Feb 27 20:56:07 void asusd[815]: [DEBUG asusd::aura_laptop::config] creating default for Pulse
Feb 27 20:56:07 void asusd[815]: [INFO config_traits] Parsed RON for "asusd::aura_laptop::config::AuraConfig"
Feb 27 20:56:07 void asusd[815]: [DEBUG asusd::aura_laptop::trait_impls] reloading keyboard mode
Feb 27 20:56:07 void asusd[815]: [DEBUG asusd::aura_laptop::trait_impls] reloading power states
Feb 27 20:56:07 void asusd[815]: [DEBUG asusd::aura_manager] No serial for SCSI device: "/devices/virtual/block/dm-0"
Feb 27 20:56:07 void asusd[815]: [INFO asusd::aura_manager] Found 1 valid devices on startup
Feb 27 20:56:07 void asusd[815]: [INFO asusd] DeviceManager initialized
Feb 27 20:56:07 void asusd[815]: [INFO zbus::connection] monitor_name_lost; name=xyz.ljones.Asusd
Feb 27 20:56:07 void asusd[815]: [INFO asusd] Startup success on dbus name xyz.ljones.Asusd: begining dbus server loop
Feb 27 20:56:07 void systemd[1]: Started ASUS Notebook Control.
Feb 27 20:56:07 void systemd[1]: Startup finished in 5.648s (firmware) + 3.642s (loader) + 755ms (kernel) + 3.402s (initrd) + 2.842s (userspace) = 16.290s.
Feb 27 20:56:08 void nvidia-powerd[641]: DBus Connection is established
Feb 27 20:56:08 void kernel: NVRM: testIfDsmSubFunctionEnabled: GPS ACPI DSM called before _acpiDsmSupportedFuncCacheInit subfunction = 11.
Feb 27 20:56:08 void kernel: nvidia-modeset: nvidia-modeset: ACPI reported no NVIDIA native backlight available; attempting to use ACPI backlight.
Feb 27 20:56:08 void kernel: nvidia-modeset: WARNING: GPU:0: Unable to read EDID for display device DP-2
Feb 27 20:56:08 void kernel: nvidia-modeset: WARNING: GPU:0: Unable to read EDID for display device DP-2
Feb 27 20:56:08 void kernel: [drm] Initialized nvidia-drm 0.0.0 for 0000:01:00.0 on minor 0
Feb 27 20:56:08 void kernel: nvidia 0000:01:00.0: [drm] Cannot find any crtc or sizes
Feb 27 20:56:08 void sddm[696]: Setting default cursor
Feb 27 20:56:08 void sddm[696]: Could not setup default cursor
Feb 27 20:56:08 void sddm[696]: Running display setup script "/usr/share/sddm/scripts/Xsetup"
Feb 27 20:56:08 void sddm[696]: Display server started.
Feb 27 20:56:08 void sddm[696]: Socket server starting...
Feb 27 20:56:08 void sddm[696]: Socket server started.
Feb 27 20:56:08 void sddm[696]: Loading theme configuration from "/usr/share/sddm/themes/sddm-astronaut-theme/Themes/pixel_sakura.conf"
Feb 27 20:56:08 void sddm[696]: Greeter starting...
Feb 27 20:56:08 void sddm-helper[901]: [PAM] Starting...
Feb 27 20:56:08 void sddm-helper[901]: [PAM] Authenticating...
Feb 27 20:56:08 void sddm-helper[901]: [PAM] returning.
Feb 27 20:56:08 void sddm-helper[901]: pam_unix(sddm-greeter:session): session opened for user sddm(uid=964) by (uid=0)
Feb 27 20:56:08 void systemd-logind[643]: New session 'c1' of user 'sddm' with class 'greeter' and type 'x11'.
Feb 27 20:56:08 void systemd[1]: Created slice User Slice of UID 964.
Feb 27 20:56:08 void systemd[1]: Starting User Runtime Directory /run/user/964...
Feb 27 20:56:08 void systemd[1]: Finished User Runtime Directory /run/user/964.
Feb 27 20:56:08 void systemd[1]: Starting User Manager for UID 964...
Feb 27 20:56:08 void dbus-broker-launch[634]: Activation request for 'org.freedesktop.home1' failed: The systemd unit 'dbus-org.freedesktop.home1.service' could not be found.
Feb 27 20:56:08 void (systemd)[908]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[sddm] ruser=[<unknown>] rhost=[<unknown>]
Feb 27 20:56:08 void (systemd)[908]: pam_unix(systemd-user:session): session opened for user sddm(uid=964) by sddm(uid=0)
Feb 27 20:56:08 void systemd-logind[643]: New session '1' of user 'sddm' with class 'manager-early' and type 'unspecified'.
Feb 27 20:56:08 void wpa_supplicant[684]: wlp3s0: CTRL-EVENT-REGDOM-CHANGE init=BEACON_HINT type=UNKNOWN
Feb 27 20:56:08 void wpa_supplicant[684]: wlp3s0: CTRL-EVENT-REGDOM-BEACON-HINT before freq=5200 max_tx_power=2000 no_ir=1
Feb 27 20:56:08 void wpa_supplicant[684]: wlp3s0: CTRL-EVENT-REGDOM-BEACON-HINT after freq=5200 max_tx_power=2000
Feb 27 20:56:08 void systemd[908]: Queued start job for default target Main User Target.
Feb 27 20:56:08 void wpa_supplicant[684]: wlp3s0: CTRL-EVENT-REGDOM-CHANGE init=BEACON_HINT type=UNKNOWN
Feb 27 20:56:08 void wpa_supplicant[684]: wlp3s0: CTRL-EVENT-REGDOM-BEACON-HINT before freq=5220 max_tx_power=2000 no_ir=1
Feb 27 20:56:08 void wpa_supplicant[684]: wlp3s0: CTRL-EVENT-REGDOM-BEACON-HINT after freq=5220 max_tx_power=2000
Feb 27 20:56:08 void systemd[908]: Created slice User Application Slice.
Feb 27 20:56:08 void systemd[908]: Reached target Paths.
Feb 27 20:56:08 void systemd[908]: Reached target Timers.
Feb 27 20:56:08 void systemd[908]: Starting D-Bus User Message Bus Socket...
Feb 27 20:56:08 void systemd[908]: Listening on GnuPG network certificate management daemon.
Feb 27 20:56:08 void systemd[908]: Listening on GNOME Keyring daemon.
Feb 27 20:56:08 void systemd[908]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Feb 27 20:56:08 void systemd[908]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Feb 27 20:56:08 void systemd[908]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Feb 27 20:56:08 void systemd[908]: Listening on GnuPG cryptographic agent and passphrase cache.
Feb 27 20:56:08 void systemd[908]: Listening on GnuPG public key management service.
Feb 27 20:56:08 void systemd[908]: Listening on p11-kit server.
Feb 27 20:56:08 void systemd[908]: Listening on PipeWire PulseAudio.
Feb 27 20:56:08 void systemd[908]: Listening on PipeWire Multimedia System Sockets.
Feb 27 20:56:08 void systemd[908]: Listening on Query the User Interactively for a Password.
Feb 27 20:56:08 void systemd[908]: Listening on D-Bus User Message Bus Socket.
Feb 27 20:56:08 void systemd[908]: Reached target Sockets.
Feb 27 20:56:08 void systemd[908]: Reached target Basic System.
Feb 27 20:56:08 void systemd[908]: Reached target Main User Target.
Feb 27 20:56:08 void systemd[908]: Startup finished in 81ms.
Feb 27 20:56:08 void systemd[1]: Started User Manager for UID 964.
Feb 27 20:56:08 void systemd[1]: Started Session c1 of User sddm.
Feb 27 20:56:08 void sddm-helper[901]: Writing cookie to "/tmp/xauth_jdhYTO"
Feb 27 20:56:08 void sddm-helper[901]: Starting X11 session: "" "/usr/bin/sddm-greeter-qt6 --socket /tmp/sddm-:0-gBQuow --theme /usr/share/sddm/themes/sddm-astronaut-theme"
Feb 27 20:56:08 void sddm[696]: Greeter session started successfully
Feb 27 20:56:08 void sddm-greeter-qt6[917]: High-DPI autoscaling Enabled
Feb 27 20:56:08 void tailscaled[683]: control: setPaused(false)
Feb 27 20:56:08 void tailscaled[683]: control: doLogin(regen=false, hasUrl=false)
Feb 27 20:56:08 void tailscaled[683]: control: trying bootstrapDNS("derp21d.tailscale.com", "162.248.221.248") for "controlplane.tailscale.com" ...
Feb 27 20:56:08 void tailscaled[683]: control: bootstrapDNS("derp21d.tailscale.com", "162.248.221.248") for "controlplane.tailscale.com" error: Get "https://derp21d.tailscale.com/bootstrap-dns?q=controlplane.tailscale.com": dial tcp 162.248.221.248:443: connect: network is unreachable
Feb 27 20:56:08 void tailscaled[683]: control: trying bootstrapDNS("derp12d.tailscale.com", "2607:f740:e::811") for "controlplane.tailscale.com" ...
Feb 27 20:56:08 void tailscaled[683]: control: bootstrapDNS("derp12d.tailscale.com", "2607:f740:e::811") for "controlplane.tailscale.com" error: Get "https://derp12d.tailscale.com/bootstrap-dns?q=controlplane.tailscale.com": dial tcp [2607:f740:e::811]:443: connect: network is unreachable
Feb 27 20:56:08 void tailscaled[683]: control: trying bootstrapDNS("derp5g.tailscale.com", "172.105.169.57") for "controlplane.tailscale.com" ...
Feb 27 20:56:08 void tailscaled[683]: control: bootstrapDNS("derp5g.tailscale.com", "172.105.169.57") for "controlplane.tailscale.com" error: Get "https://derp5g.tailscale.com/bootstrap-dns?q=controlplane.tailscale.com": dial tcp 172.105.169.57:443: connect: network is unreachable
Feb 27 20:56:08 void tailscaled[683]: control: trying bootstrapDNS("derp1f.tailscale.com", "2607:f740:f::bc") for "controlplane.tailscale.com" ...
Feb 27 20:56:08 void tailscaled[683]: control: bootstrapDNS("derp1f.tailscale.com", "2607:f740:f::bc") for "controlplane.tailscale.com" error: Get "https://derp1f.tailscale.com/bootstrap-dns?q=controlplane.tailscale.com": dial tcp [2607:f740:f::bc]:443: connect: network is unreachable
Feb 27 20:56:08 void tailscaled[683]: control: trying bootstrapDNS("derp28b.tailscale.com", "65.109.143.62") for "controlplane.tailscale.com" ...
Feb 27 20:56:08 void tailscaled[683]: [RATELIMIT] format("control: trying bootstrapDNS(%q, %q) for %q ...")
Feb 27 20:56:08 void tailscaled[683]: control: bootstrapDNS("derp28b.tailscale.com", "65.109.143.62") for "controlplane.tailscale.com" error: Get "https://derp28b.tailscale.com/bootstrap-dns?q=controlplane.tailscale.com": dial tcp 65.109.143.62:443: connect: network is unreachable
Feb 27 20:56:08 void tailscaled[683]: [RATELIMIT] format("control: bootstrapDNS(%q, %q) for %q error: %v")
Feb 27 20:56:08 void tailscaled[683]: Received error: fetch control key: Get "https://controlplane.tailscale.com/key?v=131": failed to resolve "controlplane.tailscale.com": no DNS fallback candidates remain for "controlplane.tailscale.com"
Feb 27 20:56:08 void tailscaled[683]: health(warnable=login-state): error: You are logged out. The last login error was: fetch control key: Get "https://controlplane.tailscale.com/key?v=131": failed to resolve "controlplane.tailscale.com": no DNS fallback candidates remain for "controlplane.tailscale.com"
Feb 27 20:56:08 void wpa_supplicant[684]: wlp3s0: CTRL-EVENT-REGDOM-CHANGE init=BEACON_HINT type=UNKNOWN
Feb 27 20:56:08 void wpa_supplicant[684]: wlp3s0: CTRL-EVENT-REGDOM-BEACON-HINT before freq=5240 max_tx_power=2000 no_ir=1
Feb 27 20:56:08 void wpa_supplicant[684]: wlp3s0: CTRL-EVENT-REGDOM-BEACON-HINT after freq=5240 max_tx_power=2000
Feb 27 20:56:08 void tailscaled[683]: control: doLogin(regen=false, hasUrl=false)
Feb 27 20:56:08 void tailscaled[683]: Received error: fetch control key: Get "https://controlplane.tailscale.com/key?v=131": failed to resolve "controlplane.tailscale.com": no DNS fallback candidates remain for "controlplane.tailscale.com"
Feb 27 20:56:08 void tailscaled[683]: control: doLogin(regen=false, hasUrl=false)
Feb 27 20:56:08 void tailscaled[683]: Received error: fetch control key: Get "https://controlplane.tailscale.com/key?v=131": failed to resolve "controlplane.tailscale.com": no DNS fallback candidates remain for "controlplane.tailscale.com"
Feb 27 20:56:08 void tailscaled[683]: control: doLogin(regen=false, hasUrl=false)
Feb 27 20:56:08 void tailscaled[683]: Received error: fetch control key: Get "https://controlplane.tailscale.com/key?v=131": failed to resolve "controlplane.tailscale.com": no DNS fallback candidates remain for "controlplane.tailscale.com"
Feb 27 20:56:09 void tailscaled[683]: control: doLogin(regen=false, hasUrl=false)
Feb 27 20:56:09 void tailscaled[683]: [RATELIMIT] format("control: doLogin(regen=%v, hasUrl=%v)")
Feb 27 20:56:09 void tailscaled[683]: Received error: fetch control key: Get "https://controlplane.tailscale.com/key?v=131": failed to resolve "controlplane.tailscale.com": no DNS fallback candidates remain for "controlplane.tailscale.com"
Feb 27 20:56:09 void tailscaled[683]: [RATELIMIT] format("Received error: %v")
Feb 27 20:56:10 void wpa_supplicant[684]: wlp3s0: CTRL-EVENT-REGDOM-CHANGE init=BEACON_HINT type=UNKNOWN
Feb 27 20:56:10 void wpa_supplicant[684]: wlp3s0: CTRL-EVENT-REGDOM-BEACON-HINT before freq=5745 max_tx_power=2000 no_ir=1
Feb 27 20:56:10 void wpa_supplicant[684]: wlp3s0: CTRL-EVENT-REGDOM-BEACON-HINT after freq=5745 max_tx_power=2000
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.1690] policy: auto-activating connection '/dev/null' (c2dc8914-221b-4fa2-ba3f-c285ac447f1a)
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.1692] device (wlp3s0): Activation: starting connection '/dev/null' (c2dc8914-221b-4fa2-ba3f-c285ac447f1a)
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.1692] device (wlp3s0): state change: disconnected -> prepare (reason 'none', managed-type: 'full')
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.1692] manager: NetworkManager state is now CONNECTING
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.1837] device (wlp3s0): set-hw-addr: reset MAC address to 94:BB:43:82:44:30 (preserve)
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.2953] device (wlp3s0): state change: prepare -> config (reason 'none', managed-type: 'full')
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.2954] device (wlp3s0): Activation: (wifi) access point '/dev/null' has security, but secrets are required.
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.2954] device (wlp3s0): state change: config -> need-auth (reason 'none', managed-type: 'full')
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.2955] device (wlp3s0): supplicant interface state: disconnected -> interface_disabled
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.2955] device (p2p-dev-wlp3s0): supplicant management interface state: disconnected -> interface_disabled
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.2959] device (wlp3s0): state change: need-auth -> prepare (reason 'none', managed-type: 'full')
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.2960] device (wlp3s0): state change: prepare -> config (reason 'none', managed-type: 'full')
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.2962] device (wlp3s0): Activation: (wifi) connection '/dev/null' has security, and secrets exist. No new secrets needed.
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.2962] Config: added 'ssid' value '/dev/null'
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.2962] Config: added 'scan_ssid' value '1'
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.2962] Config: added 'bgscan' value 'simple:30:-65:300'
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.2962] Config: added 'key_mgmt' value 'SAE FT-SAE'
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.2962] Config: added 'psk' value '<hidden>'
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.2962] Config: added 'ieee80211w' value '2'
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.3034] device (wlp3s0): supplicant interface state: interface_disabled -> inactive
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.3035] device (p2p-dev-wlp3s0): supplicant management interface state: interface_disabled -> inactive
Feb 27 20:56:11 void wpa_supplicant[684]: wlp3s0: SME: Trying to authenticate with aa:c7:6e:7c:96:54 (SSID='/dev/null' freq=5745 MHz)
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.5154] device (wlp3s0): supplicant interface state: inactive -> authenticating
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.5154] device (p2p-dev-wlp3s0): supplicant management interface state: inactive -> authenticating
Feb 27 20:56:11 void kernel: wlp3s0: authenticate with aa:c7:6e:7c:96:54 (local address=94:bb:43:82:44:30)
Feb 27 20:56:11 void kernel: wlp3s0: send auth to aa:c7:6e:7c:96:54 (try 1/3)
Feb 27 20:56:11 void wpa_supplicant[684]: wlp3s0: SME: Trying to authenticate with aa:c7:6e:7c:96:54 (SSID='/dev/null' freq=5745 MHz)
Feb 27 20:56:11 void kernel: wlp3s0: authenticate with aa:c7:6e:7c:96:54 (local address=94:bb:43:82:44:30)
Feb 27 20:56:11 void kernel: wlp3s0: send auth to aa:c7:6e:7c:96:54 (try 1/3)
Feb 27 20:56:11 void wpa_supplicant[684]: wlp3s0: PMKSA-CACHE-ADDED aa:c7:6e:7c:96:54 0
Feb 27 20:56:11 void wpa_supplicant[684]: wlp3s0: Trying to associate with aa:c7:6e:7c:96:54 (SSID='/dev/null' freq=5745 MHz)
Feb 27 20:56:11 void kernel: wlp3s0: authenticated
Feb 27 20:56:11 void kernel: wlp3s0: associate with aa:c7:6e:7c:96:54 (try 1/3)
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.5393] device (wlp3s0): supplicant interface state: authenticating -> associating
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.5393] device (p2p-dev-wlp3s0): supplicant management interface state: authenticating -> associating
Feb 27 20:56:11 void kernel: wlp3s0: RX AssocResp from aa:c7:6e:7c:96:54 (capab=0x1431 status=0 aid=3)
Feb 27 20:56:11 void systemd[1]: systemd-rfkill.service: Deactivated successfully.
Feb 27 20:56:11 void wpa_supplicant[684]: wlp3s0: Associated with aa:c7:6e:7c:96:54
Feb 27 20:56:11 void wpa_supplicant[684]: wlp3s0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Feb 27 20:56:11 void kernel: wlp3s0: associated
Feb 27 20:56:11 void kernel: wlp3s0: Limiting TX power to 30 (30 - 0) dBm as advertised by aa:c7:6e:7c:96:54
Feb 27 20:56:11 void wpa_supplicant[684]: wlp3s0: WPA: Key negotiation completed with aa:c7:6e:7c:96:54 [PTK=CCMP GTK=CCMP]
Feb 27 20:56:11 void wpa_supplicant[684]: wlp3s0: CTRL-EVENT-CONNECTED - Connection to aa:c7:6e:7c:96:54 completed [id=0 id_str=]
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.7490] device (wlp3s0): supplicant interface state: associating -> completed
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.7490] device (wlp3s0): Activation: (wifi) Stage 2 of 5 (Device Configure) successful. Connected to wireless network "/dev/null"
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.7491] device (p2p-dev-wlp3s0): supplicant management interface state: associating -> completed
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.7491] device (wlp3s0): state change: config -> ip-config (reason 'none', managed-type: 'full')
Feb 27 20:56:11 void tailscaled[683]: monitor: RTM_DELROUTE: src=, dst=ff00::/8, gw=, outif=3, table=255
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.7495] dhcp4 (wlp3s0): activation: beginning transaction (timeout in 45 seconds)
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.7572] dhcp4 (wlp3s0): state changed new lease, address=10.64.89.136, acd pending
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.9013] dhcp4 (wlp3s0): state changed new lease, address=10.64.89.136
Feb 27 20:56:11 void tailscaled[683]: monitor: RTM_NEWROUTE: src=10.64.89.136/0, dst=10.64.89.136/32, gw=, outif=3, table=255
Feb 27 20:56:11 void tailscaled[683]: monitor: RTM_NEWROUTE: src=10.64.89.136/0, dst=10.64.89.255/32, gw=, outif=3, table=255
Feb 27 20:56:11 void tailscaled[683]: monitor: RTM_NEWROUTE: src=10.64.89.136/0, dst=10.64.89.0/24, gw=, outif=3, table=254
Feb 27 20:56:11 void tailscaled[683]: monitor: RTM_NEWROUTE: src=10.64.89.136/0, dst=, gw=10.64.89.215, outif=3, table=254
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.9045] policy: set '/dev/null' (wlp3s0) as default for IPv4 routing and DNS
Feb 27 20:56:11 void dnsmasq[863]: reading /etc/resolv.conf
Feb 27 20:56:11 void dnsmasq[863]: using nameserver 10.64.89.215#53
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.9197] device (wlp3s0): state change: ip-config -> ip-check (reason 'none', managed-type: 'full')
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.9204] device (wlp3s0): state change: ip-check -> secondaries (reason 'none', managed-type: 'full')
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.9204] device (wlp3s0): state change: secondaries -> activated (reason 'none', managed-type: 'full')
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.9206] manager: NetworkManager state is now CONNECTED_SITE
Feb 27 20:56:11 void NetworkManager[640]: <info> [1772205971.9208] device (wlp3s0): Activation: successful, device activated.
Feb 27 20:56:12 void tailscaled[683]: control: bootstrapDNS("derp3.tailscale.com", "68.183.179.66") for "controlplane.tailscale.com" = [192.200.0.102 192.200.0.113 2606:b740:49::106 192.200.0.116 192.200.0.112 192.200.0.110 192.200.0.107 2606:b740:49::109 2606:b740:49::111 2606:b740:49::103 2606:b740:49::112 2606:b740:49::107 192.200.0.103 192.200.0.111 2606:b740:49::101 2606:b740:49::110 2606:b740:49::115 2606:b740:49::108 2606:b740:49::114 192.200.0.115 192.200.0.108 192.200.0.114 192.200.0.105 192.200.0.101 2606:b740:49::105 2606:b740:49::104 2606:b740:49::116 2606:b740:49::102 192.200.0.104 192.200.0.109 2606:b740:49::113 192.200.0.106]
Feb 27 20:56:12 void NetworkManager[640]: <info> [1772205972.5879] manager: NetworkManager state is now CONNECTED_GLOBAL
Feb 27 20:56:12 void tailscaled[683]: monitor: RTM_NEWROUTE: src=10.64.89.136/0, dst=, gw=10.64.89.215, outif=3, table=254
Feb 27 20:56:12 void tailscaled[683]: monitor: RTM_DELROUTE: src=10.64.89.136/0, dst=, gw=10.64.89.215, outif=3, table=254
Feb 27 20:56:12 void tailscaled[683]: health(warnable=warming-up): ok
Feb 27 20:56:12 void tailscaled[683]: tsdial: closing system connection 10.64.89.136:59560->192.200.0.102:443 due to link change
Feb 27 20:56:12 void tailscaled[683]: health(warnable=login-state): error: You are logged out. The last login error was: fetch control key: Get "https://controlplane.tailscale.com/key?v=131": read tcp 10.64.89.136:59560->192.200.0.102:443: use of closed network connection
Feb 27 20:56:12 void tailscaled[683]: LinkChange: major, rebinding: old: interfaces.State{defaultRoute= ifs={virbr0:[192.168.122.1/24]} v4=true v6=false} new: interfaces.State{defaultRoute=wlp3s0 ifs={virbr0:[192.168.122.1/24] wlp3s0:[10.64.89.136/24 llu6]} v4=true v6=false}
Feb 27 20:56:12 void tailscaled[683]: router: portUpdate(port=41641, network=udp6)
Feb 27 20:56:12 void tailscaled[683]: Rebind; defIf="wlp3s0", ips=[10.64.89.136/24 fe80::b35e:78ae:896e:e30e/64]
Feb 27 20:56:12 void tailscaled[683]: router: portUpdate(port=41641, network=udp4)
Feb 27 20:56:12 void tailscaled[683]: magicsock: 0 active derp conns
Feb 27 20:56:12 void tailscaled[683]: monitor: gateway and self IP changed: gw=10.64.89.215 self=10.64.89.136
Feb 27 20:56:12 void tailscaled[683]: monitor: RTM_NEWROUTE: src=, dst=2409:40f3:20d9:e3be::/64, gw=, outif=3, table=254
Feb 27 20:56:12 void tailscaled[683]: monitor: RTM_NEWROUTE: src=, dst=, gw=fe80::a8c7:6eff:fe7c:9654, outif=3, table=254
Feb 27 20:56:12 void NetworkManager[640]: <info> [1772205972.8148] policy: set '/dev/null' (wlp3s0) as default for IPv6 routing and DNS
Feb 27 20:56:12 void dnsmasq[863]: reading /etc/resolv.conf
Feb 27 20:56:12 void dnsmasq[863]: using nameserver 10.64.89.215#53
Feb 27 20:56:12 void dnsmasq[863]: using nameserver 2409:40f3:20d9:e3be::35#53
Feb 27 20:56:13 void NetworkManager[640]: <info> [1772205973.0736] manager: startup complete
Feb 27 20:56:13 void tailscaled[683]: LinkChange: major, rebinding: old: interfaces.State{defaultRoute=wlp3s0 ifs={virbr0:[192.168.122.1/24] wlp3s0:[10.64.89.136/24 llu6]} v4=true v6=false} new: interfaces.State{defaultRoute=wlp3s0 ifs={virbr0:[192.168.122.1/24] wlp3s0:[10.64.89.136/24 2409:40f3:20d9:e3be:afa:ea23:2faa:c2c6/64 llu6]} v4=true v6=true}
Feb 27 20:56:13 void tailscaled[683]: router: portUpdate(port=41641, network=udp6)
Feb 27 20:56:13 void tailscaled[683]: Rebind; defIf="wlp3s0", ips=[10.64.89.136/24 2409:40f3:20d9:e3be:afa:ea23:2faa:c2c6/64 fe80::b35e:78ae:896e:e30e/64]
Feb 27 20:56:13 void tailscaled[683]: router: portUpdate(port=41641, network=udp4)
Feb 27 20:56:13 void tailscaled[683]: [RATELIMIT] format("router: portUpdate(port=%v, network=%s)")
Feb 27 20:56:13 void tailscaled[683]: magicsock: 0 active derp conns
Feb 27 20:56:14 void tailscaled[683]: monitor: RTM_NEWROUTE: src=, dst=2409:40f3:20d9:e3be:afa:ea23:2faa:c2c6/128, gw=, outif=3, table=255
Feb 27 20:56:14 void tailscaled[683]: control: control server key from https://controlplane.tailscale.com: ts2021=[fSeS+], legacy=[nlFWp]
Feb 27 20:56:14 void tailscaled[683]: control: RegisterReq: onode= node=[9UmGD] fup=false nks=false
Feb 27 20:56:15 void tailscaled[683]: control: RegisterReq: got response; nodeKeyExpired=false, machineAuthorized=true; authURL=false
Feb 27 20:56:15 void tailscaled[683]: health(warnable=login-state): ok
Feb 27 20:56:15 void tailscaled[683]: health(warnable=not-in-map-poll): ok
Feb 27 20:56:15 void tailscaled[683]: control: netmap: got new dial plan from control
Feb 27 20:56:15 void tailscaled[683]: active login: x254lbmathewthomas@github
Feb 27 20:56:15 void tailscaled[683]: Switching ipn state NoState -> Starting (WantRunning=true, nm=true)
Feb 27 20:56:15 void tailscaled[683]: tstun: peer config: peerConfigTable{nativeAddr4: 100.79.226.13, nativeAddr6: fd7a:115c:a1e0::4237:e20d, }
Feb 27 20:56:15 void tailscaled[683]: magicsock: SetPrivateKey called (init)
Feb 27 20:56:15 void tailscaled[683]: wgengine: Reconfig: configuring userspace WireGuard config (with 1/12 peers)
Feb 27 20:56:15 void tailscaled[683]: wgengine: Reconfig: configuring router
Feb 27 20:56:16 void tailscaled[683]: monitor: RTM_NEWROUTE: src=, dst=10.0.0.0/24, gw=, outif=5, table=52
Feb 27 20:56:16 void NetworkManager[640]: <info> [1772205976.0283] device (tailscale0): state change: unmanaged -> unavailable (reason 'connection-assumed', managed-type: 'external')
Feb 27 20:56:16 void NetworkManager[640]: <info> [1772205976.0290] device (tailscale0): state change: unavailable -> disconnected (reason 'connection-assumed', managed-type: 'external')
Feb 27 20:56:16 void NetworkManager[640]: <info> [1772205976.0294] device (tailscale0): Activation: starting connection 'tailscale0' (cd77aa12-6995-4e5b-9ca7-b68ed5d7a28c)
Feb 27 20:56:16 void NetworkManager[640]: <info> [1772205976.0295] device (tailscale0): state change: disconnected -> prepare (reason 'none', managed-type: 'external')
Feb 27 20:56:16 void NetworkManager[640]: <info> [1772205976.0296] device (tailscale0): state change: prepare -> config (reason 'none', managed-type: 'external')
Feb 27 20:56:16 void NetworkManager[640]: <info> [1772205976.0297] device (tailscale0): state change: config -> ip-config (reason 'none', managed-type: 'external')
Feb 27 20:56:16 void NetworkManager[640]: <info> [1772205976.0300] device (tailscale0): state change: ip-config -> ip-check (reason 'none', managed-type: 'external')
Feb 27 20:56:16 void NetworkManager[640]: <info> [1772205976.0305] device (tailscale0): state change: ip-check -> secondaries (reason 'none', managed-type: 'external')
Feb 27 20:56:16 void NetworkManager[640]: <info> [1772205976.0305] device (tailscale0): state change: secondaries -> activated (reason 'none', managed-type: 'external')
Feb 27 20:56:16 void NetworkManager[640]: <info> [1772205976.0307] device (tailscale0): Activation: successful, device activated.
Feb 27 20:56:16 void tailscaled[683]: wgengine: Reconfig: user dialer
Feb 27 20:56:16 void tailscaled[683]: tsdial: bart table size: 16
Feb 27 20:56:16 void tailscaled[683]: wgengine: Reconfig: configuring DNS
Feb 27 20:56:16 void tailscaled[683]: dns: Set: {DefaultResolvers:[100.71.59.99] Routes:{tail8d34e6.ts.net.:[] ts.net.:[199.247.155.53 2620:111:8007::53]}+65arpa SearchDomains:[tail8d34e6.ts.net.] Hosts:13}
Feb 27 20:56:16 void tailscaled[683]: dns: Resolvercfg: {Routes:{.:[100.71.59.99] ts.net.:[199.247.155.53 2620:111:8007::53]} Hosts:13 LocalDomains:[tail8d34e6.ts.net.]+65arpa}
Feb 27 20:56:16 void tailscaled[683]: dns: OScfg: {Nameservers:[100.100.100.100] SearchDomains:[tail8d34e6.ts.net.] }
Feb 27 20:56:16 void dnsmasq[863]: reading /etc/resolv.conf
Feb 27 20:56:16 void dnsmasq[863]: using nameserver 100.100.100.100#53
Feb 27 20:56:16 void tailscaled[683]: peerapi: serving on http://100.79.226.13:65084
Feb 27 20:56:16 void tailscaled[683]: peerapi: serving on http://[fd7a:115c:a1e0::4237:e20d]:51156
Feb 27 20:56:16 void systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Feb 27 20:56:17 void tailscaled[683]: magicsock: adding connection to derp-6 for [IowOO]
Feb 27 20:56:17 void tailscaled[683]: magicsock: 1 active derp conns: derp-6=cr0s,wr0s
Feb 27 20:56:17 void tailscaled[683]: derphttp.Client.Connect: connecting to derp-6 (blr)
Feb 27 20:56:17 void tailscaled[683]: Switching ipn state Starting -> Running (WantRunning=true, nm=true)
Feb 27 20:56:17 void tailscaled[683]: magicsock: derp-6 connected; connGen=1
Feb 27 20:56:17 void tailscaled[683]: magicsock: disco: node [IowOO] d:baafd32f2cda964b now using 103.184.238.232:28466 mtu=1360 tx=9e7e15a6f4bd
Feb 27 20:56:18 void systemd[908]: Reached target Sound Card.
Feb 27 20:56:18 void systemd[1]: Started Getty on tty5.
Feb 27 20:56:19 void tailscaled[683]: monitor: RTM_NEWROUTE: src=, dst=, gw=fe80::a8c7:6eff:fe7c:9654, outif=3, table=254
Feb 27 20:56:19 void tailscaled[683]: monitor: RTM_DELROUTE: src=, dst=, gw=fe80::a8c7:6eff:fe7c:9654, outif=3, table=254
Feb 27 20:56:19 void tailscaled[683]: LinkChange: major, rebinding: old: interfaces.State{defaultRoute=wlp3s0 ifs={virbr0:[192.168.122.1/24] wlp3s0:[10.64.89.136/24 2409:40f3:20d9:e3be:afa:ea23:2faa:c2c6/64 llu6]} v4=true v6=true} new: interfaces.State{defaultRoute=wlp3s0 ifs={tailscale0:[100.79.226.13/32 fd7a:115c:a1e0::4237:e20d/128 llu6] virbr0:[192.168.122.1/24] wlp3s0:[10.64.89.136/24 2409:40f3:20d9:e3be:afa:ea23:2faa:c2c6/64 llu6]} v4=true v6=true}
Feb 27 20:56:19 void tailscaled[683]: dns: Set: {DefaultResolvers:[100.71.59.99] Routes:{tail8d34e6.ts.net.:[] ts.net.:[199.247.155.53 2620:111:8007::53]}+65arpa SearchDomains:[tail8d34e6.ts.net.] Hosts:13}
Feb 27 20:56:19 void tailscaled[683]: dns: Resolvercfg: {Routes:{.:[100.71.59.99] ts.net.:[199.247.155.53 2620:111:8007::53]} Hosts:13 LocalDomains:[tail8d34e6.ts.net.]+65arpa}
Feb 27 20:56:19 void tailscaled[683]: dns: OScfg: {Nameservers:[100.100.100.100] SearchDomains:[tail8d34e6.ts.net.] }
Feb 27 20:56:19 void dnsmasq[863]: reading /etc/resolv.conf
Feb 27 20:56:19 void dnsmasq[863]: using nameserver 100.100.100.100#53
Feb 27 20:56:19 void tailscaled[683]: wgengine: set DNS config again after major link change
Feb 27 20:56:19 void tailscaled[683]: Rebind; defIf="wlp3s0", ips=[10.64.89.136/24 2409:40f3:20d9:e3be:afa:ea23:2faa:c2c6/64 fe80::b35e:78ae:896e:e30e/64]
Feb 27 20:56:19 void tailscaled[683]: magicsock: 1 active derp conns: derp-6=cr2s,wr2s
Feb 27 20:56:19 void tailscaled[683]: post-rebind ping of DERP region 6 okay
Feb 27 20:56:20 void tailscaled[683]: magicsock: disco: node [IowOO] d:baafd32f2cda964b now using 103.184.238.232:28466 mtu=1360 tx=caac02672c89
Feb 27 20:56:20 void tailscaled[683]: netcheck: DetectCaptivePortal(found=false)
Feb 27 20:56:20 void tailscaled[683]: magicsock: home DERP changing from derp-0 [0ms] to derp-6 [48ms]
Feb 27 20:56:20 void tailscaled[683]: magicsock: home is now derp-6 (blr)
Feb 27 20:56:20 void tailscaled[683]: health(warnable=no-derp-home): ok
Feb 27 20:56:20 void tailscaled[683]: control: NetInfo: NetInfo{varies=false ipv6=true ipv6os=true udp=true icmpv4=false derp=#6 portmap= link="" firewallmode="ipt-default"}
Feb 27 20:56:20 void tailscaled[683]: magicsock: endpoints changed: 157.51.237.160:41641 (stun), [2409:40f3:20d9:e3be:afa:ea23:2faa:c2c6]:41641 (stun), 10.64.89.136:41641 (local), 192.168.122.1:41641 (local)
Feb 27 20:56:21 void tailscaled[683]: open-conn-track: timeout opening (TCP 100.79.226.13:55976 => 95.216.195.133:80); no associated peer node
Feb 27 20:56:21 void tailscaled[683]: open-conn-track: timeout opening (TCP 100.79.226.13:55986 => 95.216.195.133:80); no associated peer node
Feb 27 20:56:21 void tailscaled[683]: open-conn-track: timeout opening (TCP 100.79.226.13:55990 => 95.216.195.133:80); no associated peer node
Feb 27 20:56:22 void login[1012]: pam_unix(login:session): session opened for user x254lb(uid=1000) by x254lb(uid=0)
Feb 27 20:56:22 void systemd-logind[643]: New session '2' of user 'x254lb' with class 'user' and type 'tty'.
Feb 27 20:56:22 void systemd[1]: Created slice User Slice of UID 1000.
Feb 27 20:56:22 void systemd[1]: Starting User Runtime Directory /run/user/1000...
Feb 27 20:56:22 void systemd-user-runtime-dir[1019]: Successfully configured disk quota for UID 1000 on /tmp to 5.9G
Feb 27 20:56:22 void systemd-user-runtime-dir[1019]: Successfully configured disk quota for UID 1000 on /dev/shm to 5.9G
Feb 27 20:56:22 void systemd[1]: Finished User Runtime Directory /run/user/1000.
Feb 27 20:56:22 void systemd[1]: Starting User Manager for UID 1000...
Feb 27 20:56:22 void (systemd)[1043]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[x254lb] ruser=[<unknown>] rhost=[<unknown>]
Feb 27 20:56:22 void (systemd)[1043]: pam_unix(systemd-user:session): session opened for user x254lb(uid=1000) by x254lb(uid=0)
Feb 27 20:56:22 void systemd-logind[643]: New session '3' of user 'x254lb' with class 'manager' and type 'unspecified'.
Feb 27 20:56:22 void systemd[1043]: Queued start job for default target Main User Target.
Feb 27 20:56:22 void systemd[1043]: Created slice User Application Slice.
Feb 27 20:56:22 void login[1012]: LOGIN ON tty5 BY x254lb
Feb 27 20:56:22 void systemd[1043]: Reached target Paths.
Feb 27 20:56:22 void systemd[1043]: Reached target Timers.
Feb 27 20:56:22 void systemd[1043]: Starting D-Bus User Message Bus Socket...
Feb 27 20:56:22 void systemd[1043]: Listening on GnuPG network certificate management daemon.
Feb 27 20:56:22 void systemd[1043]: Listening on GNOME Keyring daemon.
Feb 27 20:56:22 void systemd[1043]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Feb 27 20:56:22 void systemd[1043]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Feb 27 20:56:22 void systemd[1043]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Feb 27 20:56:22 void systemd[1043]: Listening on GnuPG cryptographic agent and passphrase cache.
Feb 27 20:56:22 void systemd[1043]: Listening on GnuPG public key management service.
Feb 27 20:56:22 void systemd[1043]: Listening on p11-kit server.
Feb 27 20:56:22 void systemd[1043]: Listening on PipeWire PulseAudio.
Feb 27 20:56:22 void systemd[1043]: Listening on PipeWire Multimedia System Sockets.
Feb 27 20:56:22 void systemd[1043]: Listening on Query the User Interactively for a Password.
Feb 27 20:56:22 void systemd[1043]: Listening on D-Bus User Message Bus Socket.
Feb 27 20:56:22 void systemd[1043]: Reached target Sockets.
Feb 27 20:56:22 void systemd[1043]: Reached target Basic System.
Feb 27 20:56:22 void systemd[1043]: Reached target Main User Target.
Feb 27 20:56:22 void systemd[1043]: Startup finished in 76ms.
Feb 27 20:56:22 void systemd[1]: Started User Manager for UID 1000.
Feb 27 20:56:22 void systemd[1]: Started Session 2 of User x254lb.
Feb 27 20:56:23 void tailscaled[683]: open-conn-track: timeout opening (TCP 100.79.226.13:56000 => 95.216.195.133:80); no associated peer node
Feb 27 20:56:24 void tailscaled[683]: open-conn-track: timeout opening (TCP 100.79.226.13:56006 => 95.216.195.133:80); no associated peer node
Feb 27 20:56:24 void tailscaled[683]: [RATELIMIT] format("open-conn-track: timeout opening %v; no associated peer node")
Feb 27 20:56:25 void systemd[1043]: Reached target Sound Card.
Feb 27 20:56:32 void tailscaled[683]: [RATELIMIT] format("open-conn-track: timeout opening %v; no associated peer node") (6 dropped)
Feb 27 20:56:32 void tailscaled[683]: open-conn-track: timeout opening (TCP 100.79.226.13:55976 => 95.216.195.133:80); no associated peer node
Feb 27 20:56:32 void tailscaled[683]: open-conn-track: timeout opening (TCP 100.79.226.13:55990 => 95.216.195.133:80); no associated peer node
Feb 27 20:56:32 void tailscaled[683]: [RATELIMIT] format("open-conn-track: timeout opening %v; no associated peer node")
Feb 27 20:56:36 void systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Feb 27 20:56:40 void sudo[1175]: x254lb : TTY=tty5 ; PWD=/home/x254lb ; USER=root ; COMMAND=/usr/bin/systemctl restart sddm
Feb 27 20:56:40 void sudo[1175]: pam_unix(sudo:session): session opened for user root(uid=0) by x254lb(uid=1000)
Feb 27 20:56:40 void sddm[696]: Signal received: SIGTERM
Feb 27 20:56:40 void sddm-helper[901]: pam_unix(sddm-greeter:session): session closed for user sddm
Feb 27 20:56:40 void sddm-greeter-qt6[917]: could not connect to display :0
Feb 27 20:56:40 void systemd[1]: Stopping Simple Desktop Display Manager...
Feb 27 20:56:40 void sddm[696]: Greeter stopping...
Feb 27 20:56:40 void sddm-helper[901]: Signal received: SIGTERM
Feb 27 20:56:40 void sddm-helper[901]: [PAM] Closing session
Feb 27 20:56:40 void sddm-helper[901]: [PAM] Ended.
Feb 27 20:56:40 void sddm[696]: Auth: sddm-helper exited with 255
Feb 27 20:56:40 void sddm[696]: Greeter stopped. SDDM::Auth::HelperExitStatus(255)
Feb 27 20:56:40 void sddm[696]: Socket server stopping...
Feb 27 20:56:40 void systemd[1]: session-c1.scope: Deactivated successfully.
Feb 27 20:56:40 void sddm[696]: Socket server stopped.
Feb 27 20:56:40 void sddm[696]: Display server stopping...
Feb 27 20:56:40 void systemd-logind[643]: Session c1 logged out. Waiting for processes to exit.
Feb 27 20:56:40 void systemd-logind[643]: Removed session c1.
Feb 27 20:56:40 void systemd-coredump[1184]: Process 715 (Xorg) of user 0 terminated abnormally with signal 6/ABRT, processing...
Feb 27 20:56:40 void systemd[1]: Created slice Slice /system/systemd-coredump.
Feb 27 20:56:40 void systemd[1]: Started Process Core Dump (PID 1184/UID 0).
Feb 27 20:56:40 void systemd-coredump[1185]: Process 715 (Xorg) of user 0 dumped core.
Stack trace of thread 715:
#0 0x00007fd2e57b8a2c n/a (libc.so.6 + 0x98a2c)
#1 0x00007fd2e575e1a0 raise (libc.so.6 + 0x3e1a0)
#2 0x00007fd2e57455fe abort (libc.so.6 + 0x255fe)
#3 0x00005627e4e3d1be OsAbort (/usr/lib/Xorg + 0x1601be)
#4 0x00005627e4e4a510 FatalError (/usr/lib/Xorg + 0x16d510)
#5 0x00005627e4e3f6b3 n/a (/usr/lib/Xorg + 0x1626b3)
#6 0x00007fd2e575e2d0 n/a (libc.so.6 + 0x3e2d0)
#7 0x00005627e4d9ff6d n/a (/usr/lib/Xorg + 0xc2f6d)
#8 0x00005627e4d815f3 n/a (/usr/lib/Xorg + 0xa45f3)
#9 0x00005627e4d8243d n/a (/usr/lib/Xorg + 0xa543d)
#10 0x00005627e4d10de3 n/a (/usr/lib/Xorg + 0x33de3)
#11 0x00007fd2e57476c1 n/a (libc.so.6 + 0x276c1)
#12 0x00007fd2e57477f9 __libc_start_main (libc.so.6 + 0x277f9)
#13 0x00005627e4d11d05 _start (/usr/lib/Xorg + 0x34d05)
Stack trace of thread 793:
#0 0x00007fd2e57bef32 n/a (libc.so.6 + 0x9ef32)
#1 0x00007fd2e57b339c n/a (libc.so.6 + 0x9339c)
#2 0x00007fd2e57b368c n/a (libc.so.6 + 0x9368c)
#3 0x00007fd2e57b5e5e pthread_cond_wait (libc.so.6 + 0x95e5e)
#4 0x00007fd2e21e5fae n/a (libgallium-25.3.5-arch1.1.so + 0x5e5fae)
#5 0x00007fd2e219b37d n/a (libgallium-25.3.5-arch1.1.so + 0x59b37d)
#6 0x00007fd2e21e5edd n/a (libgallium-25.3.5-arch1.1.so + 0x5e5edd)
#7 0x00007fd2e57b697a n/a (libc.so.6 + 0x9697a)
#8 0x00007fd2e583a2bc n/a (libc.so.6 + 0x11a2bc)
Stack trace of thread 780:
#0 0x00007fd2e57bef32 n/a (libc.so.6 + 0x9ef32)
#1 0x00007fd2e57b339c n/a (libc.so.6 + 0x9339c)
#2 0x00007fd2e57b368c n/a (libc.so.6 + 0x9368c)
#3 0x00007fd2e57b5e5e pthread_cond_wait (libc.so.6 + 0x95e5e)
#4 0x00007fd2e21e5fae n/a (libgallium-25.3.5-arch1.1.so + 0x5e5fae)
#5 0x00007fd2e219b37d n/a (libgallium-25.3.5-arch1.1.so + 0x59b37d)
#6 0x00007fd2e21e5edd n/a (libgallium-25.3.5-arch1.1.so + 0x5e5edd)
#7 0x00007fd2e57b697a n/a (libc.so.6 + 0x9697a)
#8 0x00007fd2e583a2bc n/a (libc.so.6 + 0x11a2bc)
Stack trace of thread 792:
#0 0x00007fd2e57bef32 n/a (libc.so.6 + 0x9ef32)
#1 0x00007fd2e57b339c n/a (libc.so.6 + 0x9339c)
#2 0x00007fd2e57b368c n/a (libc.so.6 + 0x9368c)
#3 0x00007fd2e57b5e5e pthread_cond_wait (libc.so.6 + 0x95e5e)
#4 0x00007fd2e21e5fae n/a (libgallium-25.3.5-arch1.1.so + 0x5e5fae)
#5 0x00007fd2e219b37d n/a (libgallium-25.3.5-arch1.1.so + 0x59b37d)
#6 0x00007fd2e21e5edd n/a (libgallium-25.3.5-arch1.1.so + 0x5e5edd)
#7 0x00007fd2e57b697a n/a (libc.so.6 + 0x9697a)
#8 0x00007fd2e583a2bc n/a (libc.so.6 + 0x11a2bc)
Stack trace of thread 794:
#0 0x00007fd2e57bef32 n/a (libc.so.6 + 0x9ef32)
#1 0x00007fd2e57b339c n/a (libc.so.6 + 0x9339c)
#2 0x00007fd2e57b368c n/a (libc.so.6 + 0x9368c)
#3 0x00007fd2e57b5e5e pthread_cond_wait (libc.so.6 + 0x95e5e)
#4 0x00007fd2e21e5fae n/a (libgallium-25.3.5-arch1.1.so + 0x5e5fae)
#5 0x00007fd2e219b37d n/a (libgallium-25.3.5-arch1.1.so + 0x59b37d)
#6 0x00007fd2e21e5edd n/a (libgallium-25.3.5-arch1.1.so + 0x5e5edd)
#7 0x00007fd2e57b697a n/a (libc.so.6 + 0x9697a)
#8 0x00007fd2e583a2bc n/a (libc.so.6 + 0x11a2bc)
Stack trace of thread 887:
#0 0x00007fd2e57bef32 n/a (libc.so.6 + 0x9ef32)
#1 0x00007fd2e57b339c n/a (libc.so.6 + 0x9339c)
#2 0x00007fd2e57b368c n/a (libc.so.6 + 0x9368c)
#3 0x00007fd2e57b5e5e pthread_cond_wait (libc.so.6 + 0x95e5e)
#4 0x00007fd2e21e5fae n/a (libgallium-25.3.5-arch1.1.so + 0x5e5fae)
#5 0x00007fd2e219b37d n/a (libgallium-25.3.5-arch1.1.so + 0x59b37d)
#6 0x00007fd2e21e5edd n/a (libgallium-25.3.5-arch1.1.so + 0x5e5edd)
#7 0x00007fd2e57b697a n/a (libc.so.6 + 0x9697a)
#8 0x00007fd2e583a2bc n/a (libc.so.6 + 0x11a2bc)
Stack trace of thread 804:
#0 0x00007fd2e57bef32 n/a (libc.so.6 + 0x9ef32)
#1 0x00007fd2e57b339c n/a (libc.so.6 + 0x9339c)
#2 0x00007fd2e57b368c n/a (libc.so.6 + 0x9368c)
#3 0x00007fd2e57b5e5e pthread_cond_wait (libc.so.6 + 0x95e5e)
#4 0x00007fd2e21e5fae n/a (libgallium-25.3.5-arch1.1.so + 0x5e5fae)
#5 0x00007fd2e219b37d n/a (libgallium-25.3.5-arch1.1.so + 0x59b37d)
#6 0x00007fd2e21e5edd n/a (libgallium-25.3.5-arch1.1.so + 0x5e5edd)
#7 0x00007fd2e57b697a n/a (libc.so.6 + 0x9697a)
#8 0x00007fd2e583a2bc n/a (libc.so.6 + 0x11a2bc)
Stack trace of thread 806:
#0 0x00007fd2e57bef32 n/a (libc.so.6 + 0x9ef32)
#1 0x00007fd2e57b339c n/a (libc.so.6 + 0x9339c)
#2 0x00007fd2e57b368c n/a (libc.so.6 + 0x9368c)
#3 0x00007fd2e57b5e5e pthread_cond_wait (libc.so.6 + 0x95e5e)
#4 0x00007fd2e21e5fae n/a (libgallium-25.3.5-arch1.1.so + 0x5e5fae)
#5 0x00007fd2e219b37d n/a (libgallium-25.3.5-arch1.1.so + 0x59b37d)
#6 0x00007fd2e21e5edd n/a (libgallium-25.3.5-arch1.1.so + 0x5e5edd)
#7 0x00007fd2e57b697a n/a (libc.so.6 + 0x9697a)
#8 0x00007fd2e583a2bc n/a (libc.so.6 + 0x11a2bc)
Stack trace of thread 889:
#0 0x00007fd2e57bef32 n/a (libc.so.6 + 0x9ef32)
#1 0x00007fd2e57b339c n/a (libc.so.6 + 0x9339c)
#2 0x00007fd2e57b368c n/a (libc.so.6 + 0x9368c)
#3 0x00007fd2e57b5e5e pthread_cond_wait (libc.so.6 + 0x95e5e)
#4 0x00007fd2e21e5fae n/a (libgallium-25.3.5-arch1.1.so + 0x5e5fae)
#5 0x00007fd2e219b37d n/a (libgallium-25.3.5-arch1.1.so + 0x59b37d)
#6 0x00007fd2e21e5edd n/a (libgallium-25.3.5-arch1.1.so + 0x5e5edd)
#7 0x00007fd2e57b697a n/a (libc.so.6 + 0x9697a)
#8 0x00007fd2e583a2bc n/a (libc.so.6 + 0x11a2bc)
Stack trace of thread 805:
#0 0x00007fd2e57bef32 n/a (libc.so.6 + 0x9ef32)
#1 0x00007fd2e57b339c n/a (libc.so.6 + 0x9339c)
#2 0x00007fd2e57b368c n/a (libc.so.6 + 0x9368c)
#3 0x00007fd2e57b5e5e pthread_cond_wait (libc.so.6 + 0x95e5e)
#4 0x00007fd2e21e5fae n/a (libgallium-25.3.5-arch1.1.so + 0x5e5fae)
#5 0x00007fd2e219b37d n/a (libgallium-25.3.5-arch1.1.so + 0x59b37d)
#6 0x00007fd2e21e5edd n/a (libgallium-25.3.5-arch1.1.so + 0x5e5edd)
#7 0x00007fd2e57b697a n/a (libc.so.6 + 0x9697a)
#8 0x00007fd2e583a2bc n/a (libc.so.6 + 0x11a2bc)
Stack trace of thread 898:
#0 0x00007fd2e57bef32 n/a (libc.so.6 + 0x9ef32)
#1 0x00007fd2e57b339c n/a (libc.so.6 + 0x9339c)
#2 0x00007fd2e57b33e4 n/a (libc.so.6 + 0x933e4)
#3 0x00007fd2e583a595 epoll_wait (libc.so.6 + 0x11a595)
#4 0x00005627e4e3cdae n/a (/usr/lib/Xorg + 0x15fdae)
#5 0x00005627e4e3e599 n/a (/usr/lib/Xorg + 0x161599)
#6 0x00007fd2e57b697a n/a (libc.so.6 + 0x9697a)
#7 0x00007fd2e583a2bc n/a (libc.so.6 + 0x11a2bc)
Stack trace of thread 888:
#0 0x00007fd2e57bef32 n/a (libc.so.6 + 0x9ef32)
#1 0x00007fd2e57b339c n/a (libc.so.6 + 0x9339c)
#2 0x00007fd2e57b368c n/a (libc.so.6 + 0x9368c)
#3 0x00007fd2e57b5e5e pthread_cond_wait (libc.so.6 + 0x95e5e)
#4 0x00007fd2e21e5fae n/a (libgallium-25.3.5-arch1.1.so + 0x5e5fae)
#5 0x00007fd2e219b37d n/a (libgallium-25.3.5-arch1.1.so + 0x59b37d)
#6 0x00007fd2e21e5edd n/a (libgallium-25.3.5-arch1.1.so + 0x5e5edd)
#7 0x00007fd2e57b697a n/a (libc.so.6 + 0x9697a)
#8 0x00007fd2e583a2bc n/a (libc.so.6 + 0x11a2bc)
ELF object binary architecture: AMD x86-64
Feb 27 20:56:40 void systemd[1]: systemd-coredump@0-1-1184_1185-0.service: Deactivated successfully.
Feb 27 20:56:40 void systemd[1]: systemd-coredump@0-1-1184_1185-0.service: Consumed 344ms CPU time, 189.3M memory peak.
Feb 27 20:56:40 void sddm[696]: Display server stopped.
Feb 27 20:56:40 void sddm[696]: Running display stop script QList("/usr/share/sddm/scripts/Xstop")
Feb 27 20:56:40 void systemd[1]: sddm.service: Deactivated successfully.
Feb 27 20:56:40 void systemd[1]: Stopped Simple Desktop Display Manager.
Feb 27 20:56:40 void systemd[1]: sddm.service: Consumed 660ms CPU time, 238.4M memory peak.
Feb 27 20:56:40 void systemd[1]: Started Simple Desktop Display Manager.
Feb 27 20:56:40 void sudo[1175]: pam_unix(sudo:session): session closed for user root
Feb 27 20:56:40 void sddm[1222]: Initializing...
Feb 27 20:56:40 void sddm[1222]: Starting...
Feb 27 20:56:40 void sddm[1222]: Logind interface found
Feb 27 20:56:40 void sddm[1222]: Adding new display...
Feb 27 20:56:40 void sddm[1222]: Loaded empty theme configuration
Feb 27 20:56:40 void sddm[1222]: Xauthority path: "/run/sddm/xauth_uaNpNe"
Feb 27 20:56:40 void sddm[1222]: Using VT 1
Feb 27 20:56:40 void sddm[1222]: Display server starting...
Feb 27 20:56:40 void sddm[1222]: Writing cookie to "/run/sddm/xauth_uaNpNe"
Feb 27 20:56:40 void sddm[1222]: Running: /usr/bin/X -nolisten tcp -background none -seat seat0 vt1 -auth /run/sddm/xauth_uaNpNe -noreset -displayfd 16
Feb 27 20:56:41 void kernel: pcieport 0000:00:01.1: AER: Correctable error message received from 0000:01:00.0
Feb 27 20:56:41 void kernel: nvidia 0000:01:00.0: PCIe Bus Error: severity=Correctable, type=Data Link Layer, (Receiver ID)
Feb 27 20:56:41 void kernel: nvidia 0000:01:00.0: device [10de:28e1] error status/mask=00000040/0000a000
Feb 27 20:56:41 void kernel: nvidia 0000:01:00.0: [ 6] BadTLP
Feb 27 20:56:41 void kernel: pcieport 0000:00:01.1: PME: Spurious native interrupt!
Feb 27 20:56:41 void kernel: pcieport 0000:00:01.1: AER: Correctable error message received from 0000:01:00.0
Feb 27 20:56:41 void kernel: nvidia 0000:01:00.0: PCIe Bus Error: severity=Correctable, type=Data Link Layer, (Receiver ID)
Feb 27 20:56:41 void kernel: nvidia 0000:01:00.0: device [10de:28e1] error status/mask=00000040/0000a000
Feb 27 20:56:41 void kernel: nvidia 0000:01:00.0: [ 6] BadTLP
Feb 27 20:56:41 void kernel: pcieport 0000:00:01.1: AER: Correctable error message received from 0000:01:00.0
Feb 27 20:56:41 void kernel: nvidia 0000:01:00.0: PCIe Bus Error: severity=Correctable, type=Data Link Layer, (Receiver ID)
Feb 27 20:56:41 void kernel: nvidia 0000:01:00.0: device [10de:28e1] error status/mask=00000040/0000a000
Feb 27 20:56:41 void kernel: nvidia 0000:01:00.0: [ 6] BadTLP
Feb 27 20:56:41 void kernel: pcieport 0000:00:01.1: AER: Correctable error message received from 0000:01:00.0
Feb 27 20:56:41 void kernel: nvidia 0000:01:00.0: PCIe Bus Error: severity=Correctable, type=Data Link Layer, (Receiver ID)
Feb 27 20:56:41 void kernel: nvidia 0000:01:00.0: device [10de:28e1] error status/mask=00000040/0000a000
Feb 27 20:56:41 void kernel: nvidia 0000:01:00.0: [ 6] BadTLP
Feb 27 20:56:41 void kernel: pcieport 0000:00:01.1: AER: Correctable error message received from 0000:01:00.0
Feb 27 20:56:41 void kernel: nvidia 0000:01:00.0: PCIe Bus Error: severity=Correctable, type=Data Link Layer, (Receiver ID)
Feb 27 20:56:41 void kernel: nvidia 0000:01:00.0: device [10de:28e1] error status/mask=00000040/0000a000
Feb 27 20:56:41 void kernel: nvidia 0000:01:00.0: [ 6] BadTLP
Feb 27 20:56:41 void kernel: pcieport 0000:00:01.1: AER: Correctable error message received from 0000:01:00.0
Feb 27 20:56:41 void kernel: nvidia 0000:01:00.0: PCIe Bus Error: severity=Correctable, type=Data Link Layer, (Receiver ID)
Feb 27 20:56:41 void kernel: nvidia 0000:01:00.0: device [10de:28e1] error status/mask=00000040/0000a000
Feb 27 20:56:41 void kernel: nvidia 0000:01:00.0: [ 6] BadTLP
Feb 27 20:56:41 void sddm[1222]: Setting default cursor
Feb 27 20:56:41 void sddm[1222]: Could not setup default cursor
Feb 27 20:56:41 void sddm[1222]: Running display setup script "/usr/share/sddm/scripts/Xsetup"
Feb 27 20:56:41 void sddm[1222]: Display server started.
Feb 27 20:56:41 void sddm[1222]: Socket server starting...
Feb 27 20:56:41 void sddm[1222]: Socket server started.
Feb 27 20:56:41 void sddm[1222]: Loading theme configuration from "/usr/share/sddm/themes/sddm-astronaut-theme/Themes/pixel_sakura.conf"
Feb 27 20:56:41 void sddm[1222]: Greeter starting...
Feb 27 20:56:41 void sddm-helper[1265]: [PAM] Starting...
Feb 27 20:56:41 void sddm-helper[1265]: [PAM] Authenticating...
Feb 27 20:56:41 void sddm-helper[1265]: pam_unix(sddm-greeter:session): session opened for user sddm(uid=964) by (uid=0)
Feb 27 20:56:41 void sddm-helper[1265]: [PAM] returning.
Feb 27 20:56:41 void systemd-logind[643]: New session 'c2' of user 'sddm' with class 'greeter' and type 'x11'.
Feb 27 20:56:41 void systemd[1]: Started Session c2 of User sddm.
Feb 27 20:56:41 void sddm-helper[1265]: Writing cookie to "/tmp/xauth_uhRgBU"
Feb 27 20:56:41 void sddm-helper[1265]: Starting X11 session: "" "/usr/bin/sddm-greeter-qt6 --socket /tmp/sddm-:0-SuxNaG --theme /usr/share/sddm/themes/sddm-astronaut-theme"
Feb 27 20:56:41 void sddm[1222]: Greeter session started successfully
Feb 27 20:56:41 void sddm-greeter-qt6[1268]: High-DPI autoscaling Enabled
Feb 27 20:56:41 void sddm-greeter-qt6[1268]: Reading from "/usr/local/share/wayland-sessions/hyprland-uwsm.desktop"
Feb 27 20:56:41 void sddm-greeter-qt6[1268]: Reading from "/usr/share/wayland-sessions/hyprland-uwsm.desktop"
Feb 27 20:56:41 void sddm-greeter-qt6[1268]: Reading from "/usr/local/share/wayland-sessions/hyprland.desktop"
Feb 27 20:56:41 void sddm-greeter-qt6[1268]: Reading from "/usr/share/wayland-sessions/hyprland.desktop"
Feb 27 20:56:41 void sddm-greeter-qt6[1268]: Loading theme configuration from "/usr/share/sddm/themes/sddm-astronaut-theme/Themes/pixel_sakura.conf"
Feb 27 20:56:41 void systemd[908]: Created slice User Core Session Slice.
Feb 27 20:56:41 void systemd[908]: Starting D-Bus User Message Bus...
Feb 27 20:56:41 void tailscaled[683]: [RATELIMIT] format("open-conn-track: timeout opening %v; no associated peer node") (9 dropped)
Feb 27 20:56:41 void tailscaled[683]: open-conn-track: timeout opening (TCP 100.79.226.13:55814 => 95.216.195.133:80); no associated peer node
Feb 27 20:56:41 void dbus-broker-launch[1271]: Service file '/usr/share/dbus-1/services/nemo.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
Feb 27 20:56:41 void dbus-broker-launch[1271]: Service file '/usr/share/dbus-1/services/nemo.service' is not named after the D-Bus name 'org.Nemo'.
Feb 27 20:56:41 void dbus-broker-launch[1271]: Service file '/usr/share/dbus-1/services/org.erikreider.swaync.service' is not named after the D-Bus name 'org.freedesktop.Notifications'.
Feb 27 20:56:41 void dbus-broker-launch[1271]: Service file '/usr/share/dbus-1/services/org.kde.dolphin.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
Feb 27 20:56:41 void dbus-broker-launch[1271]: Ignoring duplicate name 'org.freedesktop.FileManager1' in service file '/usr/share/dbus-1/services/org.kde.dolphin.FileManager1.service'
Feb 27 20:56:41 void dbus-broker-launch[1271]: Service file '/usr/share/dbus-1/services/org.xfce.Thunar.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
Feb 27 20:56:41 void dbus-broker-launch[1271]: Ignoring duplicate name 'org.freedesktop.FileManager1' in service file '/usr/share/dbus-1/services/org.xfce.Thunar.FileManager1.service'
Feb 27 20:56:41 void dbus-broker-launch[1271]: Service file '/usr/share/dbus-1/services/org.xfce.Tumbler.Cache1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Cache1'.
Feb 27 20:56:41 void dbus-broker-launch[1271]: Service file '/usr/share/dbus-1/services/org.xfce.Tumbler.Manager1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Manager1'.
Feb 27 20:56:41 void dbus-broker-launch[1271]: Service file '/usr/share/dbus-1/services/org.xfce.Tumbler.Thumbnailer1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Thumbnailer1'.
Feb 27 20:56:41 void dbus-broker-launch[1271]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
Feb 27 20:56:41 void dbus-broker-launch[1271]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
Feb 27 20:56:41 void systemd[908]: Started D-Bus User Message Bus.
Feb 27 20:56:41 void dbus-broker-launch[1271]: Ready
Feb 27 20:56:41 void sddm-greeter-qt6[1268]: Connected to the daemon.
Feb 27 20:56:41 void sddm[1222]: Message received from greeter: Connect
Feb 27 20:56:41 void sddm-greeter-qt6[1268]: Loading file:///usr/share/sddm/themes/sddm-astronaut-theme/Main.qml...
Feb 27 20:56:41 void sddm-greeter-qt6[1268]: Using Qt multimedia with FFmpeg version n8.0.1 GPL version 3 or later
Feb 27 20:56:42 void tailscaled[683]: open-conn-track: timeout opening (TCP 100.79.226.13:56000 => 95.216.195.133:80); no associated peer node
Feb 27 20:56:42 void tailscaled[683]: [RATELIMIT] format("open-conn-track: timeout opening %v; no associated peer node")
Feb 27 20:56:42 void sddm-greeter-qt6[1268]: Adding view for "eDP-1" QRect(0,0 1920x1080)
Feb 27 20:56:43 void sddm-greeter-qt6[1268]: Hunspell dictionary is missing for "en_IN". Search paths QList("/usr/share/qt6/qtvirtualkeyboard/hunspell", "/usr/share/hunspell", "/usr/share/myspell/dicts")
Feb 27 20:56:43 void sddm-greeter-qt6[1268]: Message received from daemon: Capabilities
Feb 27 20:56:43 void sddm-greeter-qt6[1268]: Message received from daemon: HostName
Feb 27 20:56:46 void sddm-greeter-qt6[1268]: Reading from "/usr/share/wayland-sessions/hyprland.desktop"
Feb 27 20:56:46 void sddm[1222]: Message received from greeter: Login
Feb 27 20:56:46 void sddm[1222]: Reading from "/usr/share/wayland-sessions/hyprland.desktop"
Feb 27 20:56:46 void sddm[1222]: Session "/usr/share/wayland-sessions/hyprland.desktop" selected, command: "/usr/bin/start-hyprland" for VT 2
Feb 27 20:56:46 void sddm-helper[1331]: [PAM] Starting...
Feb 27 20:56:46 void sddm-helper[1331]: [PAM] Authenticating...
Feb 27 20:56:46 void sddm-helper[1331]: [PAM] Preparing to converse...
Feb 27 20:56:46 void sddm-helper[1331]: [PAM] Conversation with 1 messages
Feb 27 20:56:46 void sddm-helper[1331]: gkr-pam: unable to locate daemon control file
Feb 27 20:56:46 void sddm-helper[1331]: gkr-pam: stashed password to try later in open session
Feb 27 20:56:46 void sddm-helper[1331]: [PAM] returning.
Feb 27 20:56:46 void sddm[1222]: Authentication for user "x254lb" successful
Feb 27 20:56:46 void sddm-helper[1331]: pam_unix(sddm:session): session opened for user x254lb(uid=1000) by x254lb(uid=0)
Feb 27 20:56:46 void sddm-greeter-qt6[1268]: Message received from daemon: LoginSucceeded
Feb 27 20:56:46 void systemd-logind[643]: New session '4' of user 'x254lb' with class 'user' and type 'wayland'.
Feb 27 20:56:46 void systemd[1]: Started Session 4 of User x254lb.
Feb 27 20:56:46 void systemd[1043]: Started GNOME Keyring daemon.
Feb 27 20:56:46 void gnome-keyring-daemon[1336]: gnome-keyring-daemon: no process capabilities, insecure memory might get used
Feb 27 20:56:46 void gnome-keyring-daemon[1336]: GNOME_KEYRING_CONTROL=/run/user/1000/keyring
Feb 27 20:56:46 void systemd[1043]: Created slice User Core Session Slice.
Feb 27 20:56:46 void systemd[1043]: Starting D-Bus User Message Bus...
Feb 27 20:56:46 void dbus-broker-launch[1349]: Service file '/usr/share/dbus-1/services/nemo.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
Feb 27 20:56:46 void dbus-broker-launch[1349]: Service file '/usr/share/dbus-1/services/nemo.service' is not named after the D-Bus name 'org.Nemo'.
Feb 27 20:56:46 void dbus-broker-launch[1349]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
Feb 27 20:56:46 void dbus-broker-launch[1349]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
Feb 27 20:56:46 void dbus-broker-launch[1349]: Service file '/usr/share/dbus-1/services/org.erikreider.swaync.service' is not named after the D-Bus name 'org.freedesktop.Notifications'.
Feb 27 20:56:46 void dbus-broker-launch[1349]: Service file '/usr/share/dbus-1/services/org.kde.dolphin.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
Feb 27 20:56:46 void dbus-broker-launch[1349]: Ignoring duplicate name 'org.freedesktop.FileManager1' in service file '/usr/share/dbus-1/services/org.kde.dolphin.FileManager1.service'
Feb 27 20:56:46 void dbus-broker-launch[1349]: Service file '/usr/share/dbus-1/services/org.xfce.Thunar.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
Feb 27 20:56:46 void dbus-broker-launch[1349]: Ignoring duplicate name 'org.freedesktop.FileManager1' in service file '/usr/share/dbus-1/services/org.xfce.Thunar.FileManager1.service'
Feb 27 20:56:46 void dbus-broker-launch[1349]: Service file '/usr/share/dbus-1/services/org.xfce.Tumbler.Cache1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Cache1'.
Feb 27 20:56:46 void dbus-broker-launch[1349]: Service file '/usr/share/dbus-1/services/org.xfce.Tumbler.Manager1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Manager1'.
Feb 27 20:56:46 void dbus-broker-launch[1349]: Service file '/usr/share/dbus-1/services/org.xfce.Tumbler.Thumbnailer1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Thumbnailer1'.
Feb 27 20:56:46 void systemd[1043]: Started D-Bus User Message Bus.
Feb 27 20:56:46 void dbus-broker-launch[1349]: Ready
Feb 27 20:56:46 void sddm-helper[1331]: gkr-pam: unlocked login keyring
Feb 27 20:56:46 void sddm-helper[1331]: Starting Wayland user session: "/usr/share/sddm/scripts/wayland-session" "/usr/bin/start-hyprland"
Feb 27 20:56:46 void sddm-helper[1351]: Jumping to VT 2
Feb 27 20:56:46 void sddm-helper[1351]: VT mode didn't need to be fixed
Feb 27 20:56:46 void sddm-helper[1265]: [PAM] Closing session
Feb 27 20:56:46 void sddm-helper[1265]: pam_unix(sddm-greeter:session): session closed for user sddm
Feb 27 20:56:46 void sddm-helper[1265]: [PAM] Ended.
Feb 27 20:56:46 void sddm[1222]: Auth: sddm-helper exited successfully
Feb 27 20:56:46 void sddm[1222]: Greeter stopped. SDDM::Auth::HELPER_SUCCESS
Feb 27 20:56:46 void systemd[1]: session-c2.scope: Deactivated successfully.
Feb 27 20:56:46 void systemd[1]: session-c2.scope: Consumed 1.807s CPU time, 673.6M memory peak.
Feb 27 20:56:46 void systemd-logind[643]: Session c2 logged out. Waiting for processes to exit.
Feb 27 20:56:46 void systemd-logind[643]: Removed session c2.
Feb 27 20:56:46 void sddm[1222]: Session started true
Feb 27 20:56:47 void systemd[1043]: Starting User preferences database...
Feb 27 20:56:47 void systemd[1043]: Started User preferences database.
Feb 27 20:56:47 void systemd[1043]: Starting Virtual filesystem service...
Feb 27 20:56:47 void systemd[1043]: Starting Accessibility services bus...
Feb 27 20:56:47 void systemd[1043]: Started Virtual filesystem service.
Feb 27 20:56:47 void systemd[1043]: Started Accessibility services bus.
Feb 27 20:56:47 void dbus-broker-launch[1543]: Ready
Feb 27 20:56:47 void systemd[1043]: Created slice Slice /app/dbus-:1.17-org.a11y.atspi.Registry.
Feb 27 20:56:47 void systemd[1043]: Started dbus-:1.17-org.a11y.atspi.Registry@0.service.
Feb 27 20:56:47 void systemd[1043]: Created slice Slice /app/dbus-:1.2-org.mpris.MediaPlayer2.playerctld.
Feb 27 20:56:47 void systemd[1043]: Started dbus-:1.2-org.mpris.MediaPlayer2.playerctld@0.service.
Feb 27 20:56:47 void at-spi2-registryd[1579]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Feb 27 20:56:47 void systemd[1043]: Starting gamemoded...
Feb 27 20:56:47 void systemd[1043]: Started gamemoded.
Feb 27 20:56:47 void systemd[1043]: Started PipeWire Multimedia Service.
Feb 27 20:56:47 void systemd[1043]: Started Multimedia Service Session Manager.
Feb 27 20:56:47 void systemd[1043]: Started PipeWire PulseAudio.
Feb 27 20:56:47 void systemd[1043]: Starting Virtual filesystem metadata service...
Feb 27 20:56:47 void systemd[1043]: Started Virtual filesystem metadata service.
Feb 27 20:56:47 void pipewire[1624]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Feb 27 20:56:47 void pipewire[1624]: mod.rt: RTKit does not give us MaxRealtimePriority, using 1
Feb 27 20:56:47 void pipewire[1624]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Feb 27 20:56:47 void pipewire[1624]: mod.rt: RTKit does not give us MinNiceLevel, using 0
Feb 27 20:56:47 void pipewire[1624]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Feb 27 20:56:47 void pipewire[1624]: mod.rt: RTKit does not give us RTTimeUSecMax, using -1
Feb 27 20:56:47 void pipewire-pulse[1632]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Feb 27 20:56:47 void pipewire-pulse[1632]: mod.rt: RTKit does not give us MaxRealtimePriority, using 1
Feb 27 20:56:47 void pipewire-pulse[1632]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Feb 27 20:56:47 void pipewire-pulse[1632]: mod.rt: RTKit does not give us MinNiceLevel, using 0
Feb 27 20:56:47 void pipewire-pulse[1632]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Feb 27 20:56:47 void pipewire-pulse[1632]: mod.rt: RTKit does not give us RTTimeUSecMax, using -1
Feb 27 20:56:47 void wireplumber[1625]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Feb 27 20:56:47 void wireplumber[1625]: mod.rt: RTKit does not give us MaxRealtimePriority, using 1
Feb 27 20:56:47 void wireplumber[1625]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Feb 27 20:56:47 void wireplumber[1625]: mod.rt: RTKit does not give us MinNiceLevel, using 0
Feb 27 20:56:47 void wireplumber[1625]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Feb 27 20:56:47 void wireplumber[1625]: mod.rt: RTKit does not give us RTTimeUSecMax, using -1
Feb 27 20:56:47 void NetworkManager[640]: <info> [1772206007.9351] agent-manager: agent[04f5d44e2098d97d,:1.36/org.freedesktop.nm-applet/1000]: agent registered
Feb 27 20:56:48 void dbus-broker-launch[634]: Activation request for 'org.bluez' failed: The systemd unit 'dbus-org.bluez.service' could not be found.
Feb 27 20:56:48 void wireplumber[1625]: default: Failed to get percentage from UPower: org.freedesktop.DBus.Error.NameHasNoOwner
Feb 27 20:56:48 void wireplumber[1625]: spa.bluez5: BlueZ system service is not available
Feb 27 20:56:48 void systemd[1043]: Started kitty child process: 1852 launched by: 1833.
Feb 27 20:56:49 void wireplumber[1625]: m-portal-permissionstore: <WpPortalPermissionStorePlugin:0x560e4a84f4f0> Lookup: The name is not activatable (org.freedesktop.DBus.Error.ServiceUnknown)
Feb 27 20:56:52 void tailscaled[683]: [RATELIMIT] format("open-conn-track: timeout opening %v; no associated peer node") (3 dropped)
Feb 27 20:56:52 void tailscaled[683]: open-conn-track: timeout opening (TCP 100.79.226.13:52422 => 95.216.195.133:80); no associated peer node
Feb 27 20:56:56 void tailscaled[683]: open-conn-track: timeout opening (TCP 100.79.226.13:55814 => 95.216.195.133:80); no associated peer node
Feb 27 20:56:56 void tailscaled[683]: [RATELIMIT] format("open-conn-track: timeout opening %v; no associated peer node")
Feb 27 20:56:56 void systemd[1]: Stopping User Manager for UID 964...
Feb 27 20:56:56 void systemd[908]: Activating special unit Exit the Session...
Feb 27 20:56:56 void systemd[908]: Stopped target Main User Target.
Feb 27 20:56:56 void systemd[908]: Stopped target Basic System.
Feb 27 20:56:56 void systemd[908]: Stopped target Paths.
Feb 27 20:56:56 void systemd[908]: Stopped target Sockets.
Feb 27 20:56:56 void systemd[908]: Stopped target Sound Card.
Feb 27 20:56:56 void systemd[908]: Stopped target Timers.
Feb 27 20:56:56 void systemd[908]: Closed GnuPG network certificate management daemon.
Feb 27 20:56:56 void systemd[908]: Closed GNOME Keyring daemon.
Feb 27 20:56:56 void systemd[908]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
Feb 27 20:56:56 void systemd[908]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
Feb 27 20:56:56 void systemd[908]: Closed GnuPG cryptographic agent (ssh-agent emulation).
Feb 27 20:56:56 void systemd[908]: Closed GnuPG cryptographic agent and passphrase cache.
Feb 27 20:56:56 void systemd[908]: Closed GnuPG public key management service.
Feb 27 20:56:56 void systemd[908]: Closed p11-kit server.
Feb 27 20:56:56 void systemd[908]: Closed PipeWire PulseAudio.
Feb 27 20:56:56 void systemd[908]: Closed PipeWire Multimedia System Sockets.
Feb 27 20:56:56 void systemd[908]: Closed Query the User Interactively for a Password.
Feb 27 20:56:56 void dbus-broker[1272]: Dispatched 321 messages @ 1(±1)μs / message.
Feb 27 20:56:56 void systemd[908]: Stopping D-Bus User Message Bus...
Feb 27 20:56:56 void systemd[908]: Stopped D-Bus User Message Bus.
Feb 27 20:56:56 void systemd[908]: Removed slice User Core Session Slice.
Feb 27 20:56:56 void systemd[908]: Closed D-Bus User Message Bus Socket.
Feb 27 20:56:56 void systemd[908]: Removed slice User Application Slice.
Feb 27 20:56:56 void systemd[908]: Reached target Shutdown.
Feb 27 20:56:56 void systemd[908]: Finished Exit the Session.
Feb 27 20:56:56 void systemd[908]: Reached target Exit the Session.
Feb 27 20:56:56 void systemd-logind[643]: Removed session 1.
Feb 27 20:56:56 void (sd-pam)[910]: pam_unix(systemd-user:session): session closed for user sddm
Feb 27 20:56:56 void systemd[1]: user@964.service: Deactivated successfully.
Feb 27 20:56:56 void systemd[1]: Stopped User Manager for UID 964.
Feb 27 20:56:56 void systemd[1]: Stopping User Runtime Directory /run/user/964...
Feb 27 20:56:56 void systemd[1]: run-user-964.mount: Deactivated successfully.
Feb 27 20:56:56 void systemd[1]: user-runtime-dir@964.service: Deactivated successfully.
Feb 27 20:56:56 void systemd[1]: Stopped User Runtime Directory /run/user/964.
Feb 27 20:56:56 void systemd[1]: Removed slice User Slice of UID 964.
Feb 27 20:56:56 void systemd[1]: user-964.slice: Consumed 1.963s CPU time, 692.4M memory peak.
Feb 27 20:56:59 void systemd[1]: Starting Time & Date Service...
Feb 27 20:56:59 void systemd[1]: Started Time & Date Service.
Feb 27 20:57:03 void tailscaled[683]: [RATELIMIT] format("open-conn-track: timeout opening %v; no associated peer node") (1 dropped)
Feb 27 20:57:03 void tailscaled[683]: open-conn-track: timeout opening (TCP 100.79.226.13:52422 => 95.216.195.133:80); no associated peer node
Feb 27 20:57:07 void tailscaled[683]: logtail: upload succeeded after 1 failures and 1m0s
Feb 27 20:57:11 void tailscaled[683]: open-conn-track: timeout opening (TCP 100.79.226.13:52422 => 95.216.195.133:80); no associated peer node
Feb 27 20:57:24 void tailscaled[683]: open-conn-track: timeout opening (TCP 100.79.226.13:52628 => 95.216.195.133:80); no associated peer node
Feb 27 20:57:29 void systemd[1]: systemd-timedated.service: Deactivated successfully.
Feb 27 20:57:29 void tailscaled[683]: open-conn-track: timeout opening (TCP 100.79.226.13:52628 => 95.216.195.133:80); no associated peer node
Feb 27 20:57:31 void sudo[2878]: x254lb : TTY=pts/0 ; PWD=/home/x254lb ; USER=root ; COMMAND=/usr/bin/systemctl status systemd-tpm2-setup.service
Feb 27 20:57:31 void sudo[2878]: pam_unix(sudo:session): session opened for user root(uid=0) by x254lb(uid=1000)
Feb 27 20:57:31 void sudo[2878]: pam_unix(sudo:session): session closed for user root
Feb 27 20:57:35 void tailscaled[683]: open-conn-track: timeout opening (TCP 100.79.226.13:52628 => 95.216.195.133:80); no associated peer node
Feb 27 20:57:44 void tailscaled[683]: open-conn-track: timeout opening (TCP 100.79.226.13:52628 => 95.216.195.133:80); no associated peer node
Feb 27 20:58:28 void tailscaled[683]: open-conn-track: timeout opening (TCP 100.79.226.13:54044 => 95.216.195.133:80); no associated peer node
Feb 27 20:58:33 void tailscaled[683]: open-conn-track: timeout opening (TCP 100.79.226.13:54044 => 95.216.195.133:80); no associated peer node
Feb 27 20:58:39 void tailscaled[683]: open-conn-track: timeout opening (TCP 100.79.226.13:54044 => 95.216.195.133:80); no associated peer node
Feb 27 20:58:48 void tailscaled[683]: open-conn-track: timeout opening (TCP 100.79.226.13:54044 => 95.216.195.133:80); no associated peer node
Feb 27 20:59:20 void sudo[3071]: x254lb : TTY=pts/0 ; PWD=/home/x254lb ; USER=root ; COMMAND=/usr/bin/journalctl -b
Feb 27 20:59:20 void sudo[3071]: pam_unix(sudo:session): session opened for user root(uid=0) by x254lb(uid=1000)Please ignore the sddm crash
Offline
Feb 27 20:56:05 void systemd[1]: Starting Remount Root and Kernel File Systems...
Feb 27 20:56:05 void systemd[1]: Starting Early TPM SRK Setup...is actually the same, the only difference is the (new) nvpcr code ("Starting TPM NvPCR Product ID Measurement...")
Let's assume because of the UKI doesn't actually run before the root switch - the problem is then simply down to a bug in the new nvpcr code in 259
You're probably in the same camp as https://github.com/systemd/systemd/issu … 3821439207 but don't have the tpm kernel errors of the OP in that bug (which might result in the boot loop and may or not be related to the bogus nvpcr code)
Offline
Feb 27 20:56:05 void systemd[1]: Starting Remount Root and Kernel File Systems... Feb 27 20:56:05 void systemd[1]: Starting Early TPM SRK Setup...is actually the same, the only difference is the (new) nvpcr code ("Starting TPM NvPCR Product ID Measurement...")
Let's assume because of the UKI doesn't actually run before the root switch - the problem is then simply down to a bug in the new nvpcr code in 259
You're probably in the same camp as https://github.com/systemd/systemd/issu … 3821439207 but don't have the tpm kernel errors of the OP in that bug (which might result in the boot loop and may or not be related to the bogus nvpcr code)
What should I do at this point, should I mention my issue under the GitHub issue?
Offline
Yup, pile on and subscribe to both bugs (you're not in the "fix your uki config" camp nor exactly in the "tpm errors and system reboots" one, but both are "there's something wrong w/ the nvpcr implementation")
Offline
Yup, pile on and subscribe to both bugs (you're not in the "fix your uki config" camp nor exactly in the "tpm errors and system reboots" one, but both are "there's something wrong w/ the nvpcr implementation")
Okay, thank you very much for replying and for helping me identify the issue.
Offline