You are not logged in.

#1 2022-06-09 00:15:20

gryffin
Member
Registered: 2021-11-03
Posts: 13

NetworkManager stuck in configuration loop

I'm trying to connect to a wifi network on a fresh install of Arch Linux with the lwfinger 8852be drivers. NetworkManager is discovering networks, but not connecting to them. Looking at the output of journalctl -u NetworkManager.service, there are no errors, but it's caught in a loop. I'm not sure how to fix this. Values in square brackets are redacted for privacy.

device (wlan0): Activation: starting connection '[SSID]' ([UUID])
audit: op="connection-activate" uuid="[UUID]" name="[SSID]" pid=858 uid=1000 resul
device (wlan0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
manager: NetworkManager state is now CONNECTING
device (wlan0): set-hw-addr: reset MAC address to 50:C2:E8:C3:1F:E9 (preserve)
device (wlan0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
device (wlan0): Activation: (wifi) access point '[SSID]' has security, but secrets are required.
device (wlan0): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
sup-iface[12f727d00e600966,0,wlan0]: wps: type pbc start...
device (wlan0): state change: need-auth -> prepare (reason 'none', sys-iface-state: 'managed')
device (wlan0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
device (wlan0): Activation: (wifi) connection '[SSID]' has security, and secrets exist.  No new secrets needed.
Config: added 'ssid' value '[SSID]'
Config: added 'scan_ssid' value '1'
Config: added 'bgscan' value 'simple:30:-70:86400'
Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 FT-PSK'
Config: added 'auth_alg' value 'OPEN'
Config: added 'psk' value '<hidden>'
device (wlan0): supplicant interface state: inactive -> disconnected
device (p2p-dev-wlan0): supplicant management interface state: inactive -> disconnected
device (wlan0): supplicant interface state: disconnected -> associating
device (p2p-dev-wlan0): supplicant management interface state: disconnected -> associating
device (wlan0): supplicant interface state: associating -> 4way_handshake
device (p2p-dev-wlan0): supplicant management interface state: associating -> 4way_handshake
device (wlan0): supplicant interface state: 4way_handshake -> disconnected
device (wlan0): Activation: (wifi) disconnected during association, asking for new key
device (wlan0): state change: config -> need-auth (reason 'supplicant-disconnect', sys-iface-state: 'managed')
device (p2p-dev-wlan0): supplicant management interface state: 4way_handshake -> disconnected
device (wlan0): supplicant interface state: disconnected -> inactive
device (p2p-dev-wlan0): supplicant management interface state: disconnected -> inactive
device (wlan0): state change: need-auth -> prepare (reason 'none', sys-iface-state: 'managed')
device (wlan0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
device (wlan0): Activation: (wifi) connection '[SSID]' has security, and secrets exist.  No new secrets needed.

Everything after the line

 
device (wlan0): Activation: (wifi) connection '[SSID]' has security, and secrets exist.  No new secrets needed.

repeats indefinitely, prompting me with a password each time but otherwise doing nothing as far as I can see. Specifically, here is portion of the log that's repeating indefinitely:

device (wlan0): Activation: (wifi) connection '[SSID]' has security, and secrets exist.  No new secrets needed.
Config: added 'ssid' value '[SSID]'
Config: added 'scan_ssid' value '1'
Config: added 'bgscan' value 'simple:30:-70:86400'
Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 FT-PSK'
Config: added 'auth_alg' value 'OPEN'
Config: added 'psk' value '<hidden>'
device (wlan0): supplicant interface state: inactive -> disconnected
device (p2p-dev-wlan0): supplicant management interface state: inactive -> disconnected
device (wlan0): supplicant interface state: disconnected -> associating
device (p2p-dev-wlan0): supplicant management interface state: disconnected -> associating
device (wlan0): supplicant interface state: associating -> 4way_handshake
device (p2p-dev-wlan0): supplicant management interface state: associating -> 4way_handshake
device (wlan0): supplicant interface state: 4way_handshake -> disconnected
device (wlan0): Activation: (wifi) disconnected during association, asking for new key
device (wlan0): state change: config -> need-auth (reason 'supplicant-disconnect', sys-iface-state: 'managed')
device (p2p-dev-wlan0): supplicant management interface state: 4way_handshake -> disconnected
device (wlan0): supplicant interface state: disconnected -> inactive
device (p2p-dev-wlan0): supplicant management interface state: disconnected -> inactive
device (wlan0): state change: need-auth -> prepare (reason 'none', sys-iface-state: 'managed')
device (wlan0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')

In an attempt to troubleshoot, I did edit my /etc/hosts file to read

127.0.0.1       localhost
::1             localhost ip6-localhost ip6-loopback
ff02::1         ip6-allnodes
ff02::2         ip6-allrouters

as suggested in hosts(5), but that didn't seem to do anything.

Offline

#2 2022-06-09 08:02:53

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,415

Re: NetworkManager stuck in configuration loop

You are failing the handshake on association, which wifi adapter is this and do you have conflicting services

find /etc/systemd -type l -exec test -f {} \; -print | awk -F'/' '{ printf ("%-40s | %s\n", $(NF-0), $(NF-1)) }' | sort -f

should only list NetworkManager in terms of network daemons.

If not conflicting services try to disable network address randomization and/or check whether it's just an issue with wpa_supplicant that e.g. iwd would work better with this: https://wiki.archlinux.org/title/Networ … Fi_backend

Online

#3 2022-06-10 04:15:58

gryffin
Member
Registered: 2021-11-03
Posts: 13

Re: NetworkManager stuck in configuration loop

I don't believe there are any conflicting. As suggested on the Arch Wiki, I checked using

systemctl --type=service

although I could have missed something (I can't say just by looking at the name whether something is a network daemon or not)

$ find /etc/systemd -type l -exec test -f {} \; -print | awk -F'/' '{ printf ("%-40s | %s\n", $(NF-0), $(NF-1)) find /etc/systemd -type l -exec test -f {} \; -print | awk -F'/' '{ printf ("%-40s | %s\n", $(NF-0), $(NF-1)) }' | sort -f
dbus-org.freedesktop.nm-dispatcher.service | system
dbus-org.freedesktop.resolve1.service    | system
dbus-org.freedesktop.timesync1.service   | system
dirmngr.socket                           | sockets.target.wants
display-manager.service                  | system
fstrim.timer                             | timers.target.wants
gcr-ssh-agent.socket                     | sockets.target.wants
getty@tty1.service                       | getty.target.wants
gpg-agent-browser.socket                 | sockets.target.wants
gpg-agent-extra.socket                   | sockets.target.wants
gpg-agent.socket                         | sockets.target.wants
gpg-agent-ssh.socket                     | sockets.target.wants
NetworkManager.service                   | multi-user.target.wants
NetworkManager-wait-online.service       | network-online.target.wants
p11-kit-server.socket                    | sockets.target.wants
pipewire-pulse.socket                    | sockets.target.wants
pipewire-session-manager.service         | user
pipewire.socket                          | sockets.target.wants
remote-fs.target                         | multi-user.target.wants
systemd-resolved.service                 | sysinit.target.wants
systemd-timesyncd.service                | sysinit.target.wants
wireplumber.service                      | pipewire.service.wants
xdg-user-dirs-update.service             | default.target.wants

I tried disabling network address randomization as you suggested

/etc/NetworkManager/conf.d/wifi_rand_mac.conf
[device]
wifi.scan-rand-mac-address=no

[device-mac-randomization]
wifi.scan-rand-mac-address=no
 
[connection-mac-randomization]
# Generate a random MAC for each WiFi and associate the two permanently.
wifi.cloned-mac-address=stable

I tried switching to iwd following the Arch Wiki, which gives a similar but not identical output,

device (wlan0): Activation: (wifi) connection 'IceMint_5G' has security, and secrets exist.  No new secrets needed.
Config: added 'ssid' value 'IceMint_5G'
Config: added 'scan_ssid' value '1'
Config: added 'bgscan' value 'simple:30:-70:86400'
Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 FT-PSK'
Config: added 'auth_alg' value 'OPEN'
Config: added 'psk' value '<hidden>'
device (wlan0): supplicant interface state: scanning -> associating
device (p2p-dev-wlan0): supplicant management interface state: scanning -> associating
device (wlan0): supplicant interface state: associating -> 4way_handshake
device (p2p-dev-wlan0): supplicant management interface state: associating -> 4way_handshake
device (wlan0): supplicant interface state: 4way_handshake -> disconnected
device (wlan0): Activation: (wifi) disconnected during association, asking for new key
device (wlan0): state change: config -> need-auth (reason 'supplicant-disconnect', sys-iface-state: 'managed')
device (p2p-dev-wlan0): supplicant management interface state: 4way_handshake -> disconnected
device (wlan0): supplicant interface state: disconnected -> inactive
device (p2p-dev-wlan0): supplicant management interface state: disconnected -> inactive
device (wlan0): state change: need-auth -> prepare (reason 'none', sys-iface-state: 'managed')
device (wlan0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')

Specifically, the difference is

$ diff networkmanager_errorlog networkmanager_errorlog_new 
8,11c8,9
< device (wlan0): supplicant interface state: inactive -> disconnected
< device (p2p-dev-wlan0): supplicant management interface state: inactive -> disconnected
< device (wlan0): supplicant interface state: disconnected -> associating
< device (p2p-dev-wlan0): supplicant management interface state: disconnected -> associating
---
> device (wlan0): supplicant interface state: scanning -> associating
> device (p2p-dev-wlan0): supplicant management interface state: scanning -> associating

Offline

#4 2022-06-10 05:45:05

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: NetworkManager stuck in configuration loop

nb.

gryffin wrote:

Arch Linux with the lwfinger 8852be drivers

that this thing isn't weeks old…

Please post a complete system journal covering the problem (sudo journalctl -b) - you can obfuscate SSIDs and MACs, but don't remove or juggle lines.
Not sure whether the kernel module issues any errors, but there's a very good chance it's the cause rather than your config/nm/wpa_supplicant

Offline

#5 2022-06-12 18:43:43

gryffin
Member
Registered: 2021-11-03
Posts: 13

Re: NetworkManager stuck in configuration loop

Exits with an error instead of being stuck in a loop now.

Jun 12 11:38:43 rosebriar systemd[1]: Starting Network Manager...
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2456] NetworkManager (version 1.38.0-1) is starting... (for the first time)
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2456] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 20-connectivity.conf) (etc: wifi_backend.conf, wifi_rand_mac.conf)
Jun 12 11:38:43 rosebriar systemd[1]: Started Network Manager.
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2468] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2495] manager[0x55cc617dd000]: monitoring kernel firmware directory '/lib/firmware'.
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2773] hostname: hostname: using hostnamed
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2773] hostname: static hostname changed from (none) to "rosebriar"
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2775] dns-mgr[0x55cc617b72a0]: init: dns=default,systemd-resolved rc-manager=symlink
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2781] rfkill1: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:02.2/0000:01:00.0/ieee80211/phy0/rfkill1) (driver rtl8852be)
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2783] manager[0x55cc617dd000]: rfkill: Wi-Fi hardware radio set enabled
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2783] manager[0x55cc617dd000]: rfkill: WWAN hardware radio set enabled
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2796] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.38.0-1/libnm-device-plugin-adsl.so)
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2834] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.38.0-1/libnm-device-plugin-bluetooth.so)
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2842] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.38.0-1/libnm-device-plugin-ovs.so)
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2961] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.38.0-1/libnm-device-plugin-team.so)
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2976] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.38.0-1/libnm-device-plugin-wifi.so)
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2980] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.38.0-1/libnm-device-plugin-wwan.so)
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2982] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2983] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2983] manager: Networking is enabled by state file
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2985] settings: Loaded settings plugin: keyfile (internal)
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2996] dhcp-init: Using DHCP client 'internal'
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2996] device (lo): carrier: link connected
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2997] manager: (lo): new Generic device (/org/freedesktop/NetworkManager/Devices/1)
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.3003] manager: (wlan0): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/2)
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.3005] device (wlan0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.4449] ovsdb: disconnected from ovsdb
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.4450] manager: startup complete
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.8122] device (wlan0): new IWD device state is disconnected
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.8123] device (wlan0): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-state: 'managed')
Jun 12 11:39:02 rosebriar NetworkManager[523]: <info>  [1655059142.6633] agent-manager: agent[5aa44c71a55638ff,:1.34/org.kde.plasma.networkmanagement/1000]: agent registered
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3142] manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/3)
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3704] device (usb0): interface index 3 renamed iface from 'usb0' to 'enp3s0f4u2'
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3742] device (enp3s0f4u2): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3747] device (enp3s0f4u2): carrier: link connected
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3756] settings: (enp3s0f4u2): created default wired connection 'Wired connection 1'
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3761] device (enp3s0f4u2): state change: unavailable -> disconnected (reason 'none', sys-iface-state: 'managed')
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3774] policy: auto-activating connection 'Wired connection 1' (5677942e-e604-3598-903e-fa4a80721622)
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3777] device (enp3s0f4u2): Activation: starting connection 'Wired connection 1' (5677942e-e604-3598-903e-fa4a80721622)
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3779] device (enp3s0f4u2): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3780] manager: NetworkManager state is now CONNECTING
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3781] device (enp3s0f4u2): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3784] device (enp3s0f4u2): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3786] dhcp4 (enp3s0f4u2): activation: beginning transaction (timeout in 45 seconds)
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3904] dhcp4 (enp3s0f4u2): state changed new lease, address=192.168.255.252
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3912] device (enp3s0f4u2): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3960] device (enp3s0f4u2): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3960] device (enp3s0f4u2): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3962] manager: NetworkManager state is now CONNECTED_LOCAL
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3963] manager: NetworkManager state is now CONNECTED_SITE
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3964] policy: set 'Wired connection 1' (enp3s0f4u2) as default for IPv4 routing and DNS
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3982] device (enp3s0f4u2): Activation: successful, device activated.
Jun 12 11:39:30 rosebriar NetworkManager[523]: <info>  [1655059170.8026] manager: NetworkManager state is now CONNECTED_GLOBAL
Jun 12 11:40:25 rosebriar NetworkManager[523]: <info>  [1655059225.1086] audit: op="statistics" interface="enp3s0f4u2" ifindex=3 args="2000" pid=946 uid=1000 result="success"
Jun 12 11:40:27 rosebriar NetworkManager[523]: <info>  [1655059227.7501] device (wlan0): Activation: starting connection 'IceMint_5G' (83b964ad-1d14-4ff2-b33e-a9f9f04aec82)
Jun 12 11:40:27 rosebriar NetworkManager[523]: <info>  [1655059227.7502] audit: op="connection-activate" uuid="83b964ad-1d14-4ff2-b33e-a9f9f04aec82" name="IceMint_5G" pid=946 uid=1000 result="success"
Jun 12 11:40:27 rosebriar NetworkManager[523]: <info>  [1655059227.7503] device (wlan0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jun 12 11:40:27 rosebriar NetworkManager[523]: <info>  [1655059227.7506] device (wlan0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jun 12 11:40:27 rosebriar NetworkManager[523]: <info>  [1655059227.7515] device (wlan0): state change: config -> need-auth (reason 'no-secrets', sys-iface-state: 'managed')
Jun 12 11:40:27 rosebriar NetworkManager[523]: <info>  [1655059227.8496] audit: op="statistics" interface="enp3s0f4u2" ifindex=3 args="0" pid=946 uid=1000 result="success"
Jun 12 11:40:32 rosebriar NetworkManager[523]: <info>  [1655059232.6592] device (wlan0): state change: need-auth -> config (reason 'none', sys-iface-state: 'managed')
Jun 12 11:40:32 rosebriar NetworkManager[523]: <info>  [1655059232.6818] device (wlan0): new IWD device state is connecting
Jun 12 11:40:37 rosebriar NetworkManager[523]: <error> [1655059237.9737] device (wlan0): Activation: (wifi) Network.Connect failed: GDBus.Error:net.connman.iwd.Failed: Operation failed
Jun 12 11:40:37 rosebriar NetworkManager[523]: <info>  [1655059237.9739] device (wlan0): state change: config -> failed (reason 'no-secrets', sys-iface-state: 'managed')
Jun 12 11:40:37 rosebriar NetworkManager[523]: <warn>  [1655059237.9740] device (wlan0): Activation: failed for connection 'IceMint_5G'
Jun 12 11:40:37 rosebriar NetworkManager[523]: <info>  [1655059237.9741] device (wlan0): new IWD device state is disconnected
Jun 12 11:40:37 rosebriar NetworkManager[523]: <info>  [1655059237.9742] device (wlan0): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jun 12 11:40:46 rosebriar NetworkManager[523]: <info>  [1655059246.3603] audit: op="statistics" interface="enp3s0f4u2" ifindex=3 args="2000" pid=946 uid=1000 result="success"
Jun 12 11:40:48 rosebriar NetworkManager[523]: <info>  [1655059248.1941] device (wlan0): Activation: starting connection 'IceMint_5G' (83b964ad-1d14-4ff2-b33e-a9f9f04aec82)
Jun 12 11:40:48 rosebriar NetworkManager[523]: <info>  [1655059248.1943] audit: op="connection-activate" uuid="83b964ad-1d14-4ff2-b33e-a9f9f04aec82" name="IceMint_5G" pid=946 uid=1000 result="success"
Jun 12 11:40:48 rosebriar NetworkManager[523]: <info>  [1655059248.1944] device (wlan0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jun 12 11:40:48 rosebriar NetworkManager[523]: <info>  [1655059248.1947] device (wlan0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jun 12 11:40:48 rosebriar NetworkManager[523]: <info>  [1655059248.1962] device (wlan0): state change: config -> need-auth (reason 'no-secrets', sys-iface-state: 'managed')
Jun 12 11:40:48 rosebriar NetworkManager[523]: <info>  [1655059248.3027] audit: op="statistics" interface="enp3s0f4u2" ifindex=3 args="0" pid=946 uid=1000 result="success"
Jun 12 11:40:52 rosebriar NetworkManager[523]: <info>  [1655059252.2520] device (wlan0): state change: need-auth -> config (reason 'none', sys-iface-state: 'managed')
Jun 12 11:40:52 rosebriar NetworkManager[523]: <info>  [1655059252.2696] device (wlan0): new IWD device state is connecting
Jun 12 11:40:54 rosebriar NetworkManager[523]: <info>  [1655059254.5862] audit: op="statistics" interface="enp3s0f4u2" ifindex=3 args="2000" pid=946 uid=1000 result="success"
Jun 12 11:40:57 rosebriar NetworkManager[523]: <info>  [1655059257.8061] audit: op="statistics" interface="enp3s0f4u2" ifindex=3 args="0" pid=946 uid=1000 result="success"
Jun 12 11:41:01 rosebriar NetworkManager[523]: <error> [1655059261.5436] device (wlan0): Activation: (wifi) Network.Connect failed: GDBus.Error:net.connman.iwd.Failed: Operation failed
Jun 12 11:41:01 rosebriar NetworkManager[523]: <info>  [1655059261.5437] device (wlan0): state change: config -> failed (reason 'no-secrets', sys-iface-state: 'managed')
Jun 12 11:41:01 rosebriar NetworkManager[523]: <warn>  [1655059261.5440] device (wlan0): Activation: failed for connection 'IceMint_5G'
Jun 12 11:41:01 rosebriar NetworkManager[523]: <info>  [1655059261.5440] device (wlan0): new IWD device state is disconnected
Jun 12 11:41:01 rosebriar NetworkManager[523]: <info>  [1655059261.5442] device (wlan0): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')

Offline

#6 2022-06-12 19:13:49

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: NetworkManager stuck in configuration loop

Filtering for NM doesn't help when the issue is most likely w/ the kernel module or (maybe) wpa_supplicant…

Offline

#7 2022-06-12 22:37:02

gryffin
Member
Registered: 2021-11-03
Posts: 13

Re: NetworkManager stuck in configuration loop

Sorry, I misunderstood you.

Jun 12 11:38:42 rosebriar kernel: Linux version 5.18.2-arch1-1 (linux@archlinux) (gcc (GCC) 12.1.0, GNU ld (GNU Binutils) 2.38) #1 SMP PREEMPT_DYNAMIC Mon, 06 Jun 2022 19:58:58 +0000
Jun 12 11:38:42 rosebriar kernel: Command line: initrd=\amd-ucode.img initrd=\initramfs-linux.img root=PARTUUID=2fbe032b-38de-4fcc-b473-f8bb4bc751d4 zswap.enabled=0 rootflags=subvol=@ rw intel_pstate=no_hwp rootfstype=btrfs
Jun 12 11:38:42 rosebriar kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Jun 12 11:38:42 rosebriar kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jun 12 11:38:42 rosebriar kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jun 12 11:38:42 rosebriar kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
Jun 12 11:38:42 rosebriar kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Jun 12 11:38:42 rosebriar kernel: x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
Jun 12 11:38:42 rosebriar kernel: x86/fpu: Enabled xstate features 0x207, context size is 840 bytes, using 'compacted' format.
Jun 12 11:38:42 rosebriar kernel: signal: max sigframe size: 3376
Jun 12 11:38:42 rosebriar kernel: BIOS-provided physical RAM map:
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000009e7ffff] usable
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x0000000009e80000-0x000000000a000fff] reserved
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x000000000a001000-0x000000000a1fffff] usable
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x000000000a200000-0x000000000a20efff] ACPI NVS
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x000000000a20f000-0x00000000b68d9fff] usable
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x00000000b68da000-0x00000000b6a58fff] reserved
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x00000000b6a59000-0x00000000b6ad3fff] ACPI data
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x00000000b6ad4000-0x00000000b6dcdfff] ACPI NVS
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x00000000b6dce000-0x00000000bc7fdfff] reserved
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x00000000bc7fe000-0x00000000bdffffff] usable
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x00000000be000000-0x00000000bfffffff] reserved
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x00000000fd000000-0x00000000fdffffff] reserved
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x00000000fe700000-0x00000000fe700fff] reserved
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x00000000fedc4000-0x00000000fedc9fff] reserved
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x00000000fedcc000-0x00000000fedcefff] reserved
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x00000000fedd5000-0x00000000fedd5fff] reserved
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x0000000100000000-0x000000041e2fffff] usable
Jun 12 11:38:42 rosebriar kernel: BIOS-e820: [mem 0x000000041e300000-0x000000043fffffff] reserved
Jun 12 11:38:42 rosebriar kernel: NX (Execute Disable) protection: active
Jun 12 11:38:42 rosebriar kernel: e820: update [mem 0xb2d3a018-0xb2d47857] usable ==> usable
Jun 12 11:38:42 rosebriar kernel: e820: update [mem 0xb2d3a018-0xb2d47857] usable ==> usable
Jun 12 11:38:42 rosebriar kernel: extended physical RAM map:
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x00000000000a0000-0x00000000000fffff] reserved
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x0000000000100000-0x0000000009e7ffff] usable
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x0000000009e80000-0x000000000a000fff] reserved
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x000000000a001000-0x000000000a1fffff] usable
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x000000000a200000-0x000000000a20efff] ACPI NVS
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x000000000a20f000-0x00000000b2d3a017] usable
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x00000000b2d3a018-0x00000000b2d47857] usable
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x00000000b2d47858-0x00000000b68d9fff] usable
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x00000000b68da000-0x00000000b6a58fff] reserved
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x00000000b6a59000-0x00000000b6ad3fff] ACPI data
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x00000000b6ad4000-0x00000000b6dcdfff] ACPI NVS
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x00000000b6dce000-0x00000000bc7fdfff] reserved
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x00000000bc7fe000-0x00000000bdffffff] usable
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x00000000be000000-0x00000000bfffffff] reserved
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x00000000fd000000-0x00000000fdffffff] reserved
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x00000000fe700000-0x00000000fe700fff] reserved
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x00000000fedc4000-0x00000000fedc9fff] reserved
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x00000000fedcc000-0x00000000fedcefff] reserved
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x00000000fedd5000-0x00000000fedd5fff] reserved
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x0000000100000000-0x000000041e2fffff] usable
Jun 12 11:38:42 rosebriar kernel: reserve setup_data: [mem 0x000000041e300000-0x000000043fffffff] reserved
Jun 12 11:38:42 rosebriar kernel: efi: EFI v2.70 by American Megatrends
Jun 12 11:38:42 rosebriar kernel: efi: ACPI=0xb6ad3000 ACPI 2.0=0xb6ad3014 TPMFinalLog=0xb6d83000 SMBIOS=0xbc555000 SMBIOS 3.0=0xbc554000 MEMATTR=0xb3e48298 ESRT=0xb5719698 RNG=0xbc551818 TPMEventLog=0xb2d70018 
Jun 12 11:38:42 rosebriar kernel: efi: seeding entropy pool
Jun 12 11:38:42 rosebriar kernel: random: crng init done
Jun 12 11:38:42 rosebriar kernel: SMBIOS 3.3.0 present.
Jun 12 11:38:42 rosebriar kernel: DMI: HP HP Pavilion Laptop 15-eh2xxx/8A0E, BIOS F.01 12/16/2021
Jun 12 11:38:42 rosebriar kernel: tsc: Fast TSC calibration using PIT
Jun 12 11:38:42 rosebriar kernel: tsc: Detected 1996.351 MHz processor
Jun 12 11:38:42 rosebriar kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jun 12 11:38:42 rosebriar kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Jun 12 11:38:42 rosebriar kernel: last_pfn = 0x41e300 max_arch_pfn = 0x400000000
Jun 12 11:38:42 rosebriar kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Jun 12 11:38:42 rosebriar kernel: e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
Jun 12 11:38:42 rosebriar kernel: last_pfn = 0xbe000 max_arch_pfn = 0x400000000
Jun 12 11:38:42 rosebriar kernel: esrt: Reserving ESRT space from 0x00000000b5719698 to 0x00000000b57196d0.
Jun 12 11:38:42 rosebriar kernel: e820: update [mem 0xb5719000-0xb5719fff] usable ==> reserved
Jun 12 11:38:42 rosebriar kernel: Using GB pages for direct mapping
Jun 12 11:38:42 rosebriar kernel: Secure boot disabled
Jun 12 11:38:42 rosebriar kernel: RAMDISK: [mem 0x7f682000-0x7fff2fff]
Jun 12 11:38:42 rosebriar kernel: ACPI: Early table checksum verification disabled
Jun 12 11:38:42 rosebriar kernel: ACPI: RSDP 0x00000000B6AD3014 000024 (v02 HPQOEM)
Jun 12 11:38:42 rosebriar kernel: ACPI: XSDT 0x00000000B6AD2728 000124 (v01 HPQOEM SLIC-MPC 01072009 AMI  01000013)
Jun 12 11:38:42 rosebriar kernel: ACPI: FACP 0x00000000B6AC3000 000114 (v06 HPQOEM SLIC-MPC 01072009 HP   00010013)
Jun 12 11:38:42 rosebriar kernel: ACPI: DSDT 0x00000000B6AAC000 0161C9 (v02 HPQOEM 8A0E     01072009 ACPI 20190509)
Jun 12 11:38:42 rosebriar kernel: ACPI: FACS 0x00000000B6D81000 000040
Jun 12 11:38:42 rosebriar kernel: ACPI: MSDM 0x00000000B6AD1000 000055 (v03 HPQOEM SLIC-MPC 00000001 HP   00010013)
Jun 12 11:38:42 rosebriar kernel: ACPI: SSDT 0x00000000B6AC9000 0072B0 (v02 HPQOEM 8A0E     00000002 ACPI 04000000)
Jun 12 11:38:42 rosebriar kernel: ACPI: IVRS 0x00000000B6AC8000 0001A4 (v02 HPQOEM 8A0E     00000001 HP   00000000)
Jun 12 11:38:42 rosebriar kernel: ACPI: SSDT 0x00000000B6AC4000 003A21 (v01 HPQOEM 8A0E     00000001 ACPI 20190509)
Jun 12 11:38:42 rosebriar kernel: ACPI: FIDT 0x00000000B6AAB000 00009C (v01 HPQOEM 8A0E     01072009 HP   00010013)
Jun 12 11:38:42 rosebriar kernel: ACPI: MCFG 0x00000000B6AAA000 00003C (v01 HPQOEM 8A0E     01072009 HP   00010013)
Jun 12 11:38:42 rosebriar kernel: ACPI: HPET 0x00000000B6AA9000 000038 (v01 HPQOEM 8A0E     01072009 HP   00000005)
Jun 12 11:38:42 rosebriar kernel: ACPI: VFCT 0x00000000B6A9B000 00D884 (v01 HPQOEM 8A0E     00000001 HP   31504F47)
Jun 12 11:38:42 rosebriar kernel: ACPI: SSDT 0x00000000B6A9A000 000060 (v01 HPQOEM 8A0E     00000001 ACPI 20190509)
Jun 12 11:38:42 rosebriar kernel: ACPI: TPM2 0x00000000B6A99000 00004C (v04 HPQOEM 8A0E     00000001 HP   00000000)
Jun 12 11:38:42 rosebriar kernel: ACPI: SSDT 0x00000000B6A93000 005354 (v02 HPQOEM 8A0E     00000001 ACPI 00000001)
Jun 12 11:38:42 rosebriar kernel: ACPI: CRAT 0x00000000B6A92000 000EE8 (v01 HPQOEM 8A0E     00000001 HP   00000001)
Jun 12 11:38:42 rosebriar kernel: ACPI: CDIT 0x00000000B6A91000 000029 (v01 HPQOEM 8A0E     00000001 HP   00000001)
Jun 12 11:38:42 rosebriar kernel: ACPI: SSDT 0x00000000B6A90000 000149 (v01 HPQOEM 8A0E     00000001 ACPI 20190509)
Jun 12 11:38:42 rosebriar kernel: ACPI: SSDT 0x00000000B6A8F000 00044F (v01 HPQOEM 8A0E     00000001 ACPI 20190509)
Jun 12 11:38:42 rosebriar kernel: ACPI: SSDT 0x00000000B6A8E000 00070A (v01 HPQOEM 8A0E     00000001 ACPI 20190509)
Jun 12 11:38:42 rosebriar kernel: ACPI: SSDT 0x00000000B6A8D000 00064F (v01 HPQOEM 8A0E     00000001 ACPI 20190509)
Jun 12 11:38:42 rosebriar kernel: ACPI: SSDT 0x00000000B6A8B000 00148E (v01 HPQOEM 8A0E     00000001 ACPI 20190509)
Jun 12 11:38:42 rosebriar kernel: ACPI: SSDT 0x00000000B6A89000 00151E (v01 HPQOEM 8A0E     00000001 ACPI 20190509)
Jun 12 11:38:42 rosebriar kernel: ACPI: SSDT 0x00000000B6A85000 0036E9 (v01 HPQOEM 8A0E     00000001 ACPI 20190509)
Jun 12 11:38:42 rosebriar kernel: ACPI: WSMT 0x00000000B6A84000 000028 (v01 HPQOEM 8A0E     01072009 HP   00010013)
Jun 12 11:38:42 rosebriar kernel: ACPI: APIC 0x00000000B6A83000 0000DE (v04 HPQOEM 8A0E     01072009 HP   00010013)
Jun 12 11:38:42 rosebriar kernel: ACPI: SSDT 0x00000000B6A82000 00008D (v01 HPQOEM 8A0E     00000001 ACPI 20190509)
Jun 12 11:38:42 rosebriar kernel: ACPI: SSDT 0x00000000B6A81000 0008CB (v01 HPQOEM 8A0E     00000001 ACPI 20190509)
Jun 12 11:38:42 rosebriar kernel: ACPI: SSDT 0x00000000B6A7F000 00106C (v01 HPQOEM 8A0E     00000001 ACPI 20190509)
Jun 12 11:38:42 rosebriar kernel: ACPI: SSDT 0x00000000B6A7E000 000057 (v01 HPQOEM 8A0E     00000001 ACPI 20190509)
Jun 12 11:38:42 rosebriar kernel: ACPI: SSDT 0x00000000B6A7D000 000241 (v01 HPQOEM 8A0E     00000001 ACPI 20190509)
Jun 12 11:38:42 rosebriar kernel: ACPI: SSDT 0x00000000B6A7C000 00070F (v01 HPQOEM 8A0E     00000001 ACPI 20190509)
Jun 12 11:38:42 rosebriar kernel: ACPI: SSDT 0x00000000B6A7B000 000775 (v01 HPQOEM 8A0E     00000001 ACPI 20190509)
Jun 12 11:38:42 rosebriar kernel: ACPI: FPDT 0x00000000B6A7A000 000044 (v01 HPQOEM 8A0E     01072009 HP   01000013)
Jun 12 11:38:42 rosebriar kernel: ACPI: BGRT 0x00000000B6A79000 000038 (v01 HPQOEM 8A0E     01072009 HP   00010013)
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving FACP table memory at [mem 0xb6ac3000-0xb6ac3113]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving DSDT table memory at [mem 0xb6aac000-0xb6ac21c8]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving FACS table memory at [mem 0xb6d81000-0xb6d8103f]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving MSDM table memory at [mem 0xb6ad1000-0xb6ad1054]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving SSDT table memory at [mem 0xb6ac9000-0xb6ad02af]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving IVRS table memory at [mem 0xb6ac8000-0xb6ac81a3]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving SSDT table memory at [mem 0xb6ac4000-0xb6ac7a20]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving FIDT table memory at [mem 0xb6aab000-0xb6aab09b]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving MCFG table memory at [mem 0xb6aaa000-0xb6aaa03b]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving HPET table memory at [mem 0xb6aa9000-0xb6aa9037]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving VFCT table memory at [mem 0xb6a9b000-0xb6aa8883]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving SSDT table memory at [mem 0xb6a9a000-0xb6a9a05f]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving TPM2 table memory at [mem 0xb6a99000-0xb6a9904b]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving SSDT table memory at [mem 0xb6a93000-0xb6a98353]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving CRAT table memory at [mem 0xb6a92000-0xb6a92ee7]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving CDIT table memory at [mem 0xb6a91000-0xb6a91028]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving SSDT table memory at [mem 0xb6a90000-0xb6a90148]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving SSDT table memory at [mem 0xb6a8f000-0xb6a8f44e]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving SSDT table memory at [mem 0xb6a8e000-0xb6a8e709]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving SSDT table memory at [mem 0xb6a8d000-0xb6a8d64e]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving SSDT table memory at [mem 0xb6a8b000-0xb6a8c48d]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving SSDT table memory at [mem 0xb6a89000-0xb6a8a51d]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving SSDT table memory at [mem 0xb6a85000-0xb6a886e8]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving WSMT table memory at [mem 0xb6a84000-0xb6a84027]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving APIC table memory at [mem 0xb6a83000-0xb6a830dd]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving SSDT table memory at [mem 0xb6a82000-0xb6a8208c]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving SSDT table memory at [mem 0xb6a81000-0xb6a818ca]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving SSDT table memory at [mem 0xb6a7f000-0xb6a8006b]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving SSDT table memory at [mem 0xb6a7e000-0xb6a7e056]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving SSDT table memory at [mem 0xb6a7d000-0xb6a7d240]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving SSDT table memory at [mem 0xb6a7c000-0xb6a7c70e]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving SSDT table memory at [mem 0xb6a7b000-0xb6a7b774]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving FPDT table memory at [mem 0xb6a7a000-0xb6a7a043]
Jun 12 11:38:42 rosebriar kernel: ACPI: Reserving BGRT table memory at [mem 0xb6a79000-0xb6a79037]
Jun 12 11:38:42 rosebriar kernel: No NUMA configuration found
Jun 12 11:38:42 rosebriar kernel: Faking a node at [mem 0x0000000000000000-0x000000041e2fffff]
Jun 12 11:38:42 rosebriar kernel: NODE_DATA(0) allocated [mem 0x41e2fc000-0x41e2fffff]
Jun 12 11:38:42 rosebriar kernel: Zone ranges:
Jun 12 11:38:42 rosebriar kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Jun 12 11:38:42 rosebriar kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Jun 12 11:38:42 rosebriar kernel:   Normal   [mem 0x0000000100000000-0x000000041e2fffff]
Jun 12 11:38:42 rosebriar kernel:   Device   empty
Jun 12 11:38:42 rosebriar kernel: Movable zone start for each node
Jun 12 11:38:42 rosebriar kernel: Early memory node ranges
Jun 12 11:38:42 rosebriar kernel:   node   0: [mem 0x0000000000001000-0x000000000009ffff]
Jun 12 11:38:42 rosebriar kernel:   node   0: [mem 0x0000000000100000-0x0000000009e7ffff]
Jun 12 11:38:42 rosebriar kernel:   node   0: [mem 0x000000000a001000-0x000000000a1fffff]
Jun 12 11:38:42 rosebriar kernel:   node   0: [mem 0x000000000a20f000-0x00000000b68d9fff]
Jun 12 11:38:42 rosebriar kernel:   node   0: [mem 0x00000000bc7fe000-0x00000000bdffffff]
Jun 12 11:38:42 rosebriar kernel:   node   0: [mem 0x0000000100000000-0x000000041e2fffff]
Jun 12 11:38:42 rosebriar kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000041e2fffff]
Jun 12 11:38:42 rosebriar kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Jun 12 11:38:42 rosebriar kernel: On node 0, zone DMA: 96 pages in unavailable ranges
Jun 12 11:38:42 rosebriar kernel: On node 0, zone DMA32: 385 pages in unavailable ranges
Jun 12 11:38:42 rosebriar kernel: On node 0, zone DMA32: 15 pages in unavailable ranges
Jun 12 11:38:42 rosebriar kernel: On node 0, zone DMA32: 24356 pages in unavailable ranges
Jun 12 11:38:42 rosebriar kernel: On node 0, zone Normal: 8192 pages in unavailable ranges
Jun 12 11:38:42 rosebriar kernel: On node 0, zone Normal: 7424 pages in unavailable ranges
Jun 12 11:38:42 rosebriar kernel: ACPI: PM-Timer IO Port: 0x808
Jun 12 11:38:42 rosebriar kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
Jun 12 11:38:42 rosebriar kernel: IOAPIC[0]: apic_id 33, version 33, address 0xfec00000, GSI 0-23
Jun 12 11:38:42 rosebriar kernel: IOAPIC[1]: apic_id 34, version 33, address 0xfec01000, GSI 24-55
Jun 12 11:38:42 rosebriar kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jun 12 11:38:42 rosebriar kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
Jun 12 11:38:42 rosebriar kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Jun 12 11:38:42 rosebriar kernel: ACPI: HPET id: 0x10228201 base: 0xfed00000
Jun 12 11:38:42 rosebriar kernel: e820: update [mem 0xb4361000-0xb4374fff] usable ==> reserved
Jun 12 11:38:42 rosebriar kernel: smpboot: Allowing 16 CPUs, 0 hotplug CPUs
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0x09e80000-0x0a000fff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20efff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xb2d3a000-0xb2d3afff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xb2d47000-0xb2d47fff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xb4361000-0xb4374fff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xb5719000-0xb5719fff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xb68da000-0xb6a58fff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xb6a59000-0xb6ad3fff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xb6ad4000-0xb6dcdfff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xb6dce000-0xbc7fdfff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xbe000000-0xbfffffff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xefffffff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xf7ffffff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfcffffff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xfd000000-0xfdffffff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe6fffff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xfe700000-0xfe700fff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xfe701000-0xfeb7ffff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xfeb80000-0xfec01fff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xfec02000-0xfec0ffff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xfec11000-0xfecfffff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed3ffff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xfed40000-0xfed44fff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xfed45000-0xfed7ffff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xfed90000-0xfedc3fff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xfedc4000-0xfedc9fff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xfedca000-0xfedcbfff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xfedcc000-0xfedcefff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xfedcf000-0xfedd4fff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xfedd5000-0xfedd5fff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xfedd6000-0xfeffffff]
Jun 12 11:38:42 rosebriar kernel: PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
Jun 12 11:38:42 rosebriar kernel: [mem 0xc0000000-0xefffffff] available for PCI devices
Jun 12 11:38:42 rosebriar kernel: Booting paravirtualized kernel on bare hardware
Jun 12 11:38:42 rosebriar kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
Jun 12 11:38:42 rosebriar kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:16 nr_node_ids:1
Jun 12 11:38:42 rosebriar kernel: percpu: Embedded 63 pages/cpu s221184 r8192 d28672 u262144
Jun 12 11:38:42 rosebriar kernel: pcpu-alloc: s221184 r8192 d28672 u262144 alloc=1*2097152
Jun 12 11:38:42 rosebriar kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
Jun 12 11:38:42 rosebriar kernel: Fallback order for Node 0: 0 
Jun 12 11:38:42 rosebriar kernel: Built 1 zonelists, mobility grouping on.  Total pages: 3959746
Jun 12 11:38:42 rosebriar kernel: Policy zone: Normal
Jun 12 11:38:42 rosebriar kernel: Kernel command line: initrd=\amd-ucode.img initrd=\initramfs-linux.img root=PARTUUID=2fbe032b-38de-4fcc-b473-f8bb4bc751d4 zswap.enabled=0 rootflags=subvol=@ rw intel_pstate=no_hwp rootfstype=btrfs
Jun 12 11:38:42 rosebriar kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
Jun 12 11:38:42 rosebriar kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
Jun 12 11:38:42 rosebriar kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
Jun 12 11:38:42 rosebriar kernel: Memory: 15636576K/16091052K available (14343K kernel code, 2098K rwdata, 10980K rodata, 1852K init, 3368K bss, 454216K reserved, 0K cma-reserved)
Jun 12 11:38:42 rosebriar kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
Jun 12 11:38:42 rosebriar kernel: ftrace: allocating 44855 entries in 176 pages
Jun 12 11:38:42 rosebriar kernel: ftrace: allocated 176 pages with 3 groups
Jun 12 11:38:42 rosebriar kernel: Dynamic Preempt: full
Jun 12 11:38:42 rosebriar kernel: rcu: Preemptible hierarchical RCU implementation.
Jun 12 11:38:42 rosebriar kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=16.
Jun 12 11:38:42 rosebriar kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
Jun 12 11:38:42 rosebriar kernel:         Trampoline variant of Tasks RCU enabled.
Jun 12 11:38:42 rosebriar kernel:         Rude variant of Tasks RCU enabled.
Jun 12 11:38:42 rosebriar kernel:         Tracing variant of Tasks RCU enabled.
Jun 12 11:38:42 rosebriar kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
Jun 12 11:38:42 rosebriar kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
Jun 12 11:38:42 rosebriar kernel: NR_IRQS: 20736, nr_irqs: 1096, preallocated irqs: 16
Jun 12 11:38:42 rosebriar kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
Jun 12 11:38:42 rosebriar kernel: Console: colour dummy device 80x25
Jun 12 11:38:42 rosebriar kernel: printk: console [tty0] enabled
Jun 12 11:38:42 rosebriar kernel: ACPI: Core revision 20211217
Jun 12 11:38:42 rosebriar kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
Jun 12 11:38:42 rosebriar kernel: APIC: Switch to symmetric I/O mode setup
Jun 12 11:38:42 rosebriar kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR0, rdevid:160
Jun 12 11:38:42 rosebriar kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR1, rdevid:160
Jun 12 11:38:42 rosebriar kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR2, rdevid:160
Jun 12 11:38:42 rosebriar kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR3, rdevid:160
Jun 12 11:38:42 rosebriar kernel: Switched APIC routing to physical flat.
Jun 12 11:38:42 rosebriar kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jun 12 11:38:42 rosebriar kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x398d6f1c9be, max_idle_ns: 881590701576 ns
Jun 12 11:38:42 rosebriar kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 3994.06 BogoMIPS (lpj=6654503)
Jun 12 11:38:42 rosebriar kernel: pid_max: default: 32768 minimum: 301
Jun 12 11:38:42 rosebriar kernel: LSM: Security Framework initializing
Jun 12 11:38:42 rosebriar kernel: landlock: Up and running.
Jun 12 11:38:42 rosebriar kernel: Yama: becoming mindful.
Jun 12 11:38:42 rosebriar kernel: LSM support for eBPF active
Jun 12 11:38:42 rosebriar kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
Jun 12 11:38:42 rosebriar kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
Jun 12 11:38:42 rosebriar kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
Jun 12 11:38:42 rosebriar kernel: LVT offset 1 assigned for vector 0xf9
Jun 12 11:38:42 rosebriar kernel: LVT offset 2 assigned for vector 0xf4
Jun 12 11:38:42 rosebriar kernel: Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
Jun 12 11:38:42 rosebriar kernel: Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
Jun 12 11:38:42 rosebriar kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Jun 12 11:38:42 rosebriar kernel: Spectre V2 : Mitigation: Retpolines
Jun 12 11:38:42 rosebriar kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Jun 12 11:38:42 rosebriar kernel: Spectre V2 : Enabling Restricted Speculation for firmware calls
Jun 12 11:38:42 rosebriar kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Jun 12 11:38:42 rosebriar kernel: Spectre V2 : User space: Mitigation: STIBP always-on protection
Jun 12 11:38:42 rosebriar kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
Jun 12 11:38:42 rosebriar kernel: Freeing SMP alternatives memory: 36K
Jun 12 11:38:42 rosebriar kernel: smpboot: CPU0: AMD Ryzen 7 5825U with Radeon Graphics (family: 0x19, model: 0x50, stepping: 0x0)
Jun 12 11:38:42 rosebriar kernel: cblist_init_generic: Setting adjustable number of callback queues.
Jun 12 11:38:42 rosebriar kernel: cblist_init_generic: Setting shift to 4 and lim to 1.
Jun 12 11:38:42 rosebriar kernel: cblist_init_generic: Setting shift to 4 and lim to 1.
Jun 12 11:38:42 rosebriar kernel: cblist_init_generic: Setting shift to 4 and lim to 1.
Jun 12 11:38:42 rosebriar kernel: Performance Events: Fam17h+ core perfctr, AMD PMU driver.
Jun 12 11:38:42 rosebriar kernel: ... version:                0
Jun 12 11:38:42 rosebriar kernel: ... bit width:              48
Jun 12 11:38:42 rosebriar kernel: ... generic registers:      6
Jun 12 11:38:42 rosebriar kernel: ... value mask:             0000ffffffffffff
Jun 12 11:38:42 rosebriar kernel: ... max period:             00007fffffffffff
Jun 12 11:38:42 rosebriar kernel: ... fixed-purpose events:   0
Jun 12 11:38:42 rosebriar kernel: ... event mask:             000000000000003f
Jun 12 11:38:42 rosebriar kernel: rcu: Hierarchical SRCU implementation.
Jun 12 11:38:42 rosebriar kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Jun 12 11:38:42 rosebriar kernel: smp: Bringing up secondary CPUs ...
Jun 12 11:38:42 rosebriar kernel: x86: Booting SMP configuration:
Jun 12 11:38:42 rosebriar kernel: .... node  #0, CPUs:        #1
Jun 12 11:38:42 rosebriar kernel: Spectre V2 : Update user space SMT mitigation: STIBP always-on
Jun 12 11:38:42 rosebriar kernel:   #2  #3  #4  #5  #6  #7  #8  #9 #10 #11 #12 #13 #14 #15
Jun 12 11:38:42 rosebriar kernel: smp: Brought up 1 node, 16 CPUs
Jun 12 11:38:42 rosebriar kernel: smpboot: Max logical packages: 1
Jun 12 11:38:42 rosebriar kernel: smpboot: Total of 16 processors activated (63908.03 BogoMIPS)
Jun 12 11:38:42 rosebriar kernel: devtmpfs: initialized
Jun 12 11:38:42 rosebriar kernel: x86/mm: Memory block size: 128MB
Jun 12 11:38:42 rosebriar kernel: ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20efff] (61440 bytes)
Jun 12 11:38:42 rosebriar kernel: ACPI: PM: Registering ACPI NVS region [mem 0xb6ad4000-0xb6dcdfff] (3121152 bytes)
Jun 12 11:38:42 rosebriar kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
Jun 12 11:38:42 rosebriar kernel: futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
Jun 12 11:38:42 rosebriar kernel: pinctrl core: initialized pinctrl subsystem
Jun 12 11:38:42 rosebriar kernel: PM: RTC time: 18:38:40, date: 2022-06-12
Jun 12 11:38:42 rosebriar kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Jun 12 11:38:42 rosebriar kernel: DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
Jun 12 11:38:42 rosebriar kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Jun 12 11:38:42 rosebriar kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Jun 12 11:38:42 rosebriar kernel: audit: initializing netlink subsys (disabled)
Jun 12 11:38:42 rosebriar kernel: audit: type=2000 audit(1655059120.166:1): state=initialized audit_enabled=0 res=1
Jun 12 11:38:42 rosebriar kernel: thermal_sys: Registered thermal governor 'fair_share'
Jun 12 11:38:42 rosebriar kernel: thermal_sys: Registered thermal governor 'bang_bang'
Jun 12 11:38:42 rosebriar kernel: thermal_sys: Registered thermal governor 'step_wise'
Jun 12 11:38:42 rosebriar kernel: thermal_sys: Registered thermal governor 'user_space'
Jun 12 11:38:42 rosebriar kernel: thermal_sys: Registered thermal governor 'power_allocator'
Jun 12 11:38:42 rosebriar kernel: cpuidle: using governor ladder
Jun 12 11:38:42 rosebriar kernel: cpuidle: using governor menu
Jun 12 11:38:42 rosebriar kernel: HugeTLB: can free 4095 vmemmap pages for hugepages-1048576kB
Jun 12 11:38:42 rosebriar kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Jun 12 11:38:42 rosebriar kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jun 12 11:38:42 rosebriar kernel: PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
Jun 12 11:38:42 rosebriar kernel: PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820
Jun 12 11:38:42 rosebriar kernel: PCI: Using configuration type 1 for base access
Jun 12 11:38:42 rosebriar kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
Jun 12 11:38:42 rosebriar kernel: HugeTLB: can free 7 vmemmap pages for hugepages-2048kB
Jun 12 11:38:42 rosebriar kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Jun 12 11:38:42 rosebriar kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Jun 12 11:38:42 rosebriar kernel: ACPI: Added _OSI(Module Device)
Jun 12 11:38:42 rosebriar kernel: ACPI: Added _OSI(Processor Device)
Jun 12 11:38:42 rosebriar kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jun 12 11:38:42 rosebriar kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jun 12 11:38:42 rosebriar kernel: ACPI: Added _OSI(Linux-Dell-Video)
Jun 12 11:38:42 rosebriar kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Jun 12 11:38:42 rosebriar kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Jun 12 11:38:42 rosebriar kernel: ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.28**.EC0], AE_NOT_FOUND (20211217/dswload2-162)
Jun 12 11:38:42 rosebriar kernel: fbcon: Taking over console
Jun 12 11:38:42 rosebriar kernel: ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20211217/psobject-220)
Jun 12 11:38:42 rosebriar kernel: ACPI: Skipping parse of AML opcode: Scope (0x0010)
Jun 12 11:38:42 rosebriar kernel: ACPI: 19 ACPI AML tables successfully acquired and loaded
Jun 12 11:38:42 rosebriar kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Jun 12 11:38:42 rosebriar kernel: ACPI: EC: EC started
Jun 12 11:38:42 rosebriar kernel: ACPI: EC: interrupt blocked
Jun 12 11:38:42 rosebriar kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Jun 12 11:38:42 rosebriar kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: Boot DSDT EC used to handle transactions
Jun 12 11:38:42 rosebriar kernel: ACPI: Interpreter enabled
Jun 12 11:38:42 rosebriar kernel: ACPI: PM: (supports S0 S4 S5)
Jun 12 11:38:42 rosebriar kernel: ACPI: Using IOAPIC for interrupt routing
Jun 12 11:38:42 rosebriar kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jun 12 11:38:42 rosebriar kernel: ACPI: PM: Power Resource [PWRE]
Jun 12 11:38:42 rosebriar kernel: ACPI: PM: Power Resource [P0U0]
Jun 12 11:38:42 rosebriar kernel: ACPI: PM: Power Resource [P3U0]
Jun 12 11:38:42 rosebriar kernel: ACPI: PM: Power Resource [PRBT]
Jun 12 11:38:42 rosebriar kernel: ACPI: PM: Power Resource [P0U1]
Jun 12 11:38:42 rosebriar kernel: ACPI: PM: Power Resource [P3U1]
Jun 12 11:38:42 rosebriar kernel: ACPI: PM: Power Resource [P0SA]
Jun 12 11:38:42 rosebriar kernel: ACPI: PM: Power Resource [P0SA]
Jun 12 11:38:42 rosebriar kernel: ACPI: PM: Power Resource [P0NV]
Jun 12 11:38:42 rosebriar kernel: ACPI: PM: Power Resource [PRWL]
Jun 12 11:38:42 rosebriar kernel: ACPI: PM: Power Resource [PRWB]
Jun 12 11:38:42 rosebriar kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Jun 12 11:38:42 rosebriar kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Jun 12 11:38:42 rosebriar kernel: acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR DPC]
Jun 12 11:38:42 rosebriar kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
Jun 12 11:38:42 rosebriar kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
Jun 12 11:38:42 rosebriar kernel: acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-7f] only partially covers this bridge
Jun 12 11:38:42 rosebriar kernel: PCI host bridge to bus 0000:00
Jun 12 11:38:42 rosebriar kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
Jun 12 11:38:42 rosebriar kernel: pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
Jun 12 11:38:42 rosebriar kernel: pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
Jun 12 11:38:42 rosebriar kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Jun 12 11:38:42 rosebriar kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
Jun 12 11:38:42 rosebriar kernel: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]
Jun 12 11:38:42 rosebriar kernel: pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]
Jun 12 11:38:42 rosebriar kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:00.0: [1022:1630] type 00 class 0x060000
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:00.2: [1022:1631] type 00 class 0x080600
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:01.0: [1022:1632] type 00 class 0x060000
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:02.0: [1022:1632] type 00 class 0x060000
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:02.2: [1022:1634] type 01 class 0x060400
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:02.2: enabling Extended Tags
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:02.4: [1022:1634] type 01 class 0x060400
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:02.4: enabling Extended Tags
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:02.4: PME# supported from D0 D3hot D3cold
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:08.0: [1022:1632] type 00 class 0x060000
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:08.1: [1022:1635] type 01 class 0x060400
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:08.1: enabling Extended Tags
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:18.0: [1022:166a] type 00 class 0x060000
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:18.1: [1022:166b] type 00 class 0x060000
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:18.2: [1022:166c] type 00 class 0x060000
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:18.3: [1022:166d] type 00 class 0x060000
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:18.4: [1022:166e] type 00 class 0x060000
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:18.5: [1022:166f] type 00 class 0x060000
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:18.6: [1022:1670] type 00 class 0x060000
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:18.7: [1022:1671] type 00 class 0x060000
Jun 12 11:38:42 rosebriar kernel: pci 0000:01:00.0: [10ec:b852] type 00 class 0x028000
Jun 12 11:38:42 rosebriar kernel: pci 0000:01:00.0: reg 0x10: [io  0xf000-0xf0ff]
Jun 12 11:38:42 rosebriar kernel: pci 0000:01:00.0: reg 0x18: [mem 0xfcf00000-0xfcffffff 64bit]
Jun 12 11:38:42 rosebriar kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:02.2: PCI bridge to [bus 01]
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:02.2:   bridge window [io  0xf000-0xffff]
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:02.2:   bridge window [mem 0xfcf00000-0xfcffffff]
Jun 12 11:38:42 rosebriar kernel: pci 0000:02:00.0: [15b7:5009] type 00 class 0x010802
Jun 12 11:38:42 rosebriar kernel: pci 0000:02:00.0: reg 0x10: [mem 0xfce00000-0xfce03fff 64bit]
Jun 12 11:38:42 rosebriar kernel: pci 0000:02:00.0: reg 0x20: [mem 0xfce04000-0xfce040ff 64bit]
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:02.4: PCI bridge to [bus 02]
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:02.4:   bridge window [mem 0xfce00000-0xfcefffff]
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.0: [1002:15e7] type 00 class 0x030000
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.0: reg 0x10: [mem 0xd0000000-0xdfffffff 64bit pref]
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.0: reg 0x18: [mem 0xe0000000-0xe01fffff 64bit pref]
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.0: reg 0x20: [io  0xe000-0xe0ff]
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.0: reg 0x24: [mem 0xfcd00000-0xfcd7ffff]
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.0: enabling Extended Tags
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.0: BAR 0: assigned to efifb
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.0: PME# supported from D1 D2 D3hot D3cold
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.0: 126.016 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x16 link at 0000:00:08.1 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.1: [1002:1637] type 00 class 0x040300
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.1: reg 0x10: [mem 0xfcdc8000-0xfcdcbfff]
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.1: enabling Extended Tags
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.1: PME# supported from D1 D2 D3hot D3cold
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.2: [1022:15df] type 00 class 0x108000
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.2: reg 0x18: [mem 0xfcc00000-0xfccfffff]
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.2: reg 0x24: [mem 0xfcdcc000-0xfcdcdfff]
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.2: enabling Extended Tags
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.3: [1022:1639] type 00 class 0x0c0330
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.3: reg 0x10: [mem 0xfcb00000-0xfcbfffff 64bit]
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.3: enabling Extended Tags
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.4: [1022:1639] type 00 class 0x0c0330
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.4: reg 0x10: [mem 0xfca00000-0xfcafffff 64bit]
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.4: enabling Extended Tags
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.4: PME# supported from D0 D3hot D3cold
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.5: [1022:15e2] type 00 class 0x048000
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.5: reg 0x10: [mem 0xfcd80000-0xfcdbffff]
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.5: enabling Extended Tags
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.5: PME# supported from D0 D3hot D3cold
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.6: [1022:15e3] type 00 class 0x040300
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.6: reg 0x10: [mem 0xfcdc0000-0xfcdc7fff]
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.6: enabling Extended Tags
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.6: PME# supported from D0 D3hot D3cold
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:08.1: PCI bridge to [bus 03]
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:08.1:   bridge window [io  0xe000-0xefff]
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:08.1:   bridge window [mem 0xfca00000-0xfcdfffff]
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:08.1:   bridge window [mem 0xd0000000-0xe01fffff 64bit pref]
Jun 12 11:38:42 rosebriar kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 0
Jun 12 11:38:42 rosebriar kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 0
Jun 12 11:38:42 rosebriar kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 0
Jun 12 11:38:42 rosebriar kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 0
Jun 12 11:38:42 rosebriar kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
Jun 12 11:38:42 rosebriar kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 0
Jun 12 11:38:42 rosebriar kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
Jun 12 11:38:42 rosebriar kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 0
Jun 12 11:38:42 rosebriar kernel: ACPI: EC: interrupt unblocked
Jun 12 11:38:42 rosebriar kernel: ACPI: EC: event unblocked
Jun 12 11:38:42 rosebriar kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Jun 12 11:38:42 rosebriar kernel: ACPI: EC: GPE=0x3
Jun 12 11:38:42 rosebriar kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: Boot DSDT EC initialization complete
Jun 12 11:38:42 rosebriar kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: EC: Used to handle transactions and events
Jun 12 11:38:42 rosebriar kernel: iommu: Default domain type: Translated 
Jun 12 11:38:42 rosebriar kernel: iommu: DMA domain TLB invalidation policy: lazy mode 
Jun 12 11:38:42 rosebriar kernel: SCSI subsystem initialized
Jun 12 11:38:42 rosebriar kernel: libata version 3.00 loaded.
Jun 12 11:38:42 rosebriar kernel: ACPI: bus type USB registered
Jun 12 11:38:42 rosebriar kernel: usbcore: registered new interface driver usbfs
Jun 12 11:38:42 rosebriar kernel: usbcore: registered new interface driver hub
Jun 12 11:38:42 rosebriar kernel: usbcore: registered new device driver usb
Jun 12 11:38:42 rosebriar kernel: pps_core: LinuxPPS API ver. 1 registered
Jun 12 11:38:42 rosebriar kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Jun 12 11:38:42 rosebriar kernel: PTP clock support registered
Jun 12 11:38:42 rosebriar kernel: EDAC MC: Ver: 3.0.0
Jun 12 11:38:42 rosebriar kernel: Registered efivars operations
Jun 12 11:38:42 rosebriar kernel: NetLabel: Initializing
Jun 12 11:38:42 rosebriar kernel: NetLabel:  domain hash size = 128
Jun 12 11:38:42 rosebriar kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Jun 12 11:38:42 rosebriar kernel: NetLabel:  unlabeled traffic allowed by default
Jun 12 11:38:42 rosebriar kernel: mctp: management component transport protocol core
Jun 12 11:38:42 rosebriar kernel: NET: Registered PF_MCTP protocol family
Jun 12 11:38:42 rosebriar kernel: PCI: Using ACPI for IRQ routing
Jun 12 11:38:42 rosebriar kernel: PCI: pci_cache_line_size set to 64 bytes
Jun 12 11:38:42 rosebriar kernel: Expanded resource Reserved due to conflict with PCI Bus 0000:00
Jun 12 11:38:42 rosebriar kernel: e820: reserve RAM buffer [mem 0x09e80000-0x0bffffff]
Jun 12 11:38:42 rosebriar kernel: e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
Jun 12 11:38:42 rosebriar kernel: e820: reserve RAM buffer [mem 0xb2d3a018-0xb3ffffff]
Jun 12 11:38:42 rosebriar kernel: e820: reserve RAM buffer [mem 0xb4361000-0xb7ffffff]
Jun 12 11:38:42 rosebriar kernel: e820: reserve RAM buffer [mem 0xb5719000-0xb7ffffff]
Jun 12 11:38:42 rosebriar kernel: e820: reserve RAM buffer [mem 0xb68da000-0xb7ffffff]
Jun 12 11:38:42 rosebriar kernel: e820: reserve RAM buffer [mem 0xbe000000-0xbfffffff]
Jun 12 11:38:42 rosebriar kernel: e820: reserve RAM buffer [mem 0x41e300000-0x41fffffff]
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.0: vgaarb: setting as boot VGA device
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.0: vgaarb: bridge control possible
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
Jun 12 11:38:42 rosebriar kernel: vgaarb: loaded
Jun 12 11:38:42 rosebriar kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
Jun 12 11:38:42 rosebriar kernel: hpet0: 3 comparators, 32-bit 14.318180 MHz counter
Jun 12 11:38:42 rosebriar kernel: clocksource: Switched to clocksource tsc-early
Jun 12 11:38:42 rosebriar kernel: VFS: Disk quotas dquot_6.6.0
Jun 12 11:38:42 rosebriar kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jun 12 11:38:42 rosebriar kernel: pnp: PnP ACPI init
Jun 12 11:38:42 rosebriar kernel: system 00:00: [mem 0xf0000000-0xf7ffffff] has been reserved
Jun 12 11:38:42 rosebriar kernel: pnp 00:03: disabling [io  0xff00-0xfffe] because it overlaps 0000:00:02.2 BAR 13 [io  0xf000-0xffff]
Jun 12 11:38:42 rosebriar kernel: system 00:03: [io  0x04d0-0x04d1] has been reserved
Jun 12 11:38:42 rosebriar kernel: system 00:03: [io  0x040b] has been reserved
Jun 12 11:38:42 rosebriar kernel: system 00:03: [io  0x04d6] has been reserved
Jun 12 11:38:42 rosebriar kernel: system 00:03: [io  0x0c00-0x0c01] has been reserved
Jun 12 11:38:42 rosebriar kernel: system 00:03: [io  0x0c14] has been reserved
Jun 12 11:38:42 rosebriar kernel: system 00:03: [io  0x0c50-0x0c51] has been reserved
Jun 12 11:38:42 rosebriar kernel: system 00:03: [io  0x0c52] has been reserved
Jun 12 11:38:42 rosebriar kernel: system 00:03: [io  0x0c6c] has been reserved
Jun 12 11:38:42 rosebriar kernel: system 00:03: [io  0x0c6f] has been reserved
Jun 12 11:38:42 rosebriar kernel: system 00:03: [io  0x0cd8-0x0cdf] has been reserved
Jun 12 11:38:42 rosebriar kernel: system 00:03: [io  0x0800-0x089f] has been reserved
Jun 12 11:38:42 rosebriar kernel: system 00:03: [io  0x0b00-0x0b0f] has been reserved
Jun 12 11:38:42 rosebriar kernel: system 00:03: [io  0x0b20-0x0b3f] has been reserved
Jun 12 11:38:42 rosebriar kernel: system 00:03: [io  0x0900-0x090f] has been reserved
Jun 12 11:38:42 rosebriar kernel: system 00:03: [io  0x0910-0x091f] has been reserved
Jun 12 11:38:42 rosebriar kernel: system 00:03: [mem 0xfec00000-0xfec00fff] could not be reserved
Jun 12 11:38:42 rosebriar kernel: system 00:03: [mem 0xfec01000-0xfec01fff] could not be reserved
Jun 12 11:38:42 rosebriar kernel: system 00:03: [mem 0xfedc0000-0xfedc0fff] has been reserved
Jun 12 11:38:42 rosebriar kernel: system 00:03: [mem 0xfee00000-0xfee00fff] has been reserved
Jun 12 11:38:42 rosebriar kernel: system 00:03: [mem 0xfed80000-0xfed8ffff] could not be reserved
Jun 12 11:38:42 rosebriar kernel: system 00:03: [mem 0xfec10000-0xfec10fff] has been reserved
Jun 12 11:38:42 rosebriar kernel: system 00:03: [mem 0xff000000-0xffffffff] has been reserved
Jun 12 11:38:42 rosebriar kernel: pnp: PnP ACPI: found 4 devices
Jun 12 11:38:42 rosebriar kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Jun 12 11:38:42 rosebriar kernel: NET: Registered PF_INET protocol family
Jun 12 11:38:42 rosebriar kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Jun 12 11:38:42 rosebriar kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
Jun 12 11:38:42 rosebriar kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Jun 12 11:38:42 rosebriar kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
Jun 12 11:38:42 rosebriar kernel: TCP: Hash tables configured (established 131072 bind 65536)
Jun 12 11:38:42 rosebriar kernel: MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
Jun 12 11:38:42 rosebriar kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
Jun 12 11:38:42 rosebriar kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
Jun 12 11:38:42 rosebriar kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Jun 12 11:38:42 rosebriar kernel: NET: Registered PF_XDP protocol family
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:02.2: PCI bridge to [bus 01]
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:02.2:   bridge window [io  0xf000-0xffff]
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:02.2:   bridge window [mem 0xfcf00000-0xfcffffff]
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:02.4: PCI bridge to [bus 02]
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:02.4:   bridge window [mem 0xfce00000-0xfcefffff]
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:08.1: PCI bridge to [bus 03]
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:08.1:   bridge window [io  0xe000-0xefff]
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:08.1:   bridge window [mem 0xfca00000-0xfcdfffff]
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:08.1:   bridge window [mem 0xd0000000-0xe01fffff 64bit pref]
Jun 12 11:38:42 rosebriar kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
Jun 12 11:38:42 rosebriar kernel: pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
Jun 12 11:38:42 rosebriar kernel: pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
Jun 12 11:38:42 rosebriar kernel: pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
Jun 12 11:38:42 rosebriar kernel: pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
Jun 12 11:38:42 rosebriar kernel: pci_bus 0000:00: resource 9 [mem 0xc0000000-0xfebfffff window]
Jun 12 11:38:42 rosebriar kernel: pci_bus 0000:00: resource 10 [mem 0xfee00000-0xffffffff window]
Jun 12 11:38:42 rosebriar kernel: pci_bus 0000:01: resource 0 [io  0xf000-0xffff]
Jun 12 11:38:42 rosebriar kernel: pci_bus 0000:01: resource 1 [mem 0xfcf00000-0xfcffffff]
Jun 12 11:38:42 rosebriar kernel: pci_bus 0000:02: resource 1 [mem 0xfce00000-0xfcefffff]
Jun 12 11:38:42 rosebriar kernel: pci_bus 0000:03: resource 0 [io  0xe000-0xefff]
Jun 12 11:38:42 rosebriar kernel: pci_bus 0000:03: resource 1 [mem 0xfca00000-0xfcdfffff]
Jun 12 11:38:42 rosebriar kernel: pci_bus 0000:03: resource 2 [mem 0xd0000000-0xe01fffff 64bit pref]
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.1: D0 power state depends on 0000:03:00.0
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.3: extending delay after power-on from D3hot to 20 msec
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.4: extending delay after power-on from D3hot to 20 msec
Jun 12 11:38:42 rosebriar kernel: PCI: CLS 64 bytes, default 64
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:00.2: can't derive routing for PCI INT A
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:00.2: PCI INT A: not connected
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:01.0: Adding to iommu group 0
Jun 12 11:38:42 rosebriar kernel: Trying to unpack rootfs image as initramfs...
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:02.0: Adding to iommu group 1
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:02.2: Adding to iommu group 2
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:02.4: Adding to iommu group 3
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:08.0: Adding to iommu group 4
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:08.1: Adding to iommu group 5
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:14.0: Adding to iommu group 6
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:14.3: Adding to iommu group 6
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:18.0: Adding to iommu group 7
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:18.1: Adding to iommu group 7
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:18.2: Adding to iommu group 7
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:18.3: Adding to iommu group 7
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:18.4: Adding to iommu group 7
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:18.5: Adding to iommu group 7
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:18.6: Adding to iommu group 7
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:18.7: Adding to iommu group 7
Jun 12 11:38:42 rosebriar kernel: pci 0000:01:00.0: Adding to iommu group 8
Jun 12 11:38:42 rosebriar kernel: pci 0000:02:00.0: Adding to iommu group 9
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.0: Adding to iommu group 10
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.1: Adding to iommu group 11
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.2: Adding to iommu group 12
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.3: Adding to iommu group 13
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.4: Adding to iommu group 14
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.5: Adding to iommu group 15
Jun 12 11:38:42 rosebriar kernel: pci 0000:03:00.6: Adding to iommu group 16
Jun 12 11:38:42 rosebriar kernel: pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
Jun 12 11:38:42 rosebriar kernel: AMD-Vi: Extended features (0x206d73ef22254ade): PPR X2APIC NX GT IA GA PC GA_vAPIC
Jun 12 11:38:42 rosebriar kernel: AMD-Vi: Interrupt remapping enabled
Jun 12 11:38:42 rosebriar kernel: AMD-Vi: Virtual APIC enabled
Jun 12 11:38:42 rosebriar kernel: AMD-Vi: X2APIC enabled
Jun 12 11:38:42 rosebriar kernel: Freeing initrd memory: 9668K
Jun 12 11:38:42 rosebriar kernel: software IO TLB: tearing down default memory pool
Jun 12 11:38:42 rosebriar kernel: LVT offset 0 assigned for vector 0x400
Jun 12 11:38:42 rosebriar kernel: perf: AMD IBS detected (0x000003ff)
Jun 12 11:38:42 rosebriar kernel: perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
Jun 12 11:38:42 rosebriar kernel: Initialise system trusted keyrings
Jun 12 11:38:42 rosebriar kernel: Key type blacklist registered
Jun 12 11:38:42 rosebriar kernel: workingset: timestamp_bits=41 max_order=22 bucket_order=0
Jun 12 11:38:42 rosebriar kernel: zbud: loaded
Jun 12 11:38:42 rosebriar kernel: Key type asymmetric registered
Jun 12 11:38:42 rosebriar kernel: Asymmetric key parser 'x509' registered
Jun 12 11:38:42 rosebriar kernel: alg: self-tests for CTR-KDF (hmac(sha256)) passed
Jun 12 11:38:42 rosebriar kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
Jun 12 11:38:42 rosebriar kernel: io scheduler mq-deadline registered
Jun 12 11:38:42 rosebriar kernel: io scheduler kyber registered
Jun 12 11:38:42 rosebriar kernel: io scheduler bfq registered
Jun 12 11:38:42 rosebriar kernel: pcieport 0000:00:02.2: PME: Signaling with IRQ 26
Jun 12 11:38:42 rosebriar kernel: pcieport 0000:00:02.4: PME: Signaling with IRQ 27
Jun 12 11:38:42 rosebriar kernel: pcieport 0000:00:08.1: PME: Signaling with IRQ 28
Jun 12 11:38:42 rosebriar kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jun 12 11:38:42 rosebriar kernel: ACPI: AC: AC Adapter [ACAD] (on-line)
Jun 12 11:38:42 rosebriar kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Jun 12 11:38:42 rosebriar kernel: ACPI: button: Power Button [PWRB]
Jun 12 11:38:42 rosebriar kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
Jun 12 11:38:42 rosebriar kernel: ACPI: button: Lid Switch [LID]
Jun 12 11:38:42 rosebriar kernel: smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1676
Jun 12 11:38:42 rosebriar kernel: Monitor-Mwait will be used to enter C-1 state
Jun 12 11:38:42 rosebriar kernel: ACPI: \_SB_.PLTF.P000: Found 3 idle states
Jun 12 11:38:42 rosebriar kernel: ACPI: \_SB_.PLTF.P001: Found 3 idle states
Jun 12 11:38:42 rosebriar kernel: ACPI: \_SB_.PLTF.P002: Found 3 idle states
Jun 12 11:38:42 rosebriar kernel: ACPI: \_SB_.PLTF.P003: Found 3 idle states
Jun 12 11:38:42 rosebriar kernel: ACPI: \_SB_.PLTF.P004: Found 3 idle states
Jun 12 11:38:42 rosebriar kernel: ACPI: \_SB_.PLTF.P005: Found 3 idle states
Jun 12 11:38:42 rosebriar kernel: ACPI: \_SB_.PLTF.P006: Found 3 idle states
Jun 12 11:38:42 rosebriar kernel: ACPI: \_SB_.PLTF.P007: Found 3 idle states
Jun 12 11:38:42 rosebriar kernel: ACPI: \_SB_.PLTF.P008: Found 3 idle states
Jun 12 11:38:42 rosebriar kernel: ACPI: \_SB_.PLTF.P009: Found 3 idle states
Jun 12 11:38:42 rosebriar kernel: ACPI: \_SB_.PLTF.P00A: Found 3 idle states
Jun 12 11:38:42 rosebriar kernel: ACPI: \_SB_.PLTF.P00B: Found 3 idle states
Jun 12 11:38:42 rosebriar kernel: ACPI: \_SB_.PLTF.P00C: Found 3 idle states
Jun 12 11:38:42 rosebriar kernel: ACPI: \_SB_.PLTF.P00D: Found 3 idle states
Jun 12 11:38:42 rosebriar kernel: ACPI: \_SB_.PLTF.P00E: Found 3 idle states
Jun 12 11:38:42 rosebriar kernel: ACPI: \_SB_.PLTF.P00F: Found 3 idle states
Jun 12 11:38:42 rosebriar kernel: ACPI: \_TZ_.THRM: Invalid passive threshold
Jun 12 11:38:42 rosebriar kernel: thermal LNXTHERM:00: registered as thermal_zone0
Jun 12 11:38:42 rosebriar kernel: ACPI: thermal: Thermal Zone [THRM] (38 C)
Jun 12 11:38:42 rosebriar kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Jun 12 11:38:42 rosebriar kernel: Non-volatile memory driver v1.3
Jun 12 11:38:42 rosebriar kernel: Linux agpgart interface v0.103
Jun 12 11:38:42 rosebriar kernel: AMD-Vi: AMD IOMMUv2 loaded and initialized
Jun 12 11:38:42 rosebriar kernel: ACPI: bus type drm_connector registered
Jun 12 11:38:42 rosebriar kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jun 12 11:38:42 rosebriar kernel: ehci-pci: EHCI PCI platform driver
Jun 12 11:38:42 rosebriar kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jun 12 11:38:42 rosebriar kernel: ohci-pci: OHCI PCI platform driver
Jun 12 11:38:42 rosebriar kernel: uhci_hcd: USB Universal Host Controller Interface driver
Jun 12 11:38:42 rosebriar kernel: usbcore: registered new interface driver usbserial_generic
Jun 12 11:38:42 rosebriar kernel: usbserial: USB Serial support registered for generic
Jun 12 11:38:42 rosebriar kernel: rtc_cmos 00:01: RTC can wake from S4
Jun 12 11:38:42 rosebriar kernel: rtc_cmos 00:01: registered as rtc0
Jun 12 11:38:42 rosebriar kernel: rtc_cmos 00:01: setting system clock to 2022-06-12T18:38:41 UTC (1655059121)
Jun 12 11:38:42 rosebriar kernel: rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Jun 12 11:38:42 rosebriar kernel: ledtrig-cpu: registered to indicate activity on CPUs
Jun 12 11:38:42 rosebriar kernel: efifb: probing for efifb
Jun 12 11:38:42 rosebriar kernel: efifb: framebuffer at 0xd0000000, using 3072k, total 3072k
Jun 12 11:38:42 rosebriar kernel: efifb: mode is 1024x768x32, linelength=4096, pages=1
Jun 12 11:38:42 rosebriar kernel: efifb: scrolling: redraw
Jun 12 11:38:42 rosebriar kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Jun 12 11:38:42 rosebriar kernel: Console: switching to colour frame buffer device 128x48
Jun 12 11:38:42 rosebriar kernel: fb0: EFI VGA frame buffer device
Jun 12 11:38:42 rosebriar kernel: hid: raw HID events driver (C) Jiri Kosina
Jun 12 11:38:42 rosebriar kernel: drop_monitor: Initializing network drop monitor service
Jun 12 11:38:42 rosebriar kernel: ACPI: battery: Slot [BAT0] (battery present)
Jun 12 11:38:42 rosebriar kernel: Initializing XFRM netlink socket
Jun 12 11:38:42 rosebriar kernel: NET: Registered PF_INET6 protocol family
Jun 12 11:38:42 rosebriar kernel: Segment Routing with IPv6
Jun 12 11:38:42 rosebriar kernel: RPL Segment Routing with IPv6
Jun 12 11:38:42 rosebriar kernel: In-situ OAM (IOAM) with IPv6
Jun 12 11:38:42 rosebriar kernel: NET: Registered PF_PACKET protocol family
Jun 12 11:38:42 rosebriar kernel: microcode: CPU0: patch_level=0x0a50000c
Jun 12 11:38:42 rosebriar kernel: microcode: CPU1: patch_level=0x0a50000c
Jun 12 11:38:42 rosebriar kernel: microcode: CPU2: patch_level=0x0a50000c
Jun 12 11:38:42 rosebriar kernel: microcode: CPU3: patch_level=0x0a50000c
Jun 12 11:38:42 rosebriar kernel: microcode: CPU4: patch_level=0x0a50000c
Jun 12 11:38:42 rosebriar kernel: microcode: CPU5: patch_level=0x0a50000c
Jun 12 11:38:42 rosebriar kernel: microcode: CPU6: patch_level=0x0a50000c
Jun 12 11:38:42 rosebriar kernel: microcode: CPU7: patch_level=0x0a50000c
Jun 12 11:38:42 rosebriar kernel: microcode: CPU8: patch_level=0x0a50000c
Jun 12 11:38:42 rosebriar kernel: microcode: CPU9: patch_level=0x0a50000c
Jun 12 11:38:42 rosebriar kernel: microcode: CPU10: patch_level=0x0a50000c
Jun 12 11:38:42 rosebriar kernel: microcode: CPU11: patch_level=0x0a50000c
Jun 12 11:38:42 rosebriar kernel: microcode: CPU12: patch_level=0x0a50000c
Jun 12 11:38:42 rosebriar kernel: microcode: CPU13: patch_level=0x0a50000c
Jun 12 11:38:42 rosebriar kernel: microcode: CPU14: patch_level=0x0a50000c
Jun 12 11:38:42 rosebriar kernel: microcode: CPU15: patch_level=0x0a50000c
Jun 12 11:38:42 rosebriar kernel: microcode: Microcode Update Driver: v2.2.
Jun 12 11:38:42 rosebriar kernel: resctrl: L3 allocation detected
Jun 12 11:38:42 rosebriar kernel: resctrl: MB allocation detected
Jun 12 11:38:42 rosebriar kernel: resctrl: L3 monitoring detected
Jun 12 11:38:42 rosebriar kernel: IPI shorthand broadcast: enabled
Jun 12 11:38:42 rosebriar kernel: sched_clock: Marking stable (430180522, 306121)->(435458955, -4972312)
Jun 12 11:38:42 rosebriar kernel: registered taskstats version 1
Jun 12 11:38:42 rosebriar kernel: Loading compiled-in X.509 certificates
Jun 12 11:38:42 rosebriar kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 3ea4598ecdd89036e1d033f6f5f12a6ca8e920af'
Jun 12 11:38:42 rosebriar kernel: zswap: loaded using pool lz4/z3fold
Jun 12 11:38:42 rosebriar kernel: Key type ._fscrypt registered
Jun 12 11:38:42 rosebriar kernel: Key type .fscrypt registered
Jun 12 11:38:42 rosebriar kernel: Key type fscrypt-provisioning registered
Jun 12 11:38:42 rosebriar kernel: PM:   Magic number: 10:392:645
Jun 12 11:38:42 rosebriar kernel: RAS: Correctable Errors collector initialized.
Jun 12 11:38:42 rosebriar kernel: Freeing unused decrypted memory: 2036K
Jun 12 11:38:42 rosebriar kernel: Freeing unused kernel image (initmem) memory: 1852K
Jun 12 11:38:42 rosebriar kernel: Write protecting the kernel read-only data: 28672k
Jun 12 11:38:42 rosebriar kernel: Freeing unused kernel image (text/rodata gap) memory: 2040K
Jun 12 11:38:42 rosebriar kernel: Freeing unused kernel image (rodata/data gap) memory: 1308K
Jun 12 11:38:42 rosebriar kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jun 12 11:38:42 rosebriar kernel: rodata_test: all tests were successful
Jun 12 11:38:42 rosebriar kernel: Run /init as init process
Jun 12 11:38:42 rosebriar kernel:   with arguments:
Jun 12 11:38:42 rosebriar kernel:     /init
Jun 12 11:38:42 rosebriar kernel:   with environment:
Jun 12 11:38:42 rosebriar kernel:     HOME=/
Jun 12 11:38:42 rosebriar kernel:     TERM=linux
Jun 12 11:38:42 rosebriar kernel: raid6: skipped pq benchmark and selected avx2x4
Jun 12 11:38:42 rosebriar kernel: raid6: using avx2x2 recovery algorithm
Jun 12 11:38:42 rosebriar kernel: xor: automatically using best checksumming function   avx       
Jun 12 11:38:42 rosebriar kernel: Btrfs loaded, crc32c=crc32c-intel, zoned=yes, fsverity=yes
Jun 12 11:38:42 rosebriar kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
Jun 12 11:38:42 rosebriar kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
Jun 12 11:38:42 rosebriar kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Jun 12 11:38:42 rosebriar kernel: xhci_hcd 0000:03:00.3: xHCI Host Controller
Jun 12 11:38:42 rosebriar kernel: xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 1
Jun 12 11:38:42 rosebriar kernel: xhci_hcd 0000:03:00.3: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000410
Jun 12 11:38:42 rosebriar kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.18
Jun 12 11:38:42 rosebriar kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 12 11:38:42 rosebriar kernel: usb usb1: Product: xHCI Host Controller
Jun 12 11:38:42 rosebriar kernel: usb usb1: Manufacturer: Linux 5.18.2-arch1-1 xhci-hcd
Jun 12 11:38:42 rosebriar kernel: usb usb1: SerialNumber: 0000:03:00.3
Jun 12 11:38:42 rosebriar kernel: hub 1-0:1.0: USB hub found
Jun 12 11:38:42 rosebriar kernel: hub 1-0:1.0: 4 ports detected
Jun 12 11:38:42 rosebriar kernel: xhci_hcd 0000:03:00.3: xHCI Host Controller
Jun 12 11:38:42 rosebriar kernel: xhci_hcd 0000:03:00.3: new USB bus registered, assigned bus number 2
Jun 12 11:38:42 rosebriar kernel: xhci_hcd 0000:03:00.3: Host supports USB 3.1 Enhanced SuperSpeed
Jun 12 11:38:42 rosebriar kernel: usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
Jun 12 11:38:42 rosebriar kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.18
Jun 12 11:38:42 rosebriar kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 12 11:38:42 rosebriar kernel: usb usb2: Product: xHCI Host Controller
Jun 12 11:38:42 rosebriar kernel: usb usb2: Manufacturer: Linux 5.18.2-arch1-1 xhci-hcd
Jun 12 11:38:42 rosebriar kernel: usb usb2: SerialNumber: 0000:03:00.3
Jun 12 11:38:42 rosebriar kernel: hub 2-0:1.0: USB hub found
Jun 12 11:38:42 rosebriar kernel: hub 2-0:1.0: 2 ports detected
Jun 12 11:38:42 rosebriar kernel: xhci_hcd 0000:03:00.4: xHCI Host Controller
Jun 12 11:38:42 rosebriar kernel: xhci_hcd 0000:03:00.4: new USB bus registered, assigned bus number 3
Jun 12 11:38:42 rosebriar kernel: xhci_hcd 0000:03:00.4: hcc params 0x0268ffe5 hci version 0x110 quirks 0x0000020000000410
Jun 12 11:38:42 rosebriar kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.18
Jun 12 11:38:42 rosebriar kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 12 11:38:42 rosebriar kernel: usb usb3: Product: xHCI Host Controller
Jun 12 11:38:42 rosebriar kernel: usb usb3: Manufacturer: Linux 5.18.2-arch1-1 xhci-hcd
Jun 12 11:38:42 rosebriar kernel: usb usb3: SerialNumber: 0000:03:00.4
Jun 12 11:38:42 rosebriar kernel: hub 3-0:1.0: USB hub found
Jun 12 11:38:42 rosebriar kernel: hub 3-0:1.0: 4 ports detected
Jun 12 11:38:42 rosebriar kernel: xhci_hcd 0000:03:00.4: xHCI Host Controller
Jun 12 11:38:42 rosebriar kernel: xhci_hcd 0000:03:00.4: new USB bus registered, assigned bus number 4
Jun 12 11:38:42 rosebriar kernel: xhci_hcd 0000:03:00.4: Host supports USB 3.1 Enhanced SuperSpeed
Jun 12 11:38:42 rosebriar kernel: usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
Jun 12 11:38:42 rosebriar kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.18
Jun 12 11:38:42 rosebriar kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 12 11:38:42 rosebriar kernel: usb usb4: Product: xHCI Host Controller
Jun 12 11:38:42 rosebriar kernel: usb usb4: Manufacturer: Linux 5.18.2-arch1-1 xhci-hcd
Jun 12 11:38:42 rosebriar kernel: usb usb4: SerialNumber: 0000:03:00.4
Jun 12 11:38:42 rosebriar kernel: hub 4-0:1.0: USB hub found
Jun 12 11:38:42 rosebriar kernel: hub 4-0:1.0: 2 ports detected
Jun 12 11:38:42 rosebriar kernel: nvme 0000:02:00.0: platform quirk: setting simple suspend
Jun 12 11:38:42 rosebriar kernel: nvme nvme0: pci function 0000:02:00.0
Jun 12 11:38:42 rosebriar kernel: nvme nvme0: allocated 32 MiB host memory buffer.
Jun 12 11:38:42 rosebriar kernel: nvme nvme0: 16/0/0 default/read/poll queues
Jun 12 11:38:42 rosebriar kernel:  nvme0n1: p1 p2
Jun 12 11:38:42 rosebriar kernel: BTRFS: device fsid 9c1274d6-1e18-4bd7-97ec-5a79367cc53d devid 1 transid 414 /dev/nvme0n1p2 scanned by systemd-udevd (243)
Jun 12 11:38:42 rosebriar kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
Jun 12 11:38:42 rosebriar kernel: BTRFS info (device nvme0n1p2): flagging fs with big metadata feature
Jun 12 11:38:42 rosebriar kernel: BTRFS info (device nvme0n1p2): using free space tree
Jun 12 11:38:42 rosebriar kernel: BTRFS info (device nvme0n1p2): has skinny extents
Jun 12 11:38:42 rosebriar kernel: BTRFS info (device nvme0n1p2): enabling ssd optimizations
Jun 12 11:38:42 rosebriar kernel: usb 1-3: new high-speed USB device number 2 using xhci_hcd
Jun 12 11:38:42 rosebriar systemd[1]: Successfully credited entropy passed from boot loader.
Jun 12 11:38:42 rosebriar systemd[1]: systemd 251.2-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)
Jun 12 11:38:42 rosebriar systemd[1]: Detected architecture x86-64.
Jun 12 11:38:42 rosebriar systemd[1]: Hostname set to <rosebriar>.
Jun 12 11:38:42 rosebriar systemd-fstab-generator[306]: Mount point  is not a valid path, ignoring.
Jun 12 11:38:42 rosebriar systemd-fstab-generator[306]: Mount point  is not a valid path, ignoring.
Jun 12 11:38:42 rosebriar systemd-fstab-generator[306]: Mount point  is not a valid path, ignoring.
Jun 12 11:38:42 rosebriar systemd-fstab-generator[306]: Mount point  is not a valid path, ignoring.
Jun 12 11:38:42 rosebriar systemd-fstab-generator[306]: Mount point  is not a valid path, ignoring.
Jun 12 11:38:42 rosebriar systemd-fstab-generator[306]: Mount point  is not a valid path, ignoring.
Jun 12 11:38:42 rosebriar kernel: zram: Added device: zram0
Jun 12 11:38:42 rosebriar systemd[1]: Queued start job for default target Graphical Interface.
Jun 12 11:38:42 rosebriar systemd[1]: Created slice Slice /system/getty.
Jun 12 11:38:42 rosebriar systemd[1]: Created slice Slice /system/modprobe.
Jun 12 11:38:42 rosebriar systemd[1]: Created slice Slice /system/systemd-fsck.
Jun 12 11:38:42 rosebriar systemd[1]: Created slice Slice /system/systemd-zram-setup.
Jun 12 11:38:42 rosebriar systemd[1]: Created slice User and Session Slice.
Jun 12 11:38:42 rosebriar systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Jun 12 11:38:42 rosebriar systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Jun 12 11:38:42 rosebriar systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Jun 12 11:38:42 rosebriar systemd[1]: Reached target Local Encrypted Volumes.
Jun 12 11:38:42 rosebriar systemd[1]: Reached target Login Prompts.
Jun 12 11:38:42 rosebriar systemd[1]: Reached target Local Integrity Protected Volumes.
Jun 12 11:38:42 rosebriar systemd[1]: Reached target Path Units.
Jun 12 11:38:42 rosebriar systemd[1]: Reached target Remote File Systems.
Jun 12 11:38:42 rosebriar systemd[1]: Reached target Slice Units.
Jun 12 11:38:42 rosebriar systemd[1]: Reached target Local Verity Protected Volumes.
Jun 12 11:38:42 rosebriar systemd[1]: Listening on Device-mapper event daemon FIFOs.
Jun 12 11:38:42 rosebriar systemd[1]: Listening on LVM2 poll daemon socket.
Jun 12 11:38:42 rosebriar systemd[1]: Listening on Process Core Dump Socket.
Jun 12 11:38:42 rosebriar systemd[1]: Listening on Journal Audit Socket.
Jun 12 11:38:42 rosebriar systemd[1]: Listening on Journal Socket (/dev/log).
Jun 12 11:38:42 rosebriar systemd[1]: Listening on Journal Socket.
Jun 12 11:38:42 rosebriar systemd[1]: Listening on udev Control Socket.
Jun 12 11:38:42 rosebriar systemd[1]: Listening on udev Kernel Socket.
Jun 12 11:38:42 rosebriar systemd[1]: Mounting Huge Pages File System...
Jun 12 11:38:42 rosebriar systemd[1]: Mounting POSIX Message Queue File System...
Jun 12 11:38:42 rosebriar systemd[1]: Mounting Kernel Debug File System...
Jun 12 11:38:42 rosebriar systemd[1]: Mounting Kernel Trace File System...
Jun 12 11:38:42 rosebriar systemd[1]: Starting Create List of Static Device Nodes...
Jun 12 11:38:42 rosebriar systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Jun 12 11:38:42 rosebriar systemd[1]: Starting Load Kernel Module configfs...
Jun 12 11:38:42 rosebriar systemd[1]: Starting Load Kernel Module drm...
Jun 12 11:38:42 rosebriar systemd[1]: Starting Load Kernel Module fuse...
Jun 12 11:38:42 rosebriar systemd[1]: Starting Journal Service...
Jun 12 11:38:42 rosebriar systemd[1]: Starting Load Kernel Modules...
Jun 12 11:38:42 rosebriar systemd[1]: Starting Remount Root and Kernel File Systems...
Jun 12 11:38:42 rosebriar systemd[1]: Repartition Root Disk was skipped because all trigger condition checks failed.
Jun 12 11:38:42 rosebriar systemd[1]: Starting Coldplug All udev Devices...
Jun 12 11:38:42 rosebriar systemd[1]: Mounted Huge Pages File System.
Jun 12 11:38:42 rosebriar systemd[1]: Mounted POSIX Message Queue File System.
Jun 12 11:38:42 rosebriar systemd[1]: Mounted Kernel Debug File System.
Jun 12 11:38:42 rosebriar systemd[1]: Mounted Kernel Trace File System.
Jun 12 11:38:42 rosebriar systemd[1]: Finished Create List of Static Device Nodes.
Jun 12 11:38:42 rosebriar systemd[1]: modprobe@configfs.service: Deactivated successfully.
Jun 12 11:38:42 rosebriar systemd[1]: Finished Load Kernel Module configfs.
Jun 12 11:38:42 rosebriar systemd[1]: modprobe@drm.service: Deactivated successfully.
Jun 12 11:38:42 rosebriar systemd[1]: Finished Load Kernel Module drm.
Jun 12 11:38:42 rosebriar systemd[1]: Mounting Kernel Configuration File System...
Jun 12 11:38:42 rosebriar kernel: fuse: init (API version 7.36)
Jun 12 11:38:42 rosebriar systemd[1]: modprobe@fuse.service: Deactivated successfully.
Jun 12 11:38:42 rosebriar systemd[1]: Finished Load Kernel Module fuse.
Jun 12 11:38:42 rosebriar kernel: audit: type=1130 audit(1655059122.069:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@fuse comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:42 rosebriar kernel: audit: type=1131 audit(1655059122.069:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@fuse comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:42 rosebriar systemd[1]: Mounted Kernel Configuration File System.
Jun 12 11:38:42 rosebriar systemd[1]: Mounting FUSE Control File System...
Jun 12 11:38:42 rosebriar systemd[1]: Mounted FUSE Control File System.
Jun 12 11:38:42 rosebriar kernel: Asymmetric key parser 'pkcs8' registered
Jun 12 11:38:42 rosebriar systemd[1]: Finished Load Kernel Modules.
Jun 12 11:38:42 rosebriar kernel: audit: type=1130 audit(1655059122.073:4): 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'
Jun 12 11:38:42 rosebriar systemd[1]: Starting Apply Kernel Variables...
Jun 12 11:38:42 rosebriar kernel: BTRFS info (device nvme0n1p2: state M): using free space tree
Jun 12 11:38:42 rosebriar systemd[1]: Finished Remount Root and Kernel File Systems.
Jun 12 11:38:42 rosebriar kernel: audit: type=1130 audit(1655059122.076:5): 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'
Jun 12 11:38:42 rosebriar systemd[1]: First Boot Wizard was skipped because of a failed condition check (ConditionFirstBoot=yes).
Jun 12 11:38:42 rosebriar systemd[1]: Rebuild Hardware Database was skipped because all trigger condition checks failed.
Jun 12 11:38:42 rosebriar systemd[1]: Starting Load/Save Random Seed...
Jun 12 11:38:42 rosebriar systemd[1]: Starting Create System Users...
Jun 12 11:38:42 rosebriar systemd[1]: Finished Apply Kernel Variables.
Jun 12 11:38:42 rosebriar kernel: audit: type=1130 audit(1655059122.076:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:42 rosebriar systemd[1]: Finished Load/Save Random Seed.
Jun 12 11:38:42 rosebriar kernel: audit: type=1130 audit(1655059122.079:7): 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'
Jun 12 11:38:42 rosebriar systemd[1]: First Boot Complete was skipped because of a failed condition check (ConditionFirstBoot=yes).
Jun 12 11:38:42 rosebriar systemd[1]: Finished Create System Users.
Jun 12 11:38:42 rosebriar kernel: audit: type=1130 audit(1655059122.083:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysusers comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:42 rosebriar systemd[1]: Starting Create Static Device Nodes in /dev...
Jun 12 11:38:42 rosebriar systemd-journald[330]: Journal started
Jun 12 11:38:42 rosebriar systemd-journald[330]: Runtime Journal (/run/log/journal/75309536420f4ec09356d0fd3ab10ddc) is 8.0M, max 770.1M, 762.1M free.
Jun 12 11:38:42 rosebriar 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'
Jun 12 11:38:42 rosebriar 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'
Jun 12 11:38:42 rosebriar 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'
Jun 12 11:38:42 rosebriar 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'
Jun 12 11:38:42 rosebriar 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'
Jun 12 11:38:42 rosebriar 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'
Jun 12 11:38:42 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysusers comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:42 rosebriar systemd-modules-load[331]: Inserted module 'crypto_user'
Jun 12 11:38:42 rosebriar systemd-modules-load[331]: Inserted module 'pkcs8_key_parser'
Jun 12 11:38:42 rosebriar 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'
Jun 12 11:38:42 rosebriar systemd[1]: Started Journal Service.
Jun 12 11:38:42 rosebriar kernel: audit: type=1130 audit(1655059122.089:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:42 rosebriar systemd[1]: Finished Create Static Device Nodes in /dev.
Jun 12 11:38:42 rosebriar 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'
Jun 12 11:38:42 rosebriar audit: BPF prog-id=9 op=LOAD
Jun 12 11:38:42 rosebriar audit: BPF prog-id=10 op=LOAD
Jun 12 11:38:42 rosebriar audit: BPF prog-id=11 op=LOAD
Jun 12 11:38:42 rosebriar systemd[1]: Starting Rule-based Manager for Device Events and Files...
Jun 12 11:38:42 rosebriar kernel: audit: type=1130 audit(1655059122.093:10): 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'
Jun 12 11:38:42 rosebriar systemd-udevd[343]: Using default interface naming scheme 'v251'.
Jun 12 11:38:42 rosebriar systemd-udevd[343]: Configuration file /usr/lib/udev/rules.d/77-mm-fibocom-port-types.rules is marked executable. Please remove executable permission bits. Proceeding anyway.
Jun 12 11:38:42 rosebriar systemd[1]: Started Rule-based Manager for Device Events and Files.
Jun 12 11:38:42 rosebriar 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'
Jun 12 11:38:42 rosebriar systemd[1]: Found device /dev/zram0.
Jun 12 11:38:42 rosebriar systemd[1]: Created slice Slice /system/udisks2-zram-setup.
Jun 12 11:38:42 rosebriar systemd[1]: First Boot Wizard was skipped because of a failed condition check (ConditionFirstBoot=yes).
Jun 12 11:38:42 rosebriar systemd[1]: First Boot Complete was skipped because of a failed condition check (ConditionFirstBoot=yes).
Jun 12 11:38:42 rosebriar systemd[1]: Rebuild Hardware Database was skipped because all trigger condition checks failed.
Jun 12 11:38:42 rosebriar systemd[1]: Repartition Root Disk was skipped because all trigger condition checks failed.
Jun 12 11:38:42 rosebriar systemd[1]: Starting Create swap on /dev/zram0...
Jun 12 11:38:42 rosebriar systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Jun 12 11:38:42 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lvm2-monitor comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:42 rosebriar systemd[1]: Reached target Preparation for Local File Systems.
Jun 12 11:38:42 rosebriar systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of a failed condition check (ConditionPathExists=/var/lib/machines.raw).
Jun 12 11:38:42 rosebriar kernel: zram0: detected capacity change from 0 to 8388608
Jun 12 11:38:42 rosebriar zram-generator[384]: Setting up swapspace version 1, size = 4 GiB (4294963200 bytes)
Jun 12 11:38:42 rosebriar zram-generator[384]: LABEL=zram0, UUID=e172d161-0084-495a-9aaa-61a7d7917ee8
Jun 12 11:38:42 rosebriar systemd-makefs[383]: /dev/zram0 successfully formatted as swap (label "zram0", uuid e172d161-0084-495a-9aaa-61a7d7917ee8)
Jun 12 11:38:42 rosebriar systemd[1]: Finished Create swap on /dev/zram0.
Jun 12 11:38:42 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-zram-setup@zram0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:42 rosebriar systemd[1]: Activating swap Compressed Swap on /dev/zram0...
Jun 12 11:38:42 rosebriar kernel: usb 1-3: New USB device found, idVendor=04f2, idProduct=b760, bcdDevice= 0.04
Jun 12 11:38:42 rosebriar kernel: usb 1-3: New USB device strings: Mfr=3, Product=1, SerialNumber=2
Jun 12 11:38:42 rosebriar kernel: usb 1-3: Product: HP Wide Vision HD Camera
Jun 12 11:38:42 rosebriar kernel: usb 1-3: Manufacturer: Chicony Electronics Co.,Ltd.
Jun 12 11:38:42 rosebriar kernel: usb 1-3: SerialNumber: 0001
Jun 12 11:38:42 rosebriar systemd[1]: Activated swap Compressed Swap on /dev/zram0.
Jun 12 11:38:42 rosebriar systemd[1]: Reached target Swaps.
Jun 12 11:38:42 rosebriar systemd[1]: Mounting Temporary Directory /tmp...
Jun 12 11:38:42 rosebriar kernel: Adding 4194300k swap on /dev/zram0.  Priority:100 extents:1 across:4194300k SSDscFS
Jun 12 11:38:42 rosebriar systemd[1]: Mounted Temporary Directory /tmp.
Jun 12 11:38:42 rosebriar kernel: input: Wireless hotkeys as /devices/virtual/input/input3
Jun 12 11:38:42 rosebriar kernel: acpi-tad ACPI000E:00: Missing _PRW
Jun 12 11:38:42 rosebriar systemd[1]: Finished Coldplug All udev Devices.
Jun 12 11:38:42 rosebriar 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'
Jun 12 11:38:42 rosebriar kernel: ACPI: video: Video Device [VGA] (multi-head: yes  rom: no  post: no)
Jun 12 11:38:42 rosebriar kernel: acpi device:0f: registered as cooling_device16
Jun 12 11:38:42 rosebriar kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0e/LNXVIDEO:00/input/input4
Jun 12 11:38:42 rosebriar kernel: acpi PNP0C14:01: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
Jun 12 11:38:42 rosebriar kernel: piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
Jun 12 11:38:42 rosebriar kernel: piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
Jun 12 11:38:42 rosebriar kernel: piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
Jun 12 11:38:42 rosebriar kernel: input: PC Speaker as /devices/platform/pcspkr/input/input5
Jun 12 11:38:42 rosebriar systemd[1]: Found device WDC PC SN530 SDBPNPZ-512G-1006 primary.
Jun 12 11:38:42 rosebriar systemd[1]: Starting File System Check on /dev/disk/by-uuid/AADB-38EF...
Jun 12 11:38:42 rosebriar systemd-fsck[417]: fsck.fat 4.2 (2021-01-31)
Jun 12 11:38:42 rosebriar systemd-fsck[417]: /dev/nvme0n1p1: 16 files, 13781/130556 clusters
Jun 12 11:38:42 rosebriar kernel: RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer
Jun 12 11:38:42 rosebriar kernel: RAPL PMU: hw unit of domain package 2^-16 Joules
Jun 12 11:38:42 rosebriar systemd[1]: Found device WDC PC SN530 SDBPNPZ-512G-1006 primary.
Jun 12 11:38:42 rosebriar systemd[1]: Finished File System Check on /dev/disk/by-uuid/AADB-38EF.
Jun 12 11:38:42 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2duuid-AADB\x2d38EF comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:42 rosebriar kernel: cryptd: max_cpu_qlen set to 1000
Jun 12 11:38:42 rosebriar kernel: usb 1-4: new full-speed USB device number 3 using xhci_hcd
Jun 12 11:38:42 rosebriar kernel: AVX2 version of gcm_enc/dec engaged.
Jun 12 11:38:42 rosebriar kernel: AES CTR mode by8 optimization enabled
Jun 12 11:38:42 rosebriar kernel: input: ELAN2514:00 04F3:2C3F Touchscreen as /devices/platform/AMDI0010:00/i2c-0/i2c-ELAN2514:00/0018:04F3:2C3F.0001/input/input6
Jun 12 11:38:42 rosebriar kernel: input: ELAN2514:00 04F3:2C3F as /devices/platform/AMDI0010:00/i2c-0/i2c-ELAN2514:00/0018:04F3:2C3F.0001/input/input7
Jun 12 11:38:42 rosebriar kernel: input: ELAN2514:00 04F3:2C3F as /devices/platform/AMDI0010:00/i2c-0/i2c-ELAN2514:00/0018:04F3:2C3F.0001/input/input8
Jun 12 11:38:42 rosebriar kernel: hid-generic 0018:04F3:2C3F.0001: input,hidraw0: I2C HID v1.00 Device [ELAN2514:00 04F3:2C3F] on i2c-ELAN2514:00
Jun 12 11:38:42 rosebriar kernel: input: SYNA32C1:00 06CB:CE17 Mouse as /devices/platform/AMDI0010:03/i2c-1/i2c-SYNA32C1:00/0018:06CB:CE17.0002/input/input10
Jun 12 11:38:42 rosebriar kernel: input: SYNA32C1:00 06CB:CE17 Touchpad as /devices/platform/AMDI0010:03/i2c-1/i2c-SYNA32C1:00/0018:06CB:CE17.0002/input/input11
Jun 12 11:38:42 rosebriar kernel: hid-generic 0018:06CB:CE17.0002: input,hidraw1: I2C HID v1.00 Mouse [SYNA32C1:00 06CB:CE17] on i2c-SYNA32C1:00
Jun 12 11:38:42 rosebriar kernel: sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
Jun 12 11:38:42 rosebriar kernel: sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
Jun 12 11:38:42 rosebriar kernel: sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
Jun 12 11:38:42 rosebriar kernel: tsc: Refined TSC clocksource calibration: 1996.250 MHz
Jun 12 11:38:42 rosebriar kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x398caf77d7a, max_idle_ns: 881590459467 ns
Jun 12 11:38:42 rosebriar kernel: clocksource: Switched to clocksource tsc
Jun 12 11:38:42 rosebriar kernel: usb 1-4: New USB device found, idVendor=0bda, idProduct=b85c, bcdDevice= 0.00
Jun 12 11:38:42 rosebriar kernel: usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun 12 11:38:42 rosebriar kernel: usb 1-4: Product: Bluetooth Radio
Jun 12 11:38:42 rosebriar kernel: usb 1-4: Manufacturer: Realtek
Jun 12 11:38:42 rosebriar kernel: usb 1-4: SerialNumber: 00e04c000001
Jun 12 11:38:42 rosebriar mtp-probe[443]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:08.1/0000:03:00.3/usb1/1-3"
Jun 12 11:38:42 rosebriar mtp-probe[443]: bus: 1, device: 2 was not an MTP device
Jun 12 11:38:42 rosebriar kernel: mc: Linux media interface: v0.10
Jun 12 11:38:42 rosebriar kernel: videodev: Linux video capture interface: v2.00
Jun 12 11:38:42 rosebriar kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Jun 12 11:38:42 rosebriar kernel: cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Jun 12 11:38:42 rosebriar kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
Jun 12 11:38:42 rosebriar kernel: cfg80211: failed to load regulatory.db
Jun 12 11:38:42 rosebriar systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Jun 12 11:38:42 rosebriar kernel: ACPI BIOS Error (bug): AE_AML_BUFFER_LIMIT, Field [D008] at bit offset/length 128/8 exceeds size of target Buffer (128 bits) (20211217/dsopcode-198)
Jun 12 11:38:42 rosebriar kernel: ACPI Error: Aborting method \HWMC due to previous error (AE_AML_BUFFER_LIMIT) (20211217/psparse-529)
Jun 12 11:38:42 rosebriar kernel: ACPI Error: Aborting method \_SB.WMID.WMAA due to previous error (AE_AML_BUFFER_LIMIT) (20211217/psparse-529)
Jun 12 11:38:42 rosebriar kernel: ACPI BIOS Error (bug): AE_AML_BUFFER_LIMIT, Field [D008] at bit offset/length 128/8 exceeds size of target Buffer (128 bits) (20211217/dsopcode-198)
Jun 12 11:38:42 rosebriar kernel: ACPI Error: Aborting method \HWMC due to previous error (AE_AML_BUFFER_LIMIT) (20211217/psparse-529)
Jun 12 11:38:42 rosebriar kernel: ACPI Error: Aborting method \_SB.WMID.WMAA due to previous error (AE_AML_BUFFER_LIMIT) (20211217/psparse-529)
Jun 12 11:38:42 rosebriar kernel: input: HP WMI hotkeys as /devices/virtual/input/input13
Jun 12 11:38:42 rosebriar kernel: ACPI BIOS Error (bug): AE_AML_BUFFER_LIMIT, Field [D008] at bit offset/length 128/8 exceeds size of target Buffer (128 bits) (20211217/dsopcode-198)
Jun 12 11:38:42 rosebriar kernel: ACPI Error: Aborting method \HWMC due to previous error (AE_AML_BUFFER_LIMIT) (20211217/psparse-529)
Jun 12 11:38:42 rosebriar kernel: ACPI Error: Aborting method \_SB.WMID.WMAA due to previous error (AE_AML_BUFFER_LIMIT) (20211217/psparse-529)
Jun 12 11:38:42 rosebriar kernel: ACPI BIOS Error (bug): AE_AML_BUFFER_LIMIT, Field [D008] at bit offset/length 128/8 exceeds size of target Buffer (128 bits) (20211217/dsopcode-198)
Jun 12 11:38:42 rosebriar kernel: ACPI Error: Aborting method \HWMC due to previous error (AE_AML_BUFFER_LIMIT) (20211217/psparse-529)
Jun 12 11:38:42 rosebriar kernel: ACPI Error: Aborting method \_SB.WMID.WMAA due to previous error (AE_AML_BUFFER_LIMIT) (20211217/psparse-529)
Jun 12 11:38:42 rosebriar kernel: ACPI BIOS Error (bug): AE_AML_BUFFER_LIMIT, Field [D009] at bit offset/length 136/8 exceeds size of target Buffer (136 bits) (20211217/dsopcode-198)
Jun 12 11:38:42 rosebriar kernel: ACPI Error: Aborting method \HWMC due to previous error (AE_AML_BUFFER_LIMIT) (20211217/psparse-529)
Jun 12 11:38:42 rosebriar kernel: ACPI Error: Aborting method \_SB.WMID.WMAA due to previous error (AE_AML_BUFFER_LIMIT) (20211217/psparse-529)
Jun 12 11:38:42 rosebriar kernel: ACPI BIOS Error (bug): AE_AML_BUFFER_LIMIT, Field [D009] at bit offset/length 136/8 exceeds size of target Buffer (136 bits) (20211217/dsopcode-198)
Jun 12 11:38:42 rosebriar kernel: ACPI Error: Aborting method \HWMC due to previous error (AE_AML_BUFFER_LIMIT) (20211217/psparse-529)
Jun 12 11:38:42 rosebriar kernel: ACPI Error: Aborting method \_SB.WMID.WMAA due to previous error (AE_AML_BUFFER_LIMIT) (20211217/psparse-529)
Jun 12 11:38:42 rosebriar kernel: ACPI BIOS Error (bug): AE_AML_BUFFER_LIMIT, Field [D008] at bit offset/length 128/8 exceeds size of target Buffer (128 bits) (20211217/dsopcode-198)
Jun 12 11:38:42 rosebriar kernel: ACPI Error: Aborting method \HWMC due to previous error (AE_AML_BUFFER_LIMIT) (20211217/psparse-529)
Jun 12 11:38:42 rosebriar kernel: ACPI Error: Aborting method \_SB.WMID.WMAA due to previous error (AE_AML_BUFFER_LIMIT) (20211217/psparse-529)
Jun 12 11:38:42 rosebriar kernel: 8852be: loading out-of-tree module taints kernel.
Jun 12 11:38:42 rosebriar kernel: 8852be: module verification failed: signature and/or required key missing - tainting kernel
Jun 12 11:38:42 rosebriar kernel: ccp 0000:03:00.2: enabling device (0000 -> 0002)
Jun 12 11:38:42 rosebriar kernel: ccp 0000:03:00.2: ccp: unable to access the device: you might be running a broken BIOS.
Jun 12 11:38:42 rosebriar kernel: ccp 0000:03:00.2: tee enabled
Jun 12 11:38:42 rosebriar kernel: ccp 0000:03:00.2: psp enabled
Jun 12 11:38:42 rosebriar kernel: SVM: TSC scaling supported
Jun 12 11:38:42 rosebriar kernel: kvm: Nested Virtualization enabled
Jun 12 11:38:42 rosebriar kernel: SVM: kvm: Nested Paging enabled
Jun 12 11:38:42 rosebriar kernel: SVM: Virtual VMLOAD VMSAVE supported
Jun 12 11:38:42 rosebriar kernel: SVM: Virtual GIF supported
Jun 12 11:38:42 rosebriar kernel: SVM: LBR virtualization supported
Jun 12 11:38:42 rosebriar kernel: rtl8852be 0000:01:00.0: enabling device (0000 -> 0003)
Jun 12 11:38:42 rosebriar kernel: MCE: In-kernel MCE decoding enabled.
Jun 12 11:38:42 rosebriar kernel: usb 1-3: Found UVC 1.10 device HP Wide Vision HD Camera (04f2:b760)
Jun 12 11:38:42 rosebriar kernel: input: HP Wide Vision HD Camera: HP Wi as /devices/pci0000:00/0000:00:08.1/0000:03:00.3/usb1/1-3/1-3:1.0/input/input14
Jun 12 11:38:42 rosebriar mtp-probe[466]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:08.1/0000:03:00.3/usb1/1-3"
Jun 12 11:38:42 rosebriar mtp-probe[466]: bus: 1, device: 2 was not an MTP device
Jun 12 11:38:42 rosebriar kernel: usbcore: registered new interface driver uvcvideo
Jun 12 11:38:42 rosebriar kernel: input: ELAN2514:00 04F3:2C3F as /devices/platform/AMDI0010:00/i2c-0/i2c-ELAN2514:00/0018:04F3:2C3F.0001/input/input15
Jun 12 11:38:42 rosebriar kernel: input: ELAN2514:00 04F3:2C3F UNKNOWN as /devices/platform/AMDI0010:00/i2c-0/i2c-ELAN2514:00/0018:04F3:2C3F.0001/input/input16
Jun 12 11:38:42 rosebriar kernel: input: ELAN2514:00 04F3:2C3F UNKNOWN as /devices/platform/AMDI0010:00/i2c-0/i2c-ELAN2514:00/0018:04F3:2C3F.0001/input/input17
Jun 12 11:38:42 rosebriar kernel: hid-multitouch 0018:04F3:2C3F.0001: input,hidraw0: I2C HID v1.00 Device [ELAN2514:00 04F3:2C3F] on i2c-ELAN2514:00
Jun 12 11:38:42 rosebriar kernel: i2c_hid_acpi i2c-ELAN2514:00: i2c_hid_get_input: IRQ triggered but there's no data
Jun 12 11:38:42 rosebriar kernel: input: SYNA32C1:00 06CB:CE17 Mouse as /devices/platform/AMDI0010:03/i2c-1/i2c-SYNA32C1:00/0018:06CB:CE17.0002/input/input19
Jun 12 11:38:42 rosebriar kernel: input: SYNA32C1:00 06CB:CE17 Touchpad as /devices/platform/AMDI0010:03/i2c-1/i2c-SYNA32C1:00/0018:06CB:CE17.0002/input/input20
Jun 12 11:38:42 rosebriar kernel: hid-multitouch 0018:06CB:CE17.0002: input,hidraw1: I2C HID v1.00 Mouse [SYNA32C1:00 06CB:CE17] on i2c-SYNA32C1:00
Jun 12 11:38:42 rosebriar kernel: mousedev: PS/2 mouse device common for all mice
Jun 12 11:38:42 rosebriar kernel: snd_rn_pci_acp3x 0000:03:00.5: enabling device (0000 -> 0002)
Jun 12 11:38:42 rosebriar kernel: intel_rapl_common: Found RAPL domain package
Jun 12 11:38:42 rosebriar kernel: intel_rapl_common: Found RAPL domain core
Jun 12 11:38:42 rosebriar kernel: Bluetooth: Core ver 2.22
Jun 12 11:38:42 rosebriar kernel: NET: Registered PF_BLUETOOTH protocol family
Jun 12 11:38:42 rosebriar kernel: Bluetooth: HCI device and connection manager initialized
Jun 12 11:38:42 rosebriar kernel: Bluetooth: HCI socket layer initialized
Jun 12 11:38:42 rosebriar kernel: Bluetooth: L2CAP socket layer initialized
Jun 12 11:38:42 rosebriar kernel: Bluetooth: SCO socket layer initialized
Jun 12 11:38:42 rosebriar systemd[1]: Starting Load/Save RF Kill Switch Status...
Jun 12 11:38:42 rosebriar kernel: usbcore: registered new interface driver btusb
Jun 12 11:38:42 rosebriar kernel: Bluetooth: hci0: RTL: examining hci_ver=0b hci_rev=000b lmp_ver=0b lmp_subver=8852
Jun 12 11:38:42 rosebriar systemd[1]: Reached target Bluetooth Support.
Jun 12 11:38:42 rosebriar systemd[1]: Started Load/Save RF Kill Switch Status.
Jun 12 11:38:42 rosebriar 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'
Jun 12 11:38:42 rosebriar kernel: Bluetooth: hci0: RTL: rom_version status=0 version=1
Jun 12 11:38:42 rosebriar kernel: Bluetooth: hci0: RTL: loading rtl_bt/rtl8852bu_fw.bin
Jun 12 11:38:42 rosebriar kernel: Bluetooth: hci0: RTL: loading rtl_bt/rtl8852bu_config.bin
Jun 12 11:38:43 rosebriar kernel: Bluetooth: hci0: RTL: cfg_sz 6, total sz 38955
Jun 12 11:38:43 rosebriar systemd[1]: Mounting /.snapshots...
Jun 12 11:38:43 rosebriar systemd[1]: Mounting /boot...
Jun 12 11:38:43 rosebriar systemd[1]: Mounting /home...
Jun 12 11:38:43 rosebriar systemd[1]: Mounting /var/cache/pacman/pkg...
Jun 12 11:38:43 rosebriar systemd[1]: Mounting /var/log...
Jun 12 11:38:43 rosebriar systemd[1]: Mounted /.snapshots.
Jun 12 11:38:43 rosebriar systemd[1]: Mounted /home.
Jun 12 11:38:43 rosebriar systemd[1]: Mounted /var/cache/pacman/pkg.
Jun 12 11:38:43 rosebriar systemd[1]: Mounted /var/log.
Jun 12 11:38:43 rosebriar systemd[1]: Starting Flush Journal to Persistent Storage...
Jun 12 11:38:43 rosebriar systemd-journald[330]: Time spent on flushing to /var/log/journal/75309536420f4ec09356d0fd3ab10ddc is 13.449ms for 1073 entries.
Jun 12 11:38:43 rosebriar systemd-journald[330]: System Journal (/var/log/journal/75309536420f4ec09356d0fd3ab10ddc) is 48.0M, max 4.0G, 3.9G free.
Jun 12 11:38:43 rosebriar systemd-journald[330]: Received client request to flush runtime journal.
Jun 12 11:38:43 rosebriar kernel: snd_hda_intel 0000:03:00.1: enabling device (0000 -> 0002)
Jun 12 11:38:43 rosebriar kernel: snd_hda_intel 0000:03:00.1: Handle vga_switcheroo audio client
Jun 12 11:38:43 rosebriar kernel: snd_hda_intel 0000:03:00.6: enabling device (0000 -> 0002)
Jun 12 11:38:43 rosebriar systemd[1]: Finished Flush Journal to Persistent Storage.
Jun 12 11:38:43 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-flush comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:43 rosebriar systemd[1]: Mounted /boot.
Jun 12 11:38:43 rosebriar systemd[1]: Reached target Local File Systems.
Jun 12 11:38:43 rosebriar systemd[1]: Starting Rebuild Dynamic Linker Cache...
Jun 12 11:38:43 rosebriar systemd[1]: Set Up Additional Binary Formats was skipped because all trigger condition checks failed.
Jun 12 11:38:43 rosebriar systemd[1]: Store a System Token in an EFI Variable was skipped because all trigger condition checks failed.
Jun 12 11:38:43 rosebriar systemd[1]: Commit a transient machine-id on disk was skipped because of a failed condition check (ConditionPathIsMountPoint=/etc/machine-id).
Jun 12 11:38:43 rosebriar systemd[1]: Starting Create Volatile Files and Directories...
Jun 12 11:38:43 rosebriar kernel: input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.1/0000:03:00.1/sound/card0/input22
Jun 12 11:38:43 rosebriar kernel: input: HD-Audio Generic HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:08.1/0000:03:00.1/sound/card0/input23
Jun 12 11:38:43 rosebriar systemd[1]: Reached target Sound Card.
Jun 12 11:38:43 rosebriar systemd[1]: Finished Create Volatile Files and Directories.
Jun 12 11:38:43 rosebriar 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'
Jun 12 11:38:43 rosebriar systemd[1]: Starting Rebuild Journal Catalog...
Jun 12 11:38:43 rosebriar audit: BPF prog-id=12 op=LOAD
Jun 12 11:38:43 rosebriar systemd[1]: Starting Network Name Resolution...
Jun 12 11:38:43 rosebriar audit: BPF prog-id=13 op=LOAD
Jun 12 11:38:43 rosebriar systemd[1]: Starting Network Time Synchronization...
Jun 12 11:38:43 rosebriar systemd[1]: Starting Record System Boot/Shutdown in UTMP...
Jun 12 11:38:43 rosebriar audit[502]: SYSTEM_BOOT pid=502 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:43 rosebriar systemd[1]: Finished Record System Boot/Shutdown in UTMP.
Jun 12 11:38:43 rosebriar 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'
Jun 12 11:38:43 rosebriar systemd[1]: Finished Rebuild Journal Catalog.
Jun 12 11:38:43 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-catalog-update comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:43 rosebriar systemd-resolved[500]: Positive Trust Anchors:
Jun 12 11:38:43 rosebriar systemd-resolved[500]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d
Jun 12 11:38:43 rosebriar systemd-resolved[500]: 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
Jun 12 11:38:43 rosebriar systemd[1]: Started Network Time Synchronization.
Jun 12 11:38:43 rosebriar 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'
Jun 12 11:38:43 rosebriar systemd[1]: Reached target System Time Set.
Jun 12 11:38:43 rosebriar systemd-resolved[500]: Using system hostname 'rosebriar'.
Jun 12 11:38:43 rosebriar systemd[1]: Started Network Name Resolution.
Jun 12 11:38:43 rosebriar 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'
Jun 12 11:38:43 rosebriar systemd[1]: Reached target Host and Network Name Lookups.
Jun 12 11:38:43 rosebriar kernel: [drm] amdgpu kernel modesetting enabled.
Jun 12 11:38:43 rosebriar kernel: amdgpu: Virtual CRAT table created for CPU
Jun 12 11:38:43 rosebriar kernel: amdgpu: Topology: Add CPU node
Jun 12 11:38:43 rosebriar kernel: checking generic (d0000000 300000) vs hw (d0000000 10000000)
Jun 12 11:38:43 rosebriar kernel: checking generic (d0000000 300000) vs hw (d0000000 10000000)
Jun 12 11:38:43 rosebriar kernel: fb0: switching to amdgpu from EFI VGA
Jun 12 11:38:43 rosebriar kernel: Console: switching to colour dummy device 80x25
Jun 12 11:38:43 rosebriar kernel: amdgpu 0000:03:00.0: vgaarb: deactivate vga console
Jun 12 11:38:43 rosebriar kernel: amdgpu 0000:03:00.0: enabling device (0006 -> 0007)
Jun 12 11:38:43 rosebriar kernel: [drm] initializing kernel modesetting (RENOIR 0x1002:0x15E7 0x103C:0x8A0E 0xC1).
Jun 12 11:38:43 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: Trusted Memory Zone (TMZ) feature enabled
Jun 12 11:38:43 rosebriar systemd[1]: Finished Rebuild Dynamic Linker Cache.
Jun 12 11:38:43 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=ldconfig comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:43 rosebriar systemd[1]: Starting Update is Completed...
Jun 12 11:38:43 rosebriar systemd[1]: Finished Update is Completed.
Jun 12 11:38:43 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-update-done comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:43 rosebriar systemd[1]: Reached target System Initialization.
Jun 12 11:38:43 rosebriar systemd[1]: Started Discard unused blocks once a week.
Jun 12 11:38:43 rosebriar systemd[1]: Started Daily man-db regeneration.
Jun 12 11:38:43 rosebriar systemd[1]: Started Daily verification of password and group files.
Jun 12 11:38:43 rosebriar systemd[1]: Started Daily Cleanup of Temporary Directories.
Jun 12 11:38:43 rosebriar systemd[1]: Reached target Timer Units.
Jun 12 11:38:43 rosebriar systemd[1]: Listening on D-Bus System Message Bus Socket.
Jun 12 11:38:43 rosebriar systemd[1]: Reached target Socket Units.
Jun 12 11:38:43 rosebriar systemd[1]: Reached target Basic System.
Jun 12 11:38:43 rosebriar systemd[1]: Starting D-Bus System Message Bus...
Jun 12 11:38:43 rosebriar audit: BPF prog-id=14 op=LOAD
Jun 12 11:38:43 rosebriar audit: BPF prog-id=15 op=LOAD
Jun 12 11:38:43 rosebriar audit: BPF prog-id=16 op=LOAD
Jun 12 11:38:43 rosebriar systemd[1]: Starting User Login Management...
Jun 12 11:38:43 rosebriar systemd[1]: Starting UDisks2 managed ZRAM device zram0 setup...
Jun 12 11:38:43 rosebriar systemd[1]: Started Verify integrity of password and group files.
Jun 12 11:38:43 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=shadow comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:43 rosebriar dbus-daemon[515]: dbus[515]: Unknown group "netdev" in message bus configuration file
Jun 12 11:38:43 rosebriar dbus-daemon[515]: dbus[515]: Unknown group "netdev" in message bus configuration file
Jun 12 11:38:43 rosebriar systemd[1]: udisks2-zram-setup@zram0.service: Deactivated successfully.
Jun 12 11:38:43 rosebriar systemd[1]: Finished UDisks2 managed ZRAM device zram0 setup.
Jun 12 11:38:43 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=udisks2-zram-setup@zram0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:43 rosebriar audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=udisks2-zram-setup@zram0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:43 rosebriar systemd[1]: Started D-Bus System Message Bus.
Jun 12 11:38:43 rosebriar 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'
Jun 12 11:38:43 rosebriar systemd[1]: shadow.service: Deactivated successfully.
Jun 12 11:38:43 rosebriar audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=shadow comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:43 rosebriar systemd[1]: Starting Network Manager...
Jun 12 11:38:43 rosebriar kernel: snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC287: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
Jun 12 11:38:43 rosebriar kernel: snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Jun 12 11:38:43 rosebriar kernel: snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
Jun 12 11:38:43 rosebriar kernel: snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
Jun 12 11:38:43 rosebriar kernel: snd_hda_codec_realtek hdaudioC1D0:    inputs:
Jun 12 11:38:43 rosebriar kernel: snd_hda_codec_realtek hdaudioC1D0:      Mic=0x19
Jun 12 11:38:43 rosebriar systemd-logind[516]: Watching system buttons on /dev/input/event0 (Power Button)
Jun 12 11:38:43 rosebriar systemd-logind[516]: Watching system buttons on /dev/input/event1 (Lid Switch)
Jun 12 11:38:43 rosebriar systemd-logind[516]: Watching system buttons on /dev/input/event2 (AT Translated Set 2 keyboard)
Jun 12 11:38:43 rosebriar systemd-logind[516]: New seat seat0.
Jun 12 11:38:43 rosebriar systemd[1]: Started User Login Management.
Jun 12 11:38:43 rosebriar 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'
Jun 12 11:38:43 rosebriar kernel: [drm] register mmio base: 0xFCD00000
Jun 12 11:38:43 rosebriar kernel: [drm] register mmio size: 524288
Jun 12 11:38:43 rosebriar kernel: [drm] add ip block number 0 <soc15_common>
Jun 12 11:38:43 rosebriar kernel: [drm] add ip block number 1 <gmc_v9_0>
Jun 12 11:38:43 rosebriar kernel: [drm] add ip block number 2 <vega10_ih>
Jun 12 11:38:43 rosebriar kernel: [drm] add ip block number 3 <psp>
Jun 12 11:38:43 rosebriar kernel: [drm] add ip block number 4 <smu>
Jun 12 11:38:43 rosebriar kernel: [drm] add ip block number 5 <dm>
Jun 12 11:38:43 rosebriar kernel: [drm] add ip block number 6 <gfx_v9_0>
Jun 12 11:38:43 rosebriar kernel: [drm] add ip block number 7 <sdma_v4_0>
Jun 12 11:38:43 rosebriar kernel: [drm] add ip block number 8 <vcn_v2_0>
Jun 12 11:38:43 rosebriar kernel: [drm] add ip block number 9 <jpeg_v2_0>
Jun 12 11:38:43 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: Fetched VBIOS from VFCT
Jun 12 11:38:43 rosebriar kernel: amdgpu: ATOM BIOS: 113-BARCELO-003
Jun 12 11:38:43 rosebriar kernel: [drm] VCN decode is enabled in VM mode
Jun 12 11:38:43 rosebriar kernel: [drm] VCN encode is enabled in VM mode
Jun 12 11:38:43 rosebriar kernel: [drm] JPEG decode is enabled in VM mode
Jun 12 11:38:43 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: PCIE atomic ops is not supported
Jun 12 11:38:43 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: MODE2 reset
Jun 12 11:38:43 rosebriar kernel: [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
Jun 12 11:38:43 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: VRAM: 512M 0x000000F400000000 - 0x000000F41FFFFFFF (512M used)
Jun 12 11:38:43 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: GART: 1024M 0x0000000000000000 - 0x000000003FFFFFFF
Jun 12 11:38:43 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: AGP: 267419648M 0x000000F800000000 - 0x0000FFFFFFFFFFFF
Jun 12 11:38:43 rosebriar kernel: [drm] Detected VRAM RAM=512M, BAR=512M
Jun 12 11:38:43 rosebriar kernel: [drm] RAM width 128bits DDR4
Jun 12 11:38:43 rosebriar kernel: [drm] amdgpu: 512M of VRAM memory ready
Jun 12 11:38:43 rosebriar kernel: [drm] amdgpu: 3072M of GTT memory ready.
Jun 12 11:38:43 rosebriar kernel: [drm] GART: num cpu pages 262144, num gpu pages 262144
Jun 12 11:38:43 rosebriar kernel: [drm] PCIE GART of 1024M enabled.
Jun 12 11:38:43 rosebriar kernel: [drm] PTB located at 0x000000F400900000
Jun 12 11:38:43 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: PSP runtime database doesn't exist
Jun 12 11:38:43 rosebriar kernel: [drm] Loading DMUB firmware via PSP: version=0x0101001F
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2456] NetworkManager (version 1.38.0-1) is starting... (for the first time)
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2456] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 20-connectivity.conf) (etc: wifi_backend.conf, wifi_rand_mac.conf)
Jun 12 11:38:43 rosebriar systemd[1]: Started Network Manager.
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2468] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Jun 12 11:38:43 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:43 rosebriar systemd[1]: Reached target Network.
Jun 12 11:38:43 rosebriar systemd[1]: Starting Permit User Sessions...
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2495] manager[0x55cc617dd000]: monitoring kernel firmware directory '/lib/firmware'.
Jun 12 11:38:43 rosebriar dbus-daemon[515]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.4' (uid=0 pid=523 comm="/usr/bin/NetworkManager --no-daemon")
Jun 12 11:38:43 rosebriar audit: BPF prog-id=17 op=LOAD
Jun 12 11:38:43 rosebriar audit: BPF prog-id=18 op=LOAD
Jun 12 11:38:43 rosebriar audit: BPF prog-id=19 op=LOAD
Jun 12 11:38:43 rosebriar systemd[1]: Starting Hostname Service...
Jun 12 11:38:43 rosebriar systemd[1]: Finished Permit User Sessions.
Jun 12 11:38:43 rosebriar 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'
Jun 12 11:38:43 rosebriar systemd[1]: Reached target Multi-User System.
Jun 12 11:38:43 rosebriar systemd[1]: Starting Light Display Manager...
Jun 12 11:38:43 rosebriar systemd[1]: Started Light Display Manager.
Jun 12 11:38:43 rosebriar dbus-daemon[515]: [system] Activating via systemd: service name='org.freedesktop.Accounts' unit='accounts-daemon.service' requested by ':1.5' (uid=0 pid=538 comm="/usr/bin/lightdm")
Jun 12 11:38:43 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lightdm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:43 rosebriar systemd[1]: Reached target Graphical Interface.
Jun 12 11:38:43 rosebriar systemd[1]: Reached target User and Group Name Lookups.
Jun 12 11:38:43 rosebriar audit: BPF prog-id=20 op=LOAD
Jun 12 11:38:43 rosebriar systemd[1]: Starting Accounts Service...
Jun 12 11:38:43 rosebriar kernel: [drm] Found VCN firmware Version ENC: 1.17 DEC: 5 VEP: 0 Revision: 2
Jun 12 11:38:43 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: Will use PSP to load VCN firmware
Jun 12 11:38:43 rosebriar dbus-daemon[515]: [system] Successfully activated service 'org.freedesktop.hostname1'
Jun 12 11:38:43 rosebriar systemd[1]: Started Hostname Service.
Jun 12 11:38:43 rosebriar 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'
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2773] hostname: hostname: using hostnamed
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2773] hostname: static hostname changed from (none) to "rosebriar"
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2775] dns-mgr[0x55cc617b72a0]: init: dns=default,systemd-resolved rc-manager=symlink
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2781] rfkill1: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:02.2/0000:01:00.0/ieee80211/phy0/rfkill1) (driver rtl8852be)
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2783] manager[0x55cc617dd000]: rfkill: Wi-Fi hardware radio set enabled
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2783] manager[0x55cc617dd000]: rfkill: WWAN hardware radio set enabled
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2796] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.38.0-1/libnm-device-plugin-adsl.so)
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2834] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.38.0-1/libnm-device-plugin-bluetooth.so)
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2842] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.38.0-1/libnm-device-plugin-ovs.so)
Jun 12 11:38:43 rosebriar dbus-daemon[515]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' requested by ':1.8' (uid=0 pid=545 comm="/usr/lib/accounts-daemon")
Jun 12 11:38:43 rosebriar systemd[1]: Starting Authorization Manager...
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2961] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.38.0-1/libnm-device-plugin-team.so)
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2976] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.38.0-1/libnm-device-plugin-wifi.so)
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2980] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.38.0-1/libnm-device-plugin-wwan.so)
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2982] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2983] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2983] manager: Networking is enabled by state file
Jun 12 11:38:43 rosebriar dbus-daemon[515]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.4' (uid=0 pid=523 comm="/usr/bin/NetworkManager --no-daemon")
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2985] settings: Loaded settings plugin: keyfile (internal)
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2996] dhcp-init: Using DHCP client 'internal'
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2996] device (lo): carrier: link connected
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.2997] manager: (lo): new Generic device (/org/freedesktop/NetworkManager/Devices/1)
Jun 12 11:38:43 rosebriar systemd[1]: Starting Network Manager Script Dispatcher Service...
Jun 12 11:38:43 rosebriar dbus-daemon[515]: [system] Activating via systemd: service name='net.connman.iwd' unit='iwd.service' requested by ':1.4' (uid=0 pid=523 comm="/usr/bin/NetworkManager --no-daemon")
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.3003] manager: (wlan0): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/2)
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.3005] device (wlan0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jun 12 11:38:43 rosebriar audit: BPF prog-id=21 op=LOAD
Jun 12 11:38:43 rosebriar systemd[1]: Starting Wireless service...
Jun 12 11:38:43 rosebriar polkitd[549]: Started polkitd version 0.120
Jun 12 11:38:43 rosebriar dbus-daemon[515]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Jun 12 11:38:43 rosebriar systemd[1]: Started Network Manager Script Dispatcher Service.
Jun 12 11:38:43 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:43 rosebriar polkitd[549]: Loading rules from directory /etc/polkit-1/rules.d
Jun 12 11:38:43 rosebriar polkitd[549]: Loading rules from directory /usr/share/polkit-1/rules.d
Jun 12 11:38:43 rosebriar polkitd[549]: Finished loading, compiling and executing 4 rules
Jun 12 11:38:43 rosebriar dbus-daemon[515]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Jun 12 11:38:43 rosebriar systemd[1]: Started Authorization Manager.
Jun 12 11:38:43 rosebriar polkitd[549]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
Jun 12 11:38:43 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=polkit comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:43 rosebriar accounts-daemon[545]: started daemon version 22.08.0
Jun 12 11:38:43 rosebriar dbus-daemon[515]: [system] Successfully activated service 'org.freedesktop.Accounts'
Jun 12 11:38:43 rosebriar systemd[1]: Started Accounts Service.
Jun 12 11:38:43 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=accounts-daemon comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:43 rosebriar systemd[1]: lightdm.service: Main process exited, code=exited, status=1/FAILURE
Jun 12 11:38:43 rosebriar systemd[1]: lightdm.service: Failed with result 'exit-code'.
Jun 12 11:38:43 rosebriar audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lightdm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Jun 12 11:38:43 rosebriar kernel: Bluetooth: hci0: RTL: fw version 0xdfb791cb
Jun 12 11:38:43 rosebriar kernel: input: HD-Audio Generic Mic as /devices/pci0000:00/0000:00:08.1/0000:03:00.6/sound/card1/input24
Jun 12 11:38:43 rosebriar kernel: input: HD-Audio Generic Headphone as /devices/pci0000:00/0000:00:08.1/0000:03:00.6/sound/card1/input25
Jun 12 11:38:43 rosebriar kernel: NET: Registered PF_ALG protocol family
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.4449] ovsdb: disconnected from ovsdb
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.4450] manager: startup complete
Jun 12 11:38:43 rosebriar kernel: Bluetooth: hci0: AOSP extensions version v0.96
Jun 12 11:38:43 rosebriar kernel: Bluetooth: hci0: AOSP quality report is not supported
Jun 12 11:38:43 rosebriar iwd[551]: Wireless daemon version 1.28
Jun 12 11:38:43 rosebriar dbus-daemon[515]: [system] Successfully activated service 'net.connman.iwd'
Jun 12 11:38:43 rosebriar systemd[1]: Started Wireless service.
Jun 12 11:38:43 rosebriar iwd[551]: station: Network configuration is disabled.
Jun 12 11:38:43 rosebriar systemd[1]: Startup finished in 4.239s (firmware) + 1.831s (loader) + 901ms (kernel) + 1.674s (userspace) = 8.646s.
Jun 12 11:38:43 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=iwd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:43 rosebriar iwd[551]: Wiphy: 0, Name: phy0
Jun 12 11:38:43 rosebriar iwd[551]:         Permanent Address: 50:c2:e8:c3:1f:e9
Jun 12 11:38:43 rosebriar iwd[551]:         2.4Ghz Band:
Jun 12 11:38:43 rosebriar iwd[551]:                 Bitrates (non-HT):
Jun 12 11:38:43 rosebriar iwd[551]:                          1.0 Mbps
Jun 12 11:38:43 rosebriar iwd[551]:                          2.0 Mbps
Jun 12 11:38:43 rosebriar iwd[551]:                          5.5 Mbps
Jun 12 11:38:43 rosebriar iwd[551]:                         11.0 Mbps
Jun 12 11:38:43 rosebriar iwd[551]:                          6.0 Mbps
Jun 12 11:38:43 rosebriar iwd[551]:                          9.0 Mbps
Jun 12 11:38:43 rosebriar iwd[551]:                         12.0 Mbps
Jun 12 11:38:43 rosebriar iwd[551]:                         18.0 Mbps
Jun 12 11:38:43 rosebriar iwd[551]:                         24.0 Mbps
Jun 12 11:38:43 rosebriar iwd[551]:                         36.0 Mbps
Jun 12 11:38:43 rosebriar iwd[551]:                         48.0 Mbps
Jun 12 11:38:43 rosebriar iwd[551]:                         54.0 Mbps
Jun 12 11:38:43 rosebriar iwd[551]:                 HT Capabilities:
Jun 12 11:38:43 rosebriar iwd[551]:                         HT40
Jun 12 11:38:43 rosebriar iwd[551]:                         Short GI for 20Mhz
Jun 12 11:38:43 rosebriar iwd[551]:                         Short GI for 40Mhz
Jun 12 11:38:43 rosebriar iwd[551]:                 HT RX MCS indexes:
Jun 12 11:38:43 rosebriar iwd[551]:                         0-15
Jun 12 11:38:43 rosebriar iwd[551]:         5Ghz Band:
Jun 12 11:38:43 rosebriar iwd[551]:                 Bitrates (non-HT):
Jun 12 11:38:43 rosebriar iwd[551]:                          6.0 Mbps
Jun 12 11:38:43 rosebriar iwd[551]:                          9.0 Mbps
Jun 12 11:38:43 rosebriar iwd[551]:                         12.0 Mbps
Jun 12 11:38:43 rosebriar iwd[551]:                         18.0 Mbps
Jun 12 11:38:43 rosebriar iwd[551]:                         24.0 Mbps
Jun 12 11:38:43 rosebriar iwd[551]:                         36.0 Mbps
Jun 12 11:38:43 rosebriar iwd[551]:                         48.0 Mbps
Jun 12 11:38:43 rosebriar iwd[551]:                         54.0 Mbps
Jun 12 11:38:43 rosebriar iwd[551]:                 HT Capabilities:
Jun 12 11:38:43 rosebriar iwd[551]:                         HT40
Jun 12 11:38:43 rosebriar iwd[551]:                         Short GI for 20Mhz
Jun 12 11:38:43 rosebriar iwd[551]:                         Short GI for 40Mhz
Jun 12 11:38:43 rosebriar iwd[551]:                 HT RX MCS indexes:
Jun 12 11:38:43 rosebriar iwd[551]:                         0-15
Jun 12 11:38:43 rosebriar iwd[551]:                 VHT Capabilities:
Jun 12 11:38:43 rosebriar iwd[551]:                         Short GI for 80Mhz
Jun 12 11:38:43 rosebriar iwd[551]:                         Max RX MCS: 0-9 for NSS: 2
Jun 12 11:38:43 rosebriar iwd[551]:                         Max TX MCS: 0-9 for NSS: 2
Jun 12 11:38:43 rosebriar iwd[551]:         Ciphers: CCMP TKIP BIP
Jun 12 11:38:43 rosebriar iwd[551]:         Supported iftypes: ad-hoc station ap p2p-client p2p-go
Jun 12 11:38:43 rosebriar iwd[551]: Wiphy phy0 will only use the default interface
Jun 12 11:38:43 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lightdm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:43 rosebriar audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lightdm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:43 rosebriar systemd[1]: lightdm.service: Scheduled restart job, restart counter is at 1.
Jun 12 11:38:43 rosebriar systemd[1]: Stopped Light Display Manager.
Jun 12 11:38:43 rosebriar systemd[1]: Starting Light Display Manager...
Jun 12 11:38:43 rosebriar systemd[1]: Started Light Display Manager.
Jun 12 11:38:43 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lightdm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:43 rosebriar systemd[1]: lightdm.service: Main process exited, code=exited, status=1/FAILURE
Jun 12 11:38:43 rosebriar systemd[1]: lightdm.service: Failed with result 'exit-code'.
Jun 12 11:38:43 rosebriar audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lightdm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.8122] device (wlan0): new IWD device state is disconnected
Jun 12 11:38:43 rosebriar NetworkManager[523]: <info>  [1655059123.8123] device (wlan0): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-state: 'managed')
Jun 12 11:38:43 rosebriar kernel: [drm] reserve 0x400000 from 0xf41f800000 for PSP TMR
Jun 12 11:38:44 rosebriar systemd[1]: lightdm.service: Scheduled restart job, restart counter is at 2.
Jun 12 11:38:44 rosebriar systemd[1]: Stopped Light Display Manager.
Jun 12 11:38:44 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lightdm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:44 rosebriar audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lightdm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:44 rosebriar systemd[1]: Starting Light Display Manager...
Jun 12 11:38:44 rosebriar systemd[1]: Started Light Display Manager.
Jun 12 11:38:44 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lightdm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:44 rosebriar systemd[1]: lightdm.service: Main process exited, code=exited, status=1/FAILURE
Jun 12 11:38:44 rosebriar systemd[1]: lightdm.service: Failed with result 'exit-code'.
Jun 12 11:38:44 rosebriar audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lightdm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Jun 12 11:38:44 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: RAS: optional ras ta ucode is not available
Jun 12 11:38:44 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: RAP: optional rap ta ucode is not available
Jun 12 11:38:44 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
Jun 12 11:38:44 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: SMU is initialized successfully!
Jun 12 11:38:44 rosebriar kernel: [drm] Display Core initialized with v3.2.177!
Jun 12 11:38:44 rosebriar kernel: [drm] DMUB hardware initialized: version=0x0101001F
Jun 12 11:38:44 rosebriar kernel: snd_hda_intel 0000:03:00.1: bound 0000:03:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
Jun 12 11:38:44 rosebriar kernel: [drm] kiq ring mec 2 pipe 1 q 0
Jun 12 11:38:44 rosebriar kernel: [drm] VCN decode and encode initialized successfully(under DPG Mode).
Jun 12 11:38:44 rosebriar kernel: [drm] JPEG decode initialized successfully.
Jun 12 11:38:44 rosebriar kernel: kfd kfd: amdgpu: Allocated 3969056 bytes on gart
Jun 12 11:38:44 rosebriar kernel: memmap_init_zone_device initialised 131072 pages in 0ms
Jun 12 11:38:44 rosebriar kernel: amdgpu: HMM registered 512MB device memory
Jun 12 11:38:44 rosebriar kernel: amdgpu: SRAT table not found
Jun 12 11:38:44 rosebriar kernel: amdgpu: Virtual CRAT table created for GPU
Jun 12 11:38:44 rosebriar kernel: amdgpu: Topology: Add dGPU node [0x15e7:0x1002]
Jun 12 11:38:44 rosebriar kernel: kfd kfd: amdgpu: added device 1002:15e7
Jun 12 11:38:44 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: SE 1, SH per SE 1, CU per SH 8, active_cu_number 8
Jun 12 11:38:44 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0
Jun 12 11:38:44 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
Jun 12 11:38:44 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
Jun 12 11:38:44 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
Jun 12 11:38:44 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
Jun 12 11:38:44 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
Jun 12 11:38:44 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
Jun 12 11:38:44 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
Jun 12 11:38:44 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
Jun 12 11:38:44 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
Jun 12 11:38:44 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 1
Jun 12 11:38:44 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 1
Jun 12 11:38:44 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 1
Jun 12 11:38:44 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 1
Jun 12 11:38:44 rosebriar kernel: amdgpu 0000:03:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 1
Jun 12 11:38:44 rosebriar kernel: [drm] Initialized amdgpu 3.46.0 20150101 for 0000:03:00.0 on minor 0
Jun 12 11:38:44 rosebriar kernel: fbcon: amdgpudrmfb (fb0) is primary device
Jun 12 11:38:44 rosebriar kernel: [drm] DSC precompute is not needed.
Jun 12 11:38:44 rosebriar systemd[1]: lightdm.service: Scheduled restart job, restart counter is at 3.
Jun 12 11:38:44 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lightdm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:44 rosebriar audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lightdm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:44 rosebriar systemd[1]: Stopped Light Display Manager.
Jun 12 11:38:44 rosebriar systemd[1]: Starting Light Display Manager...
Jun 12 11:38:44 rosebriar systemd[1]: Started Light Display Manager.
Jun 12 11:38:44 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=lightdm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:44 rosebriar kernel: Console: switching to colour frame buffer device 240x67
Jun 12 11:38:44 rosebriar kernel: amdgpu 0000:03:00.0: [drm] fb0: amdgpudrmfb frame buffer device
Jun 12 11:38:44 rosebriar systemd[1]: Created slice Slice /system/systemd-backlight.
Jun 12 11:38:44 rosebriar systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:acpi_video0...
Jun 12 11:38:44 rosebriar systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:amdgpu_bl0...
Jun 12 11:38:44 rosebriar systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:acpi_video0.
Jun 12 11:38:44 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@backlight:acpi_video0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:44 rosebriar systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:amdgpu_bl0.
Jun 12 11:38:44 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@backlight:amdgpu_bl0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:45 rosebriar audit[722]: CRED_ACQ pid=722 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_env,pam_permit acct="lightdm" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
Jun 12 11:38:45 rosebriar lightdm[722]: pam_unix(lightdm-greeter:session): session opened for user lightdm(uid=971) by (uid=0)
Jun 12 11:38:45 rosebriar systemd[1]: Created slice User Slice of UID 971.
Jun 12 11:38:45 rosebriar systemd[1]: Starting User Runtime Directory /run/user/971...
Jun 12 11:38:45 rosebriar systemd-logind[516]: New session c1 of user lightdm.
Jun 12 11:38:45 rosebriar systemd[1]: Finished User Runtime Directory /run/user/971.
Jun 12 11:38:45 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@971 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:45 rosebriar systemd[1]: Starting User Manager for UID 971...
Jun 12 11:38:45 rosebriar dbus-daemon[515]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.21' (uid=0 pid=726 comm="(systemd)")
Jun 12 11:38:45 rosebriar dbus-daemon[515]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 12 11:38:45 rosebriar systemd[726]: pam_systemd_home(systemd-user:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 12 11:38:45 rosebriar audit[726]: USER_ACCT pid=726 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="lightdm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:45 rosebriar audit[726]: CRED_ACQ pid=726 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=? acct="lightdm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Jun 12 11:38:45 rosebriar audit[726]: SYSCALL arch=c000003e syscall=1 success=yes exit=3 a0=9 a1=7ffc437d5390 a2=3 a3=7ffc437d50a5 items=0 ppid=1 pid=726 auid=971 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=1 comm="(systemd)" exe="/usr/lib/systemd/systemd" key=(null)
Jun 12 11:38:45 rosebriar audit: PROCTITLE proctitle="(systemd)"
Jun 12 11:38:45 rosebriar systemd[726]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[lightdm] ruser=[<unknown>] rhost=[<unknown>]
Jun 12 11:38:45 rosebriar systemd[726]: pam_unix(systemd-user:session): session opened for user lightdm(uid=971) by (uid=0)
Jun 12 11:38:45 rosebriar systemd[726]: pam_env(systemd-user:session): deprecated reading of user environment enabled
Jun 12 11:38:45 rosebriar audit[726]: USER_START pid=726 uid=0 auid=971 ses=1 msg='op=PAM:session_open grantors=pam_loginuid,pam_loginuid,pam_keyinit,pam_systemd_home,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="lightdm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:45 rosebriar systemd[726]: Queued start job for default target Main User Target.
Jun 12 11:38:45 rosebriar systemd[726]: Created slice User Application Slice.
Jun 12 11:38:45 rosebriar systemd[726]: Reached target Paths.
Jun 12 11:38:45 rosebriar systemd[726]: Reached target Timers.
Jun 12 11:38:45 rosebriar systemd[726]: Starting D-Bus User Message Bus Socket...
Jun 12 11:38:45 rosebriar systemd[726]: Listening on GnuPG network certificate management daemon.
Jun 12 11:38:45 rosebriar systemd[726]: Listening on GCR ssh-agent wrapper.
Jun 12 11:38:45 rosebriar systemd[726]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jun 12 11:38:45 rosebriar systemd[726]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Jun 12 11:38:45 rosebriar systemd[726]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Jun 12 11:38:45 rosebriar systemd[726]: Listening on GnuPG cryptographic agent and passphrase cache.
Jun 12 11:38:45 rosebriar systemd[726]: Listening on p11-kit server.
Jun 12 11:38:45 rosebriar systemd[726]: Listening on PipeWire PulseAudio.
Jun 12 11:38:45 rosebriar systemd[726]: Listening on PipeWire Multimedia System Socket.
Jun 12 11:38:45 rosebriar systemd[726]: Listening on D-Bus User Message Bus Socket.
Jun 12 11:38:45 rosebriar systemd[726]: Reached target Sockets.
Jun 12 11:38:45 rosebriar systemd[726]: Reached target Basic System.
Jun 12 11:38:45 rosebriar systemd[1]: Started User Manager for UID 971.
Jun 12 11:38:45 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@971 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:45 rosebriar systemd[726]: Starting Update XDG user dir configuration...
Jun 12 11:38:45 rosebriar systemd[1]: Started Session c1 of User lightdm.
Jun 12 11:38:45 rosebriar systemd[726]: Finished Update XDG user dir configuration.
Jun 12 11:38:45 rosebriar systemd[726]: Reached target Main User Target.
Jun 12 11:38:45 rosebriar systemd[726]: Startup finished in 66ms.
Jun 12 11:38:45 rosebriar audit[722]: USER_START pid=722 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_open grantors=pam_unix,pam_systemd acct="lightdm" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
Jun 12 11:38:45 rosebriar systemd[726]: Created slice User Core Session Slice.
Jun 12 11:38:45 rosebriar systemd[726]: Starting D-Bus User Message Bus...
Jun 12 11:38:45 rosebriar systemd[726]: Started D-Bus User Message Bus.
Jun 12 11:38:45 rosebriar dbus-daemon[755]: [session uid=971 pid=755] Activating systemd to hand-off: service name='org.a11y.Bus' unit='at-spi-dbus-bus.service' requested by ':1.0' (uid=971 pid=734 comm="/usr/bin/lightdm-gtk-greeter")
Jun 12 11:38:45 rosebriar dbus-daemon[755]: [session uid=971 pid=755] Successfully activated service 'org.freedesktop.systemd1'
Jun 12 11:38:45 rosebriar systemd[726]: Starting Accessibility services bus...
Jun 12 11:38:45 rosebriar dbus-daemon[755]: [session uid=971 pid=755] Successfully activated service 'org.a11y.Bus'
Jun 12 11:38:45 rosebriar systemd[726]: Started Accessibility services bus.
Jun 12 11:38:45 rosebriar polkitd[549]: <no filename>:3: action=[Action id='org.freedesktop.DisplayManager.AccountsService.ReadAny']
Jun 12 11:38:45 rosebriar polkitd[549]: <no filename>:4: subject=[Subject pid=734 user='lightdm' groups=lightdm seat='seat0' session='c1' local=true active=true]
Jun 12 11:38:45 rosebriar at-spi-bus-launcher[762]: dbus-daemon[762]: Activating service name='org.a11y.atspi.Registry' requested by ':1.0' (uid=971 pid=734 comm="/usr/bin/lightdm-gtk-greeter")
Jun 12 11:38:45 rosebriar at-spi-bus-launcher[762]: dbus-daemon[762]: Successfully activated service 'org.a11y.atspi.Registry'
Jun 12 11:38:45 rosebriar dbus-daemon[515]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.24' (uid=0 pid=780 comm="lightdm --session-child 12 19")
Jun 12 11:38:45 rosebriar dbus-daemon[515]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 12 11:38:45 rosebriar lightdm[780]: pam_systemd_home(lightdm:auth): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 12 11:38:45 rosebriar at-spi-bus-launcher[782]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Jun 12 11:38:48 rosebriar systemd[1]: systemd-rfkill.service: Deactivated successfully.
Jun 12 11:38:48 rosebriar 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'
Jun 12 11:38:48 rosebriar kernel: kauditd_printk_skb: 66 callbacks suppressed
Jun 12 11:38:48 rosebriar kernel: audit: type=1131 audit(1655059128.036:75): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-rfkill comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:52 rosebriar lightdm[780]: pam_unix(lightdm:auth): authentication failure; logname= uid=0 euid=0 tty=:0 ruser= rhost=  user=griffin
Jun 12 11:38:52 rosebriar audit[780]: USER_AUTH pid=780 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=? acct="griffin" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=failed'
Jun 12 11:38:52 rosebriar kernel: audit: type=1100 audit(1655059132.869:76): pid=780 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=? acct="griffin" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=failed'
Jun 12 11:38:53 rosebriar systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Jun 12 11:38:53 rosebriar audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:53 rosebriar kernel: audit: type=1131 audit(1655059133.316:77): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:38:54 rosebriar audit[780]: USER_LOGIN pid=780 uid=0 auid=4294967295 ses=4294967295 msg='op=login acct="griffin" exe="/usr/bin/lightdm" hostname=rosebriar addr=? terminal=/dev/tty7 res=failed'
Jun 12 11:38:54 rosebriar kernel: audit: type=1112 audit(1655059134.779:78): pid=780 uid=0 auid=4294967295 ses=4294967295 msg='op=login acct="griffin" exe="/usr/bin/lightdm" hostname=rosebriar addr=? terminal=/dev/tty7 res=failed'
Jun 12 11:38:54 rosebriar dbus-daemon[515]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.25' (uid=0 pid=785 comm="lightdm --session-child 12 19")
Jun 12 11:38:54 rosebriar dbus-daemon[515]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 12 11:38:54 rosebriar lightdm[785]: pam_systemd_home(lightdm:auth): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 12 11:39:00 rosebriar audit[785]: USER_AUTH pid=785 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_shells,pam_faillock,pam_permit,pam_faillock acct="griffin" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
Jun 12 11:39:00 rosebriar audit[785]: USER_ACCT pid=785 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="griffin" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
Jun 12 11:39:00 rosebriar kernel: audit: type=1100 audit(1655059140.706:79): pid=785 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_shells,pam_faillock,pam_permit,pam_faillock acct="griffin" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
Jun 12 11:39:00 rosebriar kernel: audit: type=1101 audit(1655059140.709:80): pid=785 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="griffin" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
Jun 12 11:39:00 rosebriar audit[785]: CRED_ACQ pid=785 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_shells,pam_faillock,pam_permit,pam_faillock acct="griffin" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
Jun 12 11:39:00 rosebriar audit[785]: SYSCALL arch=c000003e syscall=1 success=yes exit=4 a0=9 a1=7fffb6d12cc0 a2=4 a3=7fffb6d129d4 items=0 ppid=686 pid=785 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=2 comm="lightdm" exe="/usr/bin/lightdm" key=(null)
Jun 12 11:39:00 rosebriar audit: PROCTITLE proctitle=6C69676874646D002D2D73657373696F6E2D6368696C64003132003139
Jun 12 11:39:00 rosebriar lightdm[785]: pam_unix(lightdm:session): session opened for user griffin(uid=1000) by (uid=0)
Jun 12 11:39:00 rosebriar kernel: audit: type=1103 audit(1655059140.752:81): pid=785 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_shells,pam_faillock,pam_permit,pam_faillock acct="griffin" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
Jun 12 11:39:00 rosebriar kernel: audit: type=1006 audit(1655059140.756:82): pid=785 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=2 res=1
Jun 12 11:39:00 rosebriar kernel: audit: type=1300 audit(1655059140.756:82): arch=c000003e syscall=1 success=yes exit=4 a0=9 a1=7fffb6d12cc0 a2=4 a3=7fffb6d129d4 items=0 ppid=686 pid=785 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=2 comm="lightdm" exe="/usr/bin/lightdm" key=(null)
Jun 12 11:39:00 rosebriar kernel: audit: type=1327 audit(1655059140.756:82): proctitle=6C69676874646D002D2D73657373696F6E2D6368696C64003132003139
Jun 12 11:39:00 rosebriar systemd[1]: Created slice User Slice of UID 1000.
Jun 12 11:39:00 rosebriar systemd[1]: Starting User Runtime Directory /run/user/1000...
Jun 12 11:39:00 rosebriar systemd-logind[516]: New session 2 of user griffin.
Jun 12 11:39:00 rosebriar systemd[1]: Finished User Runtime Directory /run/user/1000.
Jun 12 11:39:00 rosebriar 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'
Jun 12 11:39:00 rosebriar kernel: audit: type=1130 audit(1655059140.762:83): 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'
Jun 12 11:39:00 rosebriar systemd[1]: Starting User Manager for UID 1000...
Jun 12 11:39:00 rosebriar dbus-daemon[515]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.28' (uid=0 pid=791 comm="(systemd)")
Jun 12 11:39:00 rosebriar dbus-daemon[515]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 12 11:39:00 rosebriar systemd[791]: pam_systemd_home(systemd-user:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 12 11:39:00 rosebriar systemd[791]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[griffin] ruser=[<unknown>] rhost=[<unknown>]
Jun 12 11:39:00 rosebriar audit[791]: USER_ACCT pid=791 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="griffin" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:39:00 rosebriar audit[791]: CRED_ACQ pid=791 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=? acct="griffin" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Jun 12 11:39:00 rosebriar audit[791]: SYSCALL arch=c000003e syscall=1 success=yes exit=4 a0=9 a1=7ffc437d5390 a2=4 a3=7ffc437d50a4 items=0 ppid=1 pid=791 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=3 comm="(systemd)" exe="/usr/lib/systemd/systemd" key=(null)
Jun 12 11:39:00 rosebriar audit: PROCTITLE proctitle="(systemd)"
Jun 12 11:39:00 rosebriar systemd[791]: pam_unix(systemd-user:session): session opened for user griffin(uid=1000) by (uid=0)
Jun 12 11:39:00 rosebriar systemd[791]: pam_env(systemd-user:session): deprecated reading of user environment enabled
Jun 12 11:39:00 rosebriar audit[791]: USER_START pid=791 uid=0 auid=1000 ses=3 msg='op=PAM:session_open grantors=pam_loginuid,pam_loginuid,pam_keyinit,pam_systemd_home,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="griffin" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:39:00 rosebriar kernel: audit: type=1101 audit(1655059140.766:84): pid=791 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="griffin" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:39:00 rosebriar kernel: audit: type=1103 audit(1655059140.766:85): pid=791 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=? acct="griffin" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
Jun 12 11:39:00 rosebriar kernel: audit: type=1006 audit(1655059140.766:86): pid=791 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=3 res=1
Jun 12 11:39:00 rosebriar systemd[791]: Queued start job for default target Main User Target.
Jun 12 11:39:00 rosebriar 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'
Jun 12 11:39:00 rosebriar audit[785]: USER_START pid=785 uid=0 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_loginuid,pam_keyinit,pam_systemd_home,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="griffin" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
Jun 12 11:39:00 rosebriar audit[785]: USER_LOGIN pid=785 uid=0 auid=1000 ses=2 msg='op=login id=1000 exe="/usr/bin/lightdm" hostname=? addr=? terminal=? res=success'
Jun 12 11:39:00 rosebriar lightdm[785]: pam_env(lightdm:session): deprecated reading of user environment enabled
Jun 12 11:39:00 rosebriar systemd[791]: Created slice User Application Slice.
Jun 12 11:39:00 rosebriar systemd[791]: Reached target Paths.
Jun 12 11:39:00 rosebriar systemd[791]: Reached target Timers.
Jun 12 11:39:00 rosebriar systemd[791]: Starting D-Bus User Message Bus Socket...
Jun 12 11:39:00 rosebriar systemd[791]: Listening on GnuPG network certificate management daemon.
Jun 12 11:39:00 rosebriar systemd[791]: Listening on GCR ssh-agent wrapper.
Jun 12 11:39:00 rosebriar systemd[791]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jun 12 11:39:00 rosebriar systemd[791]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Jun 12 11:39:00 rosebriar systemd[791]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Jun 12 11:39:00 rosebriar systemd[791]: Listening on GnuPG cryptographic agent and passphrase cache.
Jun 12 11:39:00 rosebriar systemd[791]: Listening on p11-kit server.
Jun 12 11:39:00 rosebriar systemd[791]: Listening on PipeWire PulseAudio.
Jun 12 11:39:00 rosebriar systemd[791]: Listening on PipeWire Multimedia System Socket.
Jun 12 11:39:00 rosebriar systemd[791]: Listening on D-Bus User Message Bus Socket.
Jun 12 11:39:00 rosebriar systemd[791]: Reached target Sockets.
Jun 12 11:39:00 rosebriar systemd[791]: Reached target Basic System.
Jun 12 11:39:00 rosebriar systemd[1]: Started User Manager for UID 1000.
Jun 12 11:39:00 rosebriar systemd[791]: Starting Update XDG user dir configuration...
Jun 12 11:39:00 rosebriar systemd[1]: Started Session 2 of User griffin.
Jun 12 11:39:00 rosebriar systemd[791]: Finished Update XDG user dir configuration.
Jun 12 11:39:00 rosebriar systemd[791]: Reached target Main User Target.
Jun 12 11:39:00 rosebriar systemd[791]: Startup finished in 55ms.
Jun 12 11:39:00 rosebriar systemd[791]: Created slice User Core Session Slice.
Jun 12 11:39:00 rosebriar systemd[791]: Starting D-Bus User Message Bus...
Jun 12 11:39:00 rosebriar systemd[791]: Started D-Bus User Message Bus.
Jun 12 11:39:00 rosebriar dbus-daemon[803]: [session uid=1000 pid=803] Successfully activated service 'org.freedesktop.systemd1'
Jun 12 11:39:00 rosebriar dbus-daemon[515]: [system] Activating via systemd: service name='org.freedesktop.locale1' unit='dbus-org.freedesktop.locale1.service' requested by ':1.30' (uid=1000 pid=799 comm="/usr/bin/startplasma-wayland")
Jun 12 11:39:00 rosebriar audit: BPF prog-id=22 op=LOAD
Jun 12 11:39:00 rosebriar audit: BPF prog-id=23 op=LOAD
Jun 12 11:39:00 rosebriar audit: BPF prog-id=24 op=LOAD
Jun 12 11:39:00 rosebriar systemd[1]: Starting Locale Service...
Jun 12 11:39:00 rosebriar dbus-daemon[515]: [system] Successfully activated service 'org.freedesktop.locale1'
Jun 12 11:39:00 rosebriar systemd[1]: Started Locale Service.
Jun 12 11:39:00 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-localed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:39:00 rosebriar dbus-daemon[803]: [session uid=1000 pid=803] Activating service name='org.kde.KSplash' requested by ':1.2' (uid=1000 pid=799 comm="/usr/bin/startplasma-wayland")
Jun 12 11:39:00 rosebriar systemd[791]: Reloading.
Jun 12 11:39:01 rosebriar systemd[1]: Stopping Session c1 of User lightdm...
Jun 12 11:39:01 rosebriar lightdm[722]: pam_unix(lightdm-greeter:session): session closed for user lightdm
Jun 12 11:39:01 rosebriar audit[722]: USER_END pid=722 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:session_close grantors=pam_unix,pam_systemd acct="lightdm" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
Jun 12 11:39:01 rosebriar audit[722]: CRED_DISP pid=722 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_env,pam_permit acct="lightdm" exe="/usr/bin/lightdm" hostname=? addr=? terminal=:0 res=success'
Jun 12 11:39:01 rosebriar kwin_wayland[816]: kwin_xkbcommon: XKB: inet:323:58: unrecognized keysym "XF86EmojiPicker"
Jun 12 11:39:01 rosebriar kwin_wayland[816]: kwin_xkbcommon: XKB: inet:324:58: unrecognized keysym "XF86Dictate"
Jun 12 11:39:01 rosebriar systemd[1]: session-c1.scope: Deactivated successfully.
Jun 12 11:39:01 rosebriar systemd[1]: Stopped Session c1 of User lightdm.
Jun 12 11:39:01 rosebriar systemd-logind[516]: Removed session c1.
Jun 12 11:39:02 rosebriar dbus-daemon[803]: [session uid=1000 pid=803] Successfully activated service 'org.kde.KSplash'
Jun 12 11:39:02 rosebriar kcminit_startup[822]: Initializing  "/usr/lib/qt/plugins/plasma/kcms/systemsettings/kcm_fonts.so"
Jun 12 11:39:02 rosebriar kcminit_startup[822]: Initializing  "/usr/lib/qt/plugins/plasma/kcms/systemsettings/kcm_style.so"
Jun 12 11:39:02 rosebriar kcminit_startup[822]: QDBusConnection: error: could not send signal to service "" path "//home/griffin/.kde4/share/config/kdeglobals" interface "org.kde.kconfig.notify" member "ConfigChanged": Invalid object path: //home/griffin/.kde4/share/config/kdeglobals
Jun 12 11:39:02 rosebriar kcminit_startup[822]: Initializing  "/usr/lib/qt/plugins/plasma/kcms/systemsettings/kcm_mouse.so"
Jun 12 11:39:02 rosebriar plasma_session[813]: org.kde.plasma.session: process job  "kcminit_startup" finished with exit code  0
Jun 12 11:39:02 rosebriar dbus-daemon[803]: [session uid=1000 pid=803] Activating via systemd: service name='ca.desrt.dconf' unit='dconf.service' requested by ':1.10' (uid=1000 pid=924 comm="/usr/bin/kded5")
Jun 12 11:39:02 rosebriar systemd[791]: Starting User preferences database...
Jun 12 11:39:02 rosebriar dbus-daemon[803]: [session uid=1000 pid=803] Successfully activated service 'ca.desrt.dconf'
Jun 12 11:39:02 rosebriar systemd[791]: Started User preferences database.
Jun 12 11:39:02 rosebriar ksmserver[928]: Qt: Session management error: networkIdsList argument is NULL
Jun 12 11:39:02 rosebriar kwin_wayland[816]: kf.config.core: "\"fsrestore1\" - conversion of \"481,481,0,0\" to QRect failed"
Jun 12 11:39:02 rosebriar kwin_wayland[816]: kf.config.core: "\"restore2\" - conversion of \"6,0,1908,0\" to QRect failed"
Jun 12 11:39:02 rosebriar kwin_wayland[816]: kf.config.core: "\"fsrestore2\" - conversion of \"0,0,0,0\" to QRect failed"
Jun 12 11:39:02 rosebriar plasma_session[813]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/kaccess.desktop" ("/usr/bin/kaccess")
Jun 12 11:39:02 rosebriar plasma_session[813]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/org.kde.plasmashell.desktop" ("/usr/bin/plasmashell")
Jun 12 11:39:02 rosebriar plasma_session[813]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/pam_kwallet_init.desktop" ("/usr/lib/pam_kwallet_init")
Jun 12 11:39:02 rosebriar kcminit_startup[822]: Initializing  "/usr/lib/qt/plugins/plasma/kcms/systemsettings/kcm_touchpad.so"
Jun 12 11:39:02 rosebriar kcminit_startup[822]: Initializing  "/usr/lib/qt/plugins/plasma/kcms/systemsettings/kcm_kgamma.so"
Jun 12 11:39:02 rosebriar plasma_session[813]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/xembedsniproxy.desktop" ("/usr/bin/xembedsniproxy")
Jun 12 11:39:02 rosebriar plasma_session[813]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/powerdevil.desktop" ("/usr/lib/org_kde_powerdevil")
Jun 12 11:39:02 rosebriar plasma_session[813]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/baloo_file.desktop" ("/usr/lib/baloo_file")
Jun 12 11:39:02 rosebriar plasma_session[813]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/polkit-kde-authentication-agent-1.desktop" ("/usr/lib/polkit-kde-authentication-agent-1")
Jun 12 11:39:02 rosebriar kaccess[945]: Xlib XKB extension major= 1  minor= 0
Jun 12 11:39:02 rosebriar dbus-daemon[515]: [system] Activating via systemd: service name='org.freedesktop.UDisks2' unit='udisks2.service' requested by ':1.35' (uid=1000 pid=951 comm="/usr/lib/baloo_file")
Jun 12 11:39:02 rosebriar systemd[1]: Starting Disk Manager...
Jun 12 11:39:02 rosebriar udisksd[958]: udisks daemon version 2.9.4 starting
Jun 12 11:39:02 rosebriar dbus-daemon[515]: [system] Successfully activated service 'org.freedesktop.UDisks2'
Jun 12 11:39:02 rosebriar systemd[1]: Started Disk Manager.
Jun 12 11:39:02 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=udisks2 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:39:02 rosebriar dbus-daemon[515]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service' requested by ':1.35' (uid=1000 pid=951 comm="/usr/lib/baloo_file")
Jun 12 11:39:02 rosebriar udisksd[958]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Jun 12 11:39:02 rosebriar audit: BPF prog-id=25 op=LOAD
Jun 12 11:39:02 rosebriar audit: BPF prog-id=26 op=LOAD
Jun 12 11:39:02 rosebriar systemd[1]: Starting Daemon for power management...
Jun 12 11:39:02 rosebriar dbus-daemon[803]: [session uid=1000 pid=803] Activating via systemd: service name='org.kde.ActivityManager' unit='plasma-kactivitymanagerd.service' requested by ':1.16' (uid=1000 pid=950 comm="/usr/lib/org_kde_powerdevil")
Jun 12 11:39:02 rosebriar systemd[791]: Created slice User Background Tasks Slice.
Jun 12 11:39:02 rosebriar systemd[791]: Starting KActivityManager Activity manager Service...
Jun 12 11:39:02 rosebriar kaccess[945]: X server XKB extension major= 1  minor= 0
Jun 12 11:39:02 rosebriar polkit-kde-authentication-agent-1[952]: New PolkitAgentListener  0x55eadcb544c0
Jun 12 11:39:02 rosebriar polkit-kde-authentication-agent-1[952]: Adding new listener  PolkitQt1::Agent::Listener(0x55eadcb7f0b0) for  0x55eadcb544c0
Jun 12 11:39:02 rosebriar polkit-kde-authentication-agent-1[952]: Listener online
Jun 12 11:39:02 rosebriar polkitd[549]: Registered Authentication Agent for unix-session:2 (system bus name :1.40 [/usr/lib/polkit-kde-authentication-agent-1], object path /org/kde/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
Jun 12 11:39:02 rosebriar polkit-kde-authentication-agent-1[952]: Authentication agent result: true
Jun 12 11:39:02 rosebriar dbus-daemon[803]: [session uid=1000 pid=803] Successfully activated service 'org.kde.ActivityManager'
Jun 12 11:39:02 rosebriar systemd[791]: Started KActivityManager Activity manager Service.
Jun 12 11:39:02 rosebriar kded5[924]: Installing the delayed initialization callback.
Jun 12 11:39:02 rosebriar plasma_session[813]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/org.kde.discover.notifier.desktop" ("/usr/lib/DiscoverNotifier")
Jun 12 11:39:02 rosebriar plasma_session[813]: org.kde.plasma.session: Starting autostart service  "/etc/xdg/autostart/gmenudbusmenuproxy.desktop" ("/usr/bin/gmenudbusmenuproxy")
Jun 12 11:39:02 rosebriar systemd[791]: Started Vim - Text Editor.
Jun 12 11:39:02 rosebriar systemd[791]: Started Firefox - Web Browser.
Jun 12 11:39:02 rosebriar NetworkManager[523]: <info>  [1655059142.6633] agent-manager: agent[5aa44c71a55638ff,:1.34/org.kde.plasma.networkmanagement/1000]: agent registered
Jun 12 11:39:02 rosebriar kded5[924]: org.kde.libkbolt: Failed to connect to Bolt manager DBus interface:
Jun 12 11:39:02 rosebriar kded5[924]: org.kde.bolt.kded: Couldn't connect to Bolt DBus daemon
Jun 12 11:39:02 rosebriar dbus-daemon[515]: [system] Successfully activated service 'org.freedesktop.UPower'
Jun 12 11:39:02 rosebriar systemd[1]: Started Daemon for power management.
Jun 12 11:39:02 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=upower comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:39:02 rosebriar dbus-daemon[515]: [system] Activating service name='org.kde.powerdevil.discretegpuhelper' requested by ':1.37' (uid=1000 pid=950 comm="/usr/lib/org_kde_powerdevil") (using servicehelper)
Jun 12 11:39:02 rosebriar DiscoverNotifier[998]: couldn't load "/usr/lib/qt/plugins/discover-notifier/DiscoverPackageKitNotifier.so" because "Cannot load library /usr/lib/qt/plugins/discover-notifier/DiscoverPackageKitNotifier.so: (libpackagekitqt5.so.1: cannot open shared object file: No such file or directory)"
Jun 12 11:39:02 rosebriar DiscoverNotifier[998]: couldn't load "/usr/lib/qt/plugins/discover-notifier/FlatpakNotifier.so" because "Cannot load library /usr/lib/qt/plugins/discover-notifier/FlatpakNotifier.so: (libflatpak.so.0: cannot open shared object file: No such file or directory)"
Jun 12 11:39:02 rosebriar DiscoverNotifier[998]: couldn't find any notifier backend ("/usr/lib/qt/plugins", "/usr/lib")
Jun 12 11:39:02 rosebriar kded5[924]: Delayed initialization.
Jun 12 11:39:02 rosebriar kded5[924]: Reloading the khotkeys configuration
Jun 12 11:39:02 rosebriar kded5[924]: Version 2 File!
Jun 12 11:39:02 rosebriar kded5[924]: true
Jun 12 11:39:02 rosebriar kded5[924]: Imported file "/usr/share/khotkeys/defaults.khotkeys"
Jun 12 11:39:02 rosebriar kded5[924]: Imported file "/usr/share/khotkeys/kde32b1.khotkeys"
Jun 12 11:39:02 rosebriar kded5[924]: Imported file "/usr/share/khotkeys/konqueror_gestures_kde321.khotkeys"
Jun 12 11:39:02 rosebriar baloo_file[951]: QDBusConnection: name 'org.freedesktop.UDisks2' had owner '' but we thought it was ':1.36'
Jun 12 11:39:02 rosebriar kded5[924]: 
Jun 12 11:39:02 rosebriar dbus-daemon[515]: [system] Successfully activated service 'org.kde.powerdevil.discretegpuhelper'
Jun 12 11:39:02 rosebriar dbus-daemon[515]: [system] Activating service name='org.kde.powerdevil.chargethresholdhelper' requested by ':1.37' (uid=1000 pid=950 comm="/usr/lib/org_kde_powerdevil") (using servicehelper)
Jun 12 11:39:02 rosebriar plasmashell[946]: kf.plasma.quick: Applet preload policy set to 1
Jun 12 11:39:02 rosebriar dbus-daemon[515]: [system] Successfully activated service 'org.kde.powerdevil.chargethresholdhelper'
Jun 12 11:39:02 rosebriar dbus-daemon[515]: [system] Activating service name='org.kde.powerdevil.backlighthelper' requested by ':1.37' (uid=1000 pid=950 comm="/usr/lib/org_kde_powerdevil") (using servicehelper)
Jun 12 11:39:02 rosebriar dbus-daemon[515]: [system] Activating via systemd: service name='org.freedesktop.ModemManager1' unit='dbus-org.freedesktop.ModemManager1.service' requested by ':1.34' (uid=1000 pid=924 comm="/usr/bin/kded5")
Jun 12 11:39:02 rosebriar dbus-daemon[515]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit dbus-org.freedesktop.ModemManager1.service not found.
Jun 12 11:39:02 rosebriar dbus-daemon[515]: [system] Activating via systemd: service name='org.freedesktop.ModemManager1' unit='dbus-org.freedesktop.ModemManager1.service' requested by ':1.34' (uid=1000 pid=924 comm="/usr/bin/kded5")
Jun 12 11:39:02 rosebriar dbus-daemon[515]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit dbus-org.freedesktop.ModemManager1.service not found.
Jun 12 11:39:02 rosebriar kded5[924]: kf.modemmanagerqt: Failed enumerating MM objects: "org.freedesktop.systemd1.NoSuchUnit" 
                                       "Unit dbus-org.freedesktop.ModemManager1.service not found."
Jun 12 11:39:02 rosebriar kded5[924]: Known activities: ("884859dd-0e2a-4da4-a0e2-cae2dd4571da")
Jun 12 11:39:02 rosebriar dbus-daemon[515]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service' requested by ':1.34' (uid=1000 pid=924 comm="/usr/bin/kded5")
Jun 12 11:39:02 rosebriar dbus-daemon[803]: [session uid=1000 pid=803] Activating via systemd: service name='org.bluez.obex' unit='dbus-org.bluez.obex.service' requested by ':1.9' (uid=1000 pid=924 comm="/usr/bin/kded5")
Jun 12 11:39:02 rosebriar dbus-daemon[515]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service not found.
Jun 12 11:39:02 rosebriar systemd[791]: Starting Bluetooth OBEX service...
Jun 12 11:39:02 rosebriar obexd[1082]: OBEX daemon 5.64
Jun 12 11:39:02 rosebriar dbus-daemon[803]: [session uid=1000 pid=803] Successfully activated service 'org.bluez.obex'
Jun 12 11:39:02 rosebriar systemd[791]: Started Bluetooth OBEX service.
Jun 12 11:39:02 rosebriar dbus-daemon[515]: [system] Activating service name='org.kde.kded.smart' requested by ':1.34' (uid=1000 pid=924 comm="/usr/bin/kded5") (using servicehelper)
Jun 12 11:39:02 rosebriar dbus-daemon[515]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
Jun 12 11:39:02 rosebriar org_kde_powerdevil[950]: org.kde.powerdevil: org.kde.powerdevil.chargethresholdhelper.getthreshold failed "Charge thresholds not supported"
Jun 12 11:39:02 rosebriar dbus-daemon[803]: [session uid=1000 pid=803] Activating via systemd: service name='org.a11y.Bus' unit='at-spi-dbus-bus.service' requested by ':1.25' (uid=1000 pid=1049 comm="/usr/bin/gvim")
Jun 12 11:39:02 rosebriar systemd[791]: Starting Accessibility services bus...
Jun 12 11:39:02 rosebriar dbus-daemon[515]: [system] Successfully activated service 'org.kde.kded.smart'
Jun 12 11:39:02 rosebriar kded5[924]: kf.bluezqt: PendingCall Error: "Unit dbus-org.bluez.service not found."
Jun 12 11:39:02 rosebriar dbus-daemon[803]: [session uid=1000 pid=803] Successfully activated service 'org.a11y.Bus'
Jun 12 11:39:02 rosebriar systemd[791]: Started Accessibility services bus.
Jun 12 11:39:02 rosebriar kded5[924]: kscreen.kded: PowerDevil SuspendSession action not available!
Jun 12 11:39:02 rosebriar kded5[924]: Registering ":1.23/StatusNotifierItem" to system tray
Jun 12 11:39:02 rosebriar at-spi-bus-launcher[1098]: dbus-daemon[1098]: Activating service name='org.a11y.atspi.Registry' requested by ':1.0' (uid=1000 pid=1049 comm="/usr/bin/gvim")
Jun 12 11:39:02 rosebriar at-spi-bus-launcher[1098]: dbus-daemon[1098]: Successfully activated service 'org.a11y.atspi.Registry'
Jun 12 11:39:02 rosebriar at-spi-bus-launcher[1149]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Jun 12 11:39:02 rosebriar org_kde_powerdevil[950]: org.kde.powerdevil: Handle button events action could not check for screen configuration
Jun 12 11:39:02 rosebriar org_kde_powerdevil[950]: org.kde.powerdevil: org.kde.powerdevil.chargethresholdhelper.getthreshold failed "Charge thresholds not supported"
Jun 12 11:39:02 rosebriar systemd[791]: Started PipeWire Multimedia Service.
Jun 12 11:39:02 rosebriar systemd[791]: Started Multimedia Service Session Manager.
Jun 12 11:39:02 rosebriar systemd[791]: Started PipeWire PulseAudio.
Jun 12 11:39:02 rosebriar pipewire-pulse[1179]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jun 12 11:39:02 rosebriar pipewire-pulse[1179]: mod.rt: could not set nice-level to -11: No such file or directory
Jun 12 11:39:02 rosebriar pipewire[1177]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jun 12 11:39:02 rosebriar pipewire[1177]: mod.rt: could not set nice-level to -11: No such file or directory
Jun 12 11:39:02 rosebriar pipewire-pulse[1179]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jun 12 11:39:02 rosebriar wireplumber[1178]: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jun 12 11:39:02 rosebriar wireplumber[1178]: could not set nice-level to -11: No such file or directory
Jun 12 11:39:02 rosebriar pipewire[1177]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jun 12 11:39:02 rosebriar wireplumber[1178]: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jun 12 11:39:02 rosebriar wireplumber[1178]: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jun 12 11:39:02 rosebriar wireplumber[1178]: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jun 12 11:39:02 rosebriar wireplumber[1178]: could not make thread 1183 realtime using RTKit: No such file or directory
Jun 12 11:39:02 rosebriar pipewire[1177]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jun 12 11:39:02 rosebriar pipewire[1177]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jun 12 11:39:02 rosebriar pipewire[1177]: mod.rt: could not make thread 1185 realtime using RTKit: No such file or directory
Jun 12 11:39:02 rosebriar pipewire-pulse[1179]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jun 12 11:39:02 rosebriar pipewire-pulse[1179]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jun 12 11:39:02 rosebriar pipewire-pulse[1179]: mod.rt: could not make thread 1190 realtime using RTKit: No such file or directory
Jun 12 11:39:02 rosebriar pipewire-pulse[1188]: 536870912
Jun 12 11:39:02 rosebriar plasmashell[946]: qml: PlasmaExtras.ScrollArea is deprecated. Use PlasmaComponents3.ScrollView instead.
Jun 12 11:39:02 rosebriar plasmashell[946]: qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
Jun 12 11:39:02 rosebriar wireplumber[1178]: SPA handle 'api.alsa.acp.device' could not be loaded; is it installed?
Jun 12 11:39:02 rosebriar wireplumber[1178]: Failed to create 'api.alsa.acp.device' device
Jun 12 11:39:02 rosebriar plasmashell[946]: Plasma Shell startup completed
Jun 12 11:39:03 rosebriar wireplumber[1178]: Path Mic ACP LED is not a volume or mute control
Jun 12 11:39:03 rosebriar plasmashell[946]: qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
Jun 12 11:39:03 rosebriar plasmashell[946]: qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
Jun 12 11:39:03 rosebriar wireplumber[1178]: <WpSiAudioAdapter:0x55df8f4b1050> Object activation aborted: proxy destroyed
Jun 12 11:39:03 rosebriar wireplumber[1178]: <WpSiAudioAdapter:0x55df8f4b1050> failed to activate item: Object activation aborted: proxy destroyed
Jun 12 11:39:03 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/DigitalClock.qml:530:9: QML Label: Binding loop detected for property "height"
Jun 12 11:39:03 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/DigitalClock.qml:495:13: QML Label: Binding loop detected for property "height"
Jun 12 11:39:03 rosebriar plasmashell[946]: Trying to use rootObject before initialization is completed, whilst using setInitializationDelayed. Forcing completion
Jun 12 11:39:03 rosebriar plasmashell[946]: Entry is not valid "org.kde.kontact.desktop" QSharedPointer(0x559b769a6410)
Jun 12 11:39:03 rosebriar plasmashell[946]: Entry is not valid "ktp-contactlist.desktop" QSharedPointer(0x559b769a5d90)
Jun 12 11:39:03 rosebriar plasmashell[946]: Entry is not valid "org.kde.kontact.desktop" QSharedPointer(0x559b76901590)
Jun 12 11:39:03 rosebriar plasmashell[946]: Entry is not valid "ktp-contactlist.desktop" QSharedPointer(0x559b769a8f80)
Jun 12 11:39:03 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/DigitalClock.qml:495:13: QML Label: Binding loop detected for property "height"
Jun 12 11:39:03 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/DigitalClock.qml:530:9: QML Label: Binding loop detected for property "height"
Jun 12 11:39:03 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/DigitalClock.qml:552:5: QML Label: Binding loop detected for property "height"
Jun 12 11:39:03 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.panel/contents/ui/main.qml:18:1: QML DropArea (parent or ancestor of QQuickLayoutAttached): Binding loop detected for property "minimumWidth"
Jun 12 11:39:03 rosebriar plasmashell[946]: qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
Jun 12 11:39:03 rosebriar plasmashell[946]: Cyclic dependency detected between "file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/Globals.qml" and "file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationHeader.qml"
Jun 12 11:39:03 rosebriar kded5[924]: Registering "org.kde.StatusNotifierHost-946" as system tray
Jun 12 11:39:03 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/ExpandedRepresentation.qml:165:9: QML HiddenItemsView: Binding loop detected for property "implicitHeight"
Jun 12 11:39:03 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.private.systemtray/contents/ui/HiddenItemsView.qml:32:5: QML GridView: Binding loop detected for property "cellWidth"
Jun 12 11:39:03 rosebriar plasmashell[946]: qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
Jun 12 11:39:03 rosebriar plasmashell[946]: QFont::setPointSizeF: Point size <= 0 (0.000000), must be greater than 0
Jun 12 11:39:04 rosebriar plasmashell[946]: file:///usr/lib/qt/qml/org/kde/plasma/extras/PlaceholderMessage.qml:238:5: QML Heading: Binding loop detected for property "verticalAlignment"
Jun 12 11:39:04 rosebriar plasmashell[946]: kf5idletime_kwayland: This plugin does not support polling idle time
Jun 12 11:39:04 rosebriar plasmashell[946]: Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
Jun 12 11:39:04 rosebriar plasmashell[946]: Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
Jun 12 11:39:04 rosebriar plasmashell[946]: file:///usr/lib/qt/qml/org/kde/plasma/extras/PlaceholderMessage.qml:238:5: QML Heading: Binding loop detected for property "verticalAlignment"
Jun 12 11:39:05 rosebriar plasmashell[946]: file:///usr/lib/qt/qml/org/kde/plasma/extras/PlaceholderMessage.qml:238:5: QML Heading: Binding loop detected for property "verticalAlignment"
Jun 12 11:39:05 rosebriar plasmashell[946]: file:///usr/lib/qt/qml/org/kde/plasma/extras/PlaceholderMessage.qml:238:5: QML Heading: Binding loop detected for property "verticalAlignment"
Jun 12 11:39:05 rosebriar plasmashell[946]: file:///usr/lib/qt/qml/org/kde/plasma/extras/PlaceholderMessage.qml:238:5: QML Heading: Binding loop detected for property "verticalAlignment"
Jun 12 11:39:05 rosebriar plasmashell[946]: Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
Jun 12 11:39:05 rosebriar plasmashell[946]: Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
Jun 12 11:39:06 rosebriar plasmashell[946]: file:///usr/lib/qt/qml/org/kde/plasma/extras/PlaceholderMessage.qml:238:5: QML Heading: Binding loop detected for property "verticalAlignment"
Jun 12 11:39:06 rosebriar plasmashell[946]: file:///usr/lib/qt/qml/org/kde/plasma/extras/PlaceholderMessage.qml:238:5: QML Heading: Binding loop detected for property "verticalAlignment"
Jun 12 11:39:06 rosebriar plasmashell[946]: Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
Jun 12 11:39:06 rosebriar plasmashell[946]: Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
Jun 12 11:39:06 rosebriar plasmashell[946]: Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
Jun 12 11:39:06 rosebriar plasmashell[946]: Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
Jun 12 11:39:07 rosebriar plasmashell[946]: file:///usr/lib/qt/qml/org/kde/plasma/extras/PlaceholderMessage.qml:238:5: QML Heading: Binding loop detected for property "verticalAlignment"
Jun 12 11:39:07 rosebriar plasmashell[946]: Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
Jun 12 11:39:07 rosebriar plasmashell[946]: Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
Jun 12 11:39:08 rosebriar plasmashell[946]: file:///usr/lib/qt/qml/org/kde/plasma/extras/PlaceholderMessage.qml:238:5: QML Heading: Binding loop detected for property "verticalAlignment"
Jun 12 11:39:08 rosebriar plasmashell[946]: Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
Jun 12 11:39:08 rosebriar plasmashell[946]: Qt Quick Layouts: Detected recursive rearrange. Aborting after two iterations.
Jun 12 11:39:09 rosebriar kernel: usb 3-2: new high-speed USB device number 2 using xhci_hcd
Jun 12 11:39:09 rosebriar kernel: usb 3-2: New USB device found, idVendor=04e8, idProduct=6860, bcdDevice= c.00
Jun 12 11:39:09 rosebriar kernel: usb 3-2: New USB device strings: Mfr=7, Product=8, SerialNumber=9
Jun 12 11:39:09 rosebriar kernel: usb 3-2: Product: SAMSUNG_Android
Jun 12 11:39:09 rosebriar kernel: usb 3-2: Manufacturer: SAMSUNG
Jun 12 11:39:09 rosebriar kernel: usb 3-2: SerialNumber: RFCN906X4CB
Jun 12 11:39:09 rosebriar kernel: cdc_acm 3-2:1.1: ttyACM0: USB ACM device
Jun 12 11:39:09 rosebriar kernel: usbcore: registered new interface driver cdc_acm
Jun 12 11:39:09 rosebriar kernel: cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
Jun 12 11:39:09 rosebriar plasmashell[946]: kf5idletime_kwayland: This plugin does not support polling idle time
Jun 12 11:39:11 rosebriar systemd[1]: Stopping User Manager for UID 971...
Jun 12 11:39:11 rosebriar systemd[726]: Activating special unit Exit the Session...
Jun 12 11:39:11 rosebriar systemd[726]: Stopped target Main User Target.
Jun 12 11:39:11 rosebriar systemd[726]: Stopping Accessibility services bus...
Jun 12 11:39:11 rosebriar systemd[726]: Stopping D-Bus User Message Bus...
Jun 12 11:39:12 rosebriar systemd[726]: Stopped D-Bus User Message Bus.
Jun 12 11:39:12 rosebriar systemd[726]: Stopped Accessibility services bus.
Jun 12 11:39:12 rosebriar systemd[726]: Removed slice User Core Session Slice.
Jun 12 11:39:12 rosebriar systemd[726]: Stopped target Basic System.
Jun 12 11:39:12 rosebriar systemd[726]: Stopped target Paths.
Jun 12 11:39:12 rosebriar systemd[726]: Stopped target Sockets.
Jun 12 11:39:12 rosebriar systemd[726]: Stopped target Timers.
Jun 12 11:39:12 rosebriar systemd[726]: Closed D-Bus User Message Bus Socket.
Jun 12 11:39:12 rosebriar systemd[726]: Closed GnuPG network certificate management daemon.
Jun 12 11:39:12 rosebriar systemd[726]: Closed GCR ssh-agent wrapper.
Jun 12 11:39:12 rosebriar systemd[726]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jun 12 11:39:12 rosebriar systemd[726]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
Jun 12 11:39:12 rosebriar systemd[726]: Closed GnuPG cryptographic agent (ssh-agent emulation).
Jun 12 11:39:12 rosebriar systemd[726]: Closed GnuPG cryptographic agent and passphrase cache.
Jun 12 11:39:12 rosebriar systemd[726]: Closed p11-kit server.
Jun 12 11:39:12 rosebriar systemd[726]: Closed PipeWire PulseAudio.
Jun 12 11:39:12 rosebriar systemd[726]: Closed PipeWire Multimedia System Socket.
Jun 12 11:39:12 rosebriar systemd[726]: Removed slice User Application Slice.
Jun 12 11:39:12 rosebriar systemd[726]: Reached target Shutdown.
Jun 12 11:39:12 rosebriar systemd[726]: Finished Exit the Session.
Jun 12 11:39:12 rosebriar systemd[726]: Reached target Exit the Session.
Jun 12 11:39:12 rosebriar systemd[727]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8004 service=[systemd-user] terminal=[] user=[lightdm] ruser=[<unknown>] rhost=[<unknown>]
Jun 12 11:39:12 rosebriar systemd[1]: user@971.service: Deactivated successfully.
Jun 12 11:39:12 rosebriar systemd[1]: Stopped User Manager for UID 971.
Jun 12 11:39:11 rosebriar audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@971 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:39:12 rosebriar kernel: kauditd_printk_skb: 16 callbacks suppressed
Jun 12 11:39:12 rosebriar kernel: audit: type=1131 audit(1655059151.996:101): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@971 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:39:12 rosebriar systemd[1]: Stopping User Runtime Directory /run/user/971...
Jun 12 11:39:12 rosebriar systemd[1]: run-user-971.mount: Deactivated successfully.
Jun 12 11:39:12 rosebriar systemd[1]: user-runtime-dir@971.service: Deactivated successfully.
Jun 12 11:39:12 rosebriar systemd[1]: Stopped User Runtime Directory /run/user/971.
Jun 12 11:39:12 rosebriar audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@971 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:39:12 rosebriar systemd[1]: Removed slice User Slice of UID 971.
Jun 12 11:39:12 rosebriar kernel: audit: type=1131 audit(1655059152.002:102): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@971 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:39:13 rosebriar systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Jun 12 11:39:13 rosebriar 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'
Jun 12 11:39:13 rosebriar kernel: audit: type=1131 audit(1655059153.292:103): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:39:13 rosebriar audit: BPF prog-id=0 op=UNLOAD
Jun 12 11:39:13 rosebriar audit: BPF prog-id=0 op=UNLOAD
Jun 12 11:39:13 rosebriar audit: BPF prog-id=0 op=UNLOAD
Jun 12 11:39:13 rosebriar kernel: audit: type=1334 audit(1655059153.386:104): prog-id=0 op=UNLOAD
Jun 12 11:39:13 rosebriar kernel: audit: type=1334 audit(1655059153.386:105): prog-id=0 op=UNLOAD
Jun 12 11:39:13 rosebriar kernel: audit: type=1334 audit(1655059153.386:106): prog-id=0 op=UNLOAD
Jun 12 11:39:27 rosebriar kernel: usb 3-2: USB disconnect, device number 2
Jun 12 11:39:27 rosebriar plasmashell[946]: file:///usr/lib/qt/qml/org/kde/plasma/extras/ExpandableListItem.qml:292: TypeError: Cannot read property 'enabled' of null
Jun 12 11:39:28 rosebriar kernel: usb 3-2: new high-speed USB device number 3 using xhci_hcd
Jun 12 11:39:28 rosebriar kernel: usb 3-2: New USB device found, idVendor=04e8, idProduct=6864, bcdDevice= c.00
Jun 12 11:39:28 rosebriar kernel: usb 3-2: New USB device strings: Mfr=7, Product=8, SerialNumber=9
Jun 12 11:39:28 rosebriar kernel: usb 3-2: Product: SAMSUNG_Android
Jun 12 11:39:28 rosebriar kernel: usb 3-2: Manufacturer: SAMSUNG
Jun 12 11:39:28 rosebriar kernel: usb 3-2: SerialNumber: RFCN906X4CB
Jun 12 11:39:28 rosebriar mtp-probe[1573]: checking bus 3, device 3: "/sys/devices/pci0000:00/0000:00:08.1/0000:03:00.4/usb3/3-2"
Jun 12 11:39:28 rosebriar mtp-probe[1573]: bus: 3, device: 3 was not an MTP device
Jun 12 11:39:28 rosebriar kernel: usbcore: registered new interface driver cdc_ether
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3142] manager: (usb0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/3)
Jun 12 11:39:28 rosebriar mtp-probe[1574]: checking bus 3, device 3: "/sys/devices/pci0000:00/0000:00:08.1/0000:03:00.4/usb3/3-2"
Jun 12 11:39:28 rosebriar mtp-probe[1574]: bus: 3, device: 3 was not an MTP device
Jun 12 11:39:28 rosebriar kernel: rndis_host 3-2:1.0 usb0: register 'rndis_host' at usb-0000:03:00.4-2, RNDIS device, 22:52:78:80:b7:bb
Jun 12 11:39:28 rosebriar kernel: usbcore: registered new interface driver rndis_host
Jun 12 11:39:28 rosebriar kernel: rndis_host 3-2:1.0 enp3s0f4u2: renamed from usb0
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3704] device (usb0): interface index 3 renamed iface from 'usb0' to 'enp3s0f4u2'
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3742] device (enp3s0f4u2): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3747] device (enp3s0f4u2): carrier: link connected
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3756] settings: (enp3s0f4u2): created default wired connection 'Wired connection 1'
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3761] device (enp3s0f4u2): state change: unavailable -> disconnected (reason 'none', sys-iface-state: 'managed')
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3774] policy: auto-activating connection 'Wired connection 1' (5677942e-e604-3598-903e-fa4a80721622)
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3777] device (enp3s0f4u2): Activation: starting connection 'Wired connection 1' (5677942e-e604-3598-903e-fa4a80721622)
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3779] device (enp3s0f4u2): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3780] manager: NetworkManager state is now CONNECTING
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3781] device (enp3s0f4u2): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3784] device (enp3s0f4u2): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3786] dhcp4 (enp3s0f4u2): activation: beginning transaction (timeout in 45 seconds)
Jun 12 11:39:28 rosebriar kded5[924]: org.kde.plasma.nm.kded: Unhandled active connection state change:  1
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3904] dhcp4 (enp3s0f4u2): state changed new lease, address=192.168.255.252
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3912] device (enp3s0f4u2): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
Jun 12 11:39:28 rosebriar dbus-daemon[515]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.4' (uid=0 pid=523 comm="/usr/bin/NetworkManager --no-daemon")
Jun 12 11:39:28 rosebriar systemd[1]: Starting Network Manager Script Dispatcher Service...
Jun 12 11:39:28 rosebriar dbus-daemon[515]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Jun 12 11:39:28 rosebriar systemd[1]: Started Network Manager Script Dispatcher Service.
Jun 12 11:39:28 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:39:28 rosebriar kernel: audit: type=1130 audit(1655059168.389:107): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3960] device (enp3s0f4u2): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3960] device (enp3s0f4u2): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3962] manager: NetworkManager state is now CONNECTED_LOCAL
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3963] manager: NetworkManager state is now CONNECTED_SITE
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3964] policy: set 'Wired connection 1' (enp3s0f4u2) as default for IPv4 routing and DNS
Jun 12 11:39:28 rosebriar systemd-resolved[500]: enp3s0f4u2: Bus client set default route setting: yes
Jun 12 11:39:28 rosebriar systemd-resolved[500]: enp3s0f4u2: Bus client set DNS server list to: 192.168.255.190
Jun 12 11:39:28 rosebriar NetworkManager[523]: <info>  [1655059168.3982] device (enp3s0f4u2): Activation: successful, device activated.
Jun 12 11:39:28 rosebriar systemd-resolved[500]: Using degraded feature set UDP instead of UDP+EDNS0 for DNS server 192.168.255.190.
Jun 12 11:39:28 rosebriar systemd-resolved[500]: Using degraded feature set UDP instead of UDP+EDNS0 for DNS server 192.168.255.190.
Jun 12 11:39:28 rosebriar plasmashell[946]: Could not find the Plasmoid for Plasma::FrameSvgItem(0x559b77a66580) QQmlContext(0x559b76ccc7b0) QUrl("file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/Globals.qml")
Jun 12 11:39:28 rosebriar plasmashell[946]: Could not find the Plasmoid for Plasma::FrameSvgItem(0x559b77a66580) QQmlContext(0x559b76ccc7b0) QUrl("file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/Globals.qml")
Jun 12 11:39:28 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml:219:21: QML SelectableLabel: Binding loop detected for property "implicitWidth"
Jun 12 11:39:28 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml:219:21: QML SelectableLabel: Binding loop detected for property "implicitWidth"
Jun 12 11:39:28 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml:219:21: QML SelectableLabel: Binding loop detected for property "implicitHeight"
Jun 12 11:39:28 rosebriar plasmashell[946]: Could not find the Plasmoid for Plasma::FrameSvgItem(0x559b7847a890) QQmlContext(0x559b76ccc7b0) QUrl("file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/Globals.qml")
Jun 12 11:39:28 rosebriar plasmashell[946]: Could not find the Plasmoid for Plasma::FrameSvgItem(0x559b7847a890) QQmlContext(0x559b76ccc7b0) QUrl("file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/Globals.qml")
Jun 12 11:39:28 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml:219:21: QML SelectableLabel: Binding loop detected for property "implicitWidth"
Jun 12 11:39:28 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml:219:21: QML SelectableLabel: Binding loop detected for property "implicitWidth"
Jun 12 11:39:28 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml:219:21: QML SelectableLabel: Binding loop detected for property "implicitHeight"
Jun 12 11:39:30 rosebriar NetworkManager[523]: <info>  [1655059170.8026] manager: NetworkManager state is now CONNECTED_GLOBAL
Jun 12 11:39:30 rosebriar plasmashell[946]: qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
Jun 12 11:39:30 rosebriar systemd[1]: systemd-localed.service: Deactivated successfully.
Jun 12 11:39:30 rosebriar audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-localed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:39:30 rosebriar kernel: audit: type=1131 audit(1655059170.996:108): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-localed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:39:31 rosebriar audit: BPF prog-id=0 op=UNLOAD
Jun 12 11:39:31 rosebriar audit: BPF prog-id=0 op=UNLOAD
Jun 12 11:39:31 rosebriar audit: BPF prog-id=0 op=UNLOAD
Jun 12 11:39:31 rosebriar kernel: audit: type=1334 audit(1655059171.129:109): prog-id=0 op=UNLOAD
Jun 12 11:39:31 rosebriar kernel: audit: type=1334 audit(1655059171.129:110): prog-id=0 op=UNLOAD
Jun 12 11:39:31 rosebriar kernel: audit: type=1334 audit(1655059171.129:111): prog-id=0 op=UNLOAD
Jun 12 11:39:31 rosebriar plasmashell[946]: kf.sonnet.core: Sonnet: Unable to load plugin "/usr/lib/qt/plugins/kf5/sonnet/sonnet_aspell.so" Error: "Cannot load library /usr/lib/qt/plugins/kf5/sonnet/sonnet_aspell.so: (libaspell.so.15: cannot open shared object file: No such file or directory)"
Jun 12 11:39:31 rosebriar plasmashell[946]: kf.sonnet.core: Sonnet: Unable to load plugin "/usr/lib/qt/plugins/kf5/sonnet/sonnet_hspell.so" Error: "Cannot load library /usr/lib/qt/plugins/kf5/sonnet/sonnet_hspell.so: (libhspell.so.0: cannot open shared object file: No such file or directory)"
Jun 12 11:39:31 rosebriar plasmashell[946]: kf.sonnet.core: Sonnet: Unable to load plugin "/usr/lib/qt/plugins/kf5/sonnet/sonnet_hunspell.so" Error: "Cannot load library /usr/lib/qt/plugins/kf5/sonnet/sonnet_hunspell.so: (libhunspell-1.7.so.0: cannot open shared object file: No such file or directory)"
Jun 12 11:39:31 rosebriar plasmashell[946]: kf.sonnet.core: Sonnet: Unable to load plugin "/usr/lib/qt/plugins/kf5/sonnet/sonnet_voikko.so" Error: "Cannot load library /usr/lib/qt/plugins/kf5/sonnet/sonnet_voikko.so: (libvoikko.so.1: cannot open shared object file: No such file or directory)"
Jun 12 11:39:31 rosebriar plasmashell[946]: kf.sonnet.core: Sonnet: Unable to load plugin "/usr/lib/qt/plugins/kf5/sonnet/sonnet_aspell.so" Error: "Cannot load library /usr/lib/qt/plugins/kf5/sonnet/sonnet_aspell.so: (libaspell.so.15: cannot open shared object file: No such file or directory)"
Jun 12 11:39:31 rosebriar plasmashell[946]: kf.sonnet.core: Sonnet: Unable to load plugin "/usr/lib/qt/plugins/kf5/sonnet/sonnet_hspell.so" Error: "Cannot load library /usr/lib/qt/plugins/kf5/sonnet/sonnet_hspell.so: (libhspell.so.0: cannot open shared object file: No such file or directory)"
Jun 12 11:39:31 rosebriar plasmashell[946]: kf.sonnet.core: Sonnet: Unable to load plugin "/usr/lib/qt/plugins/kf5/sonnet/sonnet_hunspell.so" Error: "Cannot load library /usr/lib/qt/plugins/kf5/sonnet/sonnet_hunspell.so: (libhunspell-1.7.so.0: cannot open shared object file: No such file or directory)"
Jun 12 11:39:31 rosebriar plasmashell[946]: kf.sonnet.core: Sonnet: Unable to load plugin "/usr/lib/qt/plugins/kf5/sonnet/sonnet_voikko.so" Error: "Cannot load library /usr/lib/qt/plugins/kf5/sonnet/sonnet_voikko.so: (libvoikko.so.1: cannot open shared object file: No such file or directory)"
Jun 12 11:39:31 rosebriar plasmashell[946]: kf.sonnet.core: Sonnet: No speller backends available!
Jun 12 11:39:31 rosebriar plasmashell[946]: kf.sonnet.core: No language dictionaries for the language: "en_US" trying to load en_US as default
Jun 12 11:39:31 rosebriar plasmashell[946]: kf.sonnet.core: No language dictionaries for the language: "en_US"
Jun 12 11:39:31 rosebriar plasmashell[946]: Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
Jun 12 11:39:31 rosebriar dbus-daemon[803]: [session uid=1000 pid=803] Activating via systemd: service name='org.kde.runners.baloo' unit='plasma-baloorunner.service' requested by ':1.18' (uid=1000 pid=946 comm="/usr/bin/plasmashell")
Jun 12 11:39:31 rosebriar systemd[791]: Starting KRunner provider for baloo file indexer...
Jun 12 11:39:31 rosebriar dbus-daemon[803]: [session uid=1000 pid=803] Successfully activated service 'org.kde.runners.baloo'
Jun 12 11:39:31 rosebriar systemd[791]: Started KRunner provider for baloo file indexer.
Jun 12 11:39:32 rosebriar systemd[791]: Started systemsettings.
Jun 12 11:39:32 rosebriar systemsettings[1649]: file:///usr/lib/qt/qml/org/kde/kirigami.2/PlaceholderMessage.qml:235:5: QML Heading: Binding loop detected for property "verticalAlignment"
Jun 12 11:39:32 rosebriar systemsettings[1649]: QQmlEngine::setContextForObject(): Object already has a QQmlContext
Jun 12 11:39:32 rosebriar systemsettings[1649]: qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
Jun 12 11:39:34 rosebriar plasmashell[946]: qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
Jun 12 11:39:34 rosebriar plasmashell[946]: kf.plasma.quick: Couldn't create KWindowShadow for PlasmaQuick::Dialog_QML_229(0x559b76a4e7b0, name="popupWindow")
Jun 12 11:39:34 rosebriar plasmashell[946]: kf.plasma.quick: Couldn't create KWindowShadow for PlasmaQuick::Dialog_QML_229(0x559b76a4e7b0, name="popupWindow")
Jun 12 11:39:34 rosebriar plasmashell[946]: kf.plasma.quick: Couldn't create KWindowShadow for PlasmaQuick::Dialog_QML_229(0x559b76a4e7b0, name="popupWindow")
Jun 12 11:39:34 rosebriar plasmashell[946]: kf.sonnet.core: No language dictionaries for the language: "en_US" trying to load en_US as default
Jun 12 11:39:34 rosebriar plasmashell[946]: kf.sonnet.core: No language dictionaries for the language: "en_US"
Jun 12 11:39:36 rosebriar systemd[791]: Started Konsole - Terminal.
Jun 12 11:39:38 rosebriar systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Jun 12 11:39:38 rosebriar kernel: audit: type=1131 audit(1655059178.402:112): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:39:38 rosebriar audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:39:43 rosebriar systemd-timesyncd[501]: Contacted time server 45.87.76.3:123 (0.arch.pool.ntp.org).
Jun 12 11:39:43 rosebriar systemd-timesyncd[501]: Initial clock synchronization to Sun 2022-06-12 11:39:43.015345 PDT.
Jun 12 11:39:43 rosebriar systemd-resolved[500]: Clock change detected. Flushing caches.
Jun 12 11:40:02 rosebriar kwin_wayland[816]: This plugin does not support raise()
Jun 12 11:40:23 rosebriar plasmashell[946]: trying to show an empty dialog
Jun 12 11:40:24 rosebriar plasmashell[946]: kf.plasma.quick: Couldn't create KWindowShadow for ToolTipDialog(0x559b76ac6e60)
Jun 12 11:40:24 rosebriar plasmashell[946]: kf.plasma.quick: Couldn't create KWindowShadow for ToolTipDialog(0x559b76ac6e60)
Jun 12 11:40:24 rosebriar plasmashell[946]: kf.plasma.quick: Couldn't create KWindowShadow for ToolTipDialog(0x559b76ac6e60)
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.plasma.quick: Couldn't create KWindowShadow for PlasmaQuick::Dialog(0x559b76dd22f0)
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.plasma.quick: Couldn't create KWindowShadow for PlasmaQuick::Dialog(0x559b76dd22f0)
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.plasma.quick: Couldn't create KWindowShadow for PlasmaQuick::Dialog(0x559b76dd22f0)
Jun 12 11:40:25 rosebriar audit[523]: USYS_CONFIG pid=523 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics interface="enp3s0f4u2" ifindex=3 args=2000 pid=946 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
Jun 12 11:40:25 rosebriar NetworkManager[523]: <info>  [1655059225.1086] audit: op="statistics" interface="enp3s0f4u2" ifindex=3 args="2000" pid=946 uid=1000 result="success"
Jun 12 11:40:25 rosebriar kernel: audit: type=1111 audit(1655059225.103:113): pid=523 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics interface="enp3s0f4u2" ifindex=3 args=2000 pid=946 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:25 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:26 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:26 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:26 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:26 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:27 rosebriar NetworkManager[523]: <info>  [1655059227.7501] device (wlan0): Activation: starting connection 'IceMint_5G' (83b964ad-1d14-4ff2-b33e-a9f9f04aec82)
Jun 12 11:40:27 rosebriar audit[523]: USYS_CONFIG pid=523 uid=0 auid=4294967295 ses=4294967295 msg='op=connection-activate uuid=83b964ad-1d14-4ff2-b33e-a9f9f04aec82 name="IceMint_5G" pid=946 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
Jun 12 11:40:27 rosebriar NetworkManager[523]: <info>  [1655059227.7502] audit: op="connection-activate" uuid="83b964ad-1d14-4ff2-b33e-a9f9f04aec82" name="IceMint_5G" pid=946 uid=1000 result="success"
Jun 12 11:40:27 rosebriar NetworkManager[523]: <info>  [1655059227.7503] device (wlan0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jun 12 11:40:27 rosebriar NetworkManager[523]: <info>  [1655059227.7506] device (wlan0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jun 12 11:40:27 rosebriar NetworkManager[523]: <info>  [1655059227.7515] device (wlan0): state change: config -> need-auth (reason 'no-secrets', sys-iface-state: 'managed')
Jun 12 11:40:27 rosebriar kernel: audit: type=1111 audit(1655059227.748:114): pid=523 uid=0 auid=4294967295 ses=4294967295 msg='op=connection-activate uuid=83b964ad-1d14-4ff2-b33e-a9f9f04aec82 name="IceMint_5G" pid=946 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
Jun 12 11:40:27 rosebriar audit[523]: USYS_CONFIG pid=523 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics interface="enp3s0f4u2" ifindex=3 args=0 pid=946 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
Jun 12 11:40:27 rosebriar NetworkManager[523]: <info>  [1655059227.8496] audit: op="statistics" interface="enp3s0f4u2" ifindex=3 args="0" pid=946 uid=1000 result="success"
Jun 12 11:40:27 rosebriar kernel: audit: type=1111 audit(1655059227.848:115): pid=523 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics interface="enp3s0f4u2" ifindex=3 args=0 pid=946 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
Jun 12 11:40:27 rosebriar plasmashell[946]: org.kde.kf5.kwindowsystem.kwayland: Failed to recreate shadow for PlasmaQuick::Dialog(0x559b76dd22f0)
Jun 12 11:40:27 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:27 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:27 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:27 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:32 rosebriar NetworkManager[523]: <info>  [1655059232.6592] device (wlan0): state change: need-auth -> config (reason 'none', sys-iface-state: 'managed')
Jun 12 11:40:32 rosebriar iwd[551]: CMD_SET_CQM failed: Operation not supported
Jun 12 11:40:32 rosebriar NetworkManager[523]: <info>  [1655059232.6818] device (wlan0): new IWD device state is connecting
Jun 12 11:40:37 rosebriar iwd[551]: 4-Way handshake failed for ifindex: 2, reason: 15
Jun 12 11:40:37 rosebriar NetworkManager[523]: <error> [1655059237.9737] device (wlan0): Activation: (wifi) Network.Connect failed: GDBus.Error:net.connman.iwd.Failed: Operation failed
Jun 12 11:40:37 rosebriar NetworkManager[523]: <info>  [1655059237.9739] device (wlan0): state change: config -> failed (reason 'no-secrets', sys-iface-state: 'managed')
Jun 12 11:40:37 rosebriar NetworkManager[523]: <warn>  [1655059237.9740] device (wlan0): Activation: failed for connection 'IceMint_5G'
Jun 12 11:40:37 rosebriar NetworkManager[523]: <info>  [1655059237.9741] device (wlan0): new IWD device state is disconnected
Jun 12 11:40:37 rosebriar NetworkManager[523]: <info>  [1655059237.9742] device (wlan0): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jun 12 11:40:37 rosebriar plasmashell[946]: Could not find the Plasmoid for Plasma::FrameSvgItem(0x559b76aa3860) QQmlContext(0x559b76ccc7b0) QUrl("file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/Globals.qml")
Jun 12 11:40:37 rosebriar plasmashell[946]: Could not find the Plasmoid for Plasma::FrameSvgItem(0x559b76aa3860) QQmlContext(0x559b76ccc7b0) QUrl("file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/Globals.qml")
Jun 12 11:40:37 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml:219:21: QML SelectableLabel: Binding loop detected for property "implicitWidth"
Jun 12 11:40:37 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml:219:21: QML SelectableLabel: Binding loop detected for property "implicitWidth"
Jun 12 11:40:37 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml:219:21: QML SelectableLabel: Binding loop detected for property "implicitHeight"
Jun 12 11:40:37 rosebriar plasmashell[946]: Could not find the Plasmoid for Plasma::FrameSvgItem(0x559b784d9170) QQmlContext(0x559b76ccc7b0) QUrl("file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/Globals.qml")
Jun 12 11:40:37 rosebriar plasmashell[946]: Could not find the Plasmoid for Plasma::FrameSvgItem(0x559b784d9170) QQmlContext(0x559b76ccc7b0) QUrl("file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/Globals.qml")
Jun 12 11:40:37 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml:219:21: QML SelectableLabel: Binding loop detected for property "implicitWidth"
Jun 12 11:40:37 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml:219:21: QML SelectableLabel: Binding loop detected for property "implicitWidth"
Jun 12 11:40:37 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml:219:21: QML SelectableLabel: Binding loop detected for property "implicitHeight"
Jun 12 11:40:38 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml:219:21: QML SelectableLabel: Binding loop detected for property "implicitWidth"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.plasma.quick: Couldn't create KWindowShadow for PlasmaQuick::Dialog(0x559b76dd22f0)
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.plasma.quick: Couldn't create KWindowShadow for PlasmaQuick::Dialog(0x559b76dd22f0)
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.plasma.quick: Couldn't create KWindowShadow for PlasmaQuick::Dialog(0x559b76dd22f0)
Jun 12 11:40:46 rosebriar audit[523]: USYS_CONFIG pid=523 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics interface="enp3s0f4u2" ifindex=3 args=2000 pid=946 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
Jun 12 11:40:46 rosebriar NetworkManager[523]: <info>  [1655059246.3603] audit: op="statistics" interface="enp3s0f4u2" ifindex=3 args="2000" pid=946 uid=1000 result="success"
Jun 12 11:40:46 rosebriar kernel: audit: type=1111 audit(1655059246.357:116): pid=523 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics interface="enp3s0f4u2" ifindex=3 args=2000 pid=946 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:46 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:47 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:47 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:47 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:47 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:48 rosebriar NetworkManager[523]: <info>  [1655059248.1941] device (wlan0): Activation: starting connection 'IceMint_5G' (83b964ad-1d14-4ff2-b33e-a9f9f04aec82)
Jun 12 11:40:48 rosebriar audit[523]: USYS_CONFIG pid=523 uid=0 auid=4294967295 ses=4294967295 msg='op=connection-activate uuid=83b964ad-1d14-4ff2-b33e-a9f9f04aec82 name="IceMint_5G" pid=946 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
Jun 12 11:40:48 rosebriar NetworkManager[523]: <info>  [1655059248.1943] audit: op="connection-activate" uuid="83b964ad-1d14-4ff2-b33e-a9f9f04aec82" name="IceMint_5G" pid=946 uid=1000 result="success"
Jun 12 11:40:48 rosebriar NetworkManager[523]: <info>  [1655059248.1944] device (wlan0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jun 12 11:40:48 rosebriar NetworkManager[523]: <info>  [1655059248.1947] device (wlan0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jun 12 11:40:48 rosebriar kernel: audit: type=1111 audit(1655059248.191:117): pid=523 uid=0 auid=4294967295 ses=4294967295 msg='op=connection-activate uuid=83b964ad-1d14-4ff2-b33e-a9f9f04aec82 name="IceMint_5G" pid=946 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
Jun 12 11:40:48 rosebriar NetworkManager[523]: <info>  [1655059248.1962] device (wlan0): state change: config -> need-auth (reason 'no-secrets', sys-iface-state: 'managed')
Jun 12 11:40:48 rosebriar audit[523]: USYS_CONFIG pid=523 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics interface="enp3s0f4u2" ifindex=3 args=0 pid=946 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
Jun 12 11:40:48 rosebriar NetworkManager[523]: <info>  [1655059248.3027] audit: op="statistics" interface="enp3s0f4u2" ifindex=3 args="0" pid=946 uid=1000 result="success"
Jun 12 11:40:48 rosebriar kernel: audit: type=1111 audit(1655059248.301:118): pid=523 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics interface="enp3s0f4u2" ifindex=3 args=0 pid=946 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
Jun 12 11:40:48 rosebriar plasmashell[946]: org.kde.kf5.kwindowsystem.kwayland: Failed to recreate shadow for PlasmaQuick::Dialog(0x559b76dd22f0)
Jun 12 11:40:48 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:48 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:48 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:48 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:52 rosebriar NetworkManager[523]: <info>  [1655059252.2520] device (wlan0): state change: need-auth -> config (reason 'none', sys-iface-state: 'managed')
Jun 12 11:40:52 rosebriar iwd[551]: CMD_SET_CQM failed: Operation not supported
Jun 12 11:40:52 rosebriar NetworkManager[523]: <info>  [1655059252.2696] device (wlan0): new IWD device state is connecting
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.plasma.quick: Couldn't create KWindowShadow for ToolTipDialog(0x559b76ac6e60)
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.plasma.quick: Couldn't create KWindowShadow for ToolTipDialog(0x559b76ac6e60)
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.plasma.quick: Couldn't create KWindowShadow for ToolTipDialog(0x559b76ac6e60)
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.plasma.quick: Couldn't create KWindowShadow for PlasmaQuick::Dialog(0x559b76dd22f0)
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.plasma.quick: Couldn't create KWindowShadow for PlasmaQuick::Dialog(0x559b76dd22f0)
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.plasma.quick: Couldn't create KWindowShadow for PlasmaQuick::Dialog(0x559b76dd22f0)
Jun 12 11:40:54 rosebriar audit[523]: USYS_CONFIG pid=523 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics interface="enp3s0f4u2" ifindex=3 args=2000 pid=946 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
Jun 12 11:40:54 rosebriar NetworkManager[523]: <info>  [1655059254.5862] audit: op="statistics" interface="enp3s0f4u2" ifindex=3 args="2000" pid=946 uid=1000 result="success"
Jun 12 11:40:54 rosebriar kernel: audit: type=1111 audit(1655059254.585:119): pid=523 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics interface="enp3s0f4u2" ifindex=3 args=2000 pid=946 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: ValueHistorySource is deprecated (since 5.78): Use HistoryProxySource instead
Jun 12 11:40:54 rosebriar plasmashell[946]: kf.quickcharts.deprecated: Note: Instantiated from "...plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/TrafficMonitor.qml"
Jun 12 11:40:56 rosebriar plasmashell[946]: org.kde.plasma.nm.libs: Wireless scan on "wlan0" failed: "Scanning not allowed while unavailable"
Jun 12 11:40:57 rosebriar audit[523]: USYS_CONFIG pid=523 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics interface="enp3s0f4u2" ifindex=3 args=0 pid=946 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
Jun 12 11:40:57 rosebriar NetworkManager[523]: <info>  [1655059257.8061] audit: op="statistics" interface="enp3s0f4u2" ifindex=3 args="0" pid=946 uid=1000 result="success"
Jun 12 11:40:57 rosebriar kernel: audit: type=1111 audit(1655059257.802:120): pid=523 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics interface="enp3s0f4u2" ifindex=3 args=0 pid=946 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
Jun 12 11:41:01 rosebriar iwd[551]: 4-Way handshake failed for ifindex: 2, reason: 15
Jun 12 11:41:01 rosebriar NetworkManager[523]: <error> [1655059261.5436] device (wlan0): Activation: (wifi) Network.Connect failed: GDBus.Error:net.connman.iwd.Failed: Operation failed
Jun 12 11:41:01 rosebriar NetworkManager[523]: <info>  [1655059261.5437] device (wlan0): state change: config -> failed (reason 'no-secrets', sys-iface-state: 'managed')
Jun 12 11:41:01 rosebriar NetworkManager[523]: <warn>  [1655059261.5440] device (wlan0): Activation: failed for connection 'IceMint_5G'
Jun 12 11:41:01 rosebriar NetworkManager[523]: <info>  [1655059261.5440] device (wlan0): new IWD device state is disconnected
Jun 12 11:41:01 rosebriar NetworkManager[523]: <info>  [1655059261.5442] device (wlan0): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
Jun 12 11:41:01 rosebriar plasmashell[946]: Could not find the Plasmoid for Plasma::FrameSvgItem(0x559b78cb16d0) QQmlContext(0x559b76ccc7b0) QUrl("file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/Globals.qml")
Jun 12 11:41:01 rosebriar plasmashell[946]: Could not find the Plasmoid for Plasma::FrameSvgItem(0x559b78cb16d0) QQmlContext(0x559b76ccc7b0) QUrl("file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/Globals.qml")
Jun 12 11:41:01 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml:219:21: QML SelectableLabel: Binding loop detected for property "implicitWidth"
Jun 12 11:41:01 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml:219:21: QML SelectableLabel: Binding loop detected for property "implicitWidth"
Jun 12 11:41:01 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml:219:21: QML SelectableLabel: Binding loop detected for property "implicitHeight"
Jun 12 11:41:01 rosebriar plasmashell[946]: Could not find the Plasmoid for Plasma::FrameSvgItem(0x559b798b4030) QQmlContext(0x559b76ccc7b0) QUrl("file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/Globals.qml")
Jun 12 11:41:01 rosebriar plasmashell[946]: Could not find the Plasmoid for Plasma::FrameSvgItem(0x559b798b4030) QQmlContext(0x559b76ccc7b0) QUrl("file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/Globals.qml")
Jun 12 11:41:01 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml:219:21: QML SelectableLabel: Binding loop detected for property "implicitWidth"
Jun 12 11:41:01 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml:219:21: QML SelectableLabel: Binding loop detected for property "implicitWidth"
Jun 12 11:41:01 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml:219:21: QML SelectableLabel: Binding loop detected for property "implicitHeight"
Jun 12 11:41:01 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml:219:21: QML SelectableLabel: Binding loop detected for property "implicitWidth"
Jun 12 11:42:07 rosebriar kwin_wayland[816]: qml: PlasmaExtras.ScrollArea is deprecated. Use PlasmaComponents3.ScrollView instead.
Jun 12 11:42:07 rosebriar kwin_wayland[816]: This plugin does not support raise()
Jun 12 11:42:07 rosebriar kwin_wayland[816]: This plugin does not support raise()
Jun 12 11:42:19 rosebriar plasmashell[946]: qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
Jun 12 11:42:19 rosebriar plasmashell[946]: kf.plasma.quick: Couldn't create KWindowShadow for PlasmaQuick::Dialog_QML_229(0x559b76a4e7b0, name="popupWindow")
Jun 12 11:42:19 rosebriar plasmashell[946]: kf.plasma.quick: Couldn't create KWindowShadow for PlasmaQuick::Dialog_QML_229(0x559b76a4e7b0, name="popupWindow")
Jun 12 11:42:19 rosebriar plasmashell[946]: kf.plasma.quick: Couldn't create KWindowShadow for PlasmaQuick::Dialog_QML_229(0x559b76a4e7b0, name="popupWindow")
Jun 12 11:42:19 rosebriar plasmashell[946]: kf.sonnet.core: No language dictionaries for the language: "en_US" trying to load en_US as default
Jun 12 11:42:19 rosebriar plasmashell[946]: kf.sonnet.core: No language dictionaries for the language: "en_US"
Jun 12 11:42:20 rosebriar systemd[791]: Started GVim - Text Editor.
Jun 12 11:42:26 rosebriar kwin_wayland[816]: This plugin does not support raise()
Jun 12 11:42:26 rosebriar kwin_wayland[816]: This plugin does not support raise()
Jun 12 11:42:27 rosebriar kwin_wayland[816]: This plugin does not support raise()
Jun 12 11:42:27 rosebriar kwin_wayland[816]: This plugin does not support raise()
Jun 12 11:42:27 rosebriar kwin_wayland[816]: This plugin does not support raise()
Jun 12 11:42:27 rosebriar kwin_wayland[816]: This plugin does not support raise()
Jun 12 11:42:29 rosebriar kwin_wayland[816]: This plugin does not support raise()
Jun 12 11:42:29 rosebriar kwin_wayland[816]: This plugin does not support raise()
Jun 12 11:43:01 rosebriar kwin_wayland[816]: This plugin does not support raise()
Jun 12 11:43:01 rosebriar kwin_wayland[816]: This plugin does not support raise()
Jun 12 11:43:06 rosebriar kwin_wayland[816]: This plugin does not support raise()
Jun 12 11:43:06 rosebriar kwin_wayland[816]: This plugin does not support raise()
Jun 12 11:46:14 rosebriar dbus-daemon[515]: [system] Activating service name='org.kde.powerdevil.backlighthelper' requested by ':1.37' (uid=1000 pid=950 comm="/usr/lib/org_kde_powerdevil") (using servicehelper)
Jun 12 11:46:14 rosebriar dbus-daemon[515]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
Jun 12 11:47:29 rosebriar dbus-daemon[515]: [system] Activating service name='org.kde.powerdevil.backlighthelper' requested by ':1.37' (uid=1000 pid=950 comm="/usr/lib/org_kde_powerdevil") (using servicehelper)
Jun 12 11:47:29 rosebriar dbus-daemon[515]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
Jun 12 11:47:33 rosebriar systemd-resolved[500]: Grace period over, resuming full feature set (UDP+EDNS0) for DNS server 192.168.255.190.
Jun 12 11:48:44 rosebriar dbus-daemon[515]: [system] Activating service name='org.kde.powerdevil.backlighthelper' requested by ':1.37' (uid=1000 pid=950 comm="/usr/lib/org_kde_powerdevil") (using servicehelper)
Jun 12 11:48:44 rosebriar dbus-daemon[515]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
Jun 12 11:48:44 rosebriar kscreenlocker_greet[1995]: qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
Jun 12 11:48:44 rosebriar kscreenlocker_greet[1995]: qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
Jun 12 11:54:19 rosebriar systemd[1]: Starting Cleanup of Temporary Directories...
Jun 12 11:54:19 rosebriar kernel: audit: type=1130 audit(1655060059.052:121): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:54:19 rosebriar kernel: audit: type=1131 audit(1655060059.052:122): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:54:19 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:54:19 rosebriar audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:54:19 rosebriar systemd[1]: systemd-tmpfiles-clean.service: Deactivated successfully.
Jun 12 11:54:19 rosebriar systemd[1]: Finished Cleanup of Temporary Directories.
Jun 12 11:55:39 rosebriar kernel: usb 3-2: USB disconnect, device number 3
Jun 12 11:55:39 rosebriar kernel: rndis_host 3-2:1.0 enp3s0f4u2: unregister 'rndis_host' usb-0000:03:00.4-2, RNDIS device
Jun 12 11:55:39 rosebriar NetworkManager[523]: <info>  [1655060139.2931] device (enp3s0f4u2): state change: activated -> unmanaged (reason 'removed', sys-iface-state: 'removed')
Jun 12 11:55:39 rosebriar NetworkManager[523]: <info>  [1655060139.3392] dhcp4 (enp3s0f4u2): canceled DHCP transaction
Jun 12 11:55:39 rosebriar NetworkManager[523]: <info>  [1655060139.3393] dhcp4 (enp3s0f4u2): activation: beginning transaction (timeout in 45 seconds)
Jun 12 11:55:39 rosebriar NetworkManager[523]: <info>  [1655060139.3393] dhcp4 (enp3s0f4u2): state changed no lease
Jun 12 11:55:39 rosebriar NetworkManager[523]: <info>  [1655060139.3400] manager: NetworkManager state is now DISCONNECTED
Jun 12 11:55:39 rosebriar dbus-daemon[515]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.4' (uid=0 pid=523 comm="/usr/bin/NetworkManager --no-daemon")
Jun 12 11:55:39 rosebriar systemd[1]: Starting Network Manager Script Dispatcher Service...
Jun 12 11:55:39 rosebriar dbus-daemon[803]: [session uid=1000 pid=803] Activating service name='org.kde.kwalletd5' requested by ':1.9' (uid=1000 pid=924 comm="/usr/bin/kded5")
Jun 12 11:55:39 rosebriar kernel: audit: type=1130 audit(1655060139.344:123): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:55:39 rosebriar audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:55:39 rosebriar systemd[1]: Started Network Manager Script Dispatcher Service.
Jun 12 11:55:39 rosebriar dbus-daemon[515]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Jun 12 11:55:39 rosebriar plasmashell[946]: Could not find the Plasmoid for Plasma::FrameSvgItem(0x559b78db0800) QQmlContext(0x559b76ccc7b0) QUrl("file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/Globals.qml")
Jun 12 11:55:39 rosebriar plasmashell[946]: Could not find the Plasmoid for Plasma::FrameSvgItem(0x559b78db0800) QQmlContext(0x559b76ccc7b0) QUrl("file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/global/Globals.qml")
Jun 12 11:55:39 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml:219:21: QML SelectableLabel: Binding loop detected for property "implicitWidth"
Jun 12 11:55:39 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml:219:21: QML SelectableLabel: Binding loop detected for property "implicitWidth"
Jun 12 11:55:39 rosebriar plasmashell[946]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/NotificationItem.qml:219:21: QML SelectableLabel: Binding loop detected for property "implicitHeight"
Jun 12 11:55:39 rosebriar dbus-daemon[803]: [session uid=1000 pid=803] Successfully activated service 'org.kde.kwalletd5'
Jun 12 11:55:39 rosebriar kwalletd5[2115]: Application ' "kded5" ' using kwallet without parent window!
Jun 12 11:55:49 rosebriar systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Jun 12 11:55:49 rosebriar audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 11:55:49 rosebriar kernel: audit: type=1131 audit(1655060149.354:124): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jun 12 12:14:35 rosebriar dbus-daemon[515]: [system] Activating service name='org.kde.powerdevil.backlighthelper' requested by ':1.37' (uid=1000 pid=950 comm="/usr/lib/org_kde_powerdevil") (using servicehelper)
Jun 12 12:14:35 rosebriar dbus-daemon[515]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
Jun 12 12:14:36 rosebriar kscreenlocker_greet[1995]: file:///usr/share/plasma/look-and-feel/org.kde.breeze.desktop/contents/components/UserList.qml:42:9: Unable to assign [undefined] to bool
Jun 12 12:14:39 rosebriar dbus-daemon[515]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.89' (uid=1000 pid=2196 comm="kcheckpass -m classic -S 36")
Jun 12 12:14:39 rosebriar dbus-daemon[515]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 12 12:14:39 rosebriar kcheckpass[2196]: pam_systemd_home(kde:auth): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 12 12:14:39 rosebriar audit[2198]: USER_AUTH pid=2198 uid=1000 auid=1000 ses=2 msg='op=PAM:unix_chkpwd acct="griffin" exe="/usr/bin/unix_chkpwd" hostname=? addr=? terminal=? res=success'
Jun 12 12:14:39 rosebriar kernel: audit: type=1100 audit(1655061279.902:125): pid=2198 uid=1000 auid=1000 ses=2 msg='op=PAM:unix_chkpwd acct="griffin" exe="/usr/bin/unix_chkpwd" hostname=? addr=? terminal=? res=success'
Jun 12 12:15:01 rosebriar dbus-daemon[515]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.90' (uid=0 pid=2210 comm="sudo journalctl -b")
Jun 12 12:15:01 rosebriar dbus-daemon[515]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 12 12:15:01 rosebriar sudo[2210]: pam_systemd_home(sudo:auth): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 12 12:15:04 rosebriar audit[2210]: USER_AUTH pid=2210 uid=1000 auid=1000 ses=2 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="griffin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Jun 12 12:15:04 rosebriar audit[2210]: USER_ACCT pid=2210 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="griffin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Jun 12 12:15:04 rosebriar kernel: audit: type=1100 audit(1655061304.361:126): pid=2210 uid=1000 auid=1000 ses=2 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="griffin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Jun 12 12:15:04 rosebriar kernel: audit: type=1101 audit(1655061304.361:127): pid=2210 uid=1000 auid=1000 ses=2 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="griffin" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Jun 12 12:15:04 rosebriar sudo[2210]:  griffin : TTY=pts/1 ; PWD=/home/griffin ; USER=root ; COMMAND=/usr/bin/journalctl -b
Jun 12 12:15:04 rosebriar audit[2210]: CRED_REFR pid=2210 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Jun 12 12:15:04 rosebriar sudo[2210]: pam_unix(sudo:session): session opened for user root(uid=0) by griffin(uid=1000)
Jun 12 12:15:04 rosebriar audit[2210]: USER_START pid=2210 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Jun 12 12:15:04 rosebriar kernel: audit: type=1110 audit(1655061304.364:128): pid=2210 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Jun 12 12:15:04 rosebriar kernel: audit: type=1105 audit(1655061304.364:129): pid=2210 uid=1000 auid=1000 ses=2 msg='op=PAM:session_open grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Jun 12 12:15:44 rosebriar audit[2210]: USER_END pid=2210 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Jun 12 12:15:44 rosebriar audit[2210]: CRED_DISP pid=2210 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Jun 12 12:15:44 rosebriar sudo[2210]: pam_unix(sudo:session): session closed for user root
Jun 12 12:15:44 rosebriar kernel: audit: type=1106 audit(1655061344.610:130): pid=2210 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_systemd_home,pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
Jun 12 12:15:44 rosebriar kernel: audit: type=1104 audit(1655061344.610:131): pid=2210 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'

Offline

#8 2022-06-13 06:48:26

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: NetworkManager stuck in configuration loop

Jun 12 11:40:32 rosebriar iwd[551]: CMD_SET_CQM failed: Operation not supported
Jun 12 11:40:32 rosebriar NetworkManager[523]: <info>  [1655059232.6818] device (wlan0): new IWD device state is connecting
Jun 12 11:40:37 rosebriar iwd[551]: 4-Way handshake failed for ifindex: 2, reason: 15
Jun 12 11:40:37 rosebriar NetworkManager[523]: <error> [1655059237.9737] device (wlan0): Activation: (wifi) Network.Connect failed: GDBus.Error:net.connman.iwd.Failed: Operation failed
Jun 12 11:40:37 rosebriar NetworkManager[523]: <info>  [1655059237.9739] device (wlan0): state change: config -> failed (reason 'no-secrets', sys-iface-state: 'managed')
Jun 12 11:40:37 rosebriar NetworkManager[523]: <warn>  [1655059237.9740] device (wlan0): Activation: failed for connection 'IceMint_5G'
Jun 12 11:40:37 rosebriar NetworkManager[523]: <info>  [1655059237.9741] device (wlan0): new IWD device state is disconnected
Jun 12 11:40:37 rosebriar NetworkManager[523]: <info>  [1655059237.9742] device (wlan0): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')

Are you even asked to provide the wifi key?

Offline

#9 2022-06-16 20:44:47

gryffin
Member
Registered: 2021-11-03
Posts: 13

Re: NetworkManager stuck in configuration loop

Yes, it prompts me for a password and then disconnects.

Offline

#10 2022-06-16 21:57:17

seth
Member
Registered: 2012-09-03
Posts: 49,951

Re: NetworkManager stuck in configuration loop

Stop networkmanager and try to connect w/ either iwd or wpa_supplicant manually, https://wiki.archlinux.org/title/Networ … atic_setup

When using wpa_supplicant, limit the 'key_mgmt' to 'WPA-PSK WPA-PSK-SHA256' (not!  FT-PSK)
https://bugs.archlinux.org/task/63397 - no idea whether that can still be a problem w/ out of tree drivers.

Offline

Board footer

Powered by FluxBB