You are not logged in.

#76 2023-10-20 07:16:04

seth
Member
Registered: 2012-09-03
Posts: 51,532

Re: [SOLVED] "Failed to start Virtual Console Setup" after last update

From your last journal:

out 19 02:17:07 archlinux systemd[1]: Started Session 1 of User root.
out 19 02:17:07 archlinux login[407]: ROOT LOGIN ON tty1
out 19 02:17:17 archlinux systemd[1]: systemd-hostnamed.service: Deactivated successfully.
out 19 02:20:03 archlinux systemd[1]: Started Forward Password Requests to Wall Directory Watch.
out 19 02:20:03 archlinux systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
…
out 19 02:20:03 archlinux systemd[1]: Starting Network Configuration...
out 19 02:20:03 archlinux systemd[1]: Finished Initialize hardware monitoring sensors.
out 19 02:20:03 archlinux kernel: wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.
out 19 02:20:03 archlinux kernel: wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
out 19 02:20:03 archlinux systemd-networkd[591]: lo: Link UP
out 19 02:20:03 archlinux systemd-networkd[591]: lo: Gained carrier
out 19 02:20:03 archlinux systemd-networkd[591]: wg0: netdev ready
out 19 02:20:03 archlinux systemd-networkd[591]: Enumeration completed
out 19 02:20:03 archlinux systemd[1]: Started Network Configuration.
out 19 02:20:03 archlinux systemd[1]: Reached target Network.
out 19 02:20:03 archlinux systemd-networkd[591]: enp2s0: Configuring with /etc/systemd/network/20-ethernet.network.
out 19 02:20:03 archlinux kernel: Generic FE-GE Realtek PHY r8169-0-200:00: attached PHY driver (mii_bus:phy_addr=r8169-0-200:00, irq=MAC)
out 19 02:20:03 archlinux systemd[1]: Started OpenSSH Daemon.
out 19 02:20:03 archlinux systemd[1]: Starting Permit User Sessions...
out 19 02:20:03 archlinux systemd[1]: Finished Permit User Sessions.
out 19 02:20:03 archlinux systemd[1]: Reached target Multi-User System.

How can you ping that system if the network isn't configured before you start the multi-user.target?
networkd is default WantedBy the multi-user.target…

Offline

#77 2023-10-21 01:14:39

xenobro
Member
Registered: 2019-05-25
Posts: 100

Re: [SOLVED] "Failed to start Virtual Console Setup" after last update

solskog, your suggestion not only solved the ssh issue but also fixed pretty much everyhing that was messed up since the last update:
Deleting my systemd-vconsole-setup.service and removing its link to /dev/null from /etc/systemd/system/sysinit.target allowed me to boot straight into multi-user.target, automatically started the sshd server, made those error messages disappear and subsequently let me boot into graphical.target (but still in text mode as I like) when I changed back /etc/default/grub and regenerated grub.cfg.
I'm curious as to what exactly is calling systemd-vconsole-setup.service now, since it is very clearly running and fixing my keymap and console font and doing so very early on in the boot process.
I have since tested it also with both systemd and udev initramfs, both work perfectly. I'm stil trying to understand if there is any advantage in using the systemd one: I have a feeling it will eventually become the "default".

seth, systemd-networkd.service is really "WantedBy=multi-user.target" in [Install], but it also has "Before=network.target multi-user.target..." (and confusingly also "Wants=...network.target") in [Unit] by default, take a look:

#  SPDX-License-Identifier: LGPL-2.1-or-later
#
#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU Lesser General Public License as published by
#  the Free Software Foundation; either version 2.1 of the License, or
#  (at your option) any later version.

[Unit]
Description=Network Configuration
Documentation=man:systemd-networkd.service(8)
Documentation=man:org.freedesktop.network1(5)
ConditionCapability=CAP_NET_ADMIN
DefaultDependencies=no
# systemd-udevd.service can be dropped once tuntap is moved to netlink
After=systemd-networkd.socket systemd-udevd.service network-pre.target systemd-sysusers.service systemd-sysctl.service
Before=network.target multi-user.target shutdown.target initrd-switch-root.target
Conflicts=shutdown.target initrd-switch-root.target
Wants=systemd-networkd.socket network.target

[Service]
AmbientCapabilities=CAP_NET_ADMIN CAP_NET_BIND_SERVICE CAP_NET_BROADCAST CAP_NET_RAW
BusName=org.freedesktop.network1
CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_BIND_SERVICE CAP_NET_BROADCAST CAP_NET_RAW
DeviceAllow=char-* rw
ExecStart=!!/usr/lib/systemd/systemd-networkd
FileDescriptorStoreMax=512
LockPersonality=yes
MemoryDenyWriteExecute=yes
NoNewPrivileges=yes
ProtectProc=invisible
ProtectClock=yes
ProtectControlGroups=yes
ProtectHome=yes
ProtectKernelLogs=yes
ProtectKernelModules=yes
ProtectSystem=strict
Restart=on-failure
RestartKillSignal=SIGUSR2
RestartSec=0
RestrictAddressFamilies=AF_UNIX AF_NETLINK AF_INET AF_INET6 AF_PACKET
RestrictNamespaces=yes
RestrictRealtime=yes
RestrictSUIDSGID=yes
RuntimeDirectory=systemd/netif
RuntimeDirectoryPreserve=yes
SystemCallArchitectures=native
SystemCallErrorNumber=EPERM
SystemCallFilter=@system-service
Type=notify-reload
User=systemd-network
WatchdogSec=3min

[Install]
WantedBy=multi-user.target
Also=systemd-networkd.socket
Alias=dbus-org.freedesktop.network1.service

# The output from this generator is used by udevd and networkd. Enable it by
# default when enabling systemd-networkd.service.
Also=systemd-network-generator.service

# We want to enable systemd-networkd-wait-online.service whenever this service
# is enabled. systemd-networkd-wait-online.service has
# WantedBy=network-online.target, so enabling it only has an effect if
# network-online.target itself is enabled or pulled in by some other unit.
Also=systemd-networkd-wait-online.service

I'm guessing once multi-user.target is reached, it calls on systemd-networkd.service and network.target to run before itself and only when those are running it proceeds.
I have tested and everthing was working smoothly, so I've since stopped and disabled systemd-networkd and I'm now back to connecting to the network manually by wifi.

The only thing I still couldn't manage to make it work was "journalctl -b -1": it still says "no persistent journal was found", even when I have configured it like that.
Any ideas on how to solve that?
This is the latest journal I've got, now going all the way to graphical.target and connecting to the network manually by wifi:

out 20 21:07:45 archlinux systemd-journald[121]: Received SIGTERM from PID 1 (systemd).
out 20 21:07:45 archlinux systemd[1]: systemd 254.5-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT -QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
out 20 21:07:45 archlinux systemd[1]: Detected architecture x86-64.
out 20 21:07:45 archlinux systemd[1]: bpf-lsm: LSM BPF program attached
out 20 21:07:45 archlinux systemd[1]: initrd-switch-root.service: Deactivated successfully.
out 20 21:07:45 archlinux systemd[1]: Stopped Switch Root.
out 20 21:07:45 archlinux systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
out 20 21:07:45 archlinux systemd[1]: Created slice Slice /system/getty.
out 20 21:07:45 archlinux systemd[1]: Created slice Slice /system/modprobe.
out 20 21:07:45 archlinux systemd[1]: Created slice Slice /system/systemd-fsck.
out 20 21:07:45 archlinux systemd[1]: Created slice User and Session Slice.
out 20 21:07:45 archlinux systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
out 20 21:07:45 archlinux systemd[1]: Started Forward Password Requests to Wall Directory Watch.
out 20 21:07:45 archlinux systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
out 20 21:07:45 archlinux systemd[1]: Reached target Local Encrypted Volumes.
out 20 21:07:45 archlinux systemd[1]: Stopped target Switch Root.
out 20 21:07:45 archlinux systemd[1]: Stopped target Initrd File Systems.
out 20 21:07:45 archlinux systemd[1]: Stopped target Initrd Root File System.
out 20 21:07:45 archlinux systemd[1]: Reached target Local Integrity Protected Volumes.
out 20 21:07:45 archlinux systemd[1]: Reached target Path Units.
out 20 21:07:45 archlinux systemd[1]: Reached target Remote Encrypted Volumes.
out 20 21:07:45 archlinux systemd[1]: Reached target Remote File Systems.
out 20 21:07:45 archlinux systemd[1]: Reached target Slice Units.
out 20 21:07:45 archlinux systemd[1]: Reached target Local Verity Protected Volumes.
out 20 21:07:45 archlinux systemd[1]: Listening on Device-mapper event daemon FIFOs.
out 20 21:07:45 archlinux systemd[1]: Listening on Process Core Dump Socket.
out 20 21:07:45 archlinux systemd[1]: Listening on Journal Audit Socket.
out 20 21:07:45 archlinux systemd[1]: Listening on udev Control Socket.
out 20 21:07:45 archlinux systemd[1]: Listening on udev Kernel Socket.
out 20 21:07:45 archlinux systemd[1]: Mounting Huge Pages File System...
out 20 21:07:45 archlinux systemd[1]: Mounting POSIX Message Queue File System...
out 20 21:07:45 archlinux systemd[1]: Mounting Kernel Debug File System...
out 20 21:07:45 archlinux systemd[1]: Mounting Kernel Trace File System...
out 20 21:07:45 archlinux systemd[1]: tmp.mount: Directory /tmp to mount over is not empty, mounting anyway.
out 20 21:07:45 archlinux systemd[1]: Mounting Temporary Directory /tmp...
out 20 21:07:45 archlinux systemd[1]: Starting Create List of Static Device Nodes...
out 20 21:07:45 archlinux systemd[1]: Starting Load Kernel Module configfs...
out 20 21:07:45 archlinux systemd[1]: Starting Load Kernel Module dm_mod...
out 20 21:07:45 archlinux systemd[1]: Starting Load Kernel Module drm...
out 20 21:07:45 archlinux systemd[1]: Starting Load Kernel Module efi_pstore...
out 20 21:07:45 archlinux systemd[1]: Starting Load Kernel Module fuse...
out 20 21:07:45 archlinux systemd[1]: Starting Load Kernel Module loop...
out 20 21:07:45 archlinux systemd[1]: Starting Journal Service...
out 20 21:07:45 archlinux systemd[1]: Starting Load Kernel Modules...
out 20 21:07:45 archlinux systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
out 20 21:07:45 archlinux systemd[1]: Starting Remount Root and Kernel File Systems...
out 20 21:07:45 archlinux systemd[1]: Starting Coldplug All udev Devices...
out 20 21:07:45 archlinux systemd[1]: Mounted Huge Pages File System.
out 20 21:07:45 archlinux systemd[1]: Mounted POSIX Message Queue File System.
out 20 21:07:45 archlinux systemd[1]: Mounted Kernel Debug File System.
out 20 21:07:45 archlinux systemd[1]: Mounted Kernel Trace File System.
out 20 21:07:45 archlinux systemd[1]: Mounted Temporary Directory /tmp.
out 20 21:07:45 archlinux kernel: fuse: init (API version 7.38)
out 20 21:07:45 archlinux kernel: loop: module loaded
out 20 21:07:45 archlinux kernel: EXT4-fs (sda2): re-mounted 60c60104-132a-4195-b74b-07c2adb65cba r/w. Quota mode: none.
out 20 21:07:45 archlinux systemd-journald[248]: Collecting audit messages is enabled.
out 20 21:07:45 archlinux systemd[1]: Finished Create List of Static Device Nodes.
out 20 21:07:45 archlinux systemd-journald[248]: Journal started
out 20 21:07:45 archlinux systemd-journald[248]: Runtime Journal (/run/log/journal/b8b5a78bc3dd446893d7ca9110a51b1b) is 8.0M, max 153.3M, 145.3M free.
out 20 21:07:45 archlinux systemd[1]: Queued start job for default target Graphical Interface.
out 20 21:07:45 archlinux systemd[1]: systemd-journald.service: Deactivated successfully.
out 20 21:07:45 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=kmod-static-nodes comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux kernel: audit: type=1130 audit(1697846865.476:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=kmod-static-nodes comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux systemd[1]: Started Journal Service.
out 20 21:07:45 archlinux systemd-modules-load[249]: Inserted module 'crypto_user'
out 20 21:07:45 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux systemd[1]: modprobe@configfs.service: Deactivated successfully.
out 20 21:07:45 archlinux kernel: audit: type=1130 audit(1697846865.480:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux kernel: device-mapper: uevent: version 1.0.3
out 20 21:07:45 archlinux kernel: device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
out 20 21:07:45 archlinux systemd[1]: Finished Load Kernel Module configfs.
out 20 21:07:45 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
out 20 21:07:45 archlinux kernel: audit: type=1130 audit(1697846865.503:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux kernel: audit: type=1131 audit(1697846865.503:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux systemd[1]: Finished Load Kernel Module dm_mod.
out 20 21:07:45 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@dm_mod comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@dm_mod comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux systemd[1]: modprobe@drm.service: Deactivated successfully.
out 20 21:07:45 archlinux kernel: audit: type=1130 audit(1697846865.543:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@dm_mod comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux kernel: audit: type=1131 audit(1697846865.543:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@dm_mod comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux systemd[1]: Finished Load Kernel Module drm.
out 20 21:07:45 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
out 20 21:07:45 archlinux kernel: audit: type=1130 audit(1697846865.553:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux kernel: audit: type=1131 audit(1697846865.553:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux systemd[1]: Finished Load Kernel Module efi_pstore.
out 20 21:07:45 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@efi_pstore comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@efi_pstore comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux systemd[1]: modprobe@fuse.service: Deactivated successfully.
out 20 21:07:45 archlinux kernel: audit: type=1130 audit(1697846865.583:10): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@efi_pstore comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux kernel: audit: type=1131 audit(1697846865.583:11): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@efi_pstore comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux systemd[1]: Finished Load Kernel Module fuse.
out 20 21:07:45 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@fuse comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@fuse comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux systemd[1]: modprobe@loop.service: Deactivated successfully.
out 20 21:07:45 archlinux systemd[1]: Finished Load Kernel Module loop.
out 20 21:07:45 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@loop comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@loop comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux systemd[1]: Finished Load Kernel Modules.
out 20 21:07:45 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-modules-load comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux systemd[1]: Finished Remount Root and Kernel File Systems.
out 20 21:07:45 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux systemd[1]: Finished Coldplug All udev Devices.
out 20 21:07:45 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux systemd[1]: Mounting FUSE Control File System...
out 20 21:07:45 archlinux systemd[1]: Mounting Kernel Configuration File System...
out 20 21:07:45 archlinux systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
out 20 21:07:45 archlinux systemd[1]: Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
out 20 21:07:45 archlinux systemd[1]: Starting Load/Save OS Random Seed...
out 20 21:07:45 archlinux systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
out 20 21:07:45 archlinux systemd[1]: Starting Apply Kernel Variables...
out 20 21:07:45 archlinux systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
out 20 21:07:45 archlinux systemd[1]: Mounted FUSE Control File System.
out 20 21:07:45 archlinux systemd[1]: Mounted Kernel Configuration File System.
out 20 21:07:45 archlinux systemd[1]: Finished Load/Save OS Random Seed.
out 20 21:07:45 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-random-seed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux systemd[1]: Finished Apply Kernel Variables.
out 20 21:07:45 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
out 20 21:07:45 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup-dev-early comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:45 archlinux systemd[1]: Create System Users was skipped because no trigger condition checks were met.
out 20 21:07:46 archlinux systemd[1]: Starting Create Static Device Nodes in /dev...
out 20 21:07:46 archlinux systemd[1]: Finished Create Static Device Nodes in /dev.
out 20 21:07:46 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:46 archlinux systemd[1]: Reached target Preparation for Local File Systems.
out 20 21:07:46 archlinux systemd[1]: Mounting /home...
out 20 21:07:46 archlinux systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
out 20 21:07:46 archlinux systemd[1]: Reached target Containers.
out 20 21:07:46 archlinux systemd[1]: Mounting /var/tmp...
out 20 21:07:46 archlinux audit: BPF prog-id=36 op=LOAD
out 20 21:07:46 archlinux audit: BPF prog-id=37 op=LOAD
out 20 21:07:46 archlinux audit: BPF prog-id=8 op=UNLOAD
out 20 21:07:46 archlinux audit: BPF prog-id=9 op=UNLOAD
out 20 21:07:46 archlinux systemd[1]: Starting Rule-based Manager for Device Events and Files...
out 20 21:07:46 archlinux systemd[1]: Mounted /home.
out 20 21:07:46 archlinux systemd[1]: Mounted /var/tmp.
out 20 21:07:46 archlinux systemd-udevd[287]: Using default interface naming scheme 'v253'.
out 20 21:07:46 archlinux systemd[1]: Started Rule-based Manager for Device Events and Files.
out 20 21:07:46 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:46 archlinux systemd[1]: Starting Load Kernel Module configfs...
out 20 21:07:46 archlinux systemd[1]: modprobe@configfs.service: Deactivated successfully.
out 20 21:07:46 archlinux systemd[1]: Finished Load Kernel Module configfs.
out 20 21:07:46 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:46 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@configfs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:46 archlinux kernel: Consider using thermal netlink events interface
out 20 21:07:46 archlinux systemd[1]: Created slice Slice /system/systemd-backlight.
out 20 21:07:46 archlinux systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:intel_backlight...
out 20 21:07:46 archlinux kernel: EDAC igen6: v2.5.1
out 20 21:07:46 archlinux kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
out 20 21:07:46 archlinux kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
out 20 21:07:46 archlinux kernel: i2c i2c-11: 1/2 memory slots populated (from DMI)
out 20 21:07:46 archlinux kernel: i2c i2c-11: Successfully instantiated SPD at 0x50
out 20 21:07:46 archlinux kernel: input: PC Speaker as /devices/platform/pcspkr/input/input5
out 20 21:07:46 archlinux systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:intel_backlight.
out 20 21:07:46 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@backlight:intel_backlight comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:46 archlinux systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
out 20 21:07:46 archlinux kernel: resource: resource sanity check: requesting [mem 0x00000000fedc0000-0x00000000fedcdfff], which spans more than pnp 00:03 [mem 0xfedc0000-0xfedc7fff]
out 20 21:07:46 archlinux kernel: caller __uncore_imc_init_box+0xfa/0x150 [intel_uncore] mapping multiple BARs
out 20 21:07:46 archlinux kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
out 20 21:07:46 archlinux kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
out 20 21:07:46 archlinux kernel: ee1004 11-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
out 20 21:07:46 archlinux kernel: iTCO_vendor_support: vendor-support=0
out 20 21:07:46 archlinux kernel: intel_rapl_msr: PL4 support detected.
out 20 21:07:46 archlinux kernel: intel_rapl_common: Found RAPL domain package
out 20 21:07:46 archlinux kernel: intel_rapl_common: Found RAPL domain core
out 20 21:07:46 archlinux kernel: intel_rapl_common: Found RAPL domain uncore
out 20 21:07:46 archlinux kernel: intel_rapl_common: Found RAPL domain psys
out 20 21:07:46 archlinux kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
out 20 21:07:46 archlinux systemd[1]: Starting Virtual Console Setup...
out 20 21:07:46 archlinux kernel: intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
out 20 21:07:46 archlinux kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
out 20 21:07:46 archlinux kernel: RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
out 20 21:07:46 archlinux kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
out 20 21:07:46 archlinux kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
out 20 21:07:46 archlinux kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
out 20 21:07:46 archlinux kernel: RAPL PMU: hw unit of domain psys 2^-14 Joules
out 20 21:07:46 archlinux kernel: Bluetooth: Core ver 2.22
out 20 21:07:46 archlinux kernel: NET: Registered PF_BLUETOOTH protocol family
out 20 21:07:46 archlinux kernel: Bluetooth: HCI device and connection manager initialized
out 20 21:07:46 archlinux kernel: Bluetooth: HCI socket layer initialized
out 20 21:07:46 archlinux kernel: Bluetooth: L2CAP socket layer initialized
out 20 21:07:46 archlinux kernel: Bluetooth: SCO socket layer initialized
out 20 21:07:46 archlinux kernel: Intel(R) Wireless WiFi driver for Linux
out 20 21:07:46 archlinux kernel: iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
out 20 21:07:46 archlinux kernel: spi-nor spi0.0: spi-nor-generic (16384 Kbytes)
out 20 21:07:46 archlinux kernel: iwlwifi 0000:00:14.3: Detected crf-id 0x2816, cnv-id 0x20000302 wfpm id 0x80000000
out 20 21:07:46 archlinux kernel: iwlwifi 0000:00:14.3: PCI dev a0f0/02a4, rev=0x351, rfid=0x108110
out 20 21:07:46 archlinux kernel: Creating 1 MTD partitions on "0000:00:1f.5":
out 20 21:07:46 archlinux kernel: 0x000000000000-0x000001000000 : "BIOS"
out 20 21:07:46 archlinux kernel: iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
out 20 21:07:46 archlinux kernel: iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
out 20 21:07:46 archlinux kernel: cryptd: max_cpu_qlen set to 1000
out 20 21:07:46 archlinux kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
out 20 21:07:46 archlinux kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
out 20 21:07:46 archlinux kernel: cfg80211: failed to load regulatory.db
out 20 21:07:46 archlinux kernel: mei_pxp 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1: bound 0000:00:02.0 (ops i915_pxp_tee_component_ops [i915])
out 20 21:07:46 archlinux mtp-probe[332]: checking bus 3, device 2: "/sys/devices/pci0000:00/0000:00:14.0/usb3/3-7"
out 20 21:07:46 archlinux mtp-probe[331]: checking bus 4, device 2: "/sys/devices/pci0000:00/0000:00:14.0/usb4/4-1"
out 20 21:07:46 archlinux mtp-probe[332]: bus: 3, device: 2 was not an MTP device
out 20 21:07:46 archlinux mtp-probe[331]: bus: 4, device: 2 was not an MTP device
out 20 21:07:46 archlinux kernel: iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
out 20 21:07:46 archlinux kernel: iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37
out 20 21:07:46 archlinux kernel: iwlwifi 0000:00:14.3: loaded firmware version 77.206b0184.0 QuZ-a0-jf-b0-77.ucode op_mode iwlmvm
out 20 21:07:46 archlinux kernel: mc: Linux media interface: v0.10
out 20 21:07:47 archlinux kernel: input: PNP0C50:01 0911:5288 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-12/i2c-PNP0C50:01/0018:0911:5288.0001/input/input6
out 20 21:07:47 archlinux kernel: input: PNP0C50:01 0911:5288 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-12/i2c-PNP0C50:01/0018:0911:5288.0001/input/input7
out 20 21:07:47 archlinux kernel: input: PNP0C50:01 0911:5288 as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-12/i2c-PNP0C50:01/0018:0911:5288.0001/input/input8
out 20 21:07:47 archlinux kernel: hid-generic 0018:0911:5288.0001: input,hidraw0: I2C HID v1.00 Mouse [PNP0C50:01 0911:5288] on i2c-PNP0C50:01
out 20 21:07:47 archlinux kernel: proc_thermal 0000:00:04.0: enabling device (0000 -> 0002)
out 20 21:07:47 archlinux kernel: intel_rapl_common: Found RAPL domain package
out 20 21:07:47 archlinux kernel: AVX2 version of gcm_enc/dec engaged.
out 20 21:07:47 archlinux kernel: AES CTR mode by8 optimization enabled
out 20 21:07:47 archlinux kernel: videodev: Linux video capture interface: v2.00
out 20 21:07:47 archlinux kernel: r8169 0000:02:00.0 eth0: RTL8168h/8111h, 98:83:89:fd:b9:f4, XID 541, IRQ 151
out 20 21:07:47 archlinux kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
out 20 21:07:47 archlinux kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
out 20 21:07:47 archlinux kernel: input: PNP0C50:01 0911:5288 Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-12/i2c-PNP0C50:01/0018:0911:5288.0001/input/input9
out 20 21:07:47 archlinux kernel: input: PNP0C50:01 0911:5288 Touchpad as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-12/i2c-PNP0C50:01/0018:0911:5288.0001/input/input10
out 20 21:07:47 archlinux kernel: input: PNP0C50:01 0911:5288 UNKNOWN as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-12/i2c-PNP0C50:01/0018:0911:5288.0001/input/input11
out 20 21:07:47 archlinux kernel: hid-multitouch 0018:0911:5288.0001: input,hidraw0: I2C HID v1.00 Mouse [PNP0C50:01 0911:5288] on i2c-PNP0C50:01
out 20 21:07:47 archlinux kernel: mousedev: PS/2 mouse device common for all mice
out 20 21:07:47 archlinux kernel: iwlwifi 0000:00:14.3: Detected Intel(R) Wireless-AC 9462, REV=0x351
out 20 21:07:47 archlinux kernel: thermal thermal_zone5: failed to read out thermal zone (-61)
out 20 21:07:47 archlinux kernel: snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
out 20 21:07:47 archlinux kernel: snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
out 20 21:07:47 archlinux kernel: snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
out 20 21:07:47 archlinux kernel: usb 3-7: Found UVC 1.00 device VGA camera (13d3:5a24)
out 20 21:07:47 archlinux kernel: usbcore: registered new interface driver uvcvideo
out 20 21:07:47 archlinux kernel: usbcore: registered new interface driver btusb
out 20 21:07:47 archlinux kernel: Bluetooth: hci0: Bootloader revision 0.0 build 0 week 30 2018
out 20 21:07:47 archlinux kernel: Bluetooth: hci0: Device revision is 2
out 20 21:07:47 archlinux kernel: Bluetooth: hci0: Secure boot is enabled
out 20 21:07:47 archlinux kernel: Bluetooth: hci0: OTP lock is enabled
out 20 21:07:47 archlinux kernel: Bluetooth: hci0: API lock is enabled
out 20 21:07:47 archlinux kernel: Bluetooth: hci0: Debug lock is disabled
out 20 21:07:47 archlinux kernel: Bluetooth: hci0: Minimum firmware build 1 week 10 2014
out 20 21:07:47 archlinux systemd[1]: Starting Load/Save RF Kill Switch Status...
out 20 21:07:47 archlinux kernel: iwlwifi 0000:00:14.3: base HW address: 80:b6:55:b6:fb:0c
out 20 21:07:47 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC897: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
out 20 21:07:47 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
out 20 21:07:47 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
out 20 21:07:47 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
out 20 21:07:47 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:    inputs:
out 20 21:07:47 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:      Mic=0x12
out 20 21:07:47 archlinux systemd[1]: Condition check resulted in Ultra_Fit 1 being skipped.
out 20 21:07:47 archlinux kernel: Bluetooth: hci0: Found device firmware: intel/ibt-19-0-0.sfi
out 20 21:07:47 archlinux kernel: Bluetooth: hci0: Boot Address: 0x24800
out 20 21:07:47 archlinux kernel: Bluetooth: hci0: Firmware Version: 206-22.23
out 20 21:07:47 archlinux kernel: iwlwifi 0000:00:14.3 wlo1: renamed from wlan0
out 20 21:07:47 archlinux systemd[1]: Starting Load Kernel Module dm_mod...
out 20 21:07:47 archlinux systemd[1]: Starting Load Kernel Module efi_pstore...
out 20 21:07:47 archlinux systemd[1]: Starting Load Kernel Module loop...
out 20 21:07:47 archlinux systemd[1]: Starting File System Check on /dev/disk/by-uuid/4354-283A...
out 20 21:07:47 archlinux systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
out 20 21:07:47 archlinux systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
out 20 21:07:47 archlinux systemd[1]: Create System Users was skipped because no trigger condition checks were met.
out 20 21:07:47 archlinux systemd[1]: Started Load/Save RF Kill Switch Status.
out 20 21:07:47 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:47 archlinux systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
out 20 21:07:47 archlinux kernel: input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input12
out 20 21:07:47 archlinux kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
out 20 21:07:47 archlinux kernel: input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
out 20 21:07:47 archlinux kernel: input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
out 20 21:07:47 archlinux kernel: input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
out 20 21:07:47 archlinux systemd[1]: Finished Load Kernel Module dm_mod.
out 20 21:07:47 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@dm_mod comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:47 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@dm_mod comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:47 archlinux systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
out 20 21:07:47 archlinux systemd[1]: Finished Load Kernel Module efi_pstore.
out 20 21:07:47 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@efi_pstore comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:47 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@efi_pstore comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:47 archlinux systemd[1]: modprobe@loop.service: Deactivated successfully.
out 20 21:07:47 archlinux systemd[1]: Finished Load Kernel Module loop.
out 20 21:07:47 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@loop comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:47 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@loop comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:47 archlinux systemd[1]: Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
out 20 21:07:47 archlinux systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
out 20 21:07:47 archlinux kernel: intel_tcc_cooling: TCC Offset locked
out 20 21:07:47 archlinux systemd[1]: Finished Virtual Console Setup.
out 20 21:07:47 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:47 archlinux (udev-worker)[294]: controlC0: Process '/usr/bin/alsactl restore 0' failed with exit code 2.
out 20 21:07:47 archlinux systemd[1]: Starting Load Kernel Module dm_mod...
out 20 21:07:47 archlinux systemd[1]: Starting Load Kernel Module efi_pstore...
out 20 21:07:47 archlinux systemd[1]: Starting Load Kernel Module loop...
out 20 21:07:47 archlinux systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
out 20 21:07:47 archlinux systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
out 20 21:07:47 archlinux systemd[1]: Create System Users was skipped because no trigger condition checks were met.
out 20 21:07:47 archlinux systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
out 20 21:07:47 archlinux systemd-fsck[392]: fsck.fat 4.2 (2021-01-31)
out 20 21:07:47 archlinux systemd-fsck[392]: /dev/sda1: 371 files, 183076/201616 clusters
out 20 21:07:47 archlinux systemd[1]: Finished Load Kernel Module dm_mod.
out 20 21:07:47 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@dm_mod comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:47 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@dm_mod comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:47 archlinux systemd[1]: Finished File System Check on /dev/disk/by-uuid/4354-283A.
out 20 21:07:47 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-4354\x2d283A comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:47 archlinux systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
out 20 21:07:47 archlinux systemd[1]: Finished Load Kernel Module efi_pstore.
out 20 21:07:47 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@efi_pstore comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:47 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@efi_pstore comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:47 archlinux systemd[1]: modprobe@loop.service: Deactivated successfully.
out 20 21:07:47 archlinux systemd[1]: Finished Load Kernel Module loop.
out 20 21:07:47 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@loop comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:47 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@loop comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:48 archlinux systemd[1]: Mounting /boot...
out 20 21:07:48 archlinux systemd[1]: Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
out 20 21:07:48 archlinux systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
out 20 21:07:48 archlinux systemd[1]: Mounted /boot.
out 20 21:07:48 archlinux systemd[1]: Reached target Local File Systems.
out 20 21:07:48 archlinux systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
out 20 21:07:48 archlinux systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
out 20 21:07:48 archlinux systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
out 20 21:07:48 archlinux systemd[1]: Starting Automatic Boot Loader Update...
out 20 21:07:48 archlinux systemd[1]: Starting Create Volatile Files and Directories...
out 20 21:07:48 archlinux systemd[1]: Finished Automatic Boot Loader Update.
out 20 21:07:48 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-boot-update comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:48 archlinux systemd[1]: Finished Create Volatile Files and Directories.
out 20 21:07:48 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:48 archlinux systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
out 20 21:07:48 archlinux systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
out 20 21:07:48 archlinux systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
out 20 21:07:48 archlinux systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
out 20 21:07:48 archlinux audit: BPF prog-id=38 op=LOAD
out 20 21:07:48 archlinux systemd[1]: Starting Network Name Resolution...
out 20 21:07:48 archlinux audit: BPF prog-id=39 op=LOAD
out 20 21:07:48 archlinux systemd[1]: Starting Network Time Synchronization...
out 20 21:07:48 archlinux systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
out 20 21:07:48 archlinux systemd[1]: Starting Record System Boot/Shutdown in UTMP...
out 20 21:07:48 archlinux audit[418]: SYSTEM_BOOT pid=418 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
out 20 21:07:48 archlinux systemd[1]: Finished Record System Boot/Shutdown in UTMP.
out 20 21:07:48 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-update-utmp comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:48 archlinux systemd-resolved[415]: Positive Trust Anchors:
out 20 21:07:48 archlinux systemd-resolved[415]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d
out 20 21:07:48 archlinux systemd-resolved[415]: Negative trust anchors: home.arpa 10.in-addr.arpa 16.172.in-addr.arpa 17.172.in-addr.arpa 18.172.in-addr.arpa 19.172.in-addr.arpa 20.172.in-addr.arpa 21.172.in-addr.arpa 22.172.in-addr.arpa 23.172.in-addr.arpa 24.172.in-addr.arpa 25.172.in-addr.arpa 26.172.in-addr.arpa 27.172.in-addr.arpa 28.172.in-addr.arpa 29.172.in-addr.arpa 30.172.in-addr.arpa 31.172.in-addr.arpa 168.192.in-addr.arpa d.f.ip6.arpa corp home internal intranet lan local private test
out 20 21:07:48 archlinux systemd[1]: Started Network Time Synchronization.
out 20 21:07:48 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-timesyncd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:48 archlinux systemd[1]: Reached target System Time Set.
out 20 21:07:48 archlinux systemd-resolved[415]: Using system hostname 'archlinux'.
out 20 21:07:48 archlinux systemd[1]: Started Network Name Resolution.
out 20 21:07:48 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-resolved comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:48 archlinux systemd[1]: Reached target Host and Network Name Lookups.
out 20 21:07:48 archlinux systemd[1]: Reached target System Initialization.
out 20 21:07:48 archlinux systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
out 20 21:07:48 archlinux systemd[1]: Started Daily rotation of log files.
out 20 21:07:48 archlinux systemd[1]: Started Daily man-db regeneration.
out 20 21:07:48 archlinux systemd[1]: Started Daily verification of password and group files.
out 20 21:07:48 archlinux systemd[1]: Started Daily Cleanup of Temporary Directories.
out 20 21:07:48 archlinux systemd[1]: Reached target Timer Units.
out 20 21:07:48 archlinux systemd[1]: Listening on D-Bus System Message Bus Socket.
out 20 21:07:48 archlinux systemd[1]: Reached target Socket Units.
out 20 21:07:48 archlinux systemd[1]: TPM2 PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
out 20 21:07:48 archlinux systemd[1]: Reached target Basic System.
out 20 21:07:48 archlinux systemd[1]: Starting Save/Restore Sound Card State...
out 20 21:07:48 archlinux systemd[1]: Manage Sound Card State (restore and store) was skipped because of an unmet condition check (ConditionPathExists=/etc/alsa/state-daemon.conf).
out 20 21:07:48 archlinux systemd[1]: Starting Bluetooth service...
out 20 21:07:48 archlinux (uetoothd)[423]: bluetooth.service: ConfigurationDirectory 'bluetooth' already exists but the mode is different. (File system: 755 ConfigurationDirectoryMode: 555)
out 20 21:07:48 archlinux systemd[1]: Starting D-Bus System Message Bus...
out 20 21:07:48 archlinux systemd[1]: Starting Initialize hardware monitoring sensors...
out 20 21:07:48 archlinux (modprobe)[425]: lm_sensors.service: Referenced but unset environment variable evaluates to an empty string: BUS_MODULES
out 20 21:07:48 archlinux systemd[1]: SSH Key Generation was skipped because no trigger condition checks were met.
out 20 21:07:48 archlinux systemd[1]: Started OpenSSH Daemon.
out 20 21:07:48 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sshd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:48 archlinux audit: BPF prog-id=40 op=LOAD
out 20 21:07:48 archlinux audit: BPF prog-id=41 op=LOAD
out 20 21:07:48 archlinux audit: BPF prog-id=42 op=LOAD
out 20 21:07:48 archlinux systemd[1]: Starting User Login Management...
out 20 21:07:48 archlinux systemd[1]: TPM2 PCR Barrier (User) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
out 20 21:07:48 archlinux systemd[1]: Starting Permit User Sessions...
out 20 21:07:48 archlinux systemd[1]: Finished Permit User Sessions.
out 20 21:07:48 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-user-sessions comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:48 archlinux systemd[1]: Started Getty on tty1.
out 20 21:07:48 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=getty@tty1 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:48 archlinux systemd[1]: Reached target Login Prompts.
out 20 21:07:48 archlinux systemd[1]: Starting Populate /home...
out 20 21:07:48 archlinux systemd-logind[427]: New seat seat0.
out 20 21:07:48 archlinux systemd-logind[427]: Watching system buttons on /dev/input/event2 (Power Button)
out 20 21:07:48 archlinux systemd-logind[427]: Watching system buttons on /dev/input/event1 (Power Button)
out 20 21:07:48 archlinux systemd-logind[427]: Watching system buttons on /dev/input/event0 (Lid Switch)
out 20 21:07:48 archlinux systemd-logind[427]: Watching system buttons on /dev/input/event3 (AT Translated Set 2 keyboard)
out 20 21:07:48 archlinux systemd[1]: Started User Login Management.
out 20 21:07:48 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-logind comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:48 archlinux systemd[1]: Finished Save/Restore Sound Card State.
out 20 21:07:48 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=alsa-restore comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:48 archlinux bluetoothd[423]: Bluetooth daemon 5.70
out 20 21:07:48 archlinux systemd[1]: Finished Initialize hardware monitoring sensors.
out 20 21:07:48 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lm_sensors comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:48 archlinux systemd[1]: Reached target Sound Card.
out 20 21:07:48 archlinux sshd[426]: Server listening on 0.0.0.0 port 22.
out 20 21:07:48 archlinux sshd[426]: Server listening on :: port 22.
out 20 21:07:48 archlinux bluetoothd[423]: Starting SDP server
out 20 21:07:48 archlinux bluetoothd[423]: src/plugin.c:plugin_init() System does not support csip plugin
out 20 21:07:48 archlinux bluetoothd[423]: profiles/audio/micp.c:micp_init() D-Bus experimental not enabled
out 20 21:07:48 archlinux bluetoothd[423]: src/plugin.c:plugin_init() System does not support micp plugin
out 20 21:07:48 archlinux bluetoothd[423]: src/plugin.c:plugin_init() System does not support vcp plugin
out 20 21:07:48 archlinux bluetoothd[423]: src/plugin.c:plugin_init() System does not support mcp plugin
out 20 21:07:48 archlinux bluetoothd[423]: src/plugin.c:plugin_init() System does not support bass plugin
out 20 21:07:48 archlinux bluetoothd[423]: src/plugin.c:plugin_init() System does not support bap plugin
out 20 21:07:48 archlinux kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
out 20 21:07:48 archlinux kernel: Bluetooth: BNEP filters: protocol multicast
out 20 21:07:48 archlinux kernel: Bluetooth: BNEP socket layer initialized
out 20 21:07:48 archlinux systemd[1]: Started D-Bus System Message Bus.
out 20 21:07:48 archlinux dbus-daemon[424]: [system] Activating systemd to hand-off: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.3' (uid=0 pid=423 comm="/usr/lib/bluetooth/bluetoothd")
out 20 21:07:48 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:48 archlinux systemd[1]: Started Bluetooth service.
out 20 21:07:48 archlinux dbus-daemon[424]: [system] Successfully activated service 'org.freedesktop.systemd1'
out 20 21:07:48 archlinux bluetoothd[423]: Bluetooth management interface 1.22 initialized
out 20 21:07:48 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=bluetooth comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:48 archlinux systemd[1]: Reached target Bluetooth Support.
out 20 21:07:48 archlinux audit: BPF prog-id=43 op=LOAD
out 20 21:07:48 archlinux audit: BPF prog-id=44 op=LOAD
out 20 21:07:48 archlinux audit: BPF prog-id=45 op=LOAD
out 20 21:07:48 archlinux systemd[1]: Starting Hostname Service...
out 20 21:07:48 archlinux dbus-daemon[424]: [system] Successfully activated service 'org.freedesktop.hostname1'
out 20 21:07:48 archlinux systemd[1]: Finished Populate /home.
out 20 21:07:48 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=homefiller comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:48 archlinux systemd[1]: Started Hostname Service.
out 20 21:07:48 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:48 archlinux systemd[1]: Reached target Multi-User System.
out 20 21:07:48 archlinux systemd[1]: Reached target Graphical Interface.
out 20 21:07:48 archlinux systemd[1]: Startup finished in 5.012s (firmware) + 4.561s (loader) + 7.002s (kernel) + 3.956s (initrd) + 5.165s (userspace) = 25.698s.
out 20 21:07:49 archlinux kernel: Bluetooth: hci0: Waiting for firmware download to complete
out 20 21:07:49 archlinux kernel: Bluetooth: hci0: Firmware loaded in 1664692 usecs
out 20 21:07:49 archlinux kernel: Bluetooth: hci0: Waiting for device to boot
out 20 21:07:49 archlinux kernel: Bluetooth: hci0: Malformed MSFT vendor event: 0x02
out 20 21:07:49 archlinux kernel: Bluetooth: hci0: Device booted in 14857 usecs
out 20 21:07:49 archlinux kernel: Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-19-0-0.ddc
out 20 21:07:49 archlinux kernel: Bluetooth: hci0: Applying Intel DDC parameters completed
out 20 21:07:49 archlinux kernel: Bluetooth: hci0: Firmware revision 0.0 build 206 week 22 2023
out 20 21:07:49 archlinux kernel: Bluetooth: hci0: HCI LE Coded PHY feature bit is set, but its usage is not supported.
out 20 21:07:49 archlinux kernel: Bluetooth: MGMT ver 1.22
out 20 21:07:49 archlinux kernel: NET: Registered PF_ALG protocol family
out 20 21:07:49 archlinux kernel: ucsi_acpi USBC000:00: UCSI_GET_PDOS failed (-95)
out 20 21:07:50 archlinux kernel: ucsi_acpi USBC000:00: UCSI_GET_PDOS failed (-95)
out 20 21:07:52 archlinux systemd[1]: systemd-rfkill.service: Deactivated successfully.
out 20 21:07:52 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:07:52 archlinux kernel: kauditd_printk_skb: 58 callbacks suppressed
out 20 21:07:52 archlinux kernel: audit: type=1131 audit(1697846872.436:70): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:08:03 archlinux dbus-daemon[424]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.6' (uid=0 pid=433 comm="/bin/login -p --  ")
out 20 21:08:03 archlinux dbus-daemon[424]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
out 20 21:08:03 archlinux login[433]: pam_unix(login:auth): user [x] has blank password; authenticated without it
out 20 21:08:03 archlinux audit[433]: USER_AUTH pid=433 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_securetty,pam_shells,pam_faillock,pam_permit,pam_faillock acct="x" exe="/usr/bin/login" hostname=archlinux addr=? terminal=/dev/tty1 res=success'
out 20 21:08:03 archlinux kernel: audit: type=1100 audit(1697846883.523:71): pid=433 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_securetty,pam_shells,pam_faillock,pam_permit,pam_faillock acct="x" exe="/usr/bin/login" hostname=archlinux addr=? terminal=/dev/tty1 res=success'
out 20 21:08:03 archlinux audit[433]: USER_ACCT pid=433 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="x" exe="/usr/bin/login" hostname=archlinux addr=? terminal=/dev/tty1 res=success'
out 20 21:08:03 archlinux kernel: audit: type=1101 audit(1697846883.526:72): pid=433 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="x" exe="/usr/bin/login" hostname=archlinux addr=? terminal=/dev/tty1 res=success'
out 20 21:08:03 archlinux audit[433]: CRED_ACQ pid=433 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_securetty,pam_shells,pam_faillock,pam_permit,pam_faillock acct="x" exe="/usr/bin/login" hostname=archlinux addr=? terminal=/dev/tty1 res=success'
out 20 21:08:03 archlinux audit[433]: SYSCALL arch=c000003e syscall=1 success=yes exit=4 a0=5 a1=7ffd779d6f40 a2=4 a3=0 items=0 ppid=1 pid=433 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=1000 fsgid=0 tty=tty1 ses=1 comm="login" exe="/usr/bin/login" key=(null)
out 20 21:08:03 archlinux audit: PROCTITLE proctitle=2F62696E2F6C6F67696E002D70002D2D
out 20 21:08:03 archlinux login[433]: pam_unix(login:session): session opened for user x(uid=1000) by x(uid=0)
out 20 21:08:03 archlinux kernel: audit: type=1103 audit(1697846883.530:73): pid=433 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_securetty,pam_shells,pam_faillock,pam_permit,pam_faillock acct="x" exe="/usr/bin/login" hostname=archlinux addr=? terminal=/dev/tty1 res=success'
out 20 21:08:03 archlinux kernel: audit: type=1006 audit(1697846883.530:74): pid=433 uid=0 old-auid=4294967295 auid=1000 tty=tty1 old-ses=4294967295 ses=1 res=1
out 20 21:08:03 archlinux kernel: audit: type=1300 audit(1697846883.530:74): arch=c000003e syscall=1 success=yes exit=4 a0=5 a1=7ffd779d6f40 a2=4 a3=0 items=0 ppid=1 pid=433 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=1000 fsgid=0 tty=tty1 ses=1 comm="login" exe="/usr/bin/login" key=(null)
out 20 21:08:03 archlinux kernel: audit: type=1327 audit(1697846883.530:74): proctitle=2F62696E2F6C6F67696E002D70002D2D
out 20 21:08:03 archlinux systemd-logind[427]: New session 1 of user x.
out 20 21:08:03 archlinux systemd[1]: Created slice User Slice of UID 1000.
out 20 21:08:03 archlinux systemd[1]: Starting User Runtime Directory /run/user/1000...
out 20 21:08:03 archlinux systemd[1]: Finished User Runtime Directory /run/user/1000.
out 20 21:08:03 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:08:03 archlinux kernel: audit: type=1130 audit(1697846883.646:75): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:08:03 archlinux systemd[1]: Starting User Manager for UID 1000...
out 20 21:08:03 archlinux dbus-daemon[424]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.9' (uid=0 pid=473 comm="(systemd)")
out 20 21:08:03 archlinux dbus-daemon[424]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
out 20 21:08:03 archlinux audit[473]: USER_ACCT pid=473 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="x" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:08:03 archlinux kernel: audit: type=1101 audit(1697846883.656:76): pid=473 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="x" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:08:03 archlinux kernel: audit: type=1103 audit(1697846883.660:77): pid=473 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=? acct="x" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
out 20 21:08:03 archlinux kernel: audit: type=1006 audit(1697846883.660:78): pid=473 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=2 res=1
out 20 21:08:03 archlinux audit[473]: CRED_ACQ pid=473 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=? acct="x" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
out 20 21:08:03 archlinux audit[473]: SYSCALL arch=c000003e syscall=1 success=yes exit=4 a0=9 a1=7ffd827f6460 a2=4 a3=0 items=0 ppid=1 pid=473 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=2 comm="(systemd)" exe="/usr/lib/systemd/systemd" key=(null)
out 20 21:08:03 archlinux audit: PROCTITLE proctitle="(systemd)"
out 20 21:08:03 archlinux (systemd)[473]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[x] ruser=[<unknown>] rhost=[<unknown>]
out 20 21:08:03 archlinux (systemd)[473]: pam_unix(systemd-user:session): session opened for user x(uid=1000) by x(uid=0)
out 20 21:08:03 archlinux audit[473]: USER_START pid=473 uid=0 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_loginuid,pam_loginuid,pam_keyinit,pam_systemd_home,pam_limits,pam_unix,pam_permit,pam_mail,pam_umask,pam_systemd,pam_env acct="x" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:08:03 archlinux systemd[473]: Queued start job for default target Main User Target.
out 20 21:08:03 archlinux systemd[473]: Created slice User Application Slice.
out 20 21:08:03 archlinux systemd[473]: Reached target Paths.
out 20 21:08:03 archlinux systemd[473]: Reached target Timers.
out 20 21:08:03 archlinux systemd[473]: Starting D-Bus User Message Bus Socket...
out 20 21:08:03 archlinux systemd[473]: Listening on GnuPG network certificate management daemon.
out 20 21:08:03 archlinux systemd[473]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
out 20 21:08:03 archlinux systemd[473]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
out 20 21:08:03 archlinux systemd[473]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
out 20 21:08:03 archlinux systemd[473]: Listening on GnuPG cryptographic agent and passphrase cache.
out 20 21:08:03 archlinux systemd[473]: Listening on p11-kit server.
out 20 21:08:03 archlinux systemd[473]: Listening on PipeWire Multimedia System Socket.
out 20 21:08:03 archlinux systemd[473]: Listening on Sound System.
out 20 21:08:03 archlinux systemd[473]: Listening on D-Bus User Message Bus Socket.
out 20 21:08:03 archlinux systemd[473]: Reached target Sockets.
out 20 21:08:03 archlinux systemd[473]: Reached target Basic System.
out 20 21:08:03 archlinux systemd[473]: Reached target Main User Target.
out 20 21:08:03 archlinux systemd[473]: Startup finished in 190ms.
out 20 21:08:03 archlinux systemd[1]: Started User Manager for UID 1000.
out 20 21:08:03 archlinux audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:08:03 archlinux systemd[1]: Started Session 1 of User x.
out 20 21:08:03 archlinux audit[433]: USER_START pid=433 uid=0 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_loginuid,pam_keyinit,pam_systemd_home,pam_limits,pam_unix,pam_permit,pam_mail,pam_umask,pam_systemd,pam_env acct="x" exe="/usr/bin/login" hostname=archlinux addr=? terminal=/dev/tty1 res=success'
out 20 21:08:03 archlinux audit[433]: CRED_REFR pid=433 uid=0 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_securetty,pam_shells,pam_faillock,pam_permit,pam_faillock acct="x" exe="/usr/bin/login" hostname=archlinux addr=? terminal=/dev/tty1 res=success'
out 20 21:08:03 archlinux login[433]: LOGIN ON tty1 BY x
out 20 21:08:18 archlinux audit[596]: USER_AUTH pid=596 uid=1000 auid=1000 ses=1 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=archlinux addr=? terminal=/dev/tty1 res=success'
out 20 21:08:18 archlinux audit[596]: USER_ACCT pid=596 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="root" exe="/usr/bin/sudo" hostname=archlinux addr=? terminal=/dev/tty1 res=success'
out 20 21:08:18 archlinux kernel: kauditd_printk_skb: 6 callbacks suppressed
out 20 21:08:18 archlinux kernel: audit: type=1100 audit(1697846898.390:83): pid=596 uid=1000 auid=1000 ses=1 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=archlinux addr=? terminal=/dev/tty1 res=success'
out 20 21:08:18 archlinux kernel: audit: type=1101 audit(1697846898.390:84): pid=596 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="root" exe="/usr/bin/sudo" hostname=archlinux addr=? terminal=/dev/tty1 res=success'
out 20 21:08:18 archlinux sudo[596]:        x : TTY=tty1 ; PWD=/home/x ; USER=root ; COMMAND=/usr/bin/wifi on
out 20 21:08:18 archlinux audit[596]: CRED_REFR pid=596 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=archlinux addr=? terminal=/dev/tty1 res=success'
out 20 21:08:18 archlinux sudo[596]: pam_unix(sudo:session): session opened for user root(uid=0) by x(uid=1000)
out 20 21:08:18 archlinux audit[596]: USER_START pid=596 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=archlinux addr=? terminal=/dev/tty1 res=success'
out 20 21:08:18 archlinux kernel: audit: type=1110 audit(1697846898.393:85): pid=596 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=archlinux addr=? terminal=/dev/tty1 res=success'
out 20 21:08:18 archlinux kernel: audit: type=1105 audit(1697846898.393:86): pid=596 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=archlinux addr=? terminal=/dev/tty1 res=success'
out 20 21:08:18 archlinux kernel: iwlwifi 0000:00:14.3: Registered PHC clock: iwlwifi-PTP, with index: 0
out 20 21:08:18 archlinux dhcpcd[604]: dhcpcd-10.0.2 starting
out 20 21:08:18 archlinux dhcpcd[607]: DUID 00:01:00:01:2b:f5:ac:b4:80:b6:55:b6:fb:0c
out 20 21:08:18 archlinux kernel: 8021q: 802.1Q VLAN Support v1.8
out 20 21:08:18 archlinux dhcpcd[607]: wlo1: waiting for carrier
out 20 21:08:18 archlinux systemd[1]: systemd-hostnamed.service: Deactivated successfully.
out 20 21:08:19 archlinux audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:08:19 archlinux kernel: audit: type=1131 audit(1697846899.030:87): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
out 20 21:08:19 archlinux audit: BPF prog-id=45 op=UNLOAD
out 20 21:08:19 archlinux audit: BPF prog-id=44 op=UNLOAD
out 20 21:08:19 archlinux audit: BPF prog-id=43 op=UNLOAD
out 20 21:08:19 archlinux kernel: audit: type=1334 audit(1697846899.110:88): prog-id=45 op=UNLOAD
out 20 21:08:19 archlinux kernel: audit: type=1334 audit(1697846899.110:89): prog-id=44 op=UNLOAD
out 20 21:08:19 archlinux kernel: audit: type=1334 audit(1697846899.110:90): prog-id=43 op=UNLOAD
out 20 21:08:22 archlinux kernel: wlo1: authenticate with c0:3d:d9:62:9d:8f
out 20 21:08:22 archlinux kernel: wlo1: send auth to c0:3d:d9:62:9d:8f (try 1/3)
out 20 21:08:22 archlinux kernel: wlo1: authenticated
out 20 21:08:22 archlinux kernel: wlo1: associate with c0:3d:d9:62:9d:8f (try 1/3)
out 20 21:08:22 archlinux kernel: wlo1: RX AssocResp from c0:3d:d9:62:9d:8f (capab=0x511 status=0 aid=110)
out 20 21:08:22 archlinux kernel: wlo1: associated
out 20 21:08:22 archlinux kernel: wlo1: Limiting TX power to 23 (23 - 0) dBm as advertised by c0:3d:d9:62:9d:8f
out 20 21:08:22 archlinux dhcpcd[607]: wlo1: carrier acquired
out 20 21:08:22 archlinux dhcpcd[607]: wlo1: connected to Access Point: XNET-5G
out 20 21:08:22 archlinux dhcpcd[607]: wlo1: IAID 55:b6:fb:0c
out 20 21:08:22 archlinux dhcpcd[607]: wlo1: adding address fe80::9a34:1b28:28ca:181a
out 20 21:08:22 archlinux dhcpcd[607]: wlo1: soliciting a DHCP lease
out 20 21:08:22 archlinux dhcpcd[607]: wlo1: offered 192.168.0.45 from 192.168.0.1
out 20 21:08:22 archlinux dhcpcd[607]: wlo1: probing address 192.168.0.45/24
out 20 21:08:23 archlinux dhcpcd[607]: wlo1: soliciting an IPv6 router
out 20 21:08:24 archlinux dhcpcd[607]: wlo1: Router Advertisement from fe80::c23d:d9ff:fe62:9d88
out 20 21:08:24 archlinux dhcpcd[607]: wlo1: adding address xxx/64
out 20 21:08:24 archlinux dhcpcd[607]: wlo1: adding route to xxx/64
out 20 21:08:24 archlinux dhcpcd[607]: wlo1: requesting DHCPv6 information
out 20 21:08:24 archlinux dhcpcd[607]: wlo1: adding default route via fe80::c23d:d9ff:fe62:9d88
out 20 21:08:25 archlinux dhcpcd[607]: wlo1: REPLY6 received from fe80::c23d:d9ff:fe62:9d88
out 20 21:08:25 archlinux dhcpcd[607]: wlo1: refresh in 86400 seconds
out 20 21:08:27 archlinux dhcpcd[607]: wlo1: leased 192.168.0.45 for 14400 seconds
out 20 21:08:27 archlinux dhcpcd[607]: wlo1: adding route to 192.168.0.0/24
out 20 21:08:27 archlinux dhcpcd[607]: wlo1: adding default route via 192.168.0.1
out 20 21:08:27 archlinux sudo[596]: pam_unix(sudo:session): session closed for user root
out 20 21:08:27 archlinux audit[596]: USER_END pid=596 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=archlinux addr=? terminal=/dev/tty1 res=success'
out 20 21:08:27 archlinux audit[596]: CRED_DISP pid=596 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=archlinux addr=? terminal=/dev/tty1 res=success'
out 20 21:08:27 archlinux kernel: audit: type=1106 audit(1697846907.456:91): pid=596 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=archlinux addr=? terminal=/dev/tty1 res=success'
out 20 21:08:27 archlinux kernel: audit: type=1104 audit(1697846907.456:92): pid=596 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=archlinux addr=? terminal=/dev/tty1 res=success'

Finally, do you guys think I can finally update my system again and then update also my backup when I correct the systemd-vconsole-setup.service issue in that pendrive?
I think the issues here were a bad install of systemd and a configuration error with my vconsole service. Was there anything else I have forgotten?
Would it be safe now?

Thank you very, very much,
xenobro.

Last edited by xenobro (2023-11-27 05:21:40)

Offline

#78 2023-10-21 02:59:02

solskog
Member
Registered: 2020-09-05
Posts: 418

Re: [SOLVED] "Failed to start Virtual Console Setup" after last update

xenobro wrote:

I'm curious as to what exactly is calling systemd-vconsole-setup.service now, since it is very clearly running and fixing my keymap and console font and doing so very early on in the boot process.

man systemd-vconsole-setup wrote:

When the system is booting up, systemd-vconsole-setup.service is called by systemd-udevd(8) during
VT console subsystem initialization. Also, systemd-localed.service(8) invokes
it as needed when language or console changes are made. Internally, this
program calls loadkeys(1) and setfont(8).

# systemctl list-dependencies --before systemd-vconsole-setup.service

If anyone had found this LINE earlier, it would be much quicker to solve this issue. You are welcome!

out 15 23:54:18 archlinux systemd[1]: /etc/systemd/system/systemd-vconsole-setup.service:21: Unknown key name 'WantedBy' in section 'Service', ignoring.
xenobro wrote:

The only thing I still couldn't manage to make it work was "journalctl -b -1": it still says "no persistent journal was found", even when I have configured it like that.

out 20 21:07:45 archlinux systemd[1]: systemd-journald.service: Deactivated successfully.

Why deactivated?

# cat /lib/systemd/system/systemd-journald.service
# systemctl list-dependencies --before systemd-journald.service
# sudo journalctl --sync
# sudo systemctl status systemd-journald

Last edited by solskog (2023-10-21 04:21:27)

Offline

#79 2023-10-21 05:20:00

xenobro
Member
Registered: 2019-05-25
Posts: 100

Re: [SOLVED] "Failed to start Virtual Console Setup" after last update

solskog wrote:

If anyone had found this LINE earlier, it would be much quicker to solve this issue.

Actually I even had seen this line before, but since it was "just" a warning, I ignored and thought it wasn't a big deal... It really could have saved us a lot of time!

Why deactivated?

Good question, I have no idea. Let's see:

# cat /usr/lib/systemd/system/systemd-journald.service

#  SPDX-License-Identifier: LGPL-2.1-or-later
#
#  This file is part of systemd.
#
#  systemd is free software; you can redistribute it and/or modify it
#  under the terms of the GNU Lesser General Public License as published by
#  the Free Software Foundation; either version 2.1 of the License, or
#  (at your option) any later version.

[Unit]
Description=Journal Service
Documentation=man:systemd-journald.service(8) man:journald.conf(5)
DefaultDependencies=no
Requires=systemd-journald.socket
After=systemd-journald.socket systemd-journald-dev-log.socket systemd-journald-audit.socket syslog.socket
Before=sysinit.target

# Mount and swap units need the journal socket units. If they were removed by
# an isolate request the mount and swap units would be removed too, hence let's
# exclude systemd-journald and its sockets from isolate requests.
IgnoreOnIsolate=yes

[Service]
DeviceAllow=char-* rw
ExecStart=/usr/lib/systemd/systemd-journald
FileDescriptorStoreMax=4224
IPAddressDeny=any
LockPersonality=yes
MemoryDenyWriteExecute=yes
NoNewPrivileges=yes
OOMScoreAdjust=-250
ProtectClock=yes
Restart=always
RestartSec=0
RestrictAddressFamilies=AF_UNIX AF_NETLINK
RestrictNamespaces=yes
RestrictRealtime=yes
RestrictSUIDSGID=yes
RuntimeDirectory=systemd/journal
RuntimeDirectoryPreserve=yes
# Audit socket is not listed here because this unit can be turned off. However
# the link between the socket and the service units is still created thanks to
# the 'Service=' setting specified in the socket unit.
Sockets=systemd-journald.socket systemd-journald-dev-log.socket
StandardOutput=null
SystemCallArchitectures=native
SystemCallErrorNumber=EPERM
SystemCallFilter=@system-service
Type=notify
PassEnvironment=TERM
WatchdogSec=3min

# In case you're wondering why CAP_SYS_PTRACE is needed, access to
# /proc/<pid>/exe requires this capability. Thus if this capability is missing
# the _EXE=/OBJECT_EXE= fields will be missing from the journal entries.
CapabilityBoundingSet=CAP_SYS_ADMIN CAP_DAC_OVERRIDE CAP_SYS_PTRACE CAP_SYSLOG CAP_AUDIT_CONTROL CAP_AUDIT_READ CAP_CHOWN CAP_DAC_READ_SEARCH CAP_FOWNER CAP_SETUID CAP_SETGID CAP_MAC_OVERRIDE

# If there are many split up journal files we need a lot of fds to access them
# all in parallel.
LimitNOFILE=524288
# systemctl list-dependencies --before systemd-journald.service

systemd-journald.service
● ├─systemd-tmpfiles-setup.service
● └─sysinit.target
●   ├─alsa-restore.service
○   ├─alsa-state.service
○   ├─archlinux-keyring-wkd-sync.service
●   ├─archlinux-keyring-wkd-sync.timer
●   ├─bluetooth.service
●   ├─dbus.service
●   ├─dbus.socket
●   ├─getty@tty1.service
●   ├─homefiller.service
●   ├─lm_sensors.service
○   ├─logrotate.service
●   ├─logrotate.timer
○   ├─man-db.service
●   ├─man-db.timer
●   ├─polkit.service
○   ├─rescue.service
●   ├─rtkit-daemon.service
○   ├─shadow.service
●   ├─shadow.timer
●   ├─sshd.service
○   ├─sshdgenkeys.service
○   ├─systemd-ask-password-wall.service
●   ├─systemd-logind.service
○   ├─systemd-pcrphase-sysinit.service
○   ├─systemd-pcrphase.service
●   ├─systemd-tmpfiles-clean.timer
●   ├─systemd-user-sessions.service
●   ├─upower.service
●   ├─user-runtime-dir@1000.service
●   ├─user@1000.service
●   ├─basic.target
●   │ ├─alsa-restore.service
○   │ ├─alsa-state.service
○   │ ├─archlinux-keyring-wkd-sync.service
●   │ ├─bluetooth.service
●   │ ├─dbus.service
●   │ ├─getty@tty1.service
●   │ ├─homefiller.service
●   │ ├─lm_sensors.service
○   │ ├─logrotate.service
○   │ ├─man-db.service
●   │ ├─polkit.service
●   │ ├─rtkit-daemon.service
○   │ ├─shadow.service
●   │ ├─sshd.service
○   │ ├─sshdgenkeys.service
○   │ ├─systemd-ask-password-wall.service
●   │ ├─systemd-logind.service
○   │ ├─systemd-pcrphase.service
●   │ ├─systemd-user-sessions.service
●   │ ├─upower.service
●   │ ├─user-runtime-dir@1000.service
●   │ ├─user@1000.service
○   │ ├─initrd.target
○   │ │ ├─initrd-cleanup.service
○   │ │ └─shutdown.target
●   │ ├─multi-user.target
●   │ │ ├─graphical.target
○   │ │ │ └─shutdown.target
○   │ │ └─shutdown.target
○   │ └─shutdown.target
○   ├─rescue.target
●   │ ├─graphical.target
○   │ │ └─shutdown.target
○   │ ├─initrd.target
○   │ │ ├─initrd-cleanup.service
○   │ │ └─shutdown.target
●   │ ├─multi-user.target
●   │ │ ├─graphical.target
○   │ │ │ └─shutdown.target
○   │ │ └─shutdown.target
○   │ └─shutdown.target
○   └─shutdown.target
# sudo journalctl --sync
# sudo systemctl status systemd-journald
● systemd-journald.service - Journal Service
     Loaded: loaded (/usr/lib/systemd/system/systemd-journald.service; static)
     Active: active (running) since Fri 2023-10-20 21:07:45 -03; 5h 9min ago
TriggeredBy: ● systemd-journald.socket
             ● systemd-journald-dev-log.socket
             ● systemd-journald-audit.socket
       Docs: man:systemd-journald.service(8)
             man:journald.conf(5)
   Main PID: 248 (systemd-journal)
     Status: "Processing requests..."
      Tasks: 1 (limit: 9166)
   FD Store: 13 (limit: 4224)
     Memory: 9.8M
        CPU: 127ms
     CGroup: /system.slice/systemd-journald.service
             └─248 /usr/lib/systemd/systemd-journald

out 20 21:07:45 archlinux systemd-journald[248]: Collecting audit messages is enabled.
out 20 21:07:45 archlinux systemd-journald[248]: Journal started
out 20 21:07:45 archlinux systemd-journald[248]: Runtime Journal (/run/log/journal/b8b5a78bc3dd446893d7ca9110a51b1b) is 8.0M, max 153.3M, 145.3M free.
out 20 21:07:45 archlinux systemd[1]: systemd-journald.service: Deactivated successfully.
out 21 02:16:49 archlinux systemd-journald[248]: Received client request to sync journal.
lines 1-22/22 (END)

So, what should I do now?

Last edited by xenobro (2023-10-21 08:12:45)

Offline

#80 2023-10-21 11:07:56

xenobro
Member
Registered: 2019-05-25
Posts: 100

Re: [SOLVED] "Failed to start Virtual Console Setup" after last update

Ok, nevermind, I've just found out what was stopping the journal from being recorded persistently: a few years ago I had masked systemd-journal-flush.service to do precisely this.
I can't believe I forgot about this! Anyway, once this service is unmasked, all it took was journalctl --rotate, --flush and then sync and voilà, journalctl -b -1 works.

I'm now trying to figure out what enabled the journald auditd socket since I didn't:

[x@archlinux ~]$ ls -l /etc/systemd/system/*/systemd-journald-audit.socket
lrwxrwxrwx 1 root root 53 abr 17  2023 /etc/systemd/system/sockets.target.wants/systemd-journald-audit.socket -> /usr/lib/systemd/system/systemd-journald-audit.socket
lrwxrwxrwx 1 root root 53 abr 17  2023 /etc/systemd/system/systemd-journald.service.wants/systemd-journald-audit.socket -> /usr/lib/systemd/system/systemd-journald-audit.socket

Can I disable them or should I even mask them?

And as I asked in the last posts, is it safe to update my system again?
And as for my backup, is it safe to do it as long as I fix the systemd-vconsole-setup.service situation or is there anything else I should do?

Once again thank you very much,
xenobro.

Last edited by xenobro (2023-10-21 11:09:05)

Offline

#81 2023-10-21 12:56:42

solskog
Member
Registered: 2020-09-05
Posts: 418

Re: [SOLVED] "Failed to start Virtual Console Setup" after last update

https://wiki.archlinux.org/title/Audit_framework wrote:

In order to disable audit completely and suppress audit messages from appearing in journal you may set audit=0 as kernel parameter and/or mask systemd-journald-audit.socket.

Offline

#82 2023-10-23 08:52:52

xenobro
Member
Registered: 2019-05-25
Posts: 100

Re: [SOLVED] "Failed to start Virtual Console Setup" after last update

solskog, after reading the wiki I managed to turn off the Audit framework and eventually, since pretty much everything works again now - and I even managed to delete my systemd-vconsole-setup.service without messing up that system - I was about to mark this thread as "solved". However, I haven't been able to update the system again yet because of EXTREMELY low download speeds with pacman -Syu or even -Scc, and after making some measurements both in this and my backup drive, there seems to be a problem with my ISP, and the tech is coming Thursday to see what is the problem.
But the thing is, I don't know if the issue is just with my ISP or if my system got damaged somehow when the last update broke the things that caused this thread, so I'm just waiting to confirm if I can update the system again to mark this as "solved".

Thank you once again and I'll finish the thread as soon as possible,
xenobro.

Last edited by xenobro (2023-10-23 08:53:28)

Offline

#83 2023-10-23 09:07:05

seth
Member
Registered: 2012-09-03
Posts: 51,532

Re: [SOLVED] "Failed to start Virtual Console Setup" after last update

Do you have a second system in the LAN that you could run iperf against?
(or just wget a file from one system to the other)

Offline

#84 2023-10-23 09:28:22

xenobro
Member
Registered: 2019-05-25
Posts: 100

Re: [SOLVED] "Failed to start Virtual Console Setup" after last update

seth, I only have my Android phone, with speeds that rarely go over 50 Mbits/sec, and an Android TV box that never goes over 100 Mbits/sec, and the issue is specifically that my systems (this and the backup) usually get 180Mbits/sec on wifi and 200 Mbits/sec on ethernet, but are now getting 50 Mbits/sec wireless and 80 Mbits/sec on cable. And of course, pacman usually gets +20MB/sec downloads and is now getting 20~200KB/sec (with any mirror I use).

Last edited by xenobro (2023-10-23 09:29:05)

Offline

#85 2023-10-23 19:57:08

solskog
Member
Registered: 2020-09-05
Posts: 418

Re: [SOLVED] "Failed to start Virtual Console Setup" after last update

Boot into arch.iso, install speedtest-cli and test.

Refresh mirrors
# pacman -Sy
# pacman -S speedtest-cli
# speedtest

Last edited by solskog (2023-10-23 21:17:18)

Offline

#86 2023-10-23 22:34:44

xenobro
Member
Registered: 2019-05-25
Posts: 100

Re: [SOLVED] "Failed to start Virtual Console Setup" after last update

solskog, I did that just now: the result was ~7Mbps download and ~97Mbps upload, where the usual in the same circunstances would be ~197Mbps dl and ~97Mbps ul. And at times it got as low as 3.87Mbps dl and 25Mbps ul.
It's worth noting that, for a while now, I was having to use fast instead of speedtest, because the latter not only wouldn't find servers anymore in my city, but couldn't even find servers in my state, with the "--list" option showing me only things in neighboring but MUCH farther away states. Now, however, for some reason, it started finding servers here again - including in my systems, so much so that I've just tested it having booting into my normal pendrive and got the same results.

I should also say that "pacman -Sy" and "pacman -S speedtest-cli" had download speeds between 20 and 200KB/s even after correcting mirrorlist, where the normal would have been ~20MB/s.

My ISP called me earlier to inform me that there was some sort of maintenance in my area that could have caused me technical issues and if I still wanted to confirm the request for a tech visit, but since in my case the issue remains, I've confirmed it and s/he will come Thursday.
Unless of course the issue "solves itself" until that day.

Last edited by xenobro (2023-10-23 22:36:23)

Offline

#87 2023-10-24 20:31:25

solskog
Member
Registered: 2020-09-05
Posts: 418

Re: [SOLVED] "Failed to start Virtual Console Setup" after last update

Remove this line from all your journals in this forum thread as soon as you can.

adding address 2804:

Restart your ISP router until you get a new pair of public ipv4/ipv6 addresses.

Offline

#88 2023-11-27 05:42:41

xenobro
Member
Registered: 2019-05-25
Posts: 100

Re: [SOLVED] "Failed to start Virtual Console Setup" after last update

Ok, sorry for taking more than a month to reply, but it took a LONG time to be sure that everything was ok with my network.

solskog, thank you very much, I've just edited my previous posts and deleted any reference to that address.

I've reset the router a number of times this month, and surely the public addresses changed.
Now I get 190~200Mbps dowload and 100Mbps upload on fast and speedtest-cli, and +20MB/sec downloads in pacman and curl.
But the problem is that in wget, firefox or any other browser, I consistently get either 500KB/sec or up to 11.5MB/sec downloads.
To test it, I'm using the largest file (1.4GB) on the fastest arch mirror I could get for my region:

http://archlinux.c3sl.ufpr.br/extra/os/x86_64/0ad-data-a26-1-any.pkg.tar.zst

curl and pacman ALWAYS get +20MB/sec, while wget and firefox ALWAYS get the speeds mentioned.
An interesting thing is that after testing it sometimes, wget/firefox dl speeds seem to alternate between up to 11.5MB/sec and up to 500KB/sec.

I should mention that I'm using an extremy light wm (evilwm) and that these things happened even on console, so it isn't a question of bloat slowing down the dl speeds.

Any idea as to what could be causing this apparent speed cap?
Thank you very much,
xenobro.

Last edited by xenobro (2023-11-27 06:46:21)

Offline

#89 2023-11-27 09:26:50

seth
Member
Registered: 2012-09-03
Posts: 51,532

Re: [SOLVED] "Failed to start Virtual Console Setup" after last update

To test it, I'm using the largest file (1.4GB) on the fastest arch mirror I could get for my region:

Please don't abuse the mirrors, abuse linode - you'll probaby also get more consistent results there.
https://bbs.archlinux.org/viewtopic.php?id=282044

Also, since

Post #77 wrote:

solskog, your suggestion not only solved the ssh issue but also fixed pretty much everyhing that was messed up since the last update:
Deleting my systemd-vconsole-setup.service and removing its link to /dev/null from /etc/systemd/system/sysinit.target allowed me to boot straight into multi-user.target,

this thread, after much a detour, is solved and we're currently WAY off-topic.
If you want to tackle the network problems, please open a new thread and ideally make sure to test the performance inside the LAN to take remote host quotas and your ISP out of the equation.
Also conduct a ping test to see whether you're encountering many lost packages.

Offline

#90 2023-11-28 01:59:18

xenobro
Member
Registered: 2019-05-25
Posts: 100

Re: [SOLVED] "Failed to start Virtual Console Setup" after last update

Hi, seth, and thank you for your reply.

I've chosen to test using that particular server because it had the best speeds, but I get what you're saying, and I'm not constantly doing it anymore. And unfortunately, linode's are really not that consistent or great to me, but I'll try to use it instead then.

You're right about this thread, I'll mark it as solved and open another one under Networking to deal with the new issue.
Two questions though: how can I test the performance inside the LAN? And that script you posted, what should I do with it?

Thank you very much for everything,
xenobro

Offline

#91 2023-11-28 08:39:08

seth
Member
Registered: 2012-09-03
Posts: 51,532

Re: [SOLVED] "Failed to start Virtual Console Setup" after last update

https://wiki.archlinux.org/title/Benchmarking#iperf - or if you've a local http/ftp server or maybe even just nfs.
You'll need two local hosts, though.

You can save that script and run the conveniently provided benchmark - and the other functionss if you want. Or not.

Offline

Board footer

Powered by FluxBB