You are not logged in.

#1 2024-04-26 05:19:41

gabx
Member
From: Geneva, Switzerland
Registered: 2011-11-20
Posts: 149
Website

[SOLVED] NetworkManager.service does not start when login

I am on a fresh and vanilla install. I start a gnome session from login shell running this command:

XDG_SESSION_TYPE=wayland dbus-run-session gnome-session

To connect my box to internet, I use the systemd NetworkManager.service. No idea why but the service does not start automatically. I need to start it manually by running

# systemctl start NetworkManager.service

when the service is indeed enabled:

systemctl is-enabled NetworkManager
enabled

NetworkManager-wait-online.service is enabled too

Weirdly, systemd-networkd.service is started automatically when in fact it is disabled:

systemctl is-enabled systemd-networkd
disabled

I need to stop it before I start NetworkManager.

What am I doing wrong and why NetworkManager is not started at boot when systemd-networkd is?
Thank you for help

Last edited by gabx (2024-05-03 06:59:51)

Offline

#2 2024-04-26 15:49:22

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

Re: [SOLVED] NetworkManager.service does not start when login

Generally speaking dbus-run-session is wrong and you should just invoke gnome-session on it's own otherwise you break the user bus.

That shouldn't have a bearing on your actual problem  however. Have you changed any default config of NetworkManager that would make it e.g. rely on systemd-resolved? What output do you get from

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

Offline

#3 2024-04-29 14:45:32

gabx
Member
From: Geneva, Switzerland
Registered: 2011-11-20
Posts: 149
Website

Re: [SOLVED] NetworkManager.service does not start when login

% find /etc/systemd -type l -exec test -f {} \; -print | awk -F'/' '{ printf ("%-40s | %s\n", $(NF-0), $(NF-1)) }' | sort -f
bluetooth.service                        | bluetooth.target.wants
dbus-org.bluez.service                   | system
dbus-org.freedesktop.home1.service       | system
dbus-org.freedesktop.nm-dispatcher.service | system
dbus-org.freedesktop.resolve1.service    | system
dhcpcd.service                           | multi-user.target.wants
getty@tty1.service                       | getty.target.wants
gnome-keyring-daemon.socket              | sockets.target.wants
NetworkManager.service                   | multi-user.target.wants
NetworkManager-wait-online.service       | network-online.target.wants
ntpd.service                             | multi-user.target.wants
p11-kit-server.socket                    | sockets.target.wants
pipewire.socket                          | sockets.target.wants
pulseaudio.socket                        | sockets.target.wants
remote-fs.target                         | multi-user.target.wants
systemd-homed-activate.service           | systemd-homed.service.wants
systemd-homed.service                    | multi-user.target.wants
systemd-resolved.service                 | sysinit.target.wants
systemd-userdbd.socket                   | sockets.target.wants
xdg-user-dirs-update.service             | default.target.wants

No idea what starts systemd-networkd. I would stick to it (what I have done for years) but as for wifi networks, the gnome settings are more user friendly when it comes  to connect.
About how to start the session, I followed the wiki. But it seems the correct way to start a wayland session is disputed

Offline

#4 2024-04-29 15:45:45

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

Re: [SOLVED] NetworkManager.service does not start when login

Disable dhcpcd.service and please post your complete system journal for the boot:

sudo journalctl -b | curl -F 'file=@-' 0x0.st

There's no good explanation for the described behavior, so we'll have to see what's actually going on…

Online

#5 2024-04-29 16:28:08

gabx
Member
From: Geneva, Switzerland
Registered: 2011-11-20
Posts: 149
Website

Re: [SOLVED] NetworkManager.service does not start when login

% sudo systemctl disable dhcpcd.service
Removed "/etc/systemd/system/multi-user.target.wants/dhcpcd.service".
% sudo journalctl -b | curl -F 'file=@-' 0x0.st
http://0x0.st/oaxK.txt

Two remarks:
1- the time stamp in the journal is wrong. Why? Then, can this be the root of my issue?

% journalctl
Jun 14 19:44:15 archlinux systemd-journald[236]: Received SIGTERM from PID 1 (systemd).
Jun 14 19:44:15 archlinux systemd[1]: Stopping Journal Service..
....
 % journalctl -b
-- No entries --
% timedatectl status
               Local time: Mon 2024-04-29 18:30:10 CEST
           Universal time: Mon 2024-04-29 16:30:10 UTC
                 RTC time: Mon 2024-04-29 18:30:15
                Time zone: Europe/Paris (CEST, +0200)
System clock synchronized: no
              NTP service: inactive
          RTC in local TZ: no

2- when I run at the login prompt:

% gnome-session

nothing happens.I am back to the login shell but the gnome session doesn't start. What is wrong?

Last edited by gabx (2024-04-29 16:33:26)

Offline

#6 2024-04-29 16:42:54

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

Re: [SOLVED] NetworkManager.service does not start when login

-- No entries --

You're just not preserving any journal right now.

tail -n 1000 /etc/systemd/journald.conf /etc/systemd/journald.conf.d/*
ps aux | grep journ

You might still have to export XDG_SESSION_TYPE=wayland, but that's less of a concern right now.
Depending on what breaks the journal, that might be the cause for the service disparity.

Online

#7 2024-04-29 22:06:59

gabx
Member
From: Geneva, Switzerland
Registered: 2011-11-20
Posts: 149
Website

Re: [SOLVED] NetworkManager.service does not start when login

  1. running

     XDG_SESSION_TYPE=wayland gnome-session

    at login shell does not start the gnome session

  2. % tail -n 1000 /etc/systemd/journald.conf /etc/systemd/journald.conf.d/*
    zsh: no matches found: /etc/systemd/journald.conf.d/*

    There is no /etc/systemd/journald.conf.d/ directory

    % tail -n 1000 /etc/systemd/journald.conf                               
    #  This file is part of systemd.
    ...
    # See journald.conf(5) for details.
    
    [Journal]
    #Storage=auto
    #Compress=yes
    #Seal=yes
    #SplitMode=uid
    #SyncIntervalSec=5m
    #RateLimitIntervalSec=30s
    #RateLimitBurst=10000
    #SystemMaxUse=
    #SystemKeepFree=
    #SystemMaxFileSize=
    #SystemMaxFiles=100
    #RuntimeMaxUse=
    #RuntimeKeepFree=
    #RuntimeMaxFileSize=
    #RuntimeMaxFiles=100
    #MaxRetentionSec=
    #MaxFileSec=1month
    #ForwardToSyslog=no
    #ForwardToKMsg=no
    #ForwardToConsole=no
    #ForwardToWall=yes
    #TTYPath=/dev/console
    #MaxLevelStore=debug
    #MaxLevelSyslog=debug
    #MaxLevelKMsg=notice
    #MaxLevelConsole=info
    #MaxLevelWall=emerg
    #LineMax=48K
    #ReadKMsg=yes
    #Audit=yes
  3. Maybe something of interest:

     % ls -al /var/log/journal/                                            
    total 4.0K
    drwxr-sr-x+ 1 root systemd-journal        140 Jun 14  2022 ./
    drwxr-xr-x  1 root root                            128 Apr 25 08:21 ../
    drwxr-sr-x+ 1 root systemd-journal         28 Jun 14  2022      018df74b099443038e5086cb88418dce/
    drwxr-sr-x+ 1 root systemd-journal        16K Apr 29 23:39     bc47046c25d64071a8322148626a91cb/
    drwxr-sr-x+ 1 root systemd-journal-remote   0 Jun 13  2022 remote/

    first listed directory (018...) has a time stamp (Jun 14) which is the same as the one from the output of my journalctl command. It seems the journalctl command read this journal and not the second one from (bc47...) directory. What if I remove the 018d... directory?

  4. % ps aux | grep journ
    98:root         216  0.0  0.2 132352 19600 ?        Ss   23:33   0:00 /usr/lib/systemd/systemd-journald

Offline

#8 2024-04-29 22:26:29

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

Re: [SOLVED] NetworkManager.service does not start when login

The storage is unchanged at auto, you could set it to explicitly "persistent", but you're not even getting a journal from the *current* boot, despite systemd-journald running.
And yet there's an updated directory, what's the content of of "ls -l /var/log/journal/bc47046c25d64071a8322148626a91cb" ?

Online

#9 2024-04-30 14:24:13

gabx
Member
From: Geneva, Switzerland
Registered: 2011-11-20
Posts: 149
Website

Re: [SOLVED] NetworkManager.service does not start when login

% ls -l /var/log/journal/bc47046c25d64071a8322148626a91cb 
total 421M
-rw-r-----+ 1 root systemd-journal 8.0M Dec 12 16:38 'system@00060c517e6a71e2-7c21f908fc378722.journal~'
-rw-r-----+ 1 root systemd-journal 8.0M Dec 12 16:44 'system@00060eb4449f8bad-c80b059f0d7b4cae.journal~'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 26 12:18 'system@0006173ebe149166-6bcf02d4bc7f3afe.journal~'
-rw-r-----+ 1 root systemd-journal 8.0M Jan 14 16:18 'system@00cfeadf6d40410884d35c5ccc44a7a2-000000000000a313-00060eb44489b4ab.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 25 01:41 'system@0858da2f48d2438b8121e2a9fc911583-0000000000011126-000616e028803a9d.journal'
......
-rw-r-----+ 1 root systemd-journal 8.0M Apr 30 18:22  system.journal
-rw-r-----+ 1 root systemd-journal 8.0M Dec 12 16:44 'user-60509@00060ee968a90f81-4da16aab50ff735c.journal~'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 25 08:35 'user-60509@245f5715c56c4987b02828af76e070de-00000000000137bc-000616e5f4e9a10a.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 26 07:59 'user-60509@280a80c9c29c4ed9abda1262be4bb514-00000000000144a4-000616f9f1b70197.journal'
....
-rw-r-----+ 1 root systemd-journal 8.0M Apr 30 18:21  user-60509.journal

Offline

#10 2024-04-30 15:29:48

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

Re: [SOLVED] NetworkManager.service does not start when login

So there's plenty of journal data…
Does

journalctl --file /var/log/journal/bc47046c25d64071a8322148626a91cb/system.journal

show anything?

Otherwise you can

strings /var/log/journal/bc47046c25d64071a8322148626a91cb/system.journal

but that'll get you somewhat inhumane output (all timestamps in epoch etc)

Online

#11 2024-05-02 19:43:48

gabx
Member
From: Geneva, Switzerland
Registered: 2011-11-20
Posts: 149
Website

Re: [SOLVED] NetworkManager.service does not start when login

% journalctl --file /var/log/journal/bc47046c25d64071a8322148626a91cb/system.journal
May 02 23:36:59 archlinux systemd-journald[208]: /var/log/journal/bc47046c25d64071a8322148626a91cb/user-60509.journal: Journal file uses a differ>
May 02 23:36:59 archlinux login[431]: LOGIN ON tty1 BY gabx
May 02 23:36:59 archlinux systemd[1]: Started User Manager for UID 60509.
May 02 23:36:59 archlinux systemd[1]: Started Session 1 of User gabx.
May 02 23:37:06 archlinux systemd[1]: Starting RealtimeKit Scheduling Policy Service...
May 02 23:37:06 archlinux systemd[1]: Started RealtimeKit Scheduling Policy Service.
May 02 23:37:06 archlinux rtkit-daemon[604]: Successfully called chroot.
May 02 23:37:06 archlinux rtkit-daemon[604]: Successfully dropped privileges.
May 02 23:37:06 archlinux rtkit-daemon[604]: Successfully limited resources.
May 02 23:37:06 archlinux rtkit-daemon[604]: Running.
May 02 23:37:06 archlinux rtkit-daemon[604]: Canary thread running.
May 02 23:37:06 archlinux rtkit-daemon[604]: Watchdog thread running.
May 02 23:37:06 archlinux rtkit-daemon[604]: Supervising 0 threads of 0 processes of 0 users.
May 02 23:37:06 archlinux rtkit-daemon[604]: Supervising 0 threads of 0 processes of 0 users.
May 02 23:37:06 archlinux rtkit-daemon[604]: Successfully made thread 603 of process 573 owned by '60509' RT at priority 20.
May 02 23:37:06 archlinux rtkit-daemon[604]: Supervising 1 threads of 1 processes of 1 users.
May 02 23:37:06 archlinux systemd[1]: Starting Manage, Install and Generate Color Profiles...
May 02 23:37:07 archlinux systemd[1]: Started Manage, Install and Generate Color Profiles.
May 02 23:37:07 archlinux dbus-broker-launch[410]: Activation request for 'org.freedesktop.Avahi' failed: The systemd unit 'dbus-org.freedesktop.>
May 02 23:37:07 archlinux systemd[1]: Reached target User and Group Name Lookups.
May 02 23:37:07 archlinux systemd[1]: Starting Accounts Service...
May 02 23:37:07 archlinux accounts-daemon[693]: started daemon version 23.13.0
May 02 23:37:07 archlinux systemd[1]: Started Accounts Service.
....
lines 259-280/281 100%

So yes, there are 281 lines

Last edited by gabx (2024-05-02 19:44:20)

Offline

#12 2024-05-02 19:47:53

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

Re: [SOLVED] NetworkManager.service does not start when login

And from today(? The clock seems off, Geneva is CEST)

At least is's *some* log, please post it.

Online

#13 2024-05-02 20:02:42

gabx
Member
From: Geneva, Switzerland
Registered: 2011-11-20
Posts: 149
Website

Re: [SOLVED] NetworkManager.service does not start when login

Yes the clock doesn't sync correctly. It is now correct:

gabx@archlinux ➤➤ / % timedatectl status
               Local time: Thu 2024-05-02 21:59:38 CEST
           Universal time: Thu 2024-05-02 19:59:38 UTC
                 RTC time: Thu 2024-05-02 21:59:38
                Time zone: Europe/Paris (CEST, +0200)
System clock synchronized: no
              NTP service: inactive
          RTC in local TZ: no

The wrong time could may be due to some sync issue because when the session starts network is done. Then, after a while (a few minutes generally), time is correct.
What do you mean by from today? What command shall I run?

Offline

#14 2024-05-02 20:05:07

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

Re: [SOLVED] NetworkManager.service does not start when login

I meant it's not dated or anything, so it'll hopefully be relevant and enlightening.
Just post the complete journal

journalctl --file /var/log/journal/bc47046c25d64071a8322148626a91cb/system.journal | curl -F 'file=@-' 0x0.st

Online

#15 2024-05-02 20:09:38

gabx
Member
From: Geneva, Switzerland
Registered: 2011-11-20
Posts: 149
Website

Re: [SOLVED] NetworkManager.service does not start when login

 % journalctl --file /var/log/journal/bc47046c25d64071a8322148626a91cb/system.journal | curl -F 'file=@-' 0x0.st
http://0x0.st/XX9z.txt

from the URL:

May 02 21:41:59 magnolia systemd-resolved[379]: Clock change detected. Flushing caches.
May 02 21:41:59 magnolia systemd-journald[208]: Time jumped backwards, rotating.
May 02 21:44:48 magnolia rtkit-daemon[604]: Supervising 4 threads of 3 processes of 1 users.
May 02 21:44:48 magnolia rtkit-daemon[604]: Supervising 4 threads of 3 processes of 1 users.
May 02 21:45:25 magnolia rtkit-daemon[604]: Supervising 4 threads of 3 processes of 1 users.
May 02 21:45:25 magnolia rtkit-daemon[604]: Supervising 4 threads of 3 processes of 1 users.
May 02 21:45:25 magnolia rtkit-daemon[604]: Supervising 4 threads of 3 processes of 1 users.
May 02 21:45:25 magnolia rtkit-daemon[604]: Supervising 4 threads of 3 processes of 1 users.
May 02 21:45:52 magnolia rtkit-daemon[604]: Supervising 4 threads of 3 processes of 1 users.
May 02 21:45:52 magnolia rtkit-daemon[604]: Supervising 4 threads of 3 processes of 1 users.
May 02 21:45:52 magnolia rtkit-daemon[604]: Successfully made thread 2278 of process 1815 owned by '60509' RT at priority 10.
May 02 21:45:52 magnolia rtkit-daemon[604]: Supervising 5 threads of 4 processes of 1 users.
May 02 21:45:58 magnolia systemd-networkd[1242]: wlp1s0: Link DOWN
May 02 21:45:58 magnolia NetworkManager[1235]: <info>  [1714679158.1641] device (wlp1s0): set-hw-addr: set MAC address to 1A:7B:4F:23:49:87 (scanning)
May 02 21:45:58 magnolia systemd-networkd[1242]: wlp1s0: Link UP
May 02 21:45:58 magnolia NetworkManager[1235]: <info>  [1714679158.1720] device (wlp1s0): supplicant interface state: inactive -> interface_disabled
May 02 21:45:58 magnolia NetworkManager[1235]: <info>  [1714679158.1721] device (p2p-dev-wlp1s0): supplicant management interface state: inactive -> interface_disabled
May 02 21:45:58 magnolia NetworkManager[1235]: <info>  [1714679158.1734] device (wlp1s0): supplicant interface state: interface_disabled -> inactive
May 02 21:45:58 magnolia NetworkManager[1235]: <info>  [1714679158.1735] device (p2p-dev-wlp1s0): supplicant management interface state: interface_disabled -> inactive
May 02 21:47:47 magnolia rtkit-daemon[604]: Supervising 5 threads of 4 processes of 1 users.
May 02 21:47:47 magnolia rtkit-daemon[604]: Supervising 5 threads of 4 processes of 1 users.
May 02 21:48:34 magnolia systemd[1]: flatpak-system-helper.service: Deactivated successfully.
May 02 21:48:34 magnolia systemd[1]: flatpak-system-helper.service: Consumed 1.441s CPU time.
May 02 21:52:22 magnolia systemd[1]: Starting Cleanup of Temporary Directories...
May 02 21:52:22 magnolia systemd[1]: systemd-tmpfiles-clean.service: Deactivated successfully.
May 02 21:52:22 magnolia systemd[1]: Finished Cleanup of Temporary Directories.
May 02 21:52:51 magnolia systemd-networkd[1242]: wlp1s0: Link DOWN
May 02 21:52:51 magnolia NetworkManager[1235]: <info>  [1714679571.1527] device (wlp1s0): set-hw-addr: set MAC address to 7A:94:2D:1C:96:E9 (scanning)
May 02 21:52:51 magnolia systemd-networkd[1242]: wlp1s0: Link UP
May 02 21:52:51 magnolia NetworkManager[1235]: <info>  [1714679571.1872] device (wlp1s0): supplicant interface state: inactive -> disconnected
May 02 21:52:51 magnolia NetworkManager[1235]: <info>  [1714679571.1873] device (p2p-dev-wlp1s0): supplicant management interface state: inactive -> disconnected
May 02 21:52:51 magnolia NetworkManager[1235]: <info>  [1714679571.1929] device (wlp1s0): supplicant interface state: disconnected -> inactive
May 02 21:52:51 magnolia NetworkManager[1235]: <info>  [1714679571.1930] device (p2p-dev-wlp1s0): supplicant management interface state: disconnected -> inactive
May 02 21:59:38 magnolia systemd[1]: Starting Time & Date Service...
May 02 21:59:38 magnolia systemd[1]: Started Time & Date Service.
May 02 21:59:42 magnolia systemd-networkd[1242]: wlp1s0: Link DOWN
May 02 21:59:42 magnolia NetworkManager[1235]: <info>  [1714679982.1574] device (wlp1s0): set-hw-addr: set MAC address to D2:A0:3B:38:CC:40 (scanning)
May 02 21:59:42 magnolia systemd-networkd[1242]: wlp1s0: Link UP
May 02 21:59:42 magnolia NetworkManager[1235]: <info>  [1714679982.1648] device (wlp1s0): supplicant interface state: inactive -> interface_disabled
May 02 21:59:42 magnolia NetworkManager[1235]: <info>  [1714679982.1649] device (p2p-dev-wlp1s0): supplicant management interface state: inactive -> interface_disabled
May 02 21:59:42 magnolia NetworkManager[1235]: <info>  [1714679982.1875] device (wlp1s0): supplicant interface state: interface_disabled -> inactive
May 02 21:59:42 magnolia NetworkManager[1235]: <info>  [1714679982.1876] device (p2p-dev-wlp1s0): supplicant management interface state: interface_disabled -> inactive
May 02 22:00:08 magnolia systemd[1]: systemd-timedated.service: Deactivated successfully.
May 02 22:06:35 magnolia systemd-networkd[1242]: wlp1s0: Link DOWN
May 02 22:06:35 magnolia NetworkManager[1235]: <info>  [1714680395.1537] device (wlp1s0): set-hw-addr: set MAC address to 92:AB:AE:C6:C1:F4 (scanning)
May 02 22:06:35 magnolia systemd-networkd[1242]: wlp1s0: Link UP
May 02 22:06:35 magnolia NetworkManager[1235]: <info>  [1714680395.1607] device (wlp1s0): supplicant interface state: inactive -> interface_disabled
May 02 22:06:35 magnolia NetworkManager[1235]: <info>  [1714680395.1608] device (p2p-dev-wlp1s0): supplicant management interface state: inactive -> interface_disabled
May 02 22:06:35 magnolia NetworkManager[1235]: <info>  [1714680395.1840] device (wlp1s0): supplicant interface state: interface_disabled -> inactive
May 02 22:06:35 magnolia NetworkManager[1235]: <info>  [1714680395.1841] device (p2p-dev-wlp1s0): supplicant management interface state: interface_disabled -> inactive

Last edited by gabx (2024-05-02 20:11:09)

Offline

#16 2024-05-02 20:13:16

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

Re: [SOLVED] NetworkManager.service does not start when login

That's just 50 lines, most likely because

May 02 21:41:59 magnolia systemd-resolved[379]: Clock change detected. Flushing caches.
May 02 21:41:59 magnolia systemd-journald[208]: Time jumped backwards, rotating.

your time fixed.
The previous journal became the newest other file in that directory - post that as well.

(And yes, NM and networkd are both running)

Online

#17 2024-05-02 20:32:27

gabx
Member
From: Geneva, Switzerland
Registered: 2011-11-20
Posts: 149
Website

Re: [SOLVED] NetworkManager.service does not start when login

I am sorry, even if I understand this time story, what am I supposed to post now?

Offline

#18 2024-05-02 20:35:53

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

Re: [SOLVED] NetworkManager.service does not start when login

ls -lt /var/log/journal/bc47046c25d64071a8322148626a91cb/

The first file should be system.journal, then some file w/ a hash sth. like "system@69c9dd…-0000…-0006….journal" (not even those numbers will match) which would be the previous active journal file that should hold the relevant parts of the boot before the time warp.
Upload that.

Online

#19 2024-05-02 20:46:02

gabx
Member
From: Geneva, Switzerland
Registered: 2011-11-20
Posts: 149
Website

Re: [SOLVED] NetworkManager.service does not start when login

% ls -lt /var/log/journal/bc47046c25d64071a8322148626a91cb/
total 406M
-rw-r-----+ 1 root systemd-journal 8.0M May  2  2024 'user-60509@9a995d4e846e40059d0c762fe0a1863d-000000000001a43d-0006177f5d9632b8.journal'
-rw-r-----+ 1 root systemd-journal 8.0M May  2  2024 'system@1277f172eff74020863ca318430e1439-000000000001a5ce-0006177f666a1a74.journal'
-rw-r-----+ 1 root systemd-journal 8.0M May  2  2024 'system@9a995d4e846e40059d0c762fe0a1863d-000000000001a43e-0006177f5d9766b5.journal'
-rw-r-----+ 1 root systemd-journal 8.0M May  2  2024 'user-60509@c8f520b86de04e1a86d8e61858e16f76-0000000000019d77-0006177f59fb785e.journal'
-rw-r-----+ 1 root systemd-journal 8.0M May  2  2024 'system@9a995d4e846e40059d0c762fe0a1863d-0000000000019eed-0006177f5cde3166.journal'
-rw-r-----+ 1 root systemd-journal 8.0M May  2  2024 'system@c8f520b86de04e1a86d8e61858e16f76-0000000000019d78-0006177f59fcffcd.journal'
-rw-r-----+ 1 root systemd-journal 8.0M May  2  2024 'user-60509@8b961d82a023461daa39feef72b58076-0000000000019714-000617512652dcf2.journal'
-rw-r-----+ 1 root systemd-journal 8.0M May  2  2024 'system@c8f520b86de04e1a86d8e61858e16f76-000000000001981f-0006177f592b5405.journal'
-rw-r-----+ 1 root systemd-journal 8.0M May  2  2024 'system@8b961d82a023461daa39feef72b58076-0000000000019712-00061751241c9370.journal'
-rw-r-----+ 1 root systemd-journal 8.0M May  2 22:43  user-60509.journal
-rw-r-----+ 1 root systemd-journal 8.0M May  2 22:41  system.journal
-rw-r-----+ 1 root systemd-journal 8.0M May  2 21:41 'user-60509@1277f172eff74020863ca318430e1439-000000000001ab26-0006177f672f068e.journal'
-rw-r-----+ 1 root systemd-journal 8.0M May  2 21:41 'system@1277f172eff74020863ca318430e1439-000000000001ab27-0006177f673040f2.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 30 18:19 'user-60509@63c784a4bd774707b4a232f13fb5f91c-0000000000018eda-000617437bf45983.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 30 18:19 'system@8b961d82a023461daa39feef72b58076-0000000000018fe5-00061752b2d9833f.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 30 18:16 'system@63c784a4bd774707b4a232f13fb5f91c-0000000000018ea1-00061743174d8fca.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 30 16:25 'user-60509@8b961d82a023461daa39feef72b58076-0000000000019530-00061752bd621e53.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 30 16:25 'system@8b961d82a023461daa39feef72b58076-0000000000019531-00061752bd639256.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 30 01:33 'user-60509@85cae41263444b49aa8493a799b2cee0-00000000000185d0-00061744a95425c0.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 30 01:33 'system@63c784a4bd774707b4a232f13fb5f91c-00000000000187a0-00061744af5cf033.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 30 01:33 'system@85cae41263444b49aa8493a799b2cee0-00000000000185d1-00061744a955b4d4.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 30 01:32 'user-60509@416c5538ebe84a22b4c12e7fe623a47d-0000000000017e12-00061744934a272d.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 30 01:32 'system@85cae41263444b49aa8493a799b2cee0-0000000000018090-00061744a8169b11.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 30 01:31 'system@416c5538ebe84a22b4c12e7fe623a47d-0000000000017e13-00061744934b74ed.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 30 01:25 'user-60509@65bcdc7200ce410db7ed1e06d49e9ae5-0000000000017807-0006174080682563.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 30 01:25 'system@416c5538ebe84a22b4c12e7fe623a47d-00000000000178ea-000617449277f25a.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 30 01:25 'system@65bcdc7200ce410db7ed1e06d49e9ae5-0000000000017808-000617408069652c.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 29 23:39 'user-60509@63c784a4bd774707b4a232f13fb5f91c-0000000000018cef-00061744b00d6afb.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 29 23:39 'system@63c784a4bd774707b4a232f13fb5f91c-0000000000018cf0-00061744b00ed14c.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 29 20:34 'user-60509@6e1a48c914424f459455636571e03065-00000000000171e5-0006173ed0c110d7.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 29 20:34 'system@65bcdc7200ce410db7ed1e06d49e9ae5-00000000000172f3-000617407fdad976.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 29 20:34 'system@6e1a48c914424f459455636571e03065-00000000000171d0-0006173eaa8f99c3.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 29 20:17 'user-60509@7ee6df8b2bf043d7b8ddbe703291a5d1-000000000001693e-0006173d50cb63c8.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 29 20:17 'system@6e1a48c914424f459455636571e03065-0000000000016a51-000617404422a352.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 29 20:17 'system@7ee6df8b2bf043d7b8ddbe703291a5d1-000000000001692e-0006173d2f3be5a5.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 29 18:28 'user-60509@618e242434a3485d80aad3e5a137d007-0000000000015f10-000616fc94d0efdb.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 29 18:28 'system@7ee6df8b2bf043d7b8ddbe703291a5d1-00000000000161dc-0006173ebe0886f0.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 29 18:22 'user-60509@6e1a48c914424f459455636571e03065-0000000000016fd8-0006174044c0e053.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 29 18:22 'system@6e1a48c914424f459455636571e03065-0000000000016fd9-0006174044c223d5.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 29 16:36 'user-60509@7ee6df8b2bf043d7b8ddbe703291a5d1-0000000000016711-0006173ebec5a8b9.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 29 16:36 'system@7ee6df8b2bf043d7b8ddbe703291a5d1-0000000000016712-0006173ebec6f3f6.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 26 13:25 'user-60509@ebacfa600e5c4fb3a4857bd2106f17de-00000000000155f2-000616fe183c162f.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 26 13:25 'system@618e242434a3485d80aad3e5a137d007-0000000000015786-000616fe285875bf.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 26 13:25 'system@ebacfa600e5c4fb3a4857bd2106f17de-00000000000155f3-000616fe183d9208.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 26 13:20 'user-60509@775fc74246d44669b2e60516b1a0e96c-0000000000014f57-000616fe0e24ef0a.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 26 13:20 'system@ebacfa600e5c4fb3a4857bd2106f17de-00000000000150d5-000616fe170e0b1b.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 26 13:20 'system@775fc74246d44669b2e60516b1a0e96c-0000000000014f58-000616fe0e266e25.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 26 13:17 'user-60509@280a80c9c29c4ed9abda1262be4bb514-00000000000147a0-000616f9a288f61a.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 26 13:17 'system@775fc74246d44669b2e60516b1a0e96c-0000000000014a04-000616fe0cce0851.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 26 13:17 'system@280a80c9c29c4ed9abda1262be4bb514-0000000000014790-000616f99a113c25.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 26 12:18 'system@0006173ebe149166-6bcf02d4bc7f3afe.journal~'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 26 11:31 'user-60509@618e242434a3485d80aad3e5a137d007-0000000000015cb3-000616fe290fcf2a.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 26 11:31 'system@618e242434a3485d80aad3e5a137d007-0000000000015cb4-000616fe29115c51.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 26 08:23 'user-60509@8db1b97a8040472abc21cca5d2639855-0000000000013dd3-000616e5fe1ac5a1.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 26 08:23 'system@280a80c9c29c4ed9abda1262be4bb514-0000000000013f4c-000616f9f0731ffe.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 26 08:23 'system@8db1b97a8040472abc21cca5d2639855-0000000000013dd4-000616e5fe1c4b0f.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 26 07:59 'user-60509@280a80c9c29c4ed9abda1262be4bb514-00000000000144a4-000616f9f1b70197.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 26 07:59 'system@280a80c9c29c4ed9abda1262be4bb514-00000000000144a5-000616f9f1b87ebb.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 25 08:35 'user-60509@245f5715c56c4987b02828af76e070de-00000000000137bc-000616e5f4e9a10a.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 25 08:35 'system@8db1b97a8040472abc21cca5d2639855-00000000000138a1-000616e5fd6161d7.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 25 08:35 'system@245f5715c56c4987b02828af76e070de-00000000000137bd-000616e5f4eb45c5.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 25 08:32 'user-60509@3143f66ec8e34ef78b56d829f0b56191-00000000000130db-000616e5ebbf1560.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 25 08:32 'system@245f5715c56c4987b02828af76e070de-0000000000013287-000616e5f421bca3.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 25 08:32 'system@3143f66ec8e34ef78b56d829f0b56191-00000000000130dc-000616e5ebc0b793.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 25 08:30 'user-60509@9bc659b62df74a629a8cc8888bfb0cde-00000000000129a6-000616e5d30bd7aa.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 25 08:30 'system@3143f66ec8e34ef78b56d829f0b56191-0000000000012b96-000616e5eae7f59f.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 25 08:30 'system@9bc659b62df74a629a8cc8888bfb0cde-00000000000129a7-000616e5d30d14af.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 25 08:23 'user-60509@3198d4ee0dd6429a9450599eb6983a55-0000000000011f70-000616decaa73f00.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 25 08:23 'system@9bc659b62df74a629a8cc8888bfb0cde-0000000000012450-000616e5d1751779.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 25 08:22 'system@3198d4ee0dd6429a9450599eb6983a55-0000000000011f5f-000616dec8865eaa.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 25 01:41 'user-60509@356360ad58eb4c9f8cafd4a8a9291c50-0000000000010afa-00061272897fbb70.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 25 01:41 'system@3198d4ee0dd6429a9450599eb6983a55-00000000000116f6-000616e034c5b522.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 25 01:41 'system@0858da2f48d2438b8121e2a9fc911583-0000000000011126-000616e028803a9d.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 25 01:37 'system@356360ad58eb4c9f8cafd4a8a9291c50-0000000000010afb-00061272898100c0.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 24 23:59 'user-60509@3198d4ee0dd6429a9450599eb6983a55-0000000000011c5f-000616e0377e8257.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Apr 24 23:59 'system@3198d4ee0dd6429a9450599eb6983a55-0000000000011c61-000616e0377fe967.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Feb 28 16:10 'user-60509@b1aba3aef60443858adbdc9ae7c26831-0000000000010036-000612601d6a2209.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Feb 28 16:10 'system@356360ad58eb4c9f8cafd4a8a9291c50-0000000000010502-000612728894b529.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Feb 28 16:09 'system@b1aba3aef60443858adbdc9ae7c26831-0000000000010031-000612601d3d991c.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Feb 27 18:11 'user-60509@b1aba3aef60443858adbdc9ae7c26831-000000000000fed6-0006125fe714b5f5.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Feb 27 18:11 'system@b1aba3aef60443858adbdc9ae7c26831-000000000000fecf-0006125fe68609d9.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Feb 27 17:55 'user-60509@b1aba3aef60443858adbdc9ae7c26831-000000000000feb7-0006125fe13f808b.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Feb 27 17:55 'system@b1aba3aef60443858adbdc9ae7c26831-000000000000feae-0006125fe043dee7.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Feb 27 17:54 'system@b1aba3aef60443858adbdc9ae7c26831-000000000000fe4f-0006125fbfb521ef.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Feb 27 17:54 'user-60509@b1aba3aef60443858adbdc9ae7c26831-000000000000fe57-0006125fc93012ed.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Feb 27 17:49 'user-60509@523ef1081a24429bae2d47c3a5d3ec03-000000000000e058-00061249e35a490d.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Feb 27 17:49 'system@b1aba3aef60443858adbdc9ae7c26831-000000000000f2e4-0006125fc58593be.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Feb 27 17:46 'system@51aaab741c1d44748a8c15caa0de81e7-000000000000eabe-0006125f7fe7883b.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Feb 27 17:45 'user-60509@b1aba3aef60443858adbdc9ae7c26831-000000000000f88c-0006125fcf5a68af.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Feb 27 17:45 'system@b1aba3aef60443858adbdc9ae7c26831-000000000000f88d-0006125fcf5b7749.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Feb 27 17:27 'system@523ef1081a24429bae2d47c3a5d3ec03-000000000000e04d-00061249e32e6e63.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Feb 26 16:23 'user-60509@8c09fabd409848db883f1c37efa86e7e-000000000000ce1e-00061249d8b9298f.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Feb 26 16:23 'system@523ef1081a24429bae2d47c3a5d3ec03-000000000000d7fc-0006124a7e12def8.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Feb 26 16:23 'system@8c09fabd409848db883f1c37efa86e7e-000000000000ce20-00061249d8ba819c.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Feb 26 15:40 'user-60509@523ef1081a24429bae2d47c3a5d3ec03-000000000000dd70-0006124a7ee795d3.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Feb 26 15:40 'system@523ef1081a24429bae2d47c3a5d3ec03-000000000000dd71-0006124a7ee8e6e1.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Feb 26 15:37 'user-60509@7533afb51a684f609a06ff209ff055cd-000000000000c168-00060efb4326e780.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Feb 26 15:37 'system@8c09fabd409848db883f1c37efa86e7e-000000000000c8bb-00061249d804247e.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Feb 26 15:37 'system@7533afb51a684f609a06ff209ff055cd-000000000000c169-00060efb43281fd5.journal'
-rw-r-----+ 1 root systemd-journal 8.0M Jan 15 13:36 'system@7533afb51a684f609a06ff209ff055cd-000000000000bc44-00060efb231254e6.journal'

Offline

#20 2024-05-02 21:13:23

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

Re: [SOLVED] NetworkManager.service does not start when login

The timestamps of the first files look weird - let's just start w/ "system@1277f172eff74020863ca318430e1439-000000000001ab27-0006177f673040f2.journal"

Online

#21 2024-05-02 21:42:21

gabx
Member
From: Geneva, Switzerland
Registered: 2011-11-20
Posts: 149
Website

Re: [SOLVED] NetworkManager.service does not start when login

I see what you mean about the timestamp. But what are you expecting from me now?

Offline

#22 2024-05-02 21:46:39

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

Re: [SOLVED] NetworkManager.service does not start when login

Upload that file?

journalctl --file /var/log/journal/bc47046c25d64071a8322148626a91cb/system@1277f172eff74020863ca318430e1439-000000000001ab27-0006177f673040f2.journal | curl -F 'file=@-' 0x0.st

We're still trying to figure what's going on that leaves you w/ disabled services runngin and enabled services not (and your journal somehow compromised) and looking at the journal is still the best shot.

Maybe also post the output of

stat /var/log/journal/bc47046c25d64071a8322148626a91cb/system@1277f172eff74020863ca318430e1439-000000000001a5ce-0006177f666a1a74.journal

so we don't rely on ls for the timestamps.

Online

#23 2024-05-02 21:52:13

gabx
Member
From: Geneva, Switzerland
Registered: 2011-11-20
Posts: 149
Website

Re: [SOLVED] NetworkManager.service does not start when login

This?

journalctl --file system@1277f172eff74020863ca318430e1439-000000000001ab27-0006177f673040f2.journal | curl -F 'file=@-' 0x0.st
http://0x0.st/XX9g.txt

May 02 23:36:59 archlinux systemd-journald[208]: /var/log/journal/bc47046c25d64071a8322148626a91cb/user-60509.journal: Journal file uses a different sequence number ID, rotating.
May 02 23:36:59 archlinux login[431]: LOGIN ON tty1 BY gabx
May 02 23:36:59 archlinux systemd[1]: Started User Manager for UID 60509.
May 02 23:36:59 archlinux systemd[1]: Started Session 1 of User gabx.
May 02 23:37:06 archlinux systemd[1]: Starting RealtimeKit Scheduling Policy Service...
May 02 23:37:06 archlinux systemd[1]: Started RealtimeKit Scheduling Policy Service.
May 02 23:37:06 archlinux rtkit-daemon[604]: Successfully called chroot.
May 02 23:37:06 archlinux rtkit-daemon[604]: Successfully dropped privileges.
May 02 23:37:06 archlinux rtkit-daemon[604]: Successfully limited resources.
May 02 23:37:06 archlinux rtkit-daemon[604]: Running.
May 02 23:37:06 archlinux rtkit-daemon[604]: Canary thread running.
May 02 23:37:06 archlinux rtkit-daemon[604]: Watchdog thread running.
May 02 23:37:06 archlinux rtkit-daemon[604]: Supervising 0 threads of 0 processes of 0 users.
May 02 23:37:06 archlinux rtkit-daemon[604]: Supervising 0 threads of 0 processes of 0 users.
May 02 23:37:06 archlinux rtkit-daemon[604]: Successfully made thread 603 of process 573 owned by '60509' RT at priority 20.
May 02 23:37:06 archlinux rtkit-daemon[604]: Supervising 1 threads of 1 processes of 1 users.
May 02 23:37:06 archlinux systemd[1]: Starting Manage, Install and Generate Color Profiles...
May 02 23:37:07 archlinux systemd[1]: Started Manage, Install and Generate Color Profiles.
May 02 23:37:07 archlinux dbus-broker-launch[410]: Activation request for 'org.freedesktop.Avahi' failed: The systemd unit 'dbus-org.freedesktop.Avahi.service' could not be found.
May 02 23:37:07 archlinux systemd[1]: Reached target User and Group Name Lookups.
May 02 23:37:07 archlinux systemd[1]: Starting Accounts Service...
May 02 23:37:07 archlinux accounts-daemon[693]: started daemon version 23.13.0
May 02 23:37:07 archlinux systemd[1]: Started Accounts Service.
May 02 23:37:07 archlinux systemd[1]: Starting Daemon for power management...
May 02 23:37:07 archlinux rtkit-daemon[604]: Successfully made thread 763 of process 763 owned by '60509' high priority at nice level -11.
May 02 23:37:07 archlinux rtkit-daemon[604]: Supervising 2 threads of 2 processes of 1 users.
May 02 23:37:07 archlinux systemd[1]: Started Daemon for power management.
May 02 23:37:07 archlinux kernel: rfkill: input handler disabled
May 02 23:37:08 archlinux systemd[1]: Starting Disk Manager...
May 02 23:37:08 archlinux udisksd[932]: udisks daemon version 2.10.1 starting
May 02 23:37:08 archlinux rtkit-daemon[604]: Successfully made thread 953 of process 953 owned by '60509' high priority at nice level -11.
May 02 23:37:08 archlinux rtkit-daemon[604]: Supervising 2 threads of 2 processes of 1 users.
May 02 23:37:08 archlinux rtkit-daemon[604]: Successfully made thread 959 of process 959 owned by '60509' high priority at nice level -11.
May 02 23:37:08 archlinux rtkit-daemon[604]: Supervising 2 threads of 2 processes of 1 users.
May 02 23:37:08 archlinux systemd[1]: Started Disk Manager.
May 02 23:37:08 archlinux udisksd[932]: Acquired the name org.freedesktop.UDisks2 on the system message bus
May 02 23:37:08 archlinux polkitd[422]: Registered Authentication Agent for unix-session:1 (system bus name :1.18 [/usr/bin/gnome-shell], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
May 02 23:37:08 archlinux systemd[1]: Starting Location Lookup Service...
May 02 23:37:08 archlinux rtkit-daemon[604]: Supervising 1 threads of 1 processes of 1 users.
May 02 23:37:08 archlinux rtkit-daemon[604]: Supervising 1 threads of 1 processes of 1 users.
May 02 23:37:08 archlinux rtkit-daemon[604]: Supervising 1 threads of 1 processes of 1 users.
May 02 23:37:08 archlinux rtkit-daemon[604]: Successfully made thread 999 of process 999 owned by '60509' high priority at nice level -11.
May 02 23:37:08 archlinux rtkit-daemon[604]: Supervising 2 threads of 2 processes of 1 users.
May 02 23:37:09 archlinux rtkit-daemon[604]: Successfully made thread 1004 of process 999 owned by '60509' RT at priority 20.
May 02 23:37:09 archlinux rtkit-daemon[604]: Supervising 3 threads of 2 processes of 1 users.
May 02 23:37:09 archlinux rtkit-daemon[604]: Successfully made thread 1001 of process 1001 owned by '60509' high priority at nice level -11.
May 02 23:37:09 archlinux rtkit-daemon[604]: Supervising 4 threads of 3 processes of 1 users.
May 02 23:37:09 archlinux systemd[1]: Starting WPA supplicant...
May 02 23:37:09 archlinux systemd[1]: Started WPA supplicant.
May 02 23:37:09 archlinux wpa_supplicant[1017]: Successfully initialized wpa_supplicant
May 02 23:37:09 archlinux geoclue[1000]: Failed to connect to avahi service: Daemon not running
May 02 23:37:09 archlinux systemd[1]: Started Location Lookup Service.
May 02 23:37:09 archlinux systemd[1]: Starting Locale Service...
May 02 23:37:09 archlinux systemd[1]: Started Locale Service.
May 02 23:37:09 archlinux rtkit-daemon[604]: Successfully made thread 603 of process 573 owned by '60509' high priority at nice level 0.
May 02 23:37:09 archlinux rtkit-daemon[604]: Supervising 3 threads of 2 processes of 1 users.
May 02 23:37:09 archlinux rtkit-daemon[604]: Supervising 2 threads of 1 processes of 1 users.
May 02 23:37:09 archlinux rtkit-daemon[604]: Supervising 2 threads of 1 processes of 1 users.
May 02 23:37:09 archlinux rtkit-daemon[604]: Successfully made thread 603 of process 573 owned by '60509' RT at priority 20.
May 02 23:37:09 archlinux rtkit-daemon[604]: Supervising 3 threads of 2 processes of 1 users.
May 02 23:37:09 archlinux rtkit-daemon[604]: Successfully made thread 1060 of process 1060 owned by '60509' high priority at nice level -11.
May 02 23:37:09 archlinux rtkit-daemon[604]: Supervising 4 threads of 3 processes of 1 users.
May 02 23:37:10 archlinux rtkit-daemon[604]: Supervising 3 threads of 2 processes of 1 users.
May 02 23:37:10 archlinux rtkit-daemon[604]: Supervising 3 threads of 2 processes of 1 users.
May 02 23:37:10 archlinux rtkit-daemon[604]: Supervising 3 threads of 2 processes of 1 users.
May 02 23:37:15 archlinux kernel: logitech-hidpp-device 0003:046D:4055.0004: HID++ 4.5 device connected.
May 02 23:37:39 archlinux systemd[1]: systemd-hostnamed.service: Deactivated successfully.
May 02 23:37:39 archlinux systemd[1]: systemd-localed.service: Deactivated successfully.
May 02 23:37:39 archlinux systemd-resolved[379]: Switching to fallback DNS server 1.1.1.1#cloudflare-dns.com.
May 02 23:37:39 archlinux systemd[1]: Starting Locale Service...
May 02 23:37:39 archlinux systemd[1]: Started Locale Service.
May 02 23:38:09 archlinux geoclue[1000]: Service not used for 60 seconds. Shutting down..
May 02 23:38:09 archlinux systemd[1]: geoclue.service: Deactivated successfully.
May 02 23:38:09 archlinux systemd[1]: systemd-localed.service: Deactivated successfully.
May 02 23:38:11 archlinux systemd-homed[416]: gabx: changing state active → authenticating-for-acquire
May 02 23:38:11 archlinux systemd-homework[1225]: None of the supplied plaintext passwords unlock the user record's hashed passwords.
May 02 23:38:11 archlinux systemd-homed[416]: Authentication failed: Required key not available
May 02 23:38:11 archlinux systemd-homed[416]: gabx: changing state authenticating-for-acquire → active
May 02 23:38:15 archlinux systemd-homed[416]: gabx: changing state active → authenticating-for-acquire
May 02 23:38:15 archlinux systemd-homework[1226]: Provided password unlocks user record.
May 02 23:38:15 archlinux systemd-homework[1226]: Read embedded .identity file.
May 02 23:38:15 archlinux systemd-homework[1226]: Provided password unlocks user record.
May 02 23:38:15 archlinux systemd-homework[1226]: Reconciling embedded user identity completed (host and embedded version were identical).
May 02 23:38:15 archlinux systemd-homework[1226]: Everything completed.
May 02 23:38:15 archlinux systemd-homed[416]: gabx: changing state authenticating-for-acquire → active
May 02 23:38:15 archlinux systemd[1]: Stopping Network Configuration...
May 02 23:38:15 archlinux systemd[1]: systemd-networkd.service: Deactivated successfully.
May 02 23:38:15 archlinux systemd[1]: Stopped Network Configuration.
May 02 23:38:29 archlinux systemd[1]: Starting Network Manager...
May 02 23:38:29 archlinux NetworkManager[1235]: <info>  [1714685909.8417] NetworkManager (version 1.46.0-2) is starting... (boot:b45d8397-de55-4fcf-b734-0562408c085e)
May 02 23:38:29 archlinux NetworkManager[1235]: <info>  [1714685909.8418] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 20-connectivity.conf)
May 02 23:38:29 archlinux NetworkManager[1235]: <info>  [1714685909.8494] manager[0x5de6ac54d220]: monitoring kernel firmware directory '/lib/firmware'.
May 02 23:38:29 archlinux systemd[1]: Starting Hostname Service...
May 02 23:38:29 archlinux systemd[1]: Started Hostname Service.
May 02 23:38:29 archlinux NetworkManager[1235]: <info>  [1714685909.9557] hostname: hostname: using hostnamed
May 02 23:38:29 archlinux NetworkManager[1235]: <info>  [1714685909.9557] hostname: static hostname changed from (none) to "magnolia"
May 02 23:38:29 archlinux NetworkManager[1235]: <info>  [1714685909.9560] dns-mgr: init: dns=systemd-resolved rc-manager=symlink, plugin=systemd-resolved
May 02 23:38:29 archlinux NetworkManager[1235]: <info>  [1714685909.9561] policy: set-hostname: set hostname to 'magnolia' (from system configuration)
May 02 23:38:29 magnolia systemd-hostnamed[1240]: Hostname set to <magnolia> (static)
May 02 23:38:29 magnolia systemd-resolved[379]: System hostname changed to 'magnolia'.
May 02 23:38:29 magnolia NetworkManager[1235]: <info>  [1714685909.9583] rfkill3: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:1c.0/0000:01:00.0/ieee80211/phy0/rfkill3) (driver ath10k_pci)
May 02 23:38:29 magnolia NetworkManager[1235]: <info>  [1714685909.9585] rfkill0: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/rfkill/rfkill0) (platform driver ideapad_acpi)
May 02 23:38:29 magnolia NetworkManager[1235]: <info>  [1714685909.9631] manager[0x5de6ac54d220]: rfkill: Wi-Fi hardware radio set enabled
May 02 23:38:29 magnolia NetworkManager[1235]: <info>  [1714685909.9632] manager[0x5de6ac54d220]: rfkill: WWAN hardware radio set enabled
May 02 23:38:29 magnolia NetworkManager[1235]: <info>  [1714685909.9706] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.46.0-2/libnm-device-plugin-adsl.so)
May 02 23:38:29 magnolia NetworkManager[1235]: <info>  [1714685909.9728] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.46.0-2/libnm-device-plugin-bluetooth.so)
May 02 23:38:29 magnolia NetworkManager[1235]: <info>  [1714685909.9740] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.46.0-2/libnm-device-plugin-ovs.so)
May 02 23:38:29 magnolia NetworkManager[1235]: <info>  [1714685909.9858] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.46.0-2/libnm-device-plugin-team.so)
May 02 23:38:29 magnolia NetworkManager[1235]: <info>  [1714685909.9872] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.46.0-2/libnm-device-plugin-wifi.so)
May 02 23:38:29 magnolia NetworkManager[1235]: <info>  [1714685909.9876] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.46.0-2/libnm-device-plugin-wwan.so)
May 02 23:38:29 magnolia NetworkManager[1235]: <info>  [1714685909.9878] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
May 02 23:38:29 magnolia NetworkManager[1235]: <info>  [1714685909.9879] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
May 02 23:38:29 magnolia NetworkManager[1235]: <info>  [1714685909.9879] manager: Networking is enabled by state file
May 02 23:38:29 magnolia NetworkManager[1235]: <info>  [1714685909.9883] settings: Loaded settings plugin: keyfile (internal)
May 02 23:38:29 magnolia NetworkManager[1235]: <info>  [1714685909.9900] dhcp: init: Using DHCP client 'internal'
May 02 23:38:29 magnolia NetworkManager[1235]: <info>  [1714685909.9902] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1)
May 02 23:38:29 magnolia NetworkManager[1235]: <info>  [1714685909.9914] device (lo): state change: unmanaged -> unavailable (reason 'connection-assumed', sys-iface-state: 'external')
May 02 23:38:29 magnolia NetworkManager[1235]: <info>  [1714685909.9919] device (lo): state change: unavailable -> disconnected (reason 'connection-assumed', sys-iface-state: 'external')
May 02 23:38:29 magnolia NetworkManager[1235]: <info>  [1714685909.9927] device (lo): Activation: starting connection 'lo' (bf32a072-a6c1-4145-8d01-0297d77038ab)
May 02 23:38:29 magnolia NetworkManager[1235]: <info>  [1714685909.9938] manager: (enp0s20f0u1u4): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
May 02 23:38:29 magnolia NetworkManager[1235]: <info>  [1714685909.9950] settings: (enp0s20f0u1u4): created default wired connection 'Wired connection 1'
May 02 23:38:29 magnolia NetworkManager[1235]: <info>  [1714685909.9950] device (enp0s20f0u1u4): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.0001] device (wlp1s0): driver supports Access Point (AP) mode
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.0008] manager: (wlp1s0): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/3)
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.0011] device (wlp1s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
May 02 23:38:30 magnolia systemd[1]: Starting Network Manager Script Dispatcher Service...
May 02 23:38:30 magnolia systemd[1]: Starting Network Configuration...
May 02 23:38:30 magnolia systemd[1]: Started Network Manager Script Dispatcher Service.
May 02 23:38:30 magnolia kernel: r8152 2-1.4:1.0 enp0s20f0u1u4: carrier on
May 02 23:38:30 magnolia systemd-networkd[1242]: lo: Link UP
May 02 23:38:30 magnolia systemd-networkd[1242]: lo: Gained carrier
May 02 23:38:30 magnolia systemd-networkd[1242]: enp0s20f0u1u4: Link UP
May 02 23:38:30 magnolia systemd-networkd[1242]: enp0s20f0u1u4: Gained carrier
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.3387] device (wlp1s0): set-hw-addr: set MAC address to 32:13:DC:CD:43:56 (scanning)
May 02 23:38:30 magnolia systemd-networkd[1242]: wlp1s0: Link UP
May 02 23:38:30 magnolia systemd[1]: Started Network Manager.
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.5838] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.5861] ovsdb: disconnected from ovsdb
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.5862] device (lo): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'external')
May 02 23:38:30 magnolia systemd-networkd[1242]: Enumeration completed
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.5866] device (lo): state change: prepare -> config (reason 'none', sys-iface-state: 'external')
May 02 23:38:30 magnolia systemd-networkd[1242]: enp0s20f0u1u4: Lost carrier
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.5868] device (lo): state change: config -> ip-config (reason 'none', sys-iface-state: 'external')
May 02 23:38:30 magnolia systemd-networkd[1242]: enp0s20f0u1u4: Gained carrier
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.5871] device (enp0s20f0u1u4): carrier: link connected
May 02 23:38:30 magnolia systemd-networkd[1242]: wlp1s0: Link DOWN
May 02 23:38:30 magnolia systemd[1]: Started Network Configuration.
May 02 23:38:30 magnolia systemd-networkd[1242]: wlp1s0: Link UP
May 02 23:38:30 magnolia systemd-networkd[1242]: enp0s20f0u1u4: Configuring with /etc/systemd/network/20-wired.network.
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.6034] device (lo): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'external')
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.6043] device (enp0s20f0u1u4): state change: unavailable -> disconnected (reason 'carrier-changed', sys-iface-state: 'managed')
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.6069] policy: auto-activating connection 'Wired connection 1' (4c689e10-8d62-3ca3-9d32-05c3405f5da5)
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.6080] device (enp0s20f0u1u4): Activation: starting connection 'Wired connection 1' (4c689e10-8d62-3ca3-9d32-05c3405f5da5)
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.6081] device (enp0s20f0u1u4): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.6083] manager: NetworkManager state is now CONNECTING
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.6084] device (enp0s20f0u1u4): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.6103] device (enp0s20f0u1u4): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.6118] dhcp4 (enp0s20f0u1u4): activation: beginning transaction (timeout in 45 seconds)
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.6178] device (lo): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'external')
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.6184] device (lo): state change: secondaries -> activated (reason 'none', sys-iface-state: 'external')
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.6196] device (lo): Activation: successful, device activated.
May 02 23:38:30 magnolia systemd-networkd[1242]: wlp1s0: Configuring with /etc/systemd/network/30-wireless.network.
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.6203] dhcp4 (enp0s20f0u1u4): state changed no lease
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.6497] device (wlp1s0): supplicant interface state: internal-starting -> disconnected
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.6499] Wi-Fi P2P device controlled by interface wlp1s0 created
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.6501] manager: (p2p-dev-wlp1s0): new 802.11 Wi-Fi P2P device (/org/freedesktop/NetworkManager/Devices/4)
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.6504] device (p2p-dev-wlp1s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.6509] device (wlp1s0): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-state: 'managed')
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.6529] device (p2p-dev-wlp1s0): state change: unavailable -> disconnected (reason 'none', sys-iface-state: 'managed')
May 02 23:38:30 magnolia systemd[1]: Starting Network Time Service...
May 02 23:38:30 magnolia systemd[1]: Stopping Network Time Synchronization...
May 02 23:38:30 magnolia ntpd[1269]: ntpd 4.2.8p17@1.4004-o Tue Jun  6 14:05:47 UTC 2023 (1): Starting
May 02 23:38:30 magnolia ntpd[1269]: Command line: /usr/bin/ntpd -g -u ntp:ntp
May 02 23:38:30 magnolia ntpd[1269]: ----------------------------------------------------
May 02 23:38:30 magnolia ntpd[1269]: ntp-4 is maintained by Network Time Foundation,
May 02 23:38:30 magnolia ntpd[1269]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
May 02 23:38:30 magnolia ntpd[1269]: corporation.  Support and training for ntp-4 are
May 02 23:38:30 magnolia ntpd[1269]: available at https://www.nwtime.org/support
May 02 23:38:30 magnolia ntpd[1269]: ----------------------------------------------------
May 02 23:38:30 magnolia ntpd[1269]: DEBUG behavior is enabled - a violation of any
May 02 23:38:30 magnolia ntpd[1269]: diagnostic assertion will cause ntpd to abort
May 02 23:38:30 magnolia ntpd[1272]: proto: precision = 0.131 usec (-23)
May 02 23:38:30 magnolia ntpd[1272]: basedate set to 2023-05-25
May 02 23:38:30 magnolia ntpd[1272]: gps base set to 2023-05-28 (week 2264)
May 02 23:38:30 magnolia ntpd[1272]: initial drift restored to 0.000000
May 02 23:38:30 magnolia ntpd[1272]: Listen and drop on 0 v6wildcard [::]:123
May 02 23:38:30 magnolia ntpd[1272]: Listen and drop on 1 v4wildcard 0.0.0.0:123
May 02 23:38:30 magnolia ntpd[1272]: Listen normally on 2 lo 127.0.0.1:123
May 02 23:38:30 magnolia ntpd[1272]: Listen normally on 3 lo [::1]:123
May 02 23:38:30 magnolia ntpd[1272]: bind(20) AF_INET6 fe80::eed4:cdba:152d:390f%2#123 flags 0x11 failed: Cannot assign requested address
May 02 23:38:30 magnolia ntpd[1272]: unable to create socket on enp0s20f0u1u4 (4) for fe80::eed4:cdba:152d:390f%2#123
May 02 23:38:30 magnolia ntpd[1272]: failed to init interface for address fe80::eed4:cdba:152d:390f%2
May 02 23:38:30 magnolia ntpd[1272]: Listening on routing socket on fd #20 for interface updates
May 02 23:38:30 magnolia ntpd[1272]: kernel reports TIME_ERROR: 0x41: Clock Unsynchronized
May 02 23:38:30 magnolia ntpd[1272]: kernel reports TIME_ERROR: 0x41: Clock Unsynchronized
May 02 23:38:30 magnolia systemd[1]: Started Network Time Service.
May 02 23:38:30 magnolia systemd[1]: systemd-timesyncd.service: Deactivated successfully.
May 02 23:38:30 magnolia systemd[1]: Stopped Network Time Synchronization.
May 02 23:38:30 magnolia NetworkManager[1235]: <info>  [1714685910.8470] agent-manager: agent[4cd280a21c926874,:1.18/org.gnome.Shell.NetworkAgent/60509]: agent registered
May 02 23:38:31 magnolia ntpd[1272]: bind(23) AF_INET6 fe80::eed4:cdba:152d:390f%2#123 flags 0x11 failed: Cannot assign requested address
May 02 23:38:31 magnolia ntpd[1272]: unable to create socket on enp0s20f0u1u4 (5) for fe80::eed4:cdba:152d:390f%2#123
May 02 23:38:31 magnolia ntpd[1272]: failed to init interface for address fe80::eed4:cdba:152d:390f%2
May 02 23:38:31 magnolia wpa_supplicant[1017]: wlp1s0: CTRL-EVENT-REGDOM-CHANGE init=BEACON_HINT type=UNKNOWN
May 02 23:38:32 magnolia systemd-networkd[1242]: enp0s20f0u1u4: Gained IPv6LL
May 02 23:38:32 magnolia NetworkManager[1235]: <info>  [1714685912.6753] policy: set 'Wired connection 1' (enp0s20f0u1u4) as default for IPv6 routing and DNS
May 02 23:38:32 magnolia NetworkManager[1235]: <warn>  [1714685912.6816] dns-sd-resolved[8abb6d3434a38910]: send-updates SetLinkDomains@2 failed: GDBus.Error:org.freedesktop.resolve1.LinkBusy: Link enp0s20f0u1u4 is managed.
May 02 23:38:32 magnolia systemd-networkd[1242]: enp0s20f0u1u4: DHCPv4 address 192.168.1.150/24, gateway 192.168.1.254 acquired from 192.168.1.254
May 02 23:38:32 magnolia NetworkManager[1235]: <info>  [1714685912.8640] dhcp4 (enp0s20f0u1u4): state changed new lease, address=192.168.1.150, acd pending
May 02 23:38:32 magnolia NetworkManager[1235]: <info>  [1714685912.8644] dhcp4 (enp0s20f0u1u4): state changed new lease, address=192.168.1.150
May 02 23:38:32 magnolia NetworkManager[1235]: <info>  [1714685912.8650] policy: set 'Wired connection 1' (enp0s20f0u1u4) as default for IPv4 routing and DNS
May 02 23:38:32 magnolia NetworkManager[1235]: <info>  [1714685912.8756] device (enp0s20f0u1u4): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
May 02 23:38:32 magnolia NetworkManager[1235]: <info>  [1714685912.8799] device (enp0s20f0u1u4): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
May 02 23:38:32 magnolia NetworkManager[1235]: <info>  [1714685912.8803] device (enp0s20f0u1u4): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
May 02 23:38:32 magnolia NetworkManager[1235]: <info>  [1714685912.8807] manager: NetworkManager state is now CONNECTED_SITE
May 02 23:38:32 magnolia NetworkManager[1235]: <info>  [1714685912.8810] device (enp0s20f0u1u4): Activation: successful, device activated.
May 02 23:38:33 magnolia NetworkManager[1235]: <info>  [1714685913.0117] manager: NetworkManager state is now CONNECTED_GLOBAL
May 02 23:38:34 magnolia systemd[1]: Starting flatpak system helper...
May 02 23:38:34 magnolia systemd[1]: Started flatpak system helper.
May 02 23:38:35 magnolia flatpak-system-helper[1372]: system: Pulled appstream2/x86_64 from /var/tmp/flatpak-cache-YYX0M2/repo-7Zqubm
May 02 23:38:35 magnolia NetworkManager[1235]: <info>  [1714685915.5171] policy: auto-activating connection 'Gab_belair' (21a9a50b-bd17-42ad-ba71-14004ed01128)
May 02 23:38:35 magnolia NetworkManager[1235]: <info>  [1714685915.5175] device (wlp1s0): Activation: starting connection 'Gab_belair' (21a9a50b-bd17-42ad-ba71-14004ed01128)
May 02 23:38:35 magnolia NetworkManager[1235]: <info>  [1714685915.5175] device (wlp1s0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
May 02 23:38:35 magnolia systemd-networkd[1242]: wlp1s0: Link DOWN
May 02 23:38:35 magnolia NetworkManager[1235]: <info>  [1714685915.5370] device (wlp1s0): set-hw-addr: reset MAC address to 58:00:E3:D0:F2:A9 (preserve)
May 02 23:38:35 magnolia systemd-networkd[1242]: wlp1s0: Link UP
May 02 23:38:35 magnolia NetworkManager[1235]: <info>  [1714685915.5421] device (wlp1s0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
May 02 23:38:35 magnolia NetworkManager[1235]: <info>  [1714685915.5423] device (wlp1s0): Activation: (wifi) access point 'Gab_belair' has security, but secrets are required.
May 02 23:38:35 magnolia NetworkManager[1235]: <info>  [1714685915.5424] device (wlp1s0): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
May 02 23:38:35 magnolia NetworkManager[1235]: <info>  [1714685915.5425] sup-iface[73014e674564299c,0,wlp1s0]: wps: type pbc start...
May 02 23:38:35 magnolia NetworkManager[1235]: <info>  [1714685915.5427] device (wlp1s0): supplicant interface state: disconnected -> interface_disabled
May 02 23:38:35 magnolia NetworkManager[1235]: <info>  [1714685915.5427] device (p2p-dev-wlp1s0): supplicant management interface state: disconnected -> interface_disabled
May 02 23:38:35 magnolia NetworkManager[1235]: <info>  [1714685915.5594] device (wlp1s0): supplicant interface state: interface_disabled -> inactive
May 02 23:38:35 magnolia NetworkManager[1235]: <info>  [1714685915.5594] device (p2p-dev-wlp1s0): supplicant management interface state: interface_disabled -> inactive
May 02 23:38:35 magnolia wpa_supplicant[1017]: wlp1s0: WPS-PBC-ACTIVE
May 02 23:38:35 magnolia NetworkManager[1235]: <info>  [1714685915.5653] device (wlp1s0): supplicant interface state: inactive -> scanning
May 02 23:38:35 magnolia NetworkManager[1235]: <info>  [1714685915.5654] device (p2p-dev-wlp1s0): supplicant management interface state: inactive -> scanning
May 02 23:38:38 magnolia ntpd[1272]: Listen normally on 6 enp0s20f0u1u4 192.168.1.150:123
May 02 23:38:38 magnolia ntpd[1272]: Listen normally on 7 enp0s20f0u1u4 [2a01:e0a:2c7:1180:2e0:4cff:fedb:aa1d]:123
May 02 23:38:38 magnolia ntpd[1272]: Listen normally on 8 enp0s20f0u1u4 [2a01:e0a:2c7:1180:7fcc:17:d217:beb5]:123
May 02 23:38:38 magnolia ntpd[1272]: Listen normally on 9 enp0s20f0u1u4 [fe80::eed4:cdba:152d:390f%2]:123
May 02 23:38:38 magnolia ntpd[1272]: new interface(s) found: waking up resolver
May 02 23:38:43 magnolia systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
May 02 23:38:59 magnolia systemd[1]: systemd-hostnamed.service: Deactivated successfully.
May 02 23:39:00 magnolia NetworkManager[1235]: <warn>  [1714685940.5544] device (wlp1s0): no secrets: No agents were available for this request.
May 02 23:39:00 magnolia NetworkManager[1235]: <info>  [1714685940.5545] device (wlp1s0): state change: need-auth -> failed (reason 'no-secrets', sys-iface-state: 'managed')
May 02 23:39:00 magnolia systemd-networkd[1242]: wlp1s0: Link DOWN
May 02 23:39:00 magnolia NetworkManager[1235]: <info>  [1714685940.5972] device (wlp1s0): set-hw-addr: set MAC address to A6:3F:25:39:59:61 (scanning)
May 02 23:39:00 magnolia systemd-networkd[1242]: wlp1s0: Link UP
May 02 23:39:00 magnolia NetworkManager[1235]: <warn>  [1714685940.6049] device (wlp1s0): Activation: failed for connection 'Gab_belair'
May 02 23:39:00 magnolia NetworkManager[1235]: <info>  [1714685940.6053] device (wlp1s0): supplicant interface state: scanning -> interface_disabled
May 02 23:39:00 magnolia NetworkManager[1235]: <info>  [1714685940.6053] device (p2p-dev-wlp1s0): supplicant management interface state: scanning -> interface_disabled
May 02 23:39:00 magnolia NetworkManager[1235]: <info>  [1714685940.6061] device (wlp1s0): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
May 02 23:39:00 magnolia NetworkManager[1235]: <info>  [1714685940.6086] manager: startup complete
May 02 23:39:00 magnolia wpa_supplicant[1017]: wlp1s0: WPS-CANCEL
May 02 23:39:00 magnolia NetworkManager[1235]: <info>  [1714685940.6297] device (wlp1s0): supplicant interface state: interface_disabled -> scanning
May 02 23:39:00 magnolia NetworkManager[1235]: <info>  [1714685940.6297] device (p2p-dev-wlp1s0): supplicant management interface state: interface_disabled -> scanning
May 02 23:39:05 magnolia NetworkManager[1235]: <info>  [1714685945.4954] device (wlp1s0): supplicant interface state: scanning -> disconnected
May 02 23:39:05 magnolia NetworkManager[1235]: <info>  [1714685945.4955] device (p2p-dev-wlp1s0): supplicant management interface state: scanning -> disconnected
May 02 23:39:10 magnolia NetworkManager[1235]: <info>  [1714685950.3556] device (wlp1s0): supplicant interface state: disconnected -> inactive
May 02 23:39:10 magnolia NetworkManager[1235]: <info>  [1714685950.3557] device (p2p-dev-wlp1s0): supplicant management interface state: disconnected -> inactive
May 02 23:40:28 magnolia systemd[1]: Starting Time & Date Service...
May 02 23:40:28 magnolia systemd[1]: Started Time & Date Service.
May 02 23:40:29 magnolia rtkit-daemon[604]: Supervising 3 threads of 2 processes of 1 users.
May 02 23:40:29 magnolia rtkit-daemon[604]: Supervising 3 threads of 2 processes of 1 users.
May 02 23:40:29 magnolia rtkit-daemon[604]: Supervising 3 threads of 2 processes of 1 users.
May 02 23:40:29 magnolia rtkit-daemon[604]: Supervising 3 threads of 2 processes of 1 users.
May 02 23:40:29 magnolia rtkit-daemon[604]: Successfully made thread 1565 of process 1464 owned by '60509' RT at priority 10.
May 02 23:40:29 magnolia rtkit-daemon[604]: Supervising 4 threads of 3 processes of 1 users.
May 02 23:40:29 magnolia rtkit-daemon[604]: Supervising 4 threads of 3 processes of 1 users.
May 02 23:40:29 magnolia rtkit-daemon[604]: Supervising 4 threads of 3 processes of 1 users.
May 02 23:40:29 magnolia rtkit-daemon[604]: Supervising 4 threads of 3 processes of 1 users.
May 02 23:40:29 magnolia rtkit-daemon[604]: Supervising 4 threads of 3 processes of 1 users.
May 02 23:40:31 magnolia rtkit-daemon[604]: Supervising 4 threads of 3 processes of 1 users.
May 02 23:40:31 magnolia rtkit-daemon[604]: Supervising 4 threads of 3 processes of 1 users.
May 02 23:40:31 magnolia rtkit-daemon[604]: Supervising 4 threads of 3 processes of 1 users.
May 02 23:40:31 magnolia rtkit-daemon[604]: Supervising 4 threads of 3 processes of 1 users.
May 02 23:40:31 magnolia rtkit-daemon[604]: Supervising 4 threads of 3 processes of 1 users.
May 02 23:40:31 magnolia rtkit-daemon[604]: Supervising 4 threads of 3 processes of 1 users.
May 02 23:40:33 magnolia rtkit-daemon[604]: Supervising 4 threads of 3 processes of 1 users.
May 02 23:40:33 magnolia rtkit-daemon[604]: Supervising 4 threads of 3 processes of 1 users.
May 02 23:40:58 magnolia systemd[1]: systemd-timedated.service: Deactivated successfully.
stat /var/log/journal/bc47046c25d64071a8322148626a91cb/system@1277f172eff74020863ca318430e1439-000000000001a5ce-0006177f666a1a74.journal
  File: /var/log/journal/bc47046c25d64071a8322148626a91cb/system@1277f172eff74020863ca318430e1439-000000000001a5ce-0006177f666a1a74.journal
  Size: 8388608   	Blocks: 8688       IO Block: 4096   regular file
Device: 0,42	Inode: 63064       Links: 1
Access: (0640/-rw-r-----)  Uid: (    0/    root)   Gid: (  983/systemd-journal)
Access: 2024-05-02 23:36:47.542227166 +0200
Modify: 2024-05-02 23:36:59.728894148 +0200
Change: 2024-05-02 23:36:59.742227483 +0200
 Birth: 2024-05-02 23:36:59.732227483 +0200

Last edited by gabx (2024-05-02 21:53:21)

Offline

#24 2024-05-02 22:03:11

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

Re: [SOLVED] NetworkManager.service does not start when login

That's right before the current one but also only 281 lines and system@1277f172eff74020863ca318430e1439-… seems to be the one right before that and there's some issue w/ them because that's obviously not nearly 8MB

cd /var/log/journal/bc47046c25d64071a8322148626a91cb/
journalctl --file 'system@1277f172eff74020863ca318430e1439-000000000001a5ce-0006177f666a1a74.journal' | curl -F 'file=@-' 0x0.st
journalctl --file 'system@9a995d4e846e40059d0c762fe0a1863d-000000000001a43e-0006177f5d9766b5.journal' | curl -F 'file=@-' 0x0.st
journalctl --file 'system@9a995d4e846e40059d0c762fe0a1863d-0000000000019eed-0006177f5cde3166.journal' | curl -F 'file=@-' 0x0.st
journalctl --file 'system@c8f520b86de04e1a86d8e61858e16f76-0000000000019d78-0006177f59fcffcd.journal' | curl -F 'file=@-' 0x0.st
journalctl --file 'system@c8f520b86de04e1a86d8e61858e16f76-000000000001981f-0006177f592b5405.journal' | curl -F 'file=@-' 0x0.st
journalctl --file 'system@8b961d82a023461daa39feef72b58076-0000000000019712-00061751241c9370.journal' | curl -F 'file=@-' 0x0.st

You don't have to copy the 0x0.st links here, just post them.

Online

#25 2024-05-02 22:17:40

gabx
Member
From: Geneva, Switzerland
Registered: 2011-11-20
Posts: 149
Website

Re: [SOLVED] NetworkManager.service does not start when login

May 02 23:36:46 archlinux kernel: Linux version 6.8.7-arch1-1 (linux@archlinux) (gcc (GCC) 13.2.1 20230801, GNU ld (GNU Binutils) 2.42.0) #1 SMP PREEMPT_DYNAMIC Wed, 17 Apr 2024 15:20:28 +0000
May 02 23:36:46 archlinux kernel: Command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root=LABEL=magnolia rootflags=subvol=@ rw
May 02 23:36:46 archlinux kernel: BIOS-provided physical RAM map:
May 02 23:36:46 archlinux kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
May 02 23:36:46 archlinux kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
May 02 23:36:46 archlinux kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009dfff] usable
May 02 23:36:46 archlinux kernel: BIOS-e820: [mem 0x000000000009e000-0x00000000000fffff] reserved
May 02 23:36:46 archlinux kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000076d3afff] usable
May 02 23:36:46 archlinux kernel: BIOS-e820: [mem 0x0000000076d3b000-0x0000000076d3bfff] ACPI NVS
May 02 23:36:46 archlinux kernel: BIOS-e820: [mem 0x0000000076d3c000-0x0000000076d3cfff] reserved
May 02 23:36:46 archlinux kernel: BIOS-e820: [mem 0x0000000076d3d000-0x0000000078027fff] usable
May 02 23:36:46 archlinux kernel: BIOS-e820: [mem 0x0000000078028000-0x0000000079127fff] ACPI NVS
May 02 23:36:46 archlinux kernel: BIOS-e820: [mem 0x0000000079128000-0x000000007ed3dfff] usable
May 02 23:36:46 archlinux kernel: BIOS-e820: [mem 0x000000007ed3e000-0x000000007f72dfff] reserved
May 02 23:36:46 archlinux kernel: BIOS-e820: [mem 0x000000007f72e000-0x000000007ff7dfff] ACPI NVS
May 02 23:36:46 archlinux kernel: BIOS-e820: [mem 0x000000007ff7e000-0x000000007fffdfff] ACPI data
May 02 23:36:46 archlinux kernel: BIOS-e820: [mem 0x000000007fffe000-0x000000007fffefff] usable
May 02 23:36:46 archlinux kernel: BIOS-e820: [mem 0x000000007ffff000-0x000000008cffffff] reserved
May 02 23:36:46 archlinux kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
May 02 23:36:46 archlinux kernel: BIOS-e820: [mem 0x00000000fd000000-0x00000000fe7fffff] reserved
May 02 23:36:46 archlinux kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
May 02 23:36:46 archlinux kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
May 02 23:36:46 archlinux kernel: BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
May 02 23:36:46 archlinux kernel: BIOS-e820: [mem 0x00000000fed84000-0x00000000fed84fff] reserved
May 02 23:36:46 archlinux kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
May 02 23:36:46 archlinux kernel: BIOS-e820: [mem 0x00000000ffa00000-0x00000000ffffffff] reserved
May 02 23:36:46 archlinux kernel: BIOS-e820: [mem 0x0000000100000000-0x0000000271ffffff] usable
May 02 23:36:46 archlinux kernel: NX (Execute Disable) protection: active
May 02 23:36:46 archlinux kernel: APIC: Static calls initialized
May 02 23:36:46 archlinux kernel: e820: update [mem 0x75e3e018-0x75e4e057] usable ==> usable
May 02 23:36:46 archlinux kernel: e820: update [mem 0x75e3e018-0x75e4e057] usable ==> usable
May 02 23:36:46 archlinux kernel: extended physical RAM map:
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x0000000000059000-0x000000000009dfff] usable
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x000000000009e000-0x00000000000fffff] reserved
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x0000000000100000-0x0000000075e3e017] usable
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x0000000075e3e018-0x0000000075e4e057] usable
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x0000000075e4e058-0x0000000076d3afff] usable
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x0000000076d3b000-0x0000000076d3bfff] ACPI NVS
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x0000000076d3c000-0x0000000076d3cfff] reserved
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x0000000076d3d000-0x0000000078027fff] usable
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x0000000078028000-0x0000000079127fff] ACPI NVS
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x0000000079128000-0x000000007ed3dfff] usable
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x000000007ed3e000-0x000000007f72dfff] reserved
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x000000007f72e000-0x000000007ff7dfff] ACPI NVS
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x000000007ff7e000-0x000000007fffdfff] ACPI data
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x000000007fffe000-0x000000007fffefff] usable
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x000000007ffff000-0x000000008cffffff] reserved
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x00000000fd000000-0x00000000fe7fffff] reserved
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x00000000fed84000-0x00000000fed84fff] reserved
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x00000000ffa00000-0x00000000ffffffff] reserved
May 02 23:36:46 archlinux kernel: reserve setup_data: [mem 0x0000000100000000-0x0000000271ffffff] usable
May 02 23:36:46 archlinux kernel: efi: EFI v2.5 by INSYDE Corp.
May 02 23:36:46 archlinux kernel: efi: ACPI 2.0=0x7fffd014 SMBIOS=0x7efb3000 SMBIOS 3.0=0x7efb1000 ESRT=0x7efaf018 PROP=0x76d37858 RNG=0x7ffa6f98 INITRD=0x7913dc18 TPMEventLog=0x7913b018 
May 02 23:36:46 archlinux kernel: random: crng init done
May 02 23:36:46 archlinux kernel: TPM Final Events table not present
May 02 23:36:46 archlinux kernel: efi: Remove mem43: MMIO range=[0xe0000000-0xefffffff] (256MB) from e820 map
May 02 23:36:46 archlinux kernel: e820: remove [mem 0xe0000000-0xefffffff] reserved
May 02 23:36:46 archlinux kernel: efi: Remove mem44: MMIO range=[0xfd000000-0xfe7fffff] (24MB) from e820 map
May 02 23:36:46 archlinux kernel: e820: remove [mem 0xfd000000-0xfe7fffff] reserved
May 02 23:36:46 archlinux kernel: efi: Not removing mem45: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
May 02 23:36:46 archlinux kernel: efi: Not removing mem46: MMIO range=[0xfed00000-0xfed00fff] (4KB) from e820 map
May 02 23:36:46 archlinux kernel: efi: Not removing mem47: MMIO range=[0xfed10000-0xfed19fff] (40KB) from e820 map
May 02 23:36:46 archlinux kernel: efi: Not removing mem48: MMIO range=[0xfed84000-0xfed84fff] (4KB) from e820 map
May 02 23:36:46 archlinux kernel: efi: Not removing mem49: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
May 02 23:36:46 archlinux kernel: efi: Remove mem50: MMIO range=[0xffa00000-0xffffffff] (6MB) from e820 map
May 02 23:36:46 archlinux kernel: e820: remove [mem 0xffa00000-0xffffffff] reserved
May 02 23:36:46 archlinux kernel: SMBIOS 3.0.0 present.
May 02 23:36:46 archlinux kernel: DMI: LENOVO 80VF/VIUU4, BIOS 2JCN39WW 05/31/2017
May 02 23:36:46 archlinux kernel: tsc: Detected 2700.000 MHz processor
May 02 23:36:46 archlinux kernel: tsc: Detected 2699.909 MHz TSC
May 02 23:36:46 archlinux kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
May 02 23:36:46 archlinux kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
May 02 23:36:46 archlinux kernel: last_pfn = 0x272000 max_arch_pfn = 0x400000000
May 02 23:36:46 archlinux kernel: MTRR map: 4 entries (3 fixed + 1 variable; max 23), built from 10 variable MTRRs
May 02 23:36:46 archlinux kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
May 02 23:36:46 archlinux kernel: last_pfn = 0x7ffff max_arch_pfn = 0x400000000
May 02 23:36:46 archlinux kernel: esrt: Reserving ESRT space from 0x000000007efaf018 to 0x000000007efaf078.
May 02 23:36:46 archlinux kernel: Using GB pages for direct mapping
May 02 23:36:46 archlinux kernel: Secure boot disabled
May 02 23:36:46 archlinux kernel: RAMDISK: [mem 0x722d2000-0x73a07fff]
May 02 23:36:46 archlinux kernel: ACPI: Early table checksum verification disabled
May 02 23:36:46 archlinux kernel: ACPI: RSDP 0x000000007FFFD014 000024 (v02 LENOVO)
May 02 23:36:46 archlinux kernel: ACPI: XSDT 0x000000007FFB7188 00012C (v01 LENOVO CB-01    00000001      01000013)
May 02 23:36:46 archlinux kernel: ACPI: FACP 0x000000007FFEA000 00010C (v05 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: DSDT 0x000000007FFBB000 02AA88 (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: FACS 0x000000007FF5A000 000040
May 02 23:36:46 archlinux kernel: ACPI: UEFI 0x000000007FFFC000 000236 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: UEFI 0x000000007FFFB000 000042 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: MSDM 0x000000007FFFA000 000055 (v03 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: SSDT 0x000000007FFF9000 0004C3 (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: SSDT 0x000000007FFF8000 000046 (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: TPM2 0x000000007FFF7000 000034 (v03 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: SSDT 0x000000007FFF3000 003113 (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: SSDT 0x000000007FFEF000 0038D7 (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: ASF! 0x000000007FFEE000 0000A5 (v32 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: ASPT 0x000000007FFED000 000034 (v07 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: BOOT 0x000000007FFEC000 000028 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: DBGP 0x000000007FFEB000 000034 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: HPET 0x000000007FFE9000 000038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: APIC 0x000000007FFE8000 0000BC (v03 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: MCFG 0x000000007FFE7000 00003C (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: SLIC 0x000000007FFE6000 000176 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: SSDT 0x000000007FFBA000 0006CF (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: SSDT 0x000000007FFB9000 0001BC (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: LPIT 0x000000007FFB8000 000094 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: WSMT 0x000000007FFB6000 000028 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: SSDT 0x000000007FFB5000 00029F (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: SSDT 0x000000007FFB4000 000346 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: SSDT 0x000000007FFB0000 003002 (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: SSDT 0x000000007FFAF000 00051E (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: DBGP 0x000000007FFAE000 000034 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: DBG2 0x000000007FFAD000 000054 (v00 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: SSDT 0x000000007FFAC000 000F61 (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: SSDT 0x000000007FFAB000 000EDE (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: DMAR 0x000000007FFAA000 000114 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: NHLT 0x000000007FFA9000 00002D (v00 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: FPDT 0x000000007FFA8000 000044 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: BGRT 0x000000007FFA7000 000038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:36:46 archlinux kernel: ACPI: Reserving FACP table memory at [mem 0x7ffea000-0x7ffea10b]
May 02 23:36:46 archlinux kernel: ACPI: Reserving DSDT table memory at [mem 0x7ffbb000-0x7ffe5a87]
May 02 23:36:46 archlinux kernel: ACPI: Reserving FACS table memory at [mem 0x7ff5a000-0x7ff5a03f]
May 02 23:36:46 archlinux kernel: ACPI: Reserving UEFI table memory at [mem 0x7fffc000-0x7fffc235]
May 02 23:36:46 archlinux kernel: ACPI: Reserving UEFI table memory at [mem 0x7fffb000-0x7fffb041]
May 02 23:36:46 archlinux kernel: ACPI: Reserving MSDM table memory at [mem 0x7fffa000-0x7fffa054]
May 02 23:36:46 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7fff9000-0x7fff94c2]
May 02 23:36:46 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7fff8000-0x7fff8045]
May 02 23:36:46 archlinux kernel: ACPI: Reserving TPM2 table memory at [mem 0x7fff7000-0x7fff7033]
May 02 23:36:46 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7fff3000-0x7fff6112]
May 02 23:36:46 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffef000-0x7fff28d6]
May 02 23:36:46 archlinux kernel: ACPI: Reserving ASF! table memory at [mem 0x7ffee000-0x7ffee0a4]
May 02 23:36:46 archlinux kernel: ACPI: Reserving ASPT table memory at [mem 0x7ffed000-0x7ffed033]
May 02 23:36:46 archlinux kernel: ACPI: Reserving BOOT table memory at [mem 0x7ffec000-0x7ffec027]
May 02 23:36:46 archlinux kernel: ACPI: Reserving DBGP table memory at [mem 0x7ffeb000-0x7ffeb033]
May 02 23:36:46 archlinux kernel: ACPI: Reserving HPET table memory at [mem 0x7ffe9000-0x7ffe9037]
May 02 23:36:46 archlinux kernel: ACPI: Reserving APIC table memory at [mem 0x7ffe8000-0x7ffe80bb]
May 02 23:36:46 archlinux kernel: ACPI: Reserving MCFG table memory at [mem 0x7ffe7000-0x7ffe703b]
May 02 23:36:46 archlinux kernel: ACPI: Reserving SLIC table memory at [mem 0x7ffe6000-0x7ffe6175]
May 02 23:36:46 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffba000-0x7ffba6ce]
May 02 23:36:46 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffb9000-0x7ffb91bb]
May 02 23:36:46 archlinux kernel: ACPI: Reserving LPIT table memory at [mem 0x7ffb8000-0x7ffb8093]
May 02 23:36:46 archlinux kernel: ACPI: Reserving WSMT table memory at [mem 0x7ffb6000-0x7ffb6027]
May 02 23:36:46 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffb5000-0x7ffb529e]
May 02 23:36:46 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffb4000-0x7ffb4345]
May 02 23:36:46 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffb0000-0x7ffb3001]
May 02 23:36:46 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffaf000-0x7ffaf51d]
May 02 23:36:46 archlinux kernel: ACPI: Reserving DBGP table memory at [mem 0x7ffae000-0x7ffae033]
May 02 23:36:46 archlinux kernel: ACPI: Reserving DBG2 table memory at [mem 0x7ffad000-0x7ffad053]
May 02 23:36:46 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffac000-0x7ffacf60]
May 02 23:36:46 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffab000-0x7ffabedd]
May 02 23:36:46 archlinux kernel: ACPI: Reserving DMAR table memory at [mem 0x7ffaa000-0x7ffaa113]
May 02 23:36:46 archlinux kernel: ACPI: Reserving NHLT table memory at [mem 0x7ffa9000-0x7ffa902c]
May 02 23:36:46 archlinux kernel: ACPI: Reserving FPDT table memory at [mem 0x7ffa8000-0x7ffa8043]
May 02 23:36:46 archlinux kernel: ACPI: Reserving BGRT table memory at [mem 0x7ffa7000-0x7ffa7037]
May 02 23:36:46 archlinux kernel: No NUMA configuration found
May 02 23:36:46 archlinux kernel: Faking a node at [mem 0x0000000000000000-0x0000000271ffffff]
May 02 23:36:46 archlinux kernel: NODE_DATA(0) allocated [mem 0x271ffb000-0x271ffffff]
May 02 23:36:46 archlinux kernel: Zone ranges:
May 02 23:36:46 archlinux kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
May 02 23:36:46 archlinux kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
May 02 23:36:46 archlinux kernel:   Normal   [mem 0x0000000100000000-0x0000000271ffffff]
May 02 23:36:46 archlinux kernel:   Device   empty
May 02 23:36:46 archlinux kernel: Movable zone start for each node
May 02 23:36:46 archlinux kernel: Early memory node ranges
May 02 23:36:46 archlinux kernel:   node   0: [mem 0x0000000000001000-0x0000000000057fff]
May 02 23:36:46 archlinux kernel:   node   0: [mem 0x0000000000059000-0x000000000009dfff]
May 02 23:36:46 archlinux kernel:   node   0: [mem 0x0000000000100000-0x0000000076d3afff]
May 02 23:36:46 archlinux kernel:   node   0: [mem 0x0000000076d3d000-0x0000000078027fff]
May 02 23:36:46 archlinux kernel:   node   0: [mem 0x0000000079128000-0x000000007ed3dfff]
May 02 23:36:46 archlinux kernel:   node   0: [mem 0x000000007fffe000-0x000000007fffefff]
May 02 23:36:46 archlinux kernel:   node   0: [mem 0x0000000100000000-0x0000000271ffffff]
May 02 23:36:46 archlinux kernel: Initmem setup node 0 [mem 0x0000000000001000-0x0000000271ffffff]
May 02 23:36:46 archlinux kernel: On node 0, zone DMA: 1 pages in unavailable ranges
May 02 23:36:46 archlinux kernel: On node 0, zone DMA: 1 pages in unavailable ranges
May 02 23:36:46 archlinux kernel: On node 0, zone DMA: 98 pages in unavailable ranges
May 02 23:36:46 archlinux kernel: On node 0, zone DMA32: 2 pages in unavailable ranges
May 02 23:36:46 archlinux kernel: On node 0, zone DMA32: 4352 pages in unavailable ranges
May 02 23:36:46 archlinux kernel: On node 0, zone DMA32: 4800 pages in unavailable ranges
May 02 23:36:46 archlinux kernel: On node 0, zone Normal: 1 pages in unavailable ranges
May 02 23:36:46 archlinux kernel: On node 0, zone Normal: 24576 pages in unavailable ranges
May 02 23:36:46 archlinux kernel: Reserving Intel graphics memory at [mem 0x89000000-0x8cffffff]
May 02 23:36:46 archlinux kernel: ACPI: PM-Timer IO Port: 0x1808
May 02 23:36:46 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
May 02 23:36:46 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
May 02 23:36:46 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
May 02 23:36:46 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
May 02 23:36:46 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
May 02 23:36:46 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
May 02 23:36:46 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
May 02 23:36:46 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
May 02 23:36:46 archlinux kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
May 02 23:36:46 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
May 02 23:36:46 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
May 02 23:36:46 archlinux kernel: ACPI: Using ACPI (MADT) for SMP configuration information
May 02 23:36:46 archlinux kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
May 02 23:36:46 archlinux kernel: e820: update [mem 0x7c9e6000-0x7cdb2fff] usable ==> reserved
May 02 23:36:46 archlinux kernel: TSC deadline timer available
May 02 23:36:46 archlinux kernel: smpboot: Allowing 4 CPUs, 0 hotplug CPUs
May 02 23:36:46 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
May 02 23:36:46 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x00058000-0x00058fff]
May 02 23:36:46 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x000fffff]
May 02 23:36:46 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x75e3e000-0x75e3efff]
May 02 23:36:46 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x75e4e000-0x75e4efff]
May 02 23:36:46 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x76d3b000-0x76d3bfff]
May 02 23:36:46 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x76d3c000-0x76d3cfff]
May 02 23:36:46 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x78028000-0x79127fff]
May 02 23:36:46 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x7c9e6000-0x7cdb2fff]
May 02 23:36:46 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x7ed3e000-0x7f72dfff]
May 02 23:36:46 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x7f72e000-0x7ff7dfff]
May 02 23:36:46 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x7ff7e000-0x7fffdfff]
May 02 23:36:46 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x7ffff000-0x8cffffff]
May 02 23:36:46 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x8d000000-0xfebfffff]
May 02 23:36:46 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
May 02 23:36:46 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
May 02 23:36:46 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
May 02 23:36:46 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed0ffff]
May 02 23:36:46 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
May 02 23:36:46 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed1a000-0xfed83fff]
May 02 23:36:46 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed84000-0xfed84fff]
May 02 23:36:46 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed85000-0xfedfffff]
May 02 23:36:46 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
May 02 23:36:46 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
May 02 23:36:46 archlinux kernel: [mem 0x8d000000-0xfebfffff] available for PCI devices
May 02 23:36:46 archlinux kernel: Booting paravirtualized kernel on bare hardware
May 02 23:36:46 archlinux kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
May 02 23:36:46 archlinux kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
May 02 23:36:46 archlinux kernel: percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u524288
May 02 23:36:46 archlinux kernel: pcpu-alloc: s225280 r8192 d28672 u524288 alloc=1*2097152
May 02 23:36:46 archlinux kernel: pcpu-alloc: [0] 0 1 2 3 
May 02 23:36:46 archlinux kernel: Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root=LABEL=magnolia rootflags=subvol=@ rw
May 02 23:36:46 archlinux kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
May 02 23:36:46 archlinux kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
May 02 23:36:46 archlinux kernel: Fallback order for Node 0: 0 
May 02 23:36:46 archlinux kernel: Built 1 zonelists, mobility grouping on.  Total pages: 1998668
May 02 23:36:46 archlinux kernel: Policy zone: Normal
May 02 23:36:46 archlinux kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
May 02 23:36:46 archlinux kernel: software IO TLB: area num 4.
May 02 23:36:46 archlinux kernel: Memory: 7783004K/8122212K available (16384K kernel code, 2119K rwdata, 12920K rodata, 3432K init, 3828K bss, 338948K reserved, 0K cma-reserved)
May 02 23:36:46 archlinux kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
May 02 23:36:46 archlinux kernel: Kernel/User page tables isolation: enabled
May 02 23:36:46 archlinux kernel: ftrace: allocating 48826 entries in 191 pages
May 02 23:36:46 archlinux kernel: ftrace: allocated 191 pages with 7 groups
May 02 23:36:46 archlinux kernel: Dynamic Preempt: full
May 02 23:36:46 archlinux kernel: rcu: Preemptible hierarchical RCU implementation.
May 02 23:36:46 archlinux kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=4.
May 02 23:36:46 archlinux kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
May 02 23:36:46 archlinux kernel:         Trampoline variant of Tasks RCU enabled.
May 02 23:36:46 archlinux kernel:         Rude variant of Tasks RCU enabled.
May 02 23:36:46 archlinux kernel:         Tracing variant of Tasks RCU enabled.
May 02 23:36:46 archlinux kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
May 02 23:36:46 archlinux kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
May 02 23:36:46 archlinux kernel: NR_IRQS: 20736, nr_irqs: 1024, preallocated irqs: 16
May 02 23:36:46 archlinux kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
May 02 23:36:46 archlinux kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
May 02 23:36:46 archlinux kernel: Console: colour dummy device 80x25
May 02 23:36:46 archlinux kernel: printk: legacy console [tty0] enabled
May 02 23:36:46 archlinux kernel: ACPI: Core revision 20230628
May 02 23:36:46 archlinux kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
May 02 23:36:46 archlinux kernel: APIC: Switch to symmetric I/O mode setup
May 02 23:36:46 archlinux kernel: DMAR: Host address width 39
May 02 23:36:46 archlinux kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
May 02 23:36:46 archlinux kernel: DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
May 02 23:36:46 archlinux kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
May 02 23:36:46 archlinux kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
May 02 23:36:46 archlinux kernel: DMAR: RMRR base: 0x0000007f622000 end: 0x0000007f641fff
May 02 23:36:46 archlinux kernel: DMAR: RMRR base: 0x00000088800000 end: 0x0000008cffffff
May 02 23:36:46 archlinux kernel: DMAR: ANDD device: 1 name: \_SB.PCI0.I2C0
May 02 23:36:46 archlinux kernel: DMAR: ANDD device: 2 name: \_SB.PCI0.I2C1
May 02 23:36:46 archlinux kernel: DMAR: ANDD device: 4 name: \_SB.PCI0.I2C3
May 02 23:36:46 archlinux kernel: DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
May 02 23:36:46 archlinux kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
May 02 23:36:46 archlinux kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
May 02 23:36:46 archlinux kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
May 02 23:36:46 archlinux kernel: x2apic enabled
May 02 23:36:46 archlinux kernel: APIC: Switched APIC routing to: cluster x2apic
May 02 23:36:46 archlinux kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
May 02 23:36:46 archlinux kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x26eae8729ef, max_idle_ns: 440795235156 ns
May 02 23:36:46 archlinux kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5401.81 BogoMIPS (lpj=8999696)
May 02 23:36:46 archlinux kernel: CPU0: Thermal monitoring enabled (TM1)
May 02 23:36:46 archlinux kernel: process: using mwait in idle threads
May 02 23:36:46 archlinux kernel: Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
May 02 23:36:46 archlinux kernel: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
May 02 23:36:46 archlinux kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
May 02 23:36:46 archlinux kernel: Spectre V2 : Mitigation: IBRS
May 02 23:36:46 archlinux kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
May 02 23:36:46 archlinux kernel: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
May 02 23:36:46 archlinux kernel: RETBleed: Mitigation: IBRS
May 02 23:36:46 archlinux kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
May 02 23:36:46 archlinux kernel: Spectre V2 : User space: Mitigation: STIBP via prctl
May 02 23:36:46 archlinux kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
May 02 23:36:46 archlinux kernel: MDS: Mitigation: Clear CPU buffers
May 02 23:36:46 archlinux kernel: MMIO Stale Data: Mitigation: Clear CPU buffers
May 02 23:36:46 archlinux kernel: SRBDS: Mitigation: Microcode
May 02 23:36:46 archlinux kernel: GDS: Mitigation: Microcode
May 02 23:36:46 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
May 02 23:36:46 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
May 02 23:36:46 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
May 02 23:36:46 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
May 02 23:36:46 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
May 02 23:36:46 archlinux kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
May 02 23:36:46 archlinux kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
May 02 23:36:46 archlinux kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
May 02 23:36:46 archlinux kernel: x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
May 02 23:36:46 archlinux kernel: Freeing SMP alternatives memory: 40K
May 02 23:36:46 archlinux kernel: pid_max: default: 32768 minimum: 301
May 02 23:36:46 archlinux kernel: LSM: initializing lsm=capability,landlock,lockdown,yama,bpf,integrity
May 02 23:36:46 archlinux kernel: landlock: Up and running.
May 02 23:36:46 archlinux kernel: Yama: becoming mindful.
May 02 23:36:46 archlinux kernel: LSM support for eBPF active
May 02 23:36:46 archlinux kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
May 02 23:36:46 archlinux kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
May 02 23:36:46 archlinux kernel: smpboot: CPU0: Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz (family: 0x6, model: 0x8e, stepping: 0x9)
May 02 23:36:46 archlinux kernel: RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
May 02 23:36:46 archlinux kernel: RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
May 02 23:36:46 archlinux kernel: RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
May 02 23:36:46 archlinux kernel: Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
May 02 23:36:46 archlinux kernel: ... version:                4
May 02 23:36:46 archlinux kernel: ... bit width:              48
May 02 23:36:46 archlinux kernel: ... generic registers:      4
May 02 23:36:46 archlinux kernel: ... value mask:             0000ffffffffffff
May 02 23:36:46 archlinux kernel: ... max period:             00007fffffffffff
May 02 23:36:46 archlinux kernel: ... fixed-purpose events:   3
May 02 23:36:46 archlinux kernel: ... event mask:             000000070000000f
May 02 23:36:46 archlinux kernel: signal: max sigframe size: 2032
May 02 23:36:46 archlinux kernel: Estimated ratio of average max frequency by base frequency (times 1024): 1175
May 02 23:36:46 archlinux kernel: rcu: Hierarchical SRCU implementation.
May 02 23:36:46 archlinux kernel: rcu:         Max phase no-delay instances is 1000.
May 02 23:36:46 archlinux kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
May 02 23:36:46 archlinux kernel: smp: Bringing up secondary CPUs ...
May 02 23:36:46 archlinux kernel: smpboot: x86: Booting SMP configuration:
May 02 23:36:46 archlinux kernel: .... node  #0, CPUs:      #1 #2 #3
May 02 23:36:46 archlinux kernel: MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
May 02 23:36:46 archlinux kernel: MMIO Stale Data CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html for more details.
May 02 23:36:46 archlinux kernel: smp: Brought up 1 node, 4 CPUs
May 02 23:36:46 archlinux kernel: smpboot: Max logical packages: 1
May 02 23:36:46 archlinux kernel: smpboot: Total of 4 processors activated (21607.24 BogoMIPS)
May 02 23:36:46 archlinux kernel: devtmpfs: initialized
May 02 23:36:46 archlinux kernel: x86/mm: Memory block size: 128MB
May 02 23:36:46 archlinux kernel: ACPI: PM: Registering ACPI NVS region [mem 0x76d3b000-0x76d3bfff] (4096 bytes)
May 02 23:36:46 archlinux kernel: ACPI: PM: Registering ACPI NVS region [mem 0x78028000-0x79127fff] (17825792 bytes)
May 02 23:36:46 archlinux kernel: ACPI: PM: Registering ACPI NVS region [mem 0x7f72e000-0x7ff7dfff] (8716288 bytes)
May 02 23:36:46 archlinux kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
May 02 23:36:46 archlinux kernel: futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
May 02 23:36:46 archlinux kernel: pinctrl core: initialized pinctrl subsystem
May 02 23:36:46 archlinux kernel: PM: RTC time: 21:36:41, date: 2024-05-02
May 02 23:36:46 archlinux kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
May 02 23:36:46 archlinux kernel: DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
May 02 23:36:46 archlinux kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
May 02 23:36:46 archlinux kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
May 02 23:36:46 archlinux kernel: audit: initializing netlink subsys (disabled)
May 02 23:36:46 archlinux kernel: audit: type=2000 audit(1714685801.063:1): state=initialized audit_enabled=0 res=1
May 02 23:36:46 archlinux kernel: thermal_sys: Registered thermal governor 'fair_share'
May 02 23:36:46 archlinux kernel: thermal_sys: Registered thermal governor 'bang_bang'
May 02 23:36:46 archlinux kernel: thermal_sys: Registered thermal governor 'step_wise'
May 02 23:36:46 archlinux kernel: thermal_sys: Registered thermal governor 'user_space'
May 02 23:36:46 archlinux kernel: thermal_sys: Registered thermal governor 'power_allocator'
May 02 23:36:46 archlinux kernel: cpuidle: using governor ladder
May 02 23:36:46 archlinux kernel: cpuidle: using governor menu
May 02 23:36:46 archlinux kernel: Simple Boot Flag at 0x44 set to 0x1
May 02 23:36:46 archlinux kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
May 02 23:36:46 archlinux kernel: PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
May 02 23:36:46 archlinux kernel: PCI: not using ECAM ([mem 0xe0000000-0xefffffff] not reserved)
May 02 23:36:46 archlinux kernel: PCI: Using configuration type 1 for base access
May 02 23:36:46 archlinux kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
May 02 23:36:46 archlinux kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
May 02 23:36:46 archlinux kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
May 02 23:36:46 archlinux kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
May 02 23:36:46 archlinux kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
May 02 23:36:46 archlinux kernel: ACPI: Added _OSI(Module Device)
May 02 23:36:46 archlinux kernel: ACPI: Added _OSI(Processor Device)
May 02 23:36:46 archlinux kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
May 02 23:36:46 archlinux kernel: ACPI: Added _OSI(Processor Aggregator Device)
May 02 23:36:46 archlinux kernel: ACPI: 13 ACPI AML tables successfully acquired and loaded
May 02 23:36:46 archlinux kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
May 02 23:36:46 archlinux kernel: ACPI: Dynamic OEM Table Load:
May 02 23:36:46 archlinux kernel: ACPI: SSDT 0xFFFF894901850400 0003FF (v02 PmRef  Cpu0Cst  00003001 INTL 20160527)
May 02 23:36:46 archlinux kernel: ACPI: Dynamic OEM Table Load:
May 02 23:36:46 archlinux kernel: ACPI: SSDT 0xFFFF894900DAF800 0006B4 (v02 PmRef  Cpu0Ist  00003000 INTL 20160527)
May 02 23:36:46 archlinux kernel: ACPI: Dynamic OEM Table Load:
May 02 23:36:46 archlinux kernel: ACPI: SSDT 0xFFFF894900DAE000 00065C (v02 PmRef  ApIst    00003000 INTL 20160527)
May 02 23:36:46 archlinux kernel: ACPI: Dynamic OEM Table Load:
May 02 23:36:46 archlinux kernel: ACPI: SSDT 0xFFFF894900F2C000 000197 (v02 PmRef  ApHwp    00003000 INTL 20160527)
May 02 23:36:46 archlinux kernel: ACPI: Dynamic OEM Table Load:
May 02 23:36:46 archlinux kernel: ACPI: SSDT 0xFFFF894900F2C400 00018A (v02 PmRef  ApCst    00003000 INTL 20160527)
May 02 23:36:46 archlinux kernel: ACPI: _OSC evaluated successfully for all CPUs
May 02 23:36:46 archlinux kernel: ACPI: EC: EC started
May 02 23:36:46 archlinux kernel: ACPI: EC: interrupt blocked
May 02 23:36:46 archlinux kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
May 02 23:36:46 archlinux kernel: ACPI: \_SB_.PCI0.LPCB.H_EC: Boot DSDT EC used to handle transactions
May 02 23:36:46 archlinux kernel: ACPI: Interpreter enabled
May 02 23:36:46 archlinux kernel: ACPI: PM: (supports S0 S3 S4 S5)
May 02 23:36:46 archlinux kernel: ACPI: Using IOAPIC for interrupt routing
May 02 23:36:46 archlinux kernel: PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
May 02 23:36:46 archlinux kernel: PCI: ECAM [mem 0xe0000000-0xefffffff] reserved as ACPI motherboard resource
May 02 23:36:46 archlinux kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
May 02 23:36:46 archlinux kernel: PCI: Using E820 reservations for host bridge windows
May 02 23:36:46 archlinux kernel: ACPI: Enabled 7 GPEs in block 00 to 7F
May 02 23:36:46 archlinux kernel: ACPI: \_SB_.PCI0.RP01.PXSX.WRST: New power resource
May 02 23:36:46 archlinux kernel: ACPI: \_SB_.PCI0.RP02.PXSX.WRST: New power resource
May 02 23:36:46 archlinux kernel: ACPI: \_SB_.PCI0.RP03.PXSX.WRST: New power resource
May 02 23:36:46 archlinux kernel: ACPI: \_SB_.PCI0.RP04.PXSX.WRST: New power resource
May 02 23:36:46 archlinux kernel: ACPI: \_SB_.PCI0.RP05.PXSX.WRST: New power resource
May 02 23:36:46 archlinux kernel: ACPI: \_SB_.PCI0.RP06.PXSX.WRST: New power resource
May 02 23:36:46 archlinux kernel: ACPI: \_SB_.PCI0.RP07.PXSX.WRST: New power resource
May 02 23:36:46 archlinux kernel: ACPI: \_SB_.PCI0.RP08.PXSX.WRST: New power resource
May 02 23:36:46 archlinux kernel: ACPI: \_SB_.PCI0.RP09.PXSX.WRST: New power resource
May 02 23:36:46 archlinux kernel: ACPI: \_SB_.PCI0.RP10.PXSX.WRST: New power resource
May 02 23:36:46 archlinux kernel: ACPI: \_SB_.PCI0.RP11.PXSX.WRST: New power resource
May 02 23:36:46 archlinux kernel: ACPI: \_SB_.PCI0.RP12.PXSX.WRST: New power resource
May 02 23:36:46 archlinux kernel: ACPI: \_SB_.PCI0.RP13.PXSX.WRST: New power resource
May 02 23:36:46 archlinux kernel: ACPI: \_SB_.PCI0.RP14.PXSX.WRST: New power resource
May 02 23:36:46 archlinux kernel: ACPI: \_SB_.PCI0.RP15.PXSX.WRST: New power resource
May 02 23:36:46 archlinux kernel: ACPI: \_SB_.PCI0.RP16.PXSX.WRST: New power resource
May 02 23:36:46 archlinux kernel: ACPI: \_SB_.PCI0.RP17.PXSX.WRST: New power resource
May 02 23:36:46 archlinux kernel: ACPI: \_SB_.PCI0.RP18.PXSX.WRST: New power resource
May 02 23:36:46 archlinux kernel: ACPI: \_SB_.PCI0.RP19.PXSX.WRST: New power resource
May 02 23:36:46 archlinux kernel: ACPI: \_SB_.PCI0.RP20.PXSX.WRST: New power resource
May 02 23:36:46 archlinux kernel: acpi ABCD0000:00: ACPI dock station (docks/bays count: 1)
May 02 23:36:46 archlinux kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
May 02 23:36:46 archlinux kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
May 02 23:36:46 archlinux kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
May 02 23:36:46 archlinux kernel: PCI host bridge to bus 0000:00
May 02 23:36:46 archlinux kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
May 02 23:36:46 archlinux kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
May 02 23:36:46 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
May 02 23:36:46 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x8d000000-0xdfffffff window]
May 02 23:36:46 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
May 02 23:36:46 archlinux kernel: pci_bus 0000:00: root bus resource [bus 00-fe]
May 02 23:36:46 archlinux kernel: pci 0000:00:00.0: [8086:5904] type 00 class 0x060000 conventional PCI endpoint
May 02 23:36:46 archlinux kernel: pci 0000:00:02.0: [8086:5916] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
May 02 23:36:46 archlinux kernel: pci 0000:00:02.0: BAR 0 [mem 0xa0000000-0xa0ffffff 64bit]
May 02 23:36:46 archlinux kernel: pci 0000:00:02.0: BAR 2 [mem 0x90000000-0x9fffffff 64bit pref]
May 02 23:36:46 archlinux kernel: pci 0000:00:02.0: BAR 4 [io  0x3000-0x303f]
May 02 23:36:46 archlinux kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
May 02 23:36:46 archlinux kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
May 02 23:36:46 archlinux kernel: pci 0000:00:04.0: [8086:1903] type 00 class 0x118000 conventional PCI endpoint
May 02 23:36:46 archlinux kernel: pci 0000:00:04.0: BAR 0 [mem 0xa1320000-0xa1327fff 64bit]
May 02 23:36:46 archlinux kernel: pci 0000:00:08.0: [8086:1911] type 00 class 0x088000 conventional PCI endpoint
May 02 23:36:46 archlinux kernel: pci 0000:00:08.0: BAR 0 [mem 0xa1330000-0xa1330fff 64bit]
May 02 23:36:46 archlinux kernel: pci 0000:00:14.0: [8086:9d2f] type 00 class 0x0c0330 conventional PCI endpoint
May 02 23:36:46 archlinux kernel: pci 0000:00:14.0: BAR 0 [mem 0xa1300000-0xa130ffff 64bit]
May 02 23:36:46 archlinux kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
May 02 23:36:46 archlinux kernel: pci 0000:00:14.2: [8086:9d31] type 00 class 0x118000 conventional PCI endpoint
May 02 23:36:46 archlinux kernel: pci 0000:00:14.2: BAR 0 [mem 0xa1331000-0xa1331fff 64bit]
May 02 23:36:46 archlinux kernel: pci 0000:00:15.0: [8086:9d60] type 00 class 0x118000 conventional PCI endpoint
May 02 23:36:46 archlinux kernel: pci 0000:00:15.0: BAR 0 [mem 0xa1332000-0xa1332fff 64bit]
May 02 23:36:46 archlinux kernel: pci 0000:00:15.1: [8086:9d61] type 00 class 0x118000 conventional PCI endpoint
May 02 23:36:46 archlinux kernel: pci 0000:00:15.1: BAR 0 [mem 0xa1333000-0xa1333fff 64bit]
May 02 23:36:46 archlinux kernel: pci 0000:00:15.3: [8086:9d63] type 00 class 0x118000 conventional PCI endpoint
May 02 23:36:46 archlinux kernel: pci 0000:00:15.3: BAR 0 [mem 0xa1334000-0xa1334fff 64bit]
May 02 23:36:46 archlinux kernel: pci 0000:00:16.0: [8086:9d3a] type 00 class 0x078000 conventional PCI endpoint
May 02 23:36:46 archlinux kernel: pci 0000:00:16.0: BAR 0 [mem 0xa1335000-0xa1335fff 64bit]
May 02 23:36:46 archlinux kernel: pci 0000:00:16.0: PME# supported from D3hot
May 02 23:36:46 archlinux kernel: pci 0000:00:1c.0: [8086:9d14] type 01 class 0x060400 PCIe Root Port
May 02 23:36:46 archlinux kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
May 02 23:36:46 archlinux kernel: pci 0000:00:1c.0:   bridge window [mem 0xa1000000-0xa11fffff]
May 02 23:36:46 archlinux kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
May 02 23:36:46 archlinux kernel: pci 0000:00:1d.0: [8086:9d18] type 01 class 0x060400 PCIe Root Port
May 02 23:36:46 archlinux kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
May 02 23:36:46 archlinux kernel: pci 0000:00:1d.0:   bridge window [mem 0xa1200000-0xa12fffff]
May 02 23:36:46 archlinux kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
May 02 23:36:46 archlinux kernel: pci 0000:00:1f.0: [8086:9d58] type 00 class 0x060100 conventional PCI endpoint
May 02 23:36:46 archlinux kernel: pci 0000:00:1f.2: [8086:9d21] type 00 class 0x058000 conventional PCI endpoint
May 02 23:36:46 archlinux kernel: pci 0000:00:1f.2: BAR 0 [mem 0xa132c000-0xa132ffff]
May 02 23:36:46 archlinux kernel: pci 0000:00:1f.3: [8086:9d71] type 00 class 0x040380 conventional PCI endpoint
May 02 23:36:46 archlinux kernel: pci 0000:00:1f.3: BAR 0 [mem 0xa1328000-0xa132bfff 64bit]
May 02 23:36:46 archlinux kernel: pci 0000:00:1f.3: BAR 4 [mem 0xa1310000-0xa131ffff 64bit]
May 02 23:36:46 archlinux kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
May 02 23:36:46 archlinux kernel: pci 0000:00:1f.4: [8086:9d23] type 00 class 0x0c0500 conventional PCI endpoint
May 02 23:36:46 archlinux kernel: pci 0000:00:1f.4: BAR 0 [mem 0xa1336000-0xa13360ff 64bit]
May 02 23:36:46 archlinux kernel: pci 0000:00:1f.4: BAR 4 [io  0x3040-0x305f]
May 02 23:36:46 archlinux kernel: pci 0000:01:00.0: [168c:003e] type 00 class 0x028000 PCIe Endpoint
May 02 23:36:46 archlinux kernel: pci 0000:01:00.0: BAR 0 [mem 0xa1000000-0xa11fffff 64bit]
May 02 23:36:46 archlinux kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
May 02 23:36:46 archlinux kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
May 02 23:36:46 archlinux kernel: pci 0000:02:00.0: [144d:a804] type 00 class 0x010802 PCIe Endpoint
May 02 23:36:46 archlinux kernel: pci 0000:02:00.0: BAR 0 [mem 0xa1200000-0xa1203fff 64bit]
May 02 23:36:46 archlinux kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
May 02 23:36:46 archlinux kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 11
May 02 23:36:46 archlinux kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 10
May 02 23:36:46 archlinux kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 11
May 02 23:36:46 archlinux kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 11
May 02 23:36:46 archlinux kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 11
May 02 23:36:46 archlinux kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 11
May 02 23:36:46 archlinux kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 11
May 02 23:36:46 archlinux kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 11
May 02 23:36:46 archlinux kernel: ACPI Warning: GPE type mismatch (level/edge) (20230628/evxface-791)
May 02 23:36:46 archlinux kernel: ACPI: EC: interrupt unblocked
May 02 23:36:46 archlinux kernel: ACPI: EC: event unblocked
May 02 23:36:46 archlinux kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
May 02 23:36:46 archlinux kernel: ACPI: EC: GPE=0x50
May 02 23:36:46 archlinux kernel: ACPI: \_SB_.PCI0.LPCB.H_EC: Boot DSDT EC initialization complete
May 02 23:36:46 archlinux kernel: ACPI: \_SB_.PCI0.LPCB.H_EC: EC: Used to handle transactions and events
May 02 23:36:46 archlinux kernel: iommu: Default domain type: Translated
May 02 23:36:46 archlinux kernel: iommu: DMA domain TLB invalidation policy: lazy mode
May 02 23:36:46 archlinux kernel: SCSI subsystem initialized
May 02 23:36:46 archlinux kernel: libata version 3.00 loaded.
May 02 23:36:46 archlinux kernel: ACPI: bus type USB registered
May 02 23:36:46 archlinux kernel: usbcore: registered new interface driver usbfs
May 02 23:36:46 archlinux kernel: usbcore: registered new interface driver hub
May 02 23:36:46 archlinux kernel: usbcore: registered new device driver usb
May 02 23:36:46 archlinux kernel: EDAC MC: Ver: 3.0.0
May 02 23:36:46 archlinux kernel: efivars: Registered efivars operations
May 02 23:36:46 archlinux kernel: NetLabel: Initializing
May 02 23:36:46 archlinux kernel: NetLabel:  domain hash size = 128
May 02 23:36:46 archlinux kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
May 02 23:36:46 archlinux kernel: NetLabel:  unlabeled traffic allowed by default
May 02 23:36:46 archlinux kernel: mctp: management component transport protocol core
May 02 23:36:46 archlinux kernel: NET: Registered PF_MCTP protocol family
May 02 23:36:46 archlinux kernel: PCI: Using ACPI for IRQ routing
May 02 23:36:46 archlinux kernel: PCI: pci_cache_line_size set to 64 bytes
May 02 23:36:46 archlinux kernel: e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
May 02 23:36:46 archlinux kernel: e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
May 02 23:36:46 archlinux kernel: e820: reserve RAM buffer [mem 0x75e3e018-0x77ffffff]
May 02 23:36:46 archlinux kernel: e820: reserve RAM buffer [mem 0x76d3b000-0x77ffffff]
May 02 23:36:46 archlinux kernel: e820: reserve RAM buffer [mem 0x78028000-0x7bffffff]
May 02 23:36:46 archlinux kernel: e820: reserve RAM buffer [mem 0x7c9e6000-0x7fffffff]
May 02 23:36:46 archlinux kernel: e820: reserve RAM buffer [mem 0x7ed3e000-0x7fffffff]
May 02 23:36:46 archlinux kernel: e820: reserve RAM buffer [mem 0x7ffff000-0x7fffffff]
May 02 23:36:46 archlinux kernel: e820: reserve RAM buffer [mem 0x272000000-0x273ffffff]
May 02 23:36:46 archlinux kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
May 02 23:36:46 archlinux kernel: pci 0000:00:02.0: vgaarb: bridge control possible
May 02 23:36:46 archlinux kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
May 02 23:36:46 archlinux kernel: vgaarb: loaded
May 02 23:36:46 archlinux kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
May 02 23:36:46 archlinux kernel: hpet0: 8 comparators, 64-bit 24.000000 MHz counter
May 02 23:36:46 archlinux kernel: clocksource: Switched to clocksource tsc-early
May 02 23:36:46 archlinux kernel: VFS: Disk quotas dquot_6.6.0
May 02 23:36:46 archlinux kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
May 02 23:36:46 archlinux kernel: pnp: PnP ACPI init
May 02 23:36:46 archlinux kernel: system 00:00: [mem 0xfd000000-0xfdabffff] has been reserved
May 02 23:36:46 archlinux kernel: system 00:00: [mem 0xfdad0000-0xfdadffff] has been reserved
May 02 23:36:46 archlinux kernel: system 00:00: [mem 0xfdb00000-0xfdffffff] has been reserved
May 02 23:36:46 archlinux kernel: system 00:00: [mem 0xfe000000-0xfe01ffff] has been reserved
May 02 23:36:46 archlinux kernel: system 00:00: [mem 0xfe036000-0xfe03bfff] has been reserved
May 02 23:36:46 archlinux kernel: system 00:00: [mem 0xfe03d000-0xfe3fffff] has been reserved
May 02 23:36:46 archlinux kernel: system 00:00: [mem 0xfe410000-0xfe7fffff] has been reserved
May 02 23:36:46 archlinux kernel: system 00:01: [io  0x2000-0x20fe] has been reserved
May 02 23:36:46 archlinux kernel: system 00:02: [io  0x06a4] has been reserved
May 02 23:36:46 archlinux kernel: system 00:02: [io  0x06a0] has been reserved
May 02 23:36:46 archlinux kernel: system 00:03: [io  0x0680-0x069f] has been reserved
May 02 23:36:46 archlinux kernel: system 00:03: [io  0xffff] has been reserved
May 02 23:36:46 archlinux kernel: system 00:03: [io  0xffff] has been reserved
May 02 23:36:46 archlinux kernel: system 00:03: [io  0xffff] has been reserved
May 02 23:36:46 archlinux kernel: system 00:03: [io  0x1800-0x18fe] has been reserved
May 02 23:36:46 archlinux kernel: system 00:03: [io  0x164e-0x164f] has been reserved
May 02 23:36:46 archlinux kernel: system 00:05: [io  0x1854-0x1857] has been reserved
May 02 23:36:46 archlinux kernel: system 00:07: [mem 0xfe029000-0xfe029fff] has been reserved
May 02 23:36:46 archlinux kernel: system 00:07: [mem 0xfe028000-0xfe028fff] has been reserved
May 02 23:36:46 archlinux kernel: system 00:07: [mem 0xfdaf0000-0xfdafffff] has been reserved
May 02 23:36:46 archlinux kernel: system 00:07: [mem 0xfdae0000-0xfdaeffff] has been reserved
May 02 23:36:46 archlinux kernel: system 00:07: [mem 0xfdac0000-0xfdacffff] has been reserved
May 02 23:36:46 archlinux kernel: system 00:08: [mem 0xfed10000-0xfed17fff] has been reserved
May 02 23:36:46 archlinux kernel: system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved
May 02 23:36:46 archlinux kernel: system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved
May 02 23:36:46 archlinux kernel: system 00:08: [mem 0xe0000000-0xefffffff] has been reserved
May 02 23:36:46 archlinux kernel: system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
May 02 23:36:46 archlinux kernel: system 00:08: [mem 0xfed90000-0xfed93fff] could not be reserved
May 02 23:36:46 archlinux kernel: system 00:08: [mem 0xfed45000-0xfed8ffff] could not be reserved
May 02 23:36:46 archlinux kernel: system 00:08: [mem 0xff000000-0xffffffff] has been reserved
May 02 23:36:46 archlinux kernel: system 00:08: [mem 0xfee00000-0xfeefffff] could not be reserved
May 02 23:36:46 archlinux kernel: system 00:08: [mem 0x8d000000-0x8d01ffff] has been reserved
May 02 23:36:46 archlinux kernel: pnp: PnP ACPI: found 9 devices
May 02 23:36:46 archlinux kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
May 02 23:36:46 archlinux kernel: pci 0000:00:1f.1: [8086:9d20] type 00 class 0x058000 conventional PCI endpoint
May 02 23:36:46 archlinux kernel: pci 0000:00:1f.1: BAR 0 [mem 0xfd000000-0xfdffffff 64bit]
May 02 23:36:46 archlinux kernel: NET: Registered PF_INET protocol family
May 02 23:36:46 archlinux kernel: IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
May 02 23:36:46 archlinux kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
May 02 23:36:46 archlinux kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
May 02 23:36:46 archlinux kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
May 02 23:36:46 archlinux kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
May 02 23:36:46 archlinux kernel: TCP: Hash tables configured (established 65536 bind 65536)
May 02 23:36:46 archlinux kernel: MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
May 02 23:36:46 archlinux kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
May 02 23:36:46 archlinux kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
May 02 23:36:46 archlinux kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
May 02 23:36:46 archlinux kernel: NET: Registered PF_XDP protocol family
May 02 23:36:46 archlinux kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
May 02 23:36:46 archlinux kernel: pci 0000:00:1c.0:   bridge window [mem 0xa1000000-0xa11fffff]
May 02 23:36:46 archlinux kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
May 02 23:36:46 archlinux kernel: pci 0000:00:1d.0:   bridge window [mem 0xa1200000-0xa12fffff]
May 02 23:36:46 archlinux kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
May 02 23:36:46 archlinux kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
May 02 23:36:46 archlinux kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000dffff window]
May 02 23:36:46 archlinux kernel: pci_bus 0000:00: resource 7 [mem 0x8d000000-0xdfffffff window]
May 02 23:36:46 archlinux kernel: pci_bus 0000:00: resource 8 [mem 0xfd000000-0xfe7fffff window]
May 02 23:36:46 archlinux kernel: pci_bus 0000:01: resource 1 [mem 0xa1000000-0xa11fffff]
May 02 23:36:46 archlinux kernel: pci_bus 0000:02: resource 1 [mem 0xa1200000-0xa12fffff]
May 02 23:36:46 archlinux kernel: PCI: CLS 64 bytes, default 64
May 02 23:36:46 archlinux kernel: DMAR: ACPI device "device:76" under DMAR at fed91000 as 00:15.0
May 02 23:36:46 archlinux kernel: DMAR: ACPI device "device:77" under DMAR at fed91000 as 00:15.1
May 02 23:36:46 archlinux kernel: DMAR: ACPI device "device:78" under DMAR at fed91000 as 00:15.3
May 02 23:36:46 archlinux kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
May 02 23:36:46 archlinux kernel: software IO TLB: mapped [mem 0x000000006e2d2000-0x00000000722d2000] (64MB)
May 02 23:36:46 archlinux kernel: Trying to unpack rootfs image as initramfs...
May 02 23:36:46 archlinux kernel: sgx: EPC section 0x80200000-0x85f7ffff
May 02 23:36:46 archlinux kernel: Initialise system trusted keyrings
May 02 23:36:46 archlinux kernel: Key type blacklist registered
May 02 23:36:46 archlinux kernel: workingset: timestamp_bits=41 max_order=21 bucket_order=0
May 02 23:36:46 archlinux kernel: zbud: loaded
May 02 23:36:46 archlinux kernel: integrity: Platform Keyring initialized
May 02 23:36:46 archlinux kernel: integrity: Machine keyring initialized
May 02 23:36:46 archlinux kernel: Key type asymmetric registered
May 02 23:36:46 archlinux kernel: Asymmetric key parser 'x509' registered
May 02 23:36:46 archlinux kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
May 02 23:36:46 archlinux kernel: io scheduler mq-deadline registered
May 02 23:36:46 archlinux kernel: io scheduler kyber registered
May 02 23:36:46 archlinux kernel: io scheduler bfq registered
May 02 23:36:46 archlinux kernel: pcieport 0000:00:1c.0: PME: Signaling with IRQ 122
May 02 23:36:46 archlinux kernel: pcieport 0000:00:1d.0: PME: Signaling with IRQ 123
May 02 23:36:46 archlinux kernel: pcieport 0000:00:1d.0: AER: enabled with IRQ 123
May 02 23:36:46 archlinux kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
May 02 23:36:46 archlinux kernel: ACPI: AC: AC Adapter [ADP1] (on-line)
May 02 23:36:46 archlinux kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:18/PNP0C09:00/PNP0C0D:00/input/input0
May 02 23:36:46 archlinux kernel: ACPI: button: Lid Switch [LID0]
May 02 23:36:46 archlinux kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
May 02 23:36:46 archlinux kernel: ACPI: button: Power Button [PWRB]
May 02 23:36:46 archlinux kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
May 02 23:36:46 archlinux kernel: ACPI: button: Power Button [PWRF]
May 02 23:36:46 archlinux kernel: thermal LNXTHERM:00: registered as thermal_zone0
May 02 23:36:46 archlinux kernel: ACPI: thermal: Thermal Zone [TZ00] (28 C)
May 02 23:36:46 archlinux kernel: thermal LNXTHERM:01: registered as thermal_zone1
May 02 23:36:46 archlinux kernel: ACPI: thermal: Thermal Zone [TZ01] (30 C)
May 02 23:36:46 archlinux kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
May 02 23:36:46 archlinux kernel: Non-volatile memory driver v1.3
May 02 23:36:46 archlinux kernel: Linux agpgart interface v0.103
May 02 23:36:46 archlinux kernel: ACPI: bus type drm_connector registered
May 02 23:36:46 archlinux kernel: ACPI: battery: Slot [BAT1] (battery present)
May 02 23:36:46 archlinux kernel: usbcore: registered new interface driver usbserial_generic
May 02 23:36:46 archlinux kernel: usbserial: USB Serial support registered for generic
May 02 23:36:46 archlinux kernel: rtc_cmos 00:04: RTC can wake from S4
May 02 23:36:46 archlinux kernel: rtc_cmos 00:04: registered as rtc0
May 02 23:36:46 archlinux kernel: rtc_cmos 00:04: setting system clock to 2024-05-02T21:36:42 UTC (1714685802)
May 02 23:36:46 archlinux kernel: rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram
May 02 23:36:46 archlinux kernel: intel_pstate: Intel P-state driver initializing
May 02 23:36:46 archlinux kernel: intel_pstate: HWP enabled
May 02 23:36:46 archlinux kernel: ledtrig-cpu: registered to indicate activity on CPUs
May 02 23:36:46 archlinux kernel: [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0
May 02 23:36:46 archlinux kernel: fbcon: Deferring console take-over
May 02 23:36:46 archlinux kernel: simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
May 02 23:36:46 archlinux kernel: hid: raw HID events driver (C) Jiri Kosina
May 02 23:36:46 archlinux kernel: drop_monitor: Initializing network drop monitor service
May 02 23:36:46 archlinux kernel: NET: Registered PF_INET6 protocol family
May 02 23:36:46 archlinux kernel: Freeing initrd memory: 23768K
May 02 23:36:46 archlinux kernel: Segment Routing with IPv6
May 02 23:36:46 archlinux kernel: RPL Segment Routing with IPv6
May 02 23:36:46 archlinux kernel: In-situ OAM (IOAM) with IPv6
May 02 23:36:46 archlinux kernel: NET: Registered PF_PACKET protocol family
May 02 23:36:46 archlinux kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
May 02 23:36:46 archlinux kernel: microcode: Current revision: 0x000000f4
May 02 23:36:46 archlinux kernel: microcode: Updated early from: 0x0000005e
May 02 23:36:46 archlinux kernel: IPI shorthand broadcast: enabled
May 02 23:36:46 archlinux kernel: sched_clock: Marking stable (443335908, 654524)->(449677057, -5686625)
May 02 23:36:46 archlinux kernel: registered taskstats version 1
May 02 23:36:46 archlinux kernel: Loading compiled-in X.509 certificates
May 02 23:36:46 archlinux kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 938521da0d8f450ee09889253996ef47d2912881'
May 02 23:36:46 archlinux kernel: zswap: loaded using pool zstd/zsmalloc
May 02 23:36:46 archlinux kernel: Key type .fscrypt registered
May 02 23:36:46 archlinux kernel: Key type fscrypt-provisioning registered
May 02 23:36:46 archlinux kernel: PM:   Magic number: 8:951:650
May 02 23:36:46 archlinux kernel: acpi LNXCPU:03: hash matches
May 02 23:36:46 archlinux kernel: RAS: Correctable Errors collector initialized.
May 02 23:36:46 archlinux kernel: clk: Disabling unused clocks
May 02 23:36:46 archlinux kernel: Freeing unused decrypted memory: 2028K
May 02 23:36:46 archlinux kernel: Freeing unused kernel image (initmem) memory: 3432K
May 02 23:36:46 archlinux kernel: Write protecting the kernel read-only data: 30720k
May 02 23:36:46 archlinux kernel: Freeing unused kernel image (rodata/data gap) memory: 1416K
May 02 23:36:46 archlinux kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
May 02 23:36:46 archlinux kernel: rodata_test: all tests were successful
May 02 23:36:46 archlinux kernel: x86/mm: Checking user space page tables
May 02 23:36:46 archlinux kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
May 02 23:36:46 archlinux kernel: Run /init as init process
May 02 23:36:46 archlinux kernel:   with arguments:
May 02 23:36:46 archlinux kernel:     /init
May 02 23:36:46 archlinux kernel:   with environment:
May 02 23:36:46 archlinux kernel:     HOME=/
May 02 23:36:46 archlinux kernel:     TERM=linux
May 02 23:36:46 archlinux kernel: fbcon: Taking over console
May 02 23:36:46 archlinux kernel: Console: switching to colour frame buffer device 240x67
May 02 23:36:46 archlinux kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
May 02 23:36:46 archlinux kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
May 02 23:36:46 archlinux kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
May 02 23:36:46 archlinux kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
May 02 23:36:46 archlinux kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
May 02 23:36:46 archlinux kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000081109810
May 02 23:36:46 archlinux kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
May 02 23:36:46 archlinux kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
May 02 23:36:46 archlinux kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
May 02 23:36:46 archlinux kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.08
May 02 23:36:46 archlinux kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 02 23:36:46 archlinux kernel: usb usb1: Product: xHCI Host Controller
May 02 23:36:46 archlinux kernel: usb usb1: Manufacturer: Linux 6.8.7-arch1-1 xhci-hcd
May 02 23:36:46 archlinux kernel: usb usb1: SerialNumber: 0000:00:14.0
May 02 23:36:46 archlinux kernel: hub 1-0:1.0: USB hub found
May 02 23:36:46 archlinux kernel: hub 1-0:1.0: 12 ports detected
May 02 23:36:46 archlinux kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.08
May 02 23:36:46 archlinux kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 02 23:36:46 archlinux kernel: usb usb2: Product: xHCI Host Controller
May 02 23:36:46 archlinux kernel: usb usb2: Manufacturer: Linux 6.8.7-arch1-1 xhci-hcd
May 02 23:36:46 archlinux kernel: usb usb2: SerialNumber: 0000:00:14.0
May 02 23:36:46 archlinux kernel: hub 2-0:1.0: USB hub found
May 02 23:36:46 archlinux kernel: hub 2-0:1.0: 6 ports detected
May 02 23:36:46 archlinux kernel: nvme nvme0: pci function 0000:02:00.0
May 02 23:36:46 archlinux kernel: nvme nvme0: 4/0/0 default/read/poll queues
May 02 23:36:46 archlinux kernel:  nvme0n1: p1 p2 p3 p4 p5
May 02 23:36:46 archlinux kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
May 02 23:36:46 archlinux kernel: raid6: skipped pq benchmark and selected avx2x4
May 02 23:36:46 archlinux kernel: raid6: using avx2x2 recovery algorithm
May 02 23:36:46 archlinux kernel: xor: automatically using best checksumming function   avx       
May 02 23:36:46 archlinux kernel: usb 1-1: new high-speed USB device number 2 using xhci_hcd
May 02 23:36:46 archlinux kernel: usb 1-1: New USB device found, idVendor=04f2, idProduct=b5a4, bcdDevice=94.15
May 02 23:36:46 archlinux kernel: usb 1-1: New USB device strings: Mfr=3, Product=1, SerialNumber=2
May 02 23:36:46 archlinux kernel: usb 1-1: Product: EasyCamera
May 02 23:36:46 archlinux kernel: usb 1-1: Manufacturer: Chicony Electronics Co.,Ltd.
May 02 23:36:46 archlinux kernel: usb 1-1: SerialNumber: 0001
May 02 23:36:46 archlinux kernel: tsc: Refined TSC clocksource calibration: 2711.988 MHz
May 02 23:36:46 archlinux kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x27177b5d52d, max_idle_ns: 440795311757 ns
May 02 23:36:46 archlinux kernel: clocksource: Switched to clocksource tsc
May 02 23:36:46 archlinux kernel: usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
May 02 23:36:46 archlinux kernel: usb 2-1: New USB device found, idVendor=2109, idProduct=0817, bcdDevice= 6.74
May 02 23:36:46 archlinux kernel: usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
May 02 23:36:46 archlinux kernel: usb 2-1: Product: USB3.0 Hub             
May 02 23:36:46 archlinux kernel: usb 2-1: Manufacturer: VIA Labs, Inc.         
May 02 23:36:46 archlinux kernel: usb 2-1: SerialNumber: 000000000
May 02 23:36:46 archlinux kernel: hub 2-1:1.0: USB hub found
May 02 23:36:46 archlinux kernel: hub 2-1:1.0: 4 ports detected
May 02 23:36:46 archlinux kernel: usb 1-4: new high-speed USB device number 3 using xhci_hcd
May 02 23:36:46 archlinux kernel: Btrfs loaded, zoned=yes, fsverity=yes
May 02 23:36:46 archlinux kernel: Console: switching to colour dummy device 80x25
May 02 23:36:46 archlinux kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
May 02 23:36:46 archlinux kernel: i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=io+mem
May 02 23:36:46 archlinux kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
May 02 23:36:46 archlinux kernel: i915 0000:00:02.0: [drm] [ENCODER:102:DDI B/PHY B] is disabled/in DSI mode with an ungated DDI clock, gate it
May 02 23:36:46 archlinux kernel: i915 0000:00:02.0: [drm] [ENCODER:113:DDI C/PHY C] is disabled/in DSI mode with an ungated DDI clock, gate it
May 02 23:36:46 archlinux kernel: [drm] Initialized i915 1.6.0 20230929 for 0000:00:02.0 on minor 1
May 02 23:36:46 archlinux kernel: ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
May 02 23:36:46 archlinux kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input4
May 02 23:36:46 archlinux kernel: i915 display info: display version: 9
May 02 23:36:46 archlinux kernel: i915 display info: cursor_needs_physical: no
May 02 23:36:46 archlinux kernel: i915 display info: has_cdclk_crawl: no
May 02 23:36:46 archlinux kernel: i915 display info: has_cdclk_squash: no
May 02 23:36:46 archlinux kernel: i915 display info: has_ddi: yes
May 02 23:36:46 archlinux kernel: i915 display info: has_dp_mst: yes
May 02 23:36:46 archlinux kernel: i915 display info: has_dsb: no
May 02 23:36:46 archlinux kernel: i915 display info: has_fpga_dbg: yes
May 02 23:36:46 archlinux kernel: i915 display info: has_gmch: no
May 02 23:36:46 archlinux kernel: i915 display info: has_hotplug: yes
May 02 23:36:46 archlinux kernel: i915 display info: has_hti: no
May 02 23:36:46 archlinux kernel: i915 display info: has_ipc: yes
May 02 23:36:46 archlinux kernel: i915 display info: has_overlay: no
May 02 23:36:46 archlinux kernel: i915 display info: has_psr: yes
May 02 23:36:46 archlinux kernel: i915 display info: has_psr_hw_tracking: yes
May 02 23:36:46 archlinux kernel: i915 display info: overlay_needs_physical: no
May 02 23:36:46 archlinux kernel: i915 display info: supports_tv: no
May 02 23:36:46 archlinux kernel: i915 display info: has_hdcp: yes
May 02 23:36:46 archlinux kernel: i915 display info: has_dmc: yes
May 02 23:36:46 archlinux kernel: i915 display info: has_dsc: no
May 02 23:36:46 archlinux kernel: usb 1-4: New USB device found, idVendor=2109, idProduct=2817, bcdDevice= 6.74
May 02 23:36:46 archlinux kernel: usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
May 02 23:36:46 archlinux kernel: usb 1-4: Product: USB2.0 Hub             
May 02 23:36:46 archlinux kernel: usb 1-4: Manufacturer: VIA Labs, Inc.         
May 02 23:36:46 archlinux kernel: usb 1-4: SerialNumber: 000000000
May 02 23:36:46 archlinux kernel: hub 1-4:1.0: USB hub found
May 02 23:36:46 archlinux kernel: hub 1-4:1.0: 5 ports detected
May 02 23:36:46 archlinux kernel: fbcon: i915drmfb (fb0) is primary device
May 02 23:36:46 archlinux kernel: usb 1-5: new full-speed USB device number 4 using xhci_hcd
May 02 23:36:46 archlinux kernel: usb 1-5: New USB device found, idVendor=138a, idProduct=0094, bcdDevice= 1.64
May 02 23:36:46 archlinux kernel: usb 1-5: New USB device strings: Mfr=0, Product=0, SerialNumber=1
May 02 23:36:46 archlinux kernel: usb 1-5: SerialNumber: cd6680b95405
May 02 23:36:46 archlinux kernel: usb 2-1.4: new SuperSpeed USB device number 3 using xhci_hcd
May 02 23:36:46 archlinux kernel: usb 2-1.4: New USB device found, idVendor=0bda, idProduct=8153, bcdDevice=31.00
May 02 23:36:46 archlinux kernel: usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=6
May 02 23:36:46 archlinux kernel: usb 2-1.4: Product: USB 10/100/1000 LAN
May 02 23:36:46 archlinux kernel: usb 2-1.4: Manufacturer: Realtek
May 02 23:36:46 archlinux kernel: usb 2-1.4: SerialNumber: 001000001
May 02 23:36:46 archlinux kernel: usb 1-7: new full-speed USB device number 5 using xhci_hcd
May 02 23:36:46 archlinux kernel: usb 1-7: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=24.11
May 02 23:36:46 archlinux kernel: usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
May 02 23:36:46 archlinux kernel: usb 1-7: Product: USB Receiver
May 02 23:36:46 archlinux kernel: usb 1-7: Manufacturer: Logitech
May 02 23:36:46 archlinux kernel: usbcore: registered new interface driver usbhid
May 02 23:36:46 archlinux kernel: usbhid: USB HID core driver
May 02 23:36:46 archlinux kernel: usb 1-4.1: new high-speed USB device number 6 using xhci_hcd
May 02 23:36:46 archlinux kernel: Console: switching to colour frame buffer device 240x67
May 02 23:36:46 archlinux kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
May 02 23:36:46 archlinux kernel: input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/0003:046D:C52B.0001/input/input5
May 02 23:36:46 archlinux kernel: usb 1-4.1: New USB device found, idVendor=1a40, idProduct=0101, bcdDevice= 1.11
May 02 23:36:46 archlinux kernel: usb 1-4.1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
May 02 23:36:46 archlinux kernel: usb 1-4.1: Product: USB 2.0 Hub
May 02 23:36:46 archlinux kernel: hub 1-4.1:1.0: USB hub found
May 02 23:36:46 archlinux kernel: hub 1-4.1:1.0: 4 ports detected
May 02 23:36:46 archlinux kernel: hid-generic 0003:046D:C52B.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:14.0-7/input0
May 02 23:36:46 archlinux kernel: input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/0003:046D:C52B.0002/input/input6
May 02 23:36:46 archlinux kernel: input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/0003:046D:C52B.0002/input/input7
May 02 23:36:46 archlinux kernel: input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/0003:046D:C52B.0002/input/input8
May 02 23:36:46 archlinux kernel: hid-generic 0003:046D:C52B.0002: input,hiddev96,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-7/input1
May 02 23:36:46 archlinux kernel: hid-generic 0003:046D:C52B.0003: hiddev97,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-7/input2
May 02 23:36:46 archlinux kernel: usb 1-8: new full-speed USB device number 7 using xhci_hcd
May 02 23:36:46 archlinux kernel: usb 1-8: New USB device found, idVendor=0cf3, idProduct=e300, bcdDevice= 0.01
May 02 23:36:46 archlinux kernel: usb 1-8: New USB device strings: Mfr=0, Product=0, SerialNumber=0
May 02 23:36:46 archlinux kernel: usb 1-4.5: new high-speed USB device number 8 using xhci_hcd
May 02 23:36:46 archlinux kernel: logitech-djreceiver 0003:046D:C52B.0003: hiddev96,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-7/input2
May 02 23:36:46 archlinux kernel: usb 1-4.5: New USB device found, idVendor=050d, idProduct=008a, bcdDevice= 0.01
May 02 23:36:46 archlinux kernel: usb 1-4.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
May 02 23:36:46 archlinux kernel: usb 1-4.5: Product: USB-C 6-in-1 Multiport Adapter
May 02 23:36:46 archlinux kernel: usb 1-4.5: Manufacturer: Belkin International   
May 02 23:36:46 archlinux kernel: usb 1-4.5: SerialNumber: 0000000000000001
May 02 23:36:46 archlinux kernel: input: Logitech Wireless Device PID:4055 Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.2/0003:046D:C52B.0003/0003:046D:4055.0004/input/input10
May 02 23:36:46 archlinux kernel: hid-generic 0003:046D:4055.0004: input,hidraw1: USB HID v1.11 Mouse [Logitech Wireless Device PID:4055] on usb-0000:00:14.0-7/input2:1
May 02 23:36:46 archlinux kernel: input: Logitech Wireless Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.2/0003:046D:C52B.0003/0003:046D:4055.0004/input/input14
May 02 23:36:46 archlinux kernel: logitech-hidpp-device 0003:046D:4055.0004: input,hidraw1: USB HID v1.11 Mouse [Logitech Wireless Mouse] on usb-0000:00:14.0-7/input2:1
May 02 23:36:46 archlinux kernel: BTRFS: device label magnolia devid 1 transid 1794 /dev/nvme0n1p5 scanned by mount (151)
May 02 23:36:46 archlinux kernel: BTRFS info (device nvme0n1p5): first mount of filesystem aa276d53-410c-4bf4-ac41-08b658625043
May 02 23:36:46 archlinux kernel: BTRFS info (device nvme0n1p5): using crc32c (crc32c-intel) checksum algorithm
May 02 23:36:46 archlinux kernel: BTRFS info (device nvme0n1p5): disk space caching is enabled
May 02 23:36:46 archlinux kernel: usb 1-4.1.1: new high-speed USB device number 9 using xhci_hcd
May 02 23:36:46 archlinux systemd[1]: systemd 255.4-2-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)
May 02 23:36:46 archlinux systemd[1]: Detected architecture x86-64.
May 02 23:36:46 archlinux kernel: usb 1-4.1.1: New USB device found, idVendor=2109, idProduct=0102, bcdDevice= 7.01
May 02 23:36:46 archlinux kernel: usb 1-4.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
May 02 23:36:46 archlinux kernel: usb 1-4.1.1: Product: USB 2.0 BILLBOARD             
May 02 23:36:46 archlinux kernel: usb 1-4.1.1: Manufacturer: VIA Technologies Inc.         
May 02 23:36:46 archlinux kernel: usb 1-4.1.1: SerialNumber: 0000000000000001
May 02 23:36:46 archlinux kernel: usb 1-4.1.2: new high-speed USB device number 10 using xhci_hcd
May 02 23:36:46 archlinux kernel: usb 1-4.1.2: New USB device found, idVendor=05e3, idProduct=0751, bcdDevice=14.04
May 02 23:36:46 archlinux kernel: usb 1-4.1.2: New USB device strings: Mfr=3, Product=4, SerialNumber=0
May 02 23:36:46 archlinux kernel: usb 1-4.1.2: Product: USB Storage
May 02 23:36:46 archlinux kernel: usb 1-4.1.2: Manufacturer: USB Storage
May 02 23:36:46 archlinux systemd[1]: bpf-lsm: LSM BPF program attached
May 02 23:36:46 archlinux systemd[1]: Queued start job for default target Graphical Interface.
May 02 23:36:46 archlinux systemd[1]: Created slice Slice /system/dirmngr.
May 02 23:36:46 archlinux systemd[1]: Created slice Slice /system/getty.
May 02 23:36:46 archlinux systemd[1]: Created slice Slice /system/gpg-agent.
May 02 23:36:46 archlinux systemd[1]: Created slice Slice /system/gpg-agent-browser.
May 02 23:36:46 archlinux systemd[1]: Created slice Slice /system/gpg-agent-extra.
May 02 23:36:46 archlinux systemd[1]: Created slice Slice /system/gpg-agent-ssh.
May 02 23:36:46 archlinux systemd[1]: Created slice Slice /system/keyboxd.
May 02 23:36:46 archlinux systemd[1]: Created slice Slice /system/modprobe.
May 02 23:36:46 archlinux systemd[1]: Created slice Slice /system/systemd-fsck.
May 02 23:36:46 archlinux systemd[1]: Created slice User and Session Slice.
May 02 23:36:46 archlinux systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
May 02 23:36:46 archlinux systemd[1]: Started Forward Password Requests to Wall Directory Watch.
May 02 23:36:46 archlinux systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
May 02 23:36:46 archlinux systemd[1]: Expecting device /dev/disk/by-uuid/2879-4041...
May 02 23:36:46 archlinux systemd[1]: Expecting device /dev/disk/by-uuid/aa276d53-410c-4bf4-ac41-08b658625043...
May 02 23:36:46 archlinux systemd[1]: Reached target Local Encrypted Volumes.
May 02 23:36:46 archlinux systemd[1]: Reached target Local Integrity Protected Volumes.
May 02 23:36:46 archlinux systemd[1]: Reached target Path Units.
May 02 23:36:46 archlinux systemd[1]: Reached target Remote Encrypted Volumes.
May 02 23:36:46 archlinux systemd[1]: Reached target Remote File Systems.
May 02 23:36:46 archlinux systemd[1]: Reached target Slice Units.
May 02 23:36:46 archlinux systemd[1]: Reached target Swaps.
May 02 23:36:46 archlinux systemd[1]: Reached target Local Verity Protected Volumes.
May 02 23:36:46 archlinux systemd[1]: Listening on Device-mapper event daemon FIFOs.
May 02 23:36:46 archlinux systemd[1]: Listening on LVM2 poll daemon socket.
May 02 23:36:46 archlinux systemd[1]: Listening on Process Core Dump Socket.
May 02 23:36:46 archlinux systemd[1]: Listening on Journal Socket (/dev/log).
May 02 23:36:46 archlinux systemd[1]: Listening on Journal Socket.
May 02 23:36:46 archlinux systemd[1]: Listening on Network Service Netlink Socket.
May 02 23:36:46 archlinux systemd[1]: TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:36:46 archlinux systemd[1]: Listening on udev Control Socket.
May 02 23:36:46 archlinux systemd[1]: Listening on udev Kernel Socket.
May 02 23:36:46 archlinux systemd[1]: Listening on User Database Manager Socket.
May 02 23:36:46 archlinux systemd[1]: Mounting Huge Pages File System...
May 02 23:36:46 archlinux systemd[1]: Mounting POSIX Message Queue File System...
May 02 23:36:46 archlinux systemd[1]: Mounting Kernel Debug File System...
May 02 23:36:46 archlinux systemd[1]: Mounting Kernel Trace File System...
May 02 23:36:46 archlinux systemd[1]: Mounting Temporary Directory /tmp...
May 02 23:36:46 archlinux systemd[1]: Starting Create List of Static Device Nodes...
May 02 23:36:46 archlinux systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
May 02 23:36:46 archlinux systemd[1]: Starting Load Kernel Module configfs...
May 02 23:36:46 archlinux systemd[1]: Starting Load Kernel Module dm_mod...
May 02 23:36:46 archlinux systemd[1]: Starting Load Kernel Module drm...
May 02 23:36:46 archlinux systemd[1]: Starting Load Kernel Module efi_pstore...
May 02 23:36:46 archlinux systemd[1]: Starting Load Kernel Module fuse...
May 02 23:36:46 archlinux systemd[1]: Starting Load Kernel Module loop...
May 02 23:36:46 archlinux systemd[1]: Starting Journal Service...
May 02 23:36:46 archlinux kernel: device-mapper: uevent: version 1.0.3
May 02 23:36:46 archlinux systemd[1]: Starting Load Kernel Modules...
May 02 23:36:46 archlinux systemd[1]: Starting Generate network units from Kernel command line...
May 02 23:36:46 archlinux systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:36:46 archlinux systemd[1]: Starting Remount Root and Kernel File Systems...
May 02 23:36:46 archlinux kernel: fuse: init (API version 7.39)
May 02 23:36:46 archlinux kernel: device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
May 02 23:36:46 archlinux systemd[1]: TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:36:46 archlinux kernel: loop: module loaded
May 02 23:36:46 archlinux systemd[1]: Starting Coldplug All udev Devices...
May 02 23:36:46 archlinux systemd[1]: Mounted Huge Pages File System.
May 02 23:36:46 archlinux systemd[1]: Mounted POSIX Message Queue File System.
May 02 23:36:46 archlinux systemd[1]: Mounted Kernel Debug File System.
May 02 23:36:46 archlinux systemd[1]: Mounted Kernel Trace File System.
May 02 23:36:46 archlinux systemd[1]: Mounted Temporary Directory /tmp.
May 02 23:36:46 archlinux systemd[1]: Finished Create List of Static Device Nodes.
May 02 23:36:46 archlinux systemd[1]: modprobe@configfs.service: Deactivated successfully.
May 02 23:36:46 archlinux systemd[1]: Finished Load Kernel Module configfs.
May 02 23:36:46 archlinux systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
May 02 23:36:46 archlinux systemd[1]: Finished Load Kernel Module dm_mod.
May 02 23:36:46 archlinux systemd[1]: modprobe@drm.service: Deactivated successfully.
May 02 23:36:46 archlinux systemd[1]: Finished Load Kernel Module drm.
May 02 23:36:46 archlinux systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
May 02 23:36:46 archlinux systemd[1]: Finished Load Kernel Module efi_pstore.
May 02 23:36:46 archlinux kernel: BTRFS info (device nvme0n1p5: state M): turning on sync discard
May 02 23:36:46 archlinux kernel: BTRFS info (device nvme0n1p5: state M): use zstd compression, level 3
May 02 23:36:46 archlinux systemd[1]: modprobe@fuse.service: Deactivated successfully.
May 02 23:36:46 archlinux systemd[1]: Finished Load Kernel Module fuse.
May 02 23:36:46 archlinux systemd[1]: modprobe@loop.service: Deactivated successfully.
May 02 23:36:46 archlinux systemd[1]: Finished Load Kernel Module loop.
May 02 23:36:46 archlinux systemd[1]: Finished Generate network units from Kernel command line.
May 02 23:36:46 archlinux systemd[1]: Finished Remount Root and Kernel File Systems.
May 02 23:36:46 archlinux systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
May 02 23:36:46 archlinux systemd-journald[208]: Collecting audit messages is disabled.
May 02 23:36:46 archlinux systemd[1]: Reached target Preparation for Network.
May 02 23:36:46 archlinux systemd[1]: Mounting FUSE Control File System...
May 02 23:36:46 archlinux systemd[1]: Mounting Kernel Configuration File System...
May 02 23:36:46 archlinux systemd[1]: Rebuild Hardware Database was skipped because no trigger condition checks were met.
May 02 23:36:46 archlinux systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
May 02 23:36:46 archlinux systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
May 02 23:36:46 archlinux systemd[1]: Finished Load Kernel Modules.
May 02 23:36:46 archlinux systemd[1]: Starting Apply Kernel Variables...
May 02 23:36:46 archlinux systemd[1]: Mounted FUSE Control File System.
May 02 23:36:46 archlinux systemd[1]: Mounted Kernel Configuration File System.
May 02 23:36:46 archlinux systemd[1]: Finished Apply Kernel Variables.
May 02 23:36:46 archlinux systemd[1]: Starting User Database Manager...
May 02 23:36:46 archlinux systemd-journald[208]: Journal started
May 02 23:36:46 archlinux systemd-journald[208]: Runtime Journal (/run/log/journal/bc47046c25d64071a8322148626a91cb) is 8.0M, max 384.1M, 376.1M free.
May 02 23:36:46 archlinux systemd-modules-load[209]: Inserted module 'crypto_user'
May 02 23:36:46 archlinux systemd-modules-load[209]: Inserted module 'sg'
May 02 23:36:46 archlinux systemd[1]: Started Journal Service.
May 02 23:36:46 archlinux systemd[1]: Started User Database Manager.
May 02 23:36:46 archlinux systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
May 02 23:36:46 archlinux systemd[1]: Starting Create System Users...
May 02 23:36:46 archlinux systemd[1]: Finished Coldplug All udev Devices.
May 02 23:36:46 archlinux systemd[1]: Finished Create System Users.
May 02 23:36:46 archlinux systemd[1]: Starting Create Static Device Nodes in /dev...
May 02 23:36:47 archlinux systemd[1]: Finished Create Static Device Nodes in /dev.
May 02 23:36:47 archlinux systemd[1]: Reached target Preparation for Local File Systems.
May 02 23:36:47 archlinux systemd[1]: Starting Rule-based Manager for Device Events and Files...
May 02 23:36:47 archlinux systemd-udevd[253]: Using default interface naming scheme 'v255'.
May 02 23:36:47 archlinux systemd[1]: Started Rule-based Manager for Device Events and Files.
May 02 23:36:47 archlinux systemd[1]: Starting Network Configuration...
May 02 23:36:47 archlinux mtp-probe[285]: checking bus 1, device 5: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7"
May 02 23:36:47 archlinux mtp-probe[285]: bus: 1, device: 5 was not an MTP device
May 02 23:36:47 archlinux systemd[1]: Found device SAMSUNG MZVLW512HMJP-000L2 SYSTEM_DRV.
May 02 23:36:47 archlinux systemd[1]: Starting File System Check on /dev/disk/by-uuid/2879-4041...
May 02 23:36:47 archlinux kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
May 02 23:36:47 archlinux kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
May 02 23:36:47 archlinux kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
May 02 23:36:47 archlinux kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
May 02 23:36:47 archlinux kernel: cfg80211: failed to load regulatory.db
May 02 23:36:47 archlinux kernel: mousedev: PS/2 mouse device common for all mice
May 02 23:36:47 archlinux systemd-networkd[265]: lo: Link UP
May 02 23:36:47 archlinux systemd-networkd[265]: lo: Gained carrier
May 02 23:36:47 archlinux systemd-networkd[265]: Enumeration completed
May 02 23:36:47 archlinux systemd[1]: Found device SAMSUNG MZVLW512HMJP-000L2 magnolia.
May 02 23:36:47 archlinux kernel: Consider using thermal netlink events interface
May 02 23:36:47 archlinux systemd[1]: Started Network Configuration.
May 02 23:36:47 archlinux systemd[1]: etc.mount: Directory /etc to mount over is not empty, mounting anyway.
May 02 23:36:47 archlinux systemd[1]: Mounting /etc...
May 02 23:36:47 archlinux systemd[1]: var.mount: Directory /var to mount over is not empty, mounting anyway.
May 02 23:36:47 archlinux kernel: input: Ideapad extra buttons as /devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/input/input15
May 02 23:36:47 archlinux systemd-fsck[296]: fsck.fat 4.2 (2021-01-31)
May 02 23:36:47 archlinux systemd-fsck[296]: /dev/nvme0n1p1: 227 files, 50425/65536 clusters
May 02 23:36:47 archlinux systemd[1]: Mounting /var...
May 02 23:36:47 archlinux mtp-probe[300]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-1"
May 02 23:36:47 archlinux kernel: intel_pmc_core INT33A1:00:  initialized
May 02 23:36:47 archlinux mtp-probe[300]: bus: 1, device: 2 was not an MTP device
May 02 23:36:47 archlinux systemd[1]: Finished File System Check on /dev/disk/by-uuid/2879-4041.
May 02 23:36:47 archlinux systemd[1]: Mounted /etc.
May 02 23:36:47 archlinux systemd[1]: Mounted /var.
May 02 23:36:47 archlinux mtp-probe[308]: checking bus 1, device 4: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5"
May 02 23:36:47 archlinux mtp-probe[308]: bus: 1, device: 4 was not an MTP device
May 02 23:36:47 archlinux kernel: ideapad_acpi VPC2004:00: DYTC interface is not available
May 02 23:36:47 archlinux mtp-probe[315]: checking bus 1, device 10: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.1/1-4.1.2"
May 02 23:36:47 archlinux mtp-probe[315]: bus: 1, device: 10 was not an MTP device
May 02 23:36:47 archlinux systemd[1]: Starting Flush Journal to Persistent Storage...
May 02 23:36:47 archlinux kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
May 02 23:36:47 archlinux mtp-probe[316]: checking bus 2, device 3: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-1/2-1.4"
May 02 23:36:47 archlinux mtp-probe[316]: bus: 2, device: 3 was not an MTP device
May 02 23:36:47 archlinux kernel: mc: Linux media interface: v0.10
May 02 23:36:47 archlinux systemd[1]: Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
May 02 23:36:47 archlinux systemd-journald[208]: Time spent on flushing to /var/log/journal/bc47046c25d64071a8322148626a91cb is 302.816ms for 987 entries.
May 02 23:36:47 archlinux systemd-journald[208]: System Journal (/var/log/journal/bc47046c25d64071a8322148626a91cb) is 405.8M, max 4.0G, 3.6G free.
May 02 23:36:47 archlinux systemd-journald[208]: Received client request to flush runtime journal.
May 02 23:36:47 archlinux systemd-journald[208]: /var/log/journal/bc47046c25d64071a8322148626a91cb/system.journal: Journal file uses a different sequence number ID, rotating.
May 02 23:36:47 archlinux systemd-journald[208]: Rotating system journal.
May 02 23:36:47 archlinux kernel: intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
May 02 23:36:47 archlinux kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
May 02 23:36:47 archlinux kernel: intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
May 02 23:36:47 archlinux kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
May 02 23:36:47 archlinux kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
May 02 23:36:47 archlinux kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
May 02 23:36:47 archlinux kernel: Bluetooth: Core ver 2.22
May 02 23:36:47 archlinux kernel: NET: Registered PF_BLUETOOTH protocol family
May 02 23:36:47 archlinux kernel: Bluetooth: HCI device and connection manager initialized
May 02 23:36:47 archlinux kernel: Bluetooth: HCI socket layer initialized
May 02 23:36:47 archlinux kernel: Bluetooth: L2CAP socket layer initialized
May 02 23:36:47 archlinux kernel: Bluetooth: SCO socket layer initialized
May 02 23:36:47 archlinux kernel: i2c i2c-7: 2/4 memory slots populated (from DMI)
May 02 23:36:47 archlinux kernel: input: PC Speaker as /devices/platform/pcspkr/input/input16
May 02 23:36:47 archlinux kernel: intel-lpss 0000:00:15.3: enabling device (0000 -> 0002)
May 02 23:36:47 archlinux kernel: usb-storage 1-4.1.2:1.0: USB Mass Storage device detected
May 02 23:36:47 archlinux kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit
May 02 23:36:47 archlinux kernel: usbcore: registered new device driver r8152-cfgselector
May 02 23:36:47 archlinux kernel: videodev: Linux video capture interface: v2.00
May 02 23:36:47 archlinux kernel: scsi host0: usb-storage 1-4.1.2:1.0
May 02 23:36:47 archlinux kernel: usbcore: registered new interface driver usb-storage
May 02 23:36:47 archlinux kernel: input: SYNA7813:00 06CB:1786 Touchscreen as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-6/i2c-SYNA7813:00/0018:06CB:1786.0005/input/input17
May 02 23:36:47 archlinux kernel: hid-generic 0018:06CB:1786.0005: input,hidraw2: I2C HID v1.00 Device [SYNA7813:00 06CB:1786] on i2c-SYNA7813:00
May 02 23:36:47 archlinux kernel: r8152-cfgselector 2-1.4: reset SuperSpeed USB device number 3 using xhci_hcd
May 02 23:36:47 archlinux kernel: r8152 2-1.4:1.0: load rtl8153b-2 v2 04/27/23 successfully
May 02 23:36:47 archlinux kernel: input: SYNA2B31:00 06CB:7F8C Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-8/i2c-SYNA2B31:00/0018:06CB:7F8C.0006/input/input19
May 02 23:36:47 archlinux kernel: input: SYNA2B31:00 06CB:7F8C Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-8/i2c-SYNA2B31:00/0018:06CB:7F8C.0006/input/input20
May 02 23:36:47 archlinux kernel: hid-generic 0018:06CB:7F8C.0006: input,hidraw3: I2C HID v1.00 Mouse [SYNA2B31:00 06CB:7F8C] on i2c-SYNA2B31:00
May 02 23:36:47 archlinux kernel: r8152 2-1.4:1.0 eth0: v1.12.13
May 02 23:36:47 archlinux kernel: usbcore: registered new interface driver r8152
May 02 23:36:47 archlinux kernel: intel_rapl_common: Found RAPL domain package
May 02 23:36:47 archlinux kernel: intel_rapl_common: Found RAPL domain core
May 02 23:36:47 archlinux kernel: intel_rapl_common: Found RAPL domain uncore
May 02 23:36:47 archlinux kernel: intel_rapl_common: Found RAPL domain dram
May 02 23:36:47 archlinux systemd[1]: Starting Load/Save OS Random Seed...
May 02 23:36:47 archlinux systemd[1]: TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:36:47 archlinux systemd[1]: Created slice Slice /system/systemd-backlight.
May 02 23:36:47 archlinux systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:intel_backlight...
May 02 23:36:47 archlinux systemd[1]: Finished Load/Save OS Random Seed.
May 02 23:36:47 archlinux systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:intel_backlight.
May 02 23:36:47 archlinux systemd[1]: Starting Virtual Console Setup...
May 02 23:36:47 archlinux systemd[1]: Mounting /boot...
May 02 23:36:47 archlinux systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
May 02 23:36:47 archlinux systemd[1]: Reached target Containers.
May 02 23:36:47 archlinux systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
May 02 23:36:47 archlinux systemd[1]: Starting Load/Save RF Kill Switch Status...
May 02 23:36:47 archlinux systemd[1]: Starting Load/Save Screen Backlight Brightness of leds:platform::kbd_backlight...
May 02 23:36:47 archlinux kernel: hid-generic 0018:048D:8186.0007: hidraw4: I2C HID v1.00 Device [ITE8186:00 048D:8186] on i2c-ITE8186:00
May 02 23:36:47 archlinux systemd[1]: Finished Flush Journal to Persistent Storage.
May 02 23:36:47 archlinux systemd[1]: Finished Virtual Console Setup.
May 02 23:36:47 archlinux systemd[1]: Started Load/Save RF Kill Switch Status.
May 02 23:36:47 archlinux systemd[1]: Mounted /boot.
May 02 23:36:47 archlinux systemd[1]: Finished Load/Save Screen Backlight Brightness of leds:platform::kbd_backlight.
May 02 23:36:47 archlinux systemd[1]: Reached target Local File Systems.
May 02 23:36:47 archlinux kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
May 02 23:36:47 archlinux kernel: RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
May 02 23:36:47 archlinux kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
May 02 23:36:47 archlinux kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
May 02 23:36:47 archlinux kernel: RAPL PMU: hw unit of domain dram 2^-14 Joules
May 02 23:36:47 archlinux kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
May 02 23:36:47 archlinux systemd[1]: Listening on System Extension Image Management (Varlink).
May 02 23:36:47 archlinux systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
May 02 23:36:47 archlinux systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
May 02 23:36:47 archlinux kernel: usbcore: registered new interface driver cdc_ether
May 02 23:36:47 archlinux systemd[1]: Starting Update Boot Loader Random Seed...
May 02 23:36:47 archlinux systemd[1]: Starting Automatic Boot Loader Update...
May 02 23:36:47 archlinux kernel: usbcore: registered new interface driver uas
May 02 23:36:47 archlinux kernel: cryptd: max_cpu_qlen set to 1000
May 02 23:36:47 archlinux systemd[1]: Starting Create Volatile Files and Directories...
May 02 23:36:47 archlinux bootctl[355]: ! Mount point '/boot' which backs the random seed file is world accessible, which is a security hole! !
May 02 23:36:47 archlinux bootctl[355]: ! Random seed file '/boot/loader/random-seed' is world accessible, which is a security hole! !
May 02 23:36:47 archlinux kernel: iTCO_vendor_support: vendor-support=0
May 02 23:36:47 archlinux bootctl[355]: Random seed file /boot/loader/random-seed successfully refreshed (32 bytes).
May 02 23:36:47 archlinux bootctl[359]: Skipping "/boot/EFI/systemd/systemd-bootx64.efi", same boot loader version in place already.
May 02 23:36:47 archlinux bootctl[359]: Skipping "/boot/EFI/BOOT/BOOTX64.EFI", same boot loader version in place already.
May 02 23:36:47 archlinux kernel: usbcore: registered new interface driver r8153_ecm
May 02 23:36:47 archlinux systemd[1]: Finished Update Boot Loader Random Seed.
May 02 23:36:48 archlinux kernel: intel_rapl_common: Found RAPL domain package
May 02 23:36:48 archlinux kernel: intel_rapl_common: Found RAPL domain dram
May 02 23:36:48 archlinux systemd[1]: Finished Automatic Boot Loader Update.
May 02 23:36:48 archlinux kernel: ath10k_pci 0000:01:00.0: pci irq msi oper_irq_mode 2 irq_mode 0 reset_mode 0
May 02 23:36:48 archlinux kernel: iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400)
May 02 23:36:48 archlinux kernel: AVX2 version of gcm_enc/dec engaged.
May 02 23:36:48 archlinux kernel: AES CTR mode by8 optimization enabled
May 02 23:36:48 archlinux kernel: iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
May 02 23:36:48 archlinux kernel: usb 1-1: Found UVC 1.00 device EasyCamera (04f2:b5a4)
May 02 23:36:48 archlinux kernel: usbcore: registered new interface driver uvcvideo
May 02 23:36:48 archlinux mtp-probe[370]: checking bus 2, device 3: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-1/2-1.4"
May 02 23:36:48 archlinux kernel: input: SYNA7813:00 06CB:1786 as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-6/i2c-SYNA7813:00/0018:06CB:1786.0005/input/input22
May 02 23:36:48 archlinux mtp-probe[370]: bus: 2, device: 3 was not an MTP device
May 02 23:36:48 archlinux kernel: r8152 2-1.4:1.0 enp0s20f0u1u4: renamed from eth0
May 02 23:36:48 archlinux systemd-networkd[265]: eth0: Interface name change detected, renamed to enp0s20f0u1u4.
May 02 23:36:48 archlinux kernel: snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
May 02 23:36:48 archlinux kernel: snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
May 02 23:36:48 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:36:48 archlinux systemd[1]: Finished Create Volatile Files and Directories.
May 02 23:36:48 archlinux systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 02 23:36:48 archlinux systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 02 23:36:48 archlinux systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
May 02 23:36:48 archlinux systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
May 02 23:36:48 archlinux kernel: usbcore: registered new interface driver btusb
May 02 23:36:48 archlinux kernel: Bluetooth: hci0: using rampatch file: qca/rampatch_usb_00000302.bin
May 02 23:36:48 archlinux kernel: Bluetooth: hci0: QCA: patch rome 0x302 build 0x3e8, firmware rome 0x302 build 0x111
May 02 23:36:48 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:36:48 archlinux kernel: hid-multitouch 0018:06CB:1786.0005: input,hidraw2: I2C HID v1.00 Device [SYNA7813:00 06CB:1786] on i2c-SYNA7813:00
May 02 23:36:48 archlinux kernel: hid-sensor-hub 0018:048D:8186.0007: hidraw3: I2C HID v1.00 Device [ITE8186:00 048D:8186] on i2c-ITE8186:00
May 02 23:36:48 archlinux systemd[1]: Starting Network Name Resolution...
May 02 23:36:48 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC299: line_outs=2 (0x14/0x17/0x0/0x0/0x0) type:speaker
May 02 23:36:48 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
May 02 23:36:48 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
May 02 23:36:48 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
May 02 23:36:48 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:    inputs:
May 02 23:36:48 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:      Mic=0x19
May 02 23:36:48 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
May 02 23:36:48 archlinux systemd[1]: Starting Network Time Synchronization...
May 02 23:36:48 archlinux systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
May 02 23:36:48 archlinux systemd[1]: Starting Record System Boot/Shutdown in UTMP...
May 02 23:36:48 archlinux kernel: input: SYNA2B31:00 06CB:7F8C Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-8/i2c-SYNA2B31:00/0018:06CB:7F8C.0006/input/input24
May 02 23:36:48 archlinux kernel: input: SYNA2B31:00 06CB:7F8C Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-8/i2c-SYNA2B31:00/0018:06CB:7F8C.0006/input/input25
May 02 23:36:48 archlinux kernel: hid-multitouch 0018:06CB:7F8C.0006: input,hidraw4: I2C HID v1.00 Mouse [SYNA2B31:00 06CB:7F8C] on i2c-SYNA2B31:00
May 02 23:36:48 archlinux systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
May 02 23:36:48 archlinux systemd[1]: Starting Load Kernel Module dm_mod...
May 02 23:36:48 archlinux kernel: ath10k_pci 0000:01:00.0: qca6174 hw3.2 target 0x05030000 chip_id 0x00340aff sub 17aa:0827
May 02 23:36:48 archlinux kernel: ath10k_pci 0000:01:00.0: kconfig debug 1 debugfs 1 tracing 1 dfs 0 testmode 0
May 02 23:36:48 archlinux kernel: ath10k_pci 0000:01:00.0: firmware ver WLAN.RM.4.4.1-00309- api 6 features wowlan,ignore-otp,mfp crc32 0793bcf2
May 02 23:36:48 archlinux systemd[1]: Starting Load Kernel Module efi_pstore...
May 02 23:36:48 archlinux systemd[1]: Starting Load Kernel Module loop...
May 02 23:36:48 archlinux systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
May 02 23:36:48 archlinux systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 02 23:36:48 archlinux systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 02 23:36:48 archlinux systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
May 02 23:36:48 archlinux systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
May 02 23:36:48 archlinux systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
May 02 23:36:48 archlinux systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:36:48 archlinux systemd[1]: TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:36:48 archlinux systemd[1]: TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:36:48 archlinux systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
May 02 23:36:48 archlinux systemd[1]: Finished Record System Boot/Shutdown in UTMP.
May 02 23:36:48 archlinux systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
May 02 23:36:48 archlinux systemd[1]: Finished Load Kernel Module dm_mod.
May 02 23:36:48 archlinux systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
May 02 23:36:48 archlinux systemd[1]: Finished Load Kernel Module efi_pstore.
May 02 23:36:48 archlinux kernel: intel_tcc_cooling: Programmable TCC Offset detected
May 02 23:36:48 archlinux systemd[1]: modprobe@loop.service: Deactivated successfully.
May 02 23:36:48 archlinux systemd[1]: Finished Load Kernel Module loop.
May 02 23:36:48 archlinux systemd[1]: Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
May 02 23:36:48 archlinux systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
May 02 23:36:48 archlinux kernel: ath10k_pci 0000:01:00.0: board_file api 2 bmi_id N/A crc32 d2863f91
May 02 23:36:48 archlinux systemd-resolved[379]: Positive Trust Anchors:
May 02 23:36:48 archlinux systemd-resolved[379]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d
May 02 23:36:48 archlinux systemd-resolved[379]: 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 170.0.0.192.in-addr.arpa 171.0.0.192.in-addr.arpa 168.192.in-addr.arpa d.f.ip6.arpa ipv4only.arpa corp home internal intranet lan local private test
May 02 23:36:48 archlinux systemd[1]: Started Network Time Synchronization.
May 02 23:36:48 archlinux systemd[1]: Reached target System Time Set.
May 02 23:36:48 archlinux systemd-resolved[379]: Using system hostname 'archlinux'.
May 02 23:36:48 archlinux systemd[1]: Started Network Name Resolution.
May 02 23:36:48 archlinux systemd[1]: Reached target Network.
May 02 23:36:48 archlinux systemd[1]: Reached target Host and Network Name Lookups.
May 02 23:36:48 archlinux systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
May 02 23:36:48 archlinux kernel: ath10k_pci 0000:01:00.0: htt-ver 3.87 wmi-op 4 htt-op 3 cal otp max-sta 32 raw 0 hwcrypto 1
May 02 23:36:48 archlinux systemd[1]: Starting Load Kernel Module dm_mod...
May 02 23:36:48 archlinux systemd[1]: Starting Load Kernel Module efi_pstore...
May 02 23:36:48 archlinux systemd[1]: Starting Load Kernel Module loop...
May 02 23:36:48 archlinux systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
May 02 23:36:48 archlinux systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 02 23:36:48 archlinux systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 02 23:36:48 archlinux systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
May 02 23:36:48 archlinux systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
May 02 23:36:48 archlinux systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
May 02 23:36:48 archlinux systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:36:48 archlinux systemd[1]: TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:36:48 archlinux systemd[1]: TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:36:48 archlinux systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
May 02 23:36:48 archlinux systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
May 02 23:36:48 archlinux systemd[1]: Finished Load Kernel Module dm_mod.
May 02 23:36:48 archlinux systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
May 02 23:36:48 archlinux systemd[1]: Finished Load Kernel Module efi_pstore.
May 02 23:36:48 archlinux systemd[1]: modprobe@loop.service: Deactivated successfully.
May 02 23:36:48 archlinux systemd[1]: Finished Load Kernel Module loop.
May 02 23:36:48 archlinux systemd[1]: Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
May 02 23:36:48 archlinux systemd[1]: Reached target System Initialization.
May 02 23:36:48 archlinux systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
May 02 23:36:48 archlinux systemd[1]: Started Daily man-db regeneration.
May 02 23:36:48 archlinux systemd[1]: Started Daily verification of password and group files.
May 02 23:36:48 archlinux systemd[1]: Started Daily Cleanup of Temporary Directories.
May 02 23:36:48 archlinux systemd[1]: Reached target Timer Units.
May 02 23:36:48 archlinux systemd[1]: Listening on D-Bus System Message Bus Socket.
May 02 23:36:48 archlinux systemd[1]: Listening on GnuPG network certificate management daemon for /etc/pacman.d/gnupg.
May 02 23:36:48 archlinux systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers) for /etc/pacman.d/gnupg.
May 02 23:36:48 archlinux systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (restricted) for /etc/pacman.d/gnupg.
May 02 23:36:48 archlinux systemd[1]: Listening on GnuPG cryptographic agent (ssh-agent emulation) for /etc/pacman.d/gnupg.
May 02 23:36:48 archlinux systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache for /etc/pacman.d/gnupg.
May 02 23:36:48 archlinux systemd[1]: Listening on GnuPG public key management service for /etc/pacman.d/gnupg.
May 02 23:36:48 archlinux systemd[1]: Reached target Socket Units.
May 02 23:36:48 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:36:48 archlinux kernel: Bluetooth: hci0: using NVM file: qca/nvm_usb_00000302.bin
May 02 23:36:48 archlinux kernel: ath: EEPROM regdomain: 0x6c
May 02 23:36:48 archlinux kernel: ath: EEPROM indicates we should expect a direct regpair map
May 02 23:36:48 archlinux kernel: ath: Country alpha2 being used: 00
May 02 23:36:48 archlinux kernel: ath: Regpair used: 0x6c
May 02 23:36:48 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:36:48 archlinux systemd[1]: Starting D-Bus System Message Bus...
May 02 23:36:48 archlinux systemd[1]: TPM2 PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:36:48 archlinux systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
May 02 23:36:48 archlinux kernel: ath10k_pci 0000:01:00.0 wlp1s0: renamed from wlan0
May 02 23:36:48 archlinux dbus-broker-launch[410]: Looking up NSS user entry for 'pulse'...
May 02 23:36:48 archlinux kernel: Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
May 02 23:36:48 archlinux dbus-broker-launch[410]: NSS returned no entry for 'pulse'
May 02 23:36:48 archlinux dbus-broker-launch[410]: Invalid user-name in /usr/share/dbus-1/system.d/pulseaudio-system.conf +27: user="pulse"
May 02 23:36:48 archlinux systemd[1]: Started D-Bus System Message Bus.
May 02 23:36:48 archlinux systemd-networkd[265]: wlan0: Interface name change detected, renamed to wlp1s0.
May 02 23:36:48 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: wlp1s0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:36:48 archlinux systemd[1]: Reached target Basic System.
May 02 23:36:48 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: wlp1s0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:36:48 archlinux systemd[1]: Starting Bluetooth service...
May 02 23:36:48 archlinux systemd[1]: Starting IIO Sensor Proxy service...
May 02 23:36:48 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: wlp1s0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: wlp1s0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: wlp1s0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:36:48 archlinux (uetoothd)[414]: bluetooth.service: ConfigurationDirectory 'bluetooth' already exists but the mode is different. (File system: 755 ConfigurationDirectoryMode: 555)
May 02 23:36:48 archlinux systemd[1]: Starting Home Area Manager...
May 02 23:36:48 archlinux systemd[1]: Starting User Login Management...
May 02 23:36:48 archlinux dbus-broker-launch[410]: Ready
May 02 23:36:48 archlinux systemd[1]: TPM2 PCR Barrier (User) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:36:48 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: wlp1s0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: wlp1s0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: wlp1s0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: wlp1s0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: wlp1s0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: wlp1s0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: wlp1s0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-networkd[265]: wlp1s0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:36:48 archlinux systemd-homed[416]: Successfully loaded private key pair.
May 02 23:36:48 archlinux systemd-homed[416]: Watching /home.
May 02 23:36:48 archlinux systemd-homed[416]: User record gabx.identity is signed only by us, accepting.
May 02 23:36:48 archlinux systemd-homed[416]: Added registered home for user gabx.
May 02 23:36:48 archlinux systemd[1]: Starting Authorization Manager...
May 02 23:36:48 archlinux systemd[1]: Started Home Area Manager.
May 02 23:36:48 archlinux systemd[1]: Finished Home Area Activation.
May 02 23:36:48 archlinux bluetoothd[414]: Bluetooth daemon 5.75
May 02 23:36:48 archlinux bluetoothd[414]: Starting SDP server
May 02 23:36:48 archlinux systemd[1]: Starting Permit User Sessions...
May 02 23:36:48 archlinux systemd[1]: Started Bluetooth service.
May 02 23:36:48 archlinux bluetoothd[414]: src/plugin.c:init_plugin() System does not support bap plugin
May 02 23:36:48 archlinux bluetoothd[414]: src/plugin.c:init_plugin() System does not support bass plugin
May 02 23:36:48 archlinux bluetoothd[414]: src/plugin.c:init_plugin() System does not support mcp plugin
May 02 23:36:48 archlinux bluetoothd[414]: src/plugin.c:init_plugin() System does not support vcp plugin
May 02 23:36:48 archlinux bluetoothd[414]: profiles/audio/micp.c:micp_init() D-Bus experimental not enabled
May 02 23:36:48 archlinux bluetoothd[414]: src/plugin.c:init_plugin() System does not support micp plugin
May 02 23:36:48 archlinux bluetoothd[414]: src/plugin.c:init_plugin() System does not support ccp plugin
May 02 23:36:48 archlinux bluetoothd[414]: src/plugin.c:init_plugin() System does not support csip plugin
May 02 23:36:48 archlinux kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May 02 23:36:48 archlinux kernel: Bluetooth: BNEP filters: protocol multicast
May 02 23:36:48 archlinux kernel: Bluetooth: BNEP socket layer initialized
May 02 23:36:48 archlinux bluetoothd[414]: Bluetooth management interface 1.22 initialized
May 02 23:36:48 archlinux systemd-logind[417]: New seat seat0.
May 02 23:36:48 archlinux systemd-logind[417]: Watching system buttons on /dev/input/event2 (Power Button)
May 02 23:36:48 archlinux systemd[1]: Finished Permit User Sessions.
May 02 23:36:48 archlinux systemd-logind[417]: Watching system buttons on /dev/input/event0 (Lid Switch)
May 02 23:36:48 archlinux systemd-logind[417]: Watching system buttons on /dev/input/event1 (Power Button)
May 02 23:36:48 archlinux systemd-logind[417]: Watching system buttons on /dev/input/event3 (AT Translated Set 2 keyboard)
May 02 23:36:48 archlinux systemd[1]: Started User Login Management.
May 02 23:36:48 archlinux systemd[1]: Reached target Bluetooth Support.
May 02 23:36:48 archlinux kernel: scsi 0:0:0:0: Direct-Access     Generic  STORAGE DEVICE   1404 PQ: 0 ANSI: 6
May 02 23:36:48 archlinux kernel: scsi 0:0:0:0: Attached scsi generic sg0 type 0
May 02 23:36:48 archlinux systemd[1]: Started Getty on tty1.
May 02 23:36:48 archlinux systemd[1]: Reached target Login Prompts.
May 02 23:36:48 archlinux systemd[1]: Reached target Multi-User System.
May 02 23:36:48 archlinux systemd[1]: Reached target Graphical Interface.
May 02 23:36:48 archlinux systemd[1]: Starting Hostname Service...
May 02 23:36:48 archlinux polkitd[422]: Started polkitd version 124
May 02 23:36:48 archlinux polkitd[422]: Loading rules from directory /etc/polkit-1/rules.d
May 02 23:36:48 archlinux polkitd[422]: Loading rules from directory /usr/share/polkit-1/rules.d
May 02 23:36:48 archlinux polkitd[422]: Finished loading, compiling and executing 10 rules
May 02 23:36:48 archlinux systemd[1]: Started Authorization Manager.
May 02 23:36:48 archlinux polkitd[422]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
May 02 23:36:48 archlinux systemd[1]: Started IIO Sensor Proxy service.
May 02 23:36:48 archlinux systemd[1]: Started Hostname Service.
May 02 23:36:48 archlinux systemd[1]: Startup finished in 6.416s (firmware) + 2.028s (loader) + 3.699s (kernel) + 2.953s (userspace) = 15.098s.
May 02 23:36:48 archlinux agetty[431]: failed to open credentials directory
May 02 23:36:48 archlinux kernel: sd 0:0:0:0: [sda] Media removed, stopped polling
May 02 23:36:48 archlinux kernel: sd 0:0:0:0: [sda] Attached SCSI removable disk
May 02 23:36:48 archlinux kernel: input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input27
May 02 23:36:48 archlinux kernel: input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input28
May 02 23:36:48 archlinux kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input29
May 02 23:36:48 archlinux kernel: input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input30
May 02 23:36:48 archlinux kernel: input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input31
May 02 23:36:48 archlinux systemd[1]: Reached target Sound Card.
May 02 23:36:49 archlinux bluetoothd[414]: src/adapter.c:reset_adv_monitors_complete() Failed to reset Adv Monitors: Failed (0x03)
May 02 23:36:49 archlinux bluetoothd[414]: Battery Provider Manager created
May 02 23:36:49 archlinux kernel: Bluetooth: MGMT ver 1.22
May 02 23:36:49 archlinux kernel: NET: Registered PF_ALG protocol family
May 02 23:36:49 archlinux bluetoothd[414]: Failed to clear UUIDs: Failed (0x03)
May 02 23:36:49 archlinux bluetoothd[414]: Failed to add UUID: Failed (0x03)
May 02 23:36:49 archlinux bluetoothd[414]: Failed to add UUID: Failed (0x03)
May 02 23:36:49 archlinux bluetoothd[414]: Failed to add UUID: Failed (0x03)
May 02 23:36:49 archlinux bluetoothd[414]: Failed to set mode: Failed (0x03)
May 02 23:36:49 archlinux bluetoothd[414]: Failed to add UUID: Failed (0x03)
May 02 23:36:49 archlinux bluetoothd[414]: Failed to add UUID: Failed (0x03)
May 02 23:36:49 archlinux bluetoothd[414]: Failed to add UUID: Failed (0x03)
May 02 23:36:53 archlinux systemd[1]: systemd-rfkill.service: Deactivated successfully.
May 02 23:36:53 archlinux systemd-homed[416]: gabx: changing state inactive → activating-for-acquire
May 02 23:36:53 archlinux systemd-homework[479]: None of the supplied plaintext passwords unlock the user record's hashed passwords.
May 02 23:36:53 archlinux systemd-homed[416]: Activation failed: Required key not available
May 02 23:36:53 archlinux systemd-homed[416]: gabx: changing state activating-for-acquire → inactive
May 02 23:36:53 archlinux systemd-homed[416]: Got notification that all sessions of user gabx ended, deactivating automatically.
May 02 23:36:53 archlinux systemd-homed[416]: Home gabx already deactivated, no automatic deactivation needed.
May 02 23:36:58 archlinux systemd-homed[416]: gabx: changing state inactive → activating-for-acquire
May 02 23:36:58 archlinux systemd-homework[481]: Provided password unlocks user record.
May 02 23:36:58 archlinux systemd-homework[481]: Read embedded .identity file.
May 02 23:36:59 archlinux systemd-homework[481]: Provided password unlocks user record.
May 02 23:36:59 archlinux systemd-homework[481]: Reconciling embedded user identity completed (host and embedded version were identical).
May 02 23:36:59 archlinux systemd-homework[481]: Recursive changing of ownership not necessary, skipped.
May 02 23:36:59 archlinux systemd-homework[481]: Synchronized disk.
May 02 23:36:59 archlinux systemd-homework[481]: Moving to final mount point /home/gabx completed.
May 02 23:36:59 archlinux systemd-homework[481]: Everything completed.
May 02 23:36:59 archlinux systemd-homed[416]: Home gabx is signed exclusively by our key, accepting.
May 02 23:36:59 archlinux systemd-homed[416]: gabx: changing state activating-for-acquire → active
May 02 23:36:59 archlinux login[431]: pam_systemd_home(login:auth): Home for user gabx successfully acquired.
May 02 23:36:59 archlinux login[431]: pam_unix(login:session): session opened for user gabx(uid=60509) by gabx(uid=0)
May 02 23:36:59 archlinux systemd-logind[417]: New session 1 of user gabx.
May 02 23:36:59 archlinux systemd[1]: Created slice User Slice of UID 60509.
May 02 23:36:59 archlinux systemd[1]: Starting User Runtime Directory /run/user/60509...
May 02 23:36:59 archlinux systemd[1]: Finished User Runtime Directory /run/user/60509.
May 02 23:36:59 archlinux systemd[1]: Starting User Manager for UID 60509...
May 02 23:36:59 archlinux (systemd)[486]: pam_systemd_home(systemd-user:account): Home for user gabx successfully acquired.
May 02 23:36:59 archlinux (systemd)[486]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[gabx] ruser=[<unknown>] rhost=[<unknown>]
May 02 23:36:59 archlinux (systemd)[486]: pam_unix(systemd-user:session): session opened for user gabx(uid=60509) by gabx(uid=0)
May 02 23:34:18 archlinux systemd-journald[210]: /var/log/journal/bc47046c25d64071a8322148626a91cb/user-60509.journal: Journal file uses a different sequence number ID, rotating.
May 02 23:34:18 archlinux login[446]: LOGIN ON tty1 BY gabx
May 02 23:34:18 archlinux systemd[1]: Started User Manager for UID 60509.
May 02 23:34:18 archlinux systemd[1]: Started Session 1 of User gabx.
May 02 23:34:23 archlinux systemd[1]: Starting RealtimeKit Scheduling Policy Service...
May 02 23:34:23 archlinux systemd[1]: Started RealtimeKit Scheduling Policy Service.
May 02 23:34:23 archlinux rtkit-daemon[609]: Successfully called chroot.
May 02 23:34:23 archlinux rtkit-daemon[609]: Successfully dropped privileges.
May 02 23:34:23 archlinux rtkit-daemon[609]: Successfully limited resources.
May 02 23:34:23 archlinux rtkit-daemon[609]: Running.
May 02 23:34:23 archlinux rtkit-daemon[609]: Watchdog thread running.
May 02 23:34:23 archlinux rtkit-daemon[609]: Canary thread running.
May 02 23:34:23 archlinux rtkit-daemon[609]: Supervising 0 threads of 0 processes of 0 users.
May 02 23:34:23 archlinux rtkit-daemon[609]: Supervising 0 threads of 0 processes of 0 users.
May 02 23:34:23 archlinux rtkit-daemon[609]: Successfully made thread 608 of process 578 owned by '60509' RT at priority 20.
May 02 23:34:23 archlinux rtkit-daemon[609]: Supervising 1 threads of 1 processes of 1 users.
May 02 23:34:24 archlinux systemd[1]: Starting Manage, Install and Generate Color Profiles...
May 02 23:34:24 archlinux systemd[1]: Started Manage, Install and Generate Color Profiles.
May 02 23:34:24 archlinux dbus-broker-launch[423]: Activation request for 'org.freedesktop.Avahi' failed: The systemd unit 'dbus-org.freedesktop.Avahi.service' could not be found.
May 02 23:34:24 archlinux systemd[1]: Reached target User and Group Name Lookups.
May 02 23:34:24 archlinux systemd[1]: Starting Accounts Service...
May 02 23:34:24 archlinux accounts-daemon[698]: started daemon version 23.13.0
May 02 23:34:24 archlinux systemd[1]: Started Accounts Service.
May 02 23:34:24 archlinux systemd[1]: Starting Daemon for power management...
May 02 23:34:24 archlinux kernel: rfkill: input handler disabled
May 02 23:34:25 archlinux rtkit-daemon[609]: Successfully made thread 803 of process 803 owned by '60509' high priority at nice level -11.
May 02 23:34:25 archlinux rtkit-daemon[609]: Supervising 2 threads of 2 processes of 1 users.
May 02 23:34:25 archlinux systemd[1]: Started Daemon for power management.
May 02 23:34:25 archlinux rtkit-daemon[609]: Successfully made thread 943 of process 943 owned by '60509' high priority at nice level -11.
May 02 23:34:25 archlinux rtkit-daemon[609]: Supervising 2 threads of 2 processes of 1 users.
May 02 23:34:25 archlinux rtkit-daemon[609]: Successfully made thread 946 of process 946 owned by '60509' high priority at nice level -11.
May 02 23:34:25 archlinux rtkit-daemon[609]: Supervising 2 threads of 2 processes of 1 users.
May 02 23:34:26 archlinux rtkit-daemon[609]: Successfully made thread 949 of process 949 owned by '60509' high priority at nice level -11.
May 02 23:34:26 archlinux rtkit-daemon[609]: Supervising 2 threads of 2 processes of 1 users.
May 02 23:34:26 archlinux rtkit-daemon[609]: Successfully made thread 953 of process 953 owned by '60509' high priority at nice level -11.
May 02 23:34:26 archlinux rtkit-daemon[609]: Supervising 2 threads of 2 processes of 1 users.
May 02 23:34:55 archlinux systemd[1]: systemd-hostnamed.service: Deactivated successfully.
May 02 23:35:55 archlinux systemd[1]: Starting Disk Manager...
May 02 23:35:55 archlinux udisksd[991]: udisks daemon version 2.10.1 starting
May 02 23:35:55 archlinux systemd[1]: Started Disk Manager.
May 02 23:35:55 archlinux udisksd[991]: Acquired the name org.freedesktop.UDisks2 on the system message bus
May 02 23:36:02 archlinux systemd-logind[429]: Power key pressed short.
May 02 23:36:02 archlinux systemd-logind[429]: Powering off...
May 02 23:36:02 archlinux systemd-logind[429]: System is powering down.
May 02 23:36:02 archlinux kernel: rfkill: input handler enabled
May 02 23:36:02 archlinux systemd[1]: Stopping Session 1 of User gabx...
May 02 23:36:02 archlinux systemd[1]: Removed slice Slice /system/modprobe.
May 02 23:36:02 archlinux systemd[1]: Stopped target Bluetooth Support.
May 02 23:36:02 archlinux systemd[1]: Stopped target Graphical Interface.
May 02 23:36:02 archlinux systemd[1]: Stopped target Multi-User System.
May 02 23:36:02 archlinux systemd[1]: Stopped target Login Prompts.
May 02 23:36:02 archlinux systemd[1]: Stopped target Containers.
May 02 23:36:02 archlinux systemd[1]: Stopped target Host and Network Name Lookups.
May 02 23:36:02 archlinux systemd[1]: Stopped target Remote Encrypted Volumes.
May 02 23:36:02 archlinux systemd[1]: Stopped target Sound Card.
May 02 23:36:02 archlinux systemd[1]: Stopped target Timer Units.
May 02 23:36:02 archlinux systemd[1]: archlinux-keyring-wkd-sync.timer: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Stopped Refresh existing PGP keys of archlinux-keyring regularly.
May 02 23:36:02 archlinux login[446]: pam_systemd_home(login:session): Not deactivating home directory of gabx, as it is still used.
May 02 23:36:02 archlinux systemd[1]: man-db.timer: Deactivated successfully.
May 02 23:36:02 archlinux login[446]: pam_unix(login:session): session closed for user gabx
May 02 23:36:02 archlinux systemd[1]: Stopped Daily man-db regeneration.
May 02 23:36:02 archlinux systemd[1]: shadow.timer: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Stopped Daily verification of password and group files.
May 02 23:36:02 archlinux systemd[1]: systemd-tmpfiles-clean.timer: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Stopped Daily Cleanup of Temporary Directories.
May 02 23:36:02 archlinux systemd[1]: Stopped target System Time Set.
May 02 23:36:02 archlinux systemd[1]: lvm2-lvmpolld.socket: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Closed LVM2 poll daemon socket.
May 02 23:36:02 archlinux systemd[1]: systemd-rfkill.socket: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Closed Load/Save RF Kill Switch Status /dev/rfkill Watch.
May 02 23:36:02 archlinux systemd[1]: Stopping Accounts Service...
May 02 23:36:02 archlinux bluetoothd[426]: Terminating
May 02 23:36:02 archlinux bluetoothd[426]: Battery Provider Manager destroyed
May 02 23:36:02 archlinux bluetoothd[426]: Stopping SDP server
May 02 23:36:02 archlinux bluetoothd[426]: Exit
May 02 23:36:02 archlinux systemd[1]: Stopping Bluetooth service...
May 02 23:36:02 archlinux systemd[1]: Stopping Manage, Install and Generate Color Profiles...
May 02 23:36:02 archlinux systemd[1]: Stopping Getty on tty1...
May 02 23:36:02 archlinux systemd[1]: Stopping IIO Sensor Proxy service...
May 02 23:36:02 archlinux systemd[1]: Starting Generate shutdown-ramfs...
May 02 23:36:02 archlinux systemd[1]: Stopping Authorization Manager...
May 02 23:36:02 archlinux systemd[1]: Stopping RealtimeKit Scheduling Policy Service...
May 02 23:36:02 archlinux systemd[1]: Stopping Disk Manager...
May 02 23:36:02 archlinux systemd[1]: Stopping Daemon for power management...
May 02 23:36:02 archlinux systemd[1]: run-user-60509-gvfs.mount: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Unmounted /run/user/60509/gvfs.
May 02 23:36:02 archlinux systemd[1]: bluetooth.service: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Stopped Bluetooth service.
May 02 23:36:02 archlinux systemd[1]: getty@tty1.service: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Stopped Getty on tty1.
May 02 23:36:02 archlinux systemd[1]: rtkit-daemon.service: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Stopped RealtimeKit Scheduling Policy Service.
May 02 23:36:02 archlinux systemd[1]: accounts-daemon.service: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Stopped Accounts Service.
May 02 23:36:02 archlinux systemd-logind[429]: Session 1 logged out. Waiting for processes to exit.
May 02 23:36:02 archlinux systemd[1]: Removed slice Slice /system/getty.
May 02 23:36:02 archlinux systemd[1]: iio-sensor-proxy.service: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Stopped IIO Sensor Proxy service.
May 02 23:36:02 archlinux udisksd[991]: udisks daemon version 2.10.1 exiting
May 02 23:36:02 archlinux mkinitcpio[1051]: ==> Starting build: 'none'
May 02 23:36:02 archlinux mkinitcpio[1051]:   -> Running build hook: [sd-shutdown]
May 02 23:36:02 archlinux systemd[1]: polkit.service: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Stopped Authorization Manager.
May 02 23:36:02 archlinux systemd[1]: colord.service: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Stopped Manage, Install and Generate Color Profiles.
May 02 23:36:02 archlinux systemd[1]: upower.service: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Stopped Daemon for power management.
May 02 23:36:02 archlinux systemd[1]: udisks2.service: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Stopped Disk Manager.
May 02 23:36:02 archlinux systemd[1]: session-1.scope: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Stopped Session 1 of User gabx.
May 02 23:36:02 archlinux systemd[1]: session-1.scope: Consumed 4.223s CPU time.
May 02 23:36:02 archlinux systemd[1]: Stopping User Login Management...
May 02 23:36:02 archlinux systemd[1]: Stopping User Manager for UID 60509...
May 02 23:36:02 archlinux systemd-logind[429]: Removed session 1.
May 02 23:36:02 archlinux systemd[1]: systemd-logind.service: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Stopped User Login Management.
May 02 23:36:02 archlinux systemd-homed[428]: Got notification that all sessions of user gabx ended, deactivating automatically.
May 02 23:36:02 archlinux systemd-homed[428]: gabx: changing state active → deactivating
May 02 23:36:02 archlinux systemd[1]: user@60509.service: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Stopped User Manager for UID 60509.
May 02 23:36:02 archlinux mkinitcpio[1051]: ==> Build complete.
May 02 23:36:02 archlinux systemd[1]: home-gabx.mount: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Unmounted /home/gabx.
May 02 23:36:02 archlinux systemd[1]: mkinitcpio-generate-shutdown-ramfs.service: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Finished Generate shutdown-ramfs.
May 02 23:36:02 archlinux systemd[1]: Stopping Permit User Sessions...
May 02 23:36:02 archlinux systemd[1]: Stopping User Runtime Directory /run/user/60509...
May 02 23:36:02 archlinux systemd[1]: systemd-user-sessions.service: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Stopped Permit User Sessions.
May 02 23:36:02 archlinux systemd[1]: Stopped target Network.
May 02 23:36:02 archlinux systemd[1]: Stopped target User and Group Name Lookups.
May 02 23:36:02 archlinux systemd[1]: Stopped target Remote File Systems.
May 02 23:36:02 archlinux systemd[1]: Stopping Home Area Activation...
May 02 23:36:02 archlinux systemd[1]: Stopping Network Configuration...
May 02 23:36:02 archlinux systemd[1]: run-user-60509.mount: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Unmounted /run/user/60509.
May 02 23:36:02 archlinux systemd[1]: user-runtime-dir@60509.service: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Stopped User Runtime Directory /run/user/60509.
May 02 23:36:02 archlinux systemd[1]: Removed slice User Slice of UID 60509.
May 02 23:36:02 archlinux systemd[1]: user-60509.slice: Consumed 4.723s CPU time.
May 02 23:36:02 archlinux systemd[1]: systemd-networkd.service: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Stopped Network Configuration.
May 02 23:36:02 archlinux systemd[1]: Stopped target Preparation for Network.
May 02 23:36:02 archlinux systemd[1]: systemd-network-generator.service: Deactivated successfully.
May 02 23:36:02 archlinux systemd[1]: Stopped Generate network units from Kernel command line.
May 02 23:36:02 archlinux systemd-homed[428]: Automatically deactivating home of user gabx.
May 02 23:36:03 archlinux systemd-homework[1195]: Syncing completed.
May 02 23:36:03 archlinux systemd-homework[1195]: Unmounting completed.
May 02 23:36:03 archlinux systemd-homework[1195]: Everything completed.
May 02 23:36:03 archlinux systemd-homed[428]: gabx: changing state deactivating → inactive
May 02 23:36:03 archlinux systemd-homed[428]: Home gabx is already deactivated.
May 02 23:36:03 archlinux systemd[1]: systemd-homed-activate.service: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Stopped Home Area Activation.
May 02 23:36:03 archlinux systemd[1]: Stopping Home Area Manager...
May 02 23:36:03 archlinux systemd[1]: systemd-homed.service: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Stopped Home Area Manager.
May 02 23:36:03 archlinux systemd[1]: Stopped target Basic System.
May 02 23:36:03 archlinux systemd[1]: Stopped target Path Units.
May 02 23:36:03 archlinux systemd[1]: Stopped target Slice Units.
May 02 23:36:03 archlinux systemd[1]: Removed slice User and Session Slice.
May 02 23:36:03 archlinux systemd[1]: user.slice: Consumed 4.723s CPU time.
May 02 23:36:03 archlinux systemd[1]: Stopped target Socket Units.
May 02 23:36:03 archlinux systemd[1]: dirmngr@etc-pacman.d-gnupg.socket: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Closed GnuPG network certificate management daemon for /etc/pacman.d/gnupg.
May 02 23:36:03 archlinux systemd[1]: Removed slice Slice /system/dirmngr.
May 02 23:36:03 archlinux systemd[1]: gpg-agent-browser@etc-pacman.d-gnupg.socket: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers) for /etc/pacman.d/gnupg.
May 02 23:36:03 archlinux systemd[1]: Removed slice Slice /system/gpg-agent-browser.
May 02 23:36:03 archlinux systemd[1]: gpg-agent-extra@etc-pacman.d-gnupg.socket: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Closed GnuPG cryptographic agent and passphrase cache (restricted) for /etc/pacman.d/gnupg.
May 02 23:36:03 archlinux systemd[1]: Removed slice Slice /system/gpg-agent-extra.
May 02 23:36:03 archlinux systemd[1]: gpg-agent-ssh@etc-pacman.d-gnupg.socket: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Closed GnuPG cryptographic agent (ssh-agent emulation) for /etc/pacman.d/gnupg.
May 02 23:36:03 archlinux systemd[1]: Removed slice Slice /system/gpg-agent-ssh.
May 02 23:36:03 archlinux systemd[1]: gpg-agent@etc-pacman.d-gnupg.socket: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Closed GnuPG cryptographic agent and passphrase cache for /etc/pacman.d/gnupg.
May 02 23:36:03 archlinux systemd[1]: Removed slice Slice /system/gpg-agent.
May 02 23:36:03 archlinux systemd[1]: keyboxd@etc-pacman.d-gnupg.socket: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Closed GnuPG public key management service for /etc/pacman.d/gnupg.
May 02 23:36:03 archlinux systemd[1]: Removed slice Slice /system/keyboxd.
May 02 23:36:03 archlinux systemd[1]: systemd-networkd.socket: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Closed Network Service Netlink Socket.
May 02 23:36:03 archlinux dbus-broker[425]: Dispatched 2192 messages @ 6(±7)μs / message.
May 02 23:36:03 archlinux systemd[1]: Stopping D-Bus System Message Bus...
May 02 23:36:03 archlinux systemd[1]: dbus-broker.service: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Stopped D-Bus System Message Bus.
May 02 23:36:03 archlinux systemd[1]: dbus.socket: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Closed D-Bus System Message Bus Socket.
May 02 23:36:03 archlinux systemd[1]: Stopped target System Initialization.
May 02 23:36:03 archlinux systemd[1]: proc-sys-fs-binfmt_misc.automount: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Unset automount Arbitrary Executable File Formats File System Automount Point.
May 02 23:36:03 archlinux systemd[1]: Stopped target Local Encrypted Volumes.
May 02 23:36:03 archlinux systemd[1]: systemd-ask-password-console.path: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
May 02 23:36:03 archlinux systemd[1]: systemd-ask-password-wall.path: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Stopped Forward Password Requests to Wall Directory Watch.
May 02 23:36:03 archlinux systemd[1]: Stopped target Local Integrity Protected Volumes.
May 02 23:36:03 archlinux systemd[1]: Stopped target Local Verity Protected Volumes.
May 02 23:36:03 archlinux systemd[1]: Stopping Load/Save Screen Backlight Brightness of backlight:intel_backlight...
May 02 23:36:03 archlinux systemd[1]: Stopping Load/Save Screen Backlight Brightness of leds:platform::kbd_backlight...
May 02 23:36:03 archlinux systemd[1]: systemd-boot-random-seed.service: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Stopped Update Boot Loader Random Seed.
May 02 23:36:03 archlinux systemd[1]: systemd-boot-update.service: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Stopped Automatic Boot Loader Update.
May 02 23:36:03 archlinux systemd[1]: Stopping Load/Save OS Random Seed...
May 02 23:36:03 archlinux systemd[1]: Stopping Network Name Resolution...
May 02 23:36:03 archlinux systemd[1]: Stopping Network Time Synchronization...
May 02 23:36:03 archlinux systemd[1]: Stopping Record System Boot/Shutdown in UTMP...
May 02 23:36:03 archlinux systemd[1]: systemd-backlight@backlight:intel_backlight.service: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Stopped Load/Save Screen Backlight Brightness of backlight:intel_backlight.
May 02 23:36:03 archlinux systemd[1]: systemd-timesyncd.service: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Stopped Network Time Synchronization.
May 02 23:36:03 archlinux systemd[1]: systemd-resolved.service: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Stopped Network Name Resolution.
May 02 23:36:03 archlinux systemd[1]: systemd-random-seed.service: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Stopped Load/Save OS Random Seed.
May 02 23:36:03 archlinux systemd[1]: systemd-backlight@leds:platform::kbd_backlight.service: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Stopped Load/Save Screen Backlight Brightness of leds:platform::kbd_backlight.
May 02 23:36:03 archlinux systemd[1]: Removed slice Slice /system/systemd-backlight.
May 02 23:36:03 archlinux systemd[1]: systemd-sysctl.service: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Stopped Apply Kernel Variables.
May 02 23:36:03 archlinux systemd[1]: systemd-coredump.socket: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Closed Process Core Dump Socket.
May 02 23:36:03 archlinux systemd[1]: systemd-modules-load.service: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Stopped Load Kernel Modules.
May 02 23:36:03 archlinux systemd[1]: systemd-update-utmp.service: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Stopped Record System Boot/Shutdown in UTMP.
May 02 23:36:03 archlinux systemd[1]: systemd-tmpfiles-setup.service: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Stopped Create Volatile Files and Directories.
May 02 23:36:03 archlinux systemd[1]: Stopped target Local File Systems.
May 02 23:36:03 archlinux systemd[1]: Unmounting /boot...
May 02 23:36:03 archlinux systemd[1]: Unmounting Temporary Directory /tmp...
May 02 23:36:03 archlinux systemd[1]: Stopping Flush Journal to Persistent Storage...
May 02 23:36:03 archlinux systemd[1]: boot.mount: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Unmounted /boot.
May 02 23:36:03 archlinux systemd[1]: tmp.mount: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Unmounted Temporary Directory /tmp.
May 02 23:36:03 archlinux systemd[1]: Stopped target Swaps.
May 02 23:36:03 archlinux systemd[1]: systemd-fsck@dev-disk-by\x2duuid-2879\x2d4041.service: Deactivated successfully.
May 02 23:36:03 archlinux systemd[1]: Stopped File System Check on /dev/disk/by-uuid/2879-4041.
May 02 23:36:03 archlinux systemd[1]: Removed slice Slice /system/systemd-fsck.
May 02 23:34:06 archlinux kernel: Linux version 6.8.7-arch1-1 (linux@archlinux) (gcc (GCC) 13.2.1 20230801, GNU ld (GNU Binutils) 2.42.0) #1 SMP PREEMPT_DYNAMIC Wed, 17 Apr 2024 15:20:28 +0000
May 02 23:34:06 archlinux kernel: Command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root=LABEL=magnolia rootflags=subvol=@ rw
May 02 23:34:06 archlinux kernel: BIOS-provided physical RAM map:
May 02 23:34:06 archlinux kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
May 02 23:34:06 archlinux kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
May 02 23:34:06 archlinux kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009dfff] usable
May 02 23:34:06 archlinux kernel: BIOS-e820: [mem 0x000000000009e000-0x00000000000fffff] reserved
May 02 23:34:06 archlinux kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000076d3afff] usable
May 02 23:34:06 archlinux kernel: BIOS-e820: [mem 0x0000000076d3b000-0x0000000076d3bfff] ACPI NVS
May 02 23:34:06 archlinux kernel: BIOS-e820: [mem 0x0000000076d3c000-0x0000000076d3cfff] reserved
May 02 23:34:06 archlinux kernel: BIOS-e820: [mem 0x0000000076d3d000-0x0000000078027fff] usable
May 02 23:34:06 archlinux kernel: BIOS-e820: [mem 0x0000000078028000-0x0000000079127fff] ACPI NVS
May 02 23:34:06 archlinux kernel: BIOS-e820: [mem 0x0000000079128000-0x000000007ed3dfff] usable
May 02 23:34:06 archlinux kernel: BIOS-e820: [mem 0x000000007ed3e000-0x000000007f72dfff] reserved
May 02 23:34:06 archlinux kernel: BIOS-e820: [mem 0x000000007f72e000-0x000000007ff7dfff] ACPI NVS
May 02 23:34:06 archlinux kernel: BIOS-e820: [mem 0x000000007ff7e000-0x000000007fffdfff] ACPI data
May 02 23:34:06 archlinux kernel: BIOS-e820: [mem 0x000000007fffe000-0x000000007fffefff] usable
May 02 23:34:06 archlinux kernel: BIOS-e820: [mem 0x000000007ffff000-0x000000008cffffff] reserved
May 02 23:34:06 archlinux kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
May 02 23:34:06 archlinux kernel: BIOS-e820: [mem 0x00000000fd000000-0x00000000fe7fffff] reserved
May 02 23:34:06 archlinux kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
May 02 23:34:06 archlinux kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
May 02 23:34:06 archlinux kernel: BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
May 02 23:34:06 archlinux kernel: BIOS-e820: [mem 0x00000000fed84000-0x00000000fed84fff] reserved
May 02 23:34:06 archlinux kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
May 02 23:34:06 archlinux kernel: BIOS-e820: [mem 0x00000000ffa00000-0x00000000ffffffff] reserved
May 02 23:34:06 archlinux kernel: BIOS-e820: [mem 0x0000000100000000-0x0000000271ffffff] usable
May 02 23:34:06 archlinux kernel: NX (Execute Disable) protection: active
May 02 23:34:06 archlinux kernel: APIC: Static calls initialized
May 02 23:34:06 archlinux kernel: e820: update [mem 0x75e3e018-0x75e4e057] usable ==> usable
May 02 23:34:06 archlinux kernel: e820: update [mem 0x75e3e018-0x75e4e057] usable ==> usable
May 02 23:34:06 archlinux kernel: extended physical RAM map:
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x0000000000059000-0x000000000009dfff] usable
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x000000000009e000-0x00000000000fffff] reserved
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x0000000000100000-0x0000000075e3e017] usable
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x0000000075e3e018-0x0000000075e4e057] usable
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x0000000075e4e058-0x0000000076d3afff] usable
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x0000000076d3b000-0x0000000076d3bfff] ACPI NVS
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x0000000076d3c000-0x0000000076d3cfff] reserved
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x0000000076d3d000-0x0000000078027fff] usable
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x0000000078028000-0x0000000079127fff] ACPI NVS
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x0000000079128000-0x000000007ed3dfff] usable
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x000000007ed3e000-0x000000007f72dfff] reserved
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x000000007f72e000-0x000000007ff7dfff] ACPI NVS
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x000000007ff7e000-0x000000007fffdfff] ACPI data
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x000000007fffe000-0x000000007fffefff] usable
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x000000007ffff000-0x000000008cffffff] reserved
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x00000000fd000000-0x00000000fe7fffff] reserved
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x00000000fed84000-0x00000000fed84fff] reserved
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x00000000ffa00000-0x00000000ffffffff] reserved
May 02 23:34:06 archlinux kernel: reserve setup_data: [mem 0x0000000100000000-0x0000000271ffffff] usable
May 02 23:34:06 archlinux kernel: efi: EFI v2.5 by INSYDE Corp.
May 02 23:34:06 archlinux kernel: efi: ACPI 2.0=0x7fffd014 SMBIOS=0x7efb3000 SMBIOS 3.0=0x7efb1000 ESRT=0x7efaf018 PROP=0x76d37858 RNG=0x7ffa6f98 INITRD=0x7913dc18 TPMEventLog=0x7913b018 
May 02 23:34:06 archlinux kernel: random: crng init done
May 02 23:34:06 archlinux kernel: TPM Final Events table not present
May 02 23:34:06 archlinux kernel: efi: Remove mem43: MMIO range=[0xe0000000-0xefffffff] (256MB) from e820 map
May 02 23:34:06 archlinux kernel: e820: remove [mem 0xe0000000-0xefffffff] reserved
May 02 23:34:06 archlinux kernel: efi: Remove mem44: MMIO range=[0xfd000000-0xfe7fffff] (24MB) from e820 map
May 02 23:34:06 archlinux kernel: e820: remove [mem 0xfd000000-0xfe7fffff] reserved
May 02 23:34:06 archlinux kernel: efi: Not removing mem45: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
May 02 23:34:06 archlinux kernel: efi: Not removing mem46: MMIO range=[0xfed00000-0xfed00fff] (4KB) from e820 map
May 02 23:34:06 archlinux kernel: efi: Not removing mem47: MMIO range=[0xfed10000-0xfed19fff] (40KB) from e820 map
May 02 23:34:06 archlinux kernel: efi: Not removing mem48: MMIO range=[0xfed84000-0xfed84fff] (4KB) from e820 map
May 02 23:34:06 archlinux kernel: efi: Not removing mem49: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
May 02 23:34:06 archlinux kernel: efi: Remove mem50: MMIO range=[0xffa00000-0xffffffff] (6MB) from e820 map
May 02 23:34:06 archlinux kernel: e820: remove [mem 0xffa00000-0xffffffff] reserved
May 02 23:34:06 archlinux kernel: SMBIOS 3.0.0 present.
May 02 23:34:06 archlinux kernel: DMI: LENOVO 80VF/VIUU4, BIOS 2JCN39WW 05/31/2017
May 02 23:34:06 archlinux kernel: tsc: Detected 2700.000 MHz processor
May 02 23:34:06 archlinux kernel: tsc: Detected 2699.909 MHz TSC
May 02 23:34:06 archlinux kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
May 02 23:34:06 archlinux kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
May 02 23:34:06 archlinux kernel: last_pfn = 0x272000 max_arch_pfn = 0x400000000
May 02 23:34:06 archlinux kernel: MTRR map: 4 entries (3 fixed + 1 variable; max 23), built from 10 variable MTRRs
May 02 23:34:06 archlinux kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
May 02 23:34:06 archlinux kernel: last_pfn = 0x7ffff max_arch_pfn = 0x400000000
May 02 23:34:06 archlinux kernel: esrt: Reserving ESRT space from 0x000000007efaf018 to 0x000000007efaf078.
May 02 23:34:06 archlinux kernel: Using GB pages for direct mapping
May 02 23:34:06 archlinux kernel: Secure boot disabled
May 02 23:34:06 archlinux kernel: RAMDISK: [mem 0x722d2000-0x73a07fff]
May 02 23:34:06 archlinux kernel: ACPI: Early table checksum verification disabled
May 02 23:34:06 archlinux kernel: ACPI: RSDP 0x000000007FFFD014 000024 (v02 LENOVO)
May 02 23:34:06 archlinux kernel: ACPI: XSDT 0x000000007FFB7188 00012C (v01 LENOVO CB-01    00000001      01000013)
May 02 23:34:06 archlinux kernel: ACPI: FACP 0x000000007FFEA000 00010C (v05 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: DSDT 0x000000007FFBB000 02AA88 (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: FACS 0x000000007FF5A000 000040
May 02 23:34:06 archlinux kernel: ACPI: UEFI 0x000000007FFFC000 000236 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: UEFI 0x000000007FFFB000 000042 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: MSDM 0x000000007FFFA000 000055 (v03 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: SSDT 0x000000007FFF9000 0004C3 (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: SSDT 0x000000007FFF8000 000046 (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: TPM2 0x000000007FFF7000 000034 (v03 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: SSDT 0x000000007FFF3000 003113 (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: SSDT 0x000000007FFEF000 0038D7 (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: ASF! 0x000000007FFEE000 0000A5 (v32 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: ASPT 0x000000007FFED000 000034 (v07 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: BOOT 0x000000007FFEC000 000028 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: DBGP 0x000000007FFEB000 000034 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: HPET 0x000000007FFE9000 000038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: APIC 0x000000007FFE8000 0000BC (v03 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: MCFG 0x000000007FFE7000 00003C (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: SLIC 0x000000007FFE6000 000176 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: SSDT 0x000000007FFBA000 0006CF (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: SSDT 0x000000007FFB9000 0001BC (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: LPIT 0x000000007FFB8000 000094 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: WSMT 0x000000007FFB6000 000028 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: SSDT 0x000000007FFB5000 00029F (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: SSDT 0x000000007FFB4000 000346 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: SSDT 0x000000007FFB0000 003002 (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: SSDT 0x000000007FFAF000 00051E (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: DBGP 0x000000007FFAE000 000034 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: DBG2 0x000000007FFAD000 000054 (v00 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: SSDT 0x000000007FFAC000 000F61 (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: SSDT 0x000000007FFAB000 000EDE (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: DMAR 0x000000007FFAA000 000114 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: NHLT 0x000000007FFA9000 00002D (v00 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: FPDT 0x000000007FFA8000 000044 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: BGRT 0x000000007FFA7000 000038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:34:06 archlinux kernel: ACPI: Reserving FACP table memory at [mem 0x7ffea000-0x7ffea10b]
May 02 23:34:06 archlinux kernel: ACPI: Reserving DSDT table memory at [mem 0x7ffbb000-0x7ffe5a87]
May 02 23:34:06 archlinux kernel: ACPI: Reserving FACS table memory at [mem 0x7ff5a000-0x7ff5a03f]
May 02 23:34:06 archlinux kernel: ACPI: Reserving UEFI table memory at [mem 0x7fffc000-0x7fffc235]
May 02 23:34:06 archlinux kernel: ACPI: Reserving UEFI table memory at [mem 0x7fffb000-0x7fffb041]
May 02 23:34:06 archlinux kernel: ACPI: Reserving MSDM table memory at [mem 0x7fffa000-0x7fffa054]
May 02 23:34:06 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7fff9000-0x7fff94c2]
May 02 23:34:06 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7fff8000-0x7fff8045]
May 02 23:34:06 archlinux kernel: ACPI: Reserving TPM2 table memory at [mem 0x7fff7000-0x7fff7033]
May 02 23:34:06 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7fff3000-0x7fff6112]
May 02 23:34:06 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffef000-0x7fff28d6]
May 02 23:34:06 archlinux kernel: ACPI: Reserving ASF! table memory at [mem 0x7ffee000-0x7ffee0a4]
May 02 23:34:06 archlinux kernel: ACPI: Reserving ASPT table memory at [mem 0x7ffed000-0x7ffed033]
May 02 23:34:06 archlinux kernel: ACPI: Reserving BOOT table memory at [mem 0x7ffec000-0x7ffec027]
May 02 23:34:06 archlinux kernel: ACPI: Reserving DBGP table memory at [mem 0x7ffeb000-0x7ffeb033]
May 02 23:34:06 archlinux kernel: ACPI: Reserving HPET table memory at [mem 0x7ffe9000-0x7ffe9037]
May 02 23:34:06 archlinux kernel: ACPI: Reserving APIC table memory at [mem 0x7ffe8000-0x7ffe80bb]
May 02 23:34:06 archlinux kernel: ACPI: Reserving MCFG table memory at [mem 0x7ffe7000-0x7ffe703b]
May 02 23:34:06 archlinux kernel: ACPI: Reserving SLIC table memory at [mem 0x7ffe6000-0x7ffe6175]
May 02 23:34:06 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffba000-0x7ffba6ce]
May 02 23:34:06 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffb9000-0x7ffb91bb]
May 02 23:34:06 archlinux kernel: ACPI: Reserving LPIT table memory at [mem 0x7ffb8000-0x7ffb8093]
May 02 23:34:06 archlinux kernel: ACPI: Reserving WSMT table memory at [mem 0x7ffb6000-0x7ffb6027]
May 02 23:34:06 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffb5000-0x7ffb529e]
May 02 23:34:06 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffb4000-0x7ffb4345]
May 02 23:34:06 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffb0000-0x7ffb3001]
May 02 23:34:06 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffaf000-0x7ffaf51d]
May 02 23:34:06 archlinux kernel: ACPI: Reserving DBGP table memory at [mem 0x7ffae000-0x7ffae033]
May 02 23:34:06 archlinux kernel: ACPI: Reserving DBG2 table memory at [mem 0x7ffad000-0x7ffad053]
May 02 23:34:06 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffac000-0x7ffacf60]
May 02 23:34:06 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffab000-0x7ffabedd]
May 02 23:34:06 archlinux kernel: ACPI: Reserving DMAR table memory at [mem 0x7ffaa000-0x7ffaa113]
May 02 23:34:06 archlinux kernel: ACPI: Reserving NHLT table memory at [mem 0x7ffa9000-0x7ffa902c]
May 02 23:34:06 archlinux kernel: ACPI: Reserving FPDT table memory at [mem 0x7ffa8000-0x7ffa8043]
May 02 23:34:06 archlinux kernel: ACPI: Reserving BGRT table memory at [mem 0x7ffa7000-0x7ffa7037]
May 02 23:34:06 archlinux kernel: No NUMA configuration found
May 02 23:34:06 archlinux kernel: Faking a node at [mem 0x0000000000000000-0x0000000271ffffff]
May 02 23:34:06 archlinux kernel: NODE_DATA(0) allocated [mem 0x271ffb000-0x271ffffff]
May 02 23:34:06 archlinux kernel: Zone ranges:
May 02 23:34:06 archlinux kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
May 02 23:34:06 archlinux kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
May 02 23:34:06 archlinux kernel:   Normal   [mem 0x0000000100000000-0x0000000271ffffff]
May 02 23:34:06 archlinux kernel:   Device   empty
May 02 23:34:06 archlinux kernel: Movable zone start for each node
May 02 23:34:06 archlinux kernel: Early memory node ranges
May 02 23:34:06 archlinux kernel:   node   0: [mem 0x0000000000001000-0x0000000000057fff]
May 02 23:34:06 archlinux kernel:   node   0: [mem 0x0000000000059000-0x000000000009dfff]
May 02 23:34:06 archlinux kernel:   node   0: [mem 0x0000000000100000-0x0000000076d3afff]
May 02 23:34:06 archlinux kernel:   node   0: [mem 0x0000000076d3d000-0x0000000078027fff]
May 02 23:34:06 archlinux kernel:   node   0: [mem 0x0000000079128000-0x000000007ed3dfff]
May 02 23:34:06 archlinux kernel:   node   0: [mem 0x000000007fffe000-0x000000007fffefff]
May 02 23:34:06 archlinux kernel:   node   0: [mem 0x0000000100000000-0x0000000271ffffff]
May 02 23:34:06 archlinux kernel: Initmem setup node 0 [mem 0x0000000000001000-0x0000000271ffffff]
May 02 23:34:06 archlinux kernel: On node 0, zone DMA: 1 pages in unavailable ranges
May 02 23:34:06 archlinux kernel: On node 0, zone DMA: 1 pages in unavailable ranges
May 02 23:34:06 archlinux kernel: On node 0, zone DMA: 98 pages in unavailable ranges
May 02 23:34:06 archlinux kernel: On node 0, zone DMA32: 2 pages in unavailable ranges
May 02 23:34:06 archlinux kernel: On node 0, zone DMA32: 4352 pages in unavailable ranges
May 02 23:34:06 archlinux kernel: On node 0, zone DMA32: 4800 pages in unavailable ranges
May 02 23:34:06 archlinux kernel: On node 0, zone Normal: 1 pages in unavailable ranges
May 02 23:34:06 archlinux kernel: On node 0, zone Normal: 24576 pages in unavailable ranges
May 02 23:34:06 archlinux kernel: Reserving Intel graphics memory at [mem 0x89000000-0x8cffffff]
May 02 23:34:06 archlinux kernel: ACPI: PM-Timer IO Port: 0x1808
May 02 23:34:06 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
May 02 23:34:06 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
May 02 23:34:06 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
May 02 23:34:06 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
May 02 23:34:06 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
May 02 23:34:06 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
May 02 23:34:06 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
May 02 23:34:06 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
May 02 23:34:06 archlinux kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
May 02 23:34:06 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
May 02 23:34:06 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
May 02 23:34:06 archlinux kernel: ACPI: Using ACPI (MADT) for SMP configuration information
May 02 23:34:06 archlinux kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
May 02 23:34:06 archlinux kernel: e820: update [mem 0x7c9e6000-0x7cdb2fff] usable ==> reserved
May 02 23:34:06 archlinux kernel: TSC deadline timer available
May 02 23:34:06 archlinux kernel: smpboot: Allowing 4 CPUs, 0 hotplug CPUs
May 02 23:34:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
May 02 23:34:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x00058000-0x00058fff]
May 02 23:34:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x000fffff]
May 02 23:34:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x75e3e000-0x75e3efff]
May 02 23:34:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x75e4e000-0x75e4efff]
May 02 23:34:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x76d3b000-0x76d3bfff]
May 02 23:34:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x76d3c000-0x76d3cfff]
May 02 23:34:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x78028000-0x79127fff]
May 02 23:34:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x7c9e6000-0x7cdb2fff]
May 02 23:34:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x7ed3e000-0x7f72dfff]
May 02 23:34:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x7f72e000-0x7ff7dfff]
May 02 23:34:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x7ff7e000-0x7fffdfff]
May 02 23:34:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x7ffff000-0x8cffffff]
May 02 23:34:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x8d000000-0xfebfffff]
May 02 23:34:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
May 02 23:34:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
May 02 23:34:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
May 02 23:34:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed0ffff]
May 02 23:34:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
May 02 23:34:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed1a000-0xfed83fff]
May 02 23:34:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed84000-0xfed84fff]
May 02 23:34:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed85000-0xfedfffff]
May 02 23:34:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
May 02 23:34:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
May 02 23:34:06 archlinux kernel: [mem 0x8d000000-0xfebfffff] available for PCI devices
May 02 23:34:06 archlinux kernel: Booting paravirtualized kernel on bare hardware
May 02 23:34:06 archlinux kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
May 02 23:34:06 archlinux kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
May 02 23:34:06 archlinux kernel: percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u524288
May 02 23:34:06 archlinux kernel: pcpu-alloc: s225280 r8192 d28672 u524288 alloc=1*2097152
May 02 23:34:06 archlinux kernel: pcpu-alloc: [0] 0 1 2 3 
May 02 23:34:06 archlinux kernel: Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root=LABEL=magnolia rootflags=subvol=@ rw
May 02 23:34:06 archlinux kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
May 02 23:34:06 archlinux kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
May 02 23:34:06 archlinux kernel: Fallback order for Node 0: 0 
May 02 23:34:06 archlinux kernel: Built 1 zonelists, mobility grouping on.  Total pages: 1998668
May 02 23:34:06 archlinux kernel: Policy zone: Normal
May 02 23:34:06 archlinux kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
May 02 23:34:06 archlinux kernel: software IO TLB: area num 4.
May 02 23:34:06 archlinux kernel: Memory: 7783004K/8122212K available (16384K kernel code, 2119K rwdata, 12920K rodata, 3432K init, 3828K bss, 338948K reserved, 0K cma-reserved)
May 02 23:34:06 archlinux kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
May 02 23:34:06 archlinux kernel: Kernel/User page tables isolation: enabled
May 02 23:34:06 archlinux kernel: ftrace: allocating 48826 entries in 191 pages
May 02 23:34:06 archlinux kernel: ftrace: allocated 191 pages with 7 groups
May 02 23:34:06 archlinux kernel: Dynamic Preempt: full
May 02 23:34:06 archlinux kernel: rcu: Preemptible hierarchical RCU implementation.
May 02 23:34:06 archlinux kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=4.
May 02 23:34:06 archlinux kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
May 02 23:34:06 archlinux kernel:         Trampoline variant of Tasks RCU enabled.
May 02 23:34:06 archlinux kernel:         Rude variant of Tasks RCU enabled.
May 02 23:34:06 archlinux kernel:         Tracing variant of Tasks RCU enabled.
May 02 23:34:06 archlinux kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
May 02 23:34:06 archlinux kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
May 02 23:34:06 archlinux kernel: NR_IRQS: 20736, nr_irqs: 1024, preallocated irqs: 16
May 02 23:34:06 archlinux kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
May 02 23:34:06 archlinux kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
May 02 23:34:06 archlinux kernel: Console: colour dummy device 80x25
May 02 23:34:06 archlinux kernel: printk: legacy console [tty0] enabled
May 02 23:34:06 archlinux kernel: ACPI: Core revision 20230628
May 02 23:34:06 archlinux kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
May 02 23:34:06 archlinux kernel: APIC: Switch to symmetric I/O mode setup
May 02 23:34:06 archlinux kernel: DMAR: Host address width 39
May 02 23:34:06 archlinux kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
May 02 23:34:06 archlinux kernel: DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
May 02 23:34:06 archlinux kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
May 02 23:34:06 archlinux kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
May 02 23:34:06 archlinux kernel: DMAR: RMRR base: 0x0000007f622000 end: 0x0000007f641fff
May 02 23:34:06 archlinux kernel: DMAR: RMRR base: 0x00000088800000 end: 0x0000008cffffff
May 02 23:34:06 archlinux kernel: DMAR: ANDD device: 1 name: \_SB.PCI0.I2C0
May 02 23:34:06 archlinux kernel: DMAR: ANDD device: 2 name: \_SB.PCI0.I2C1
May 02 23:34:06 archlinux kernel: DMAR: ANDD device: 4 name: \_SB.PCI0.I2C3
May 02 23:34:06 archlinux kernel: DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
May 02 23:34:06 archlinux kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
May 02 23:34:06 archlinux kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
May 02 23:34:06 archlinux kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
May 02 23:34:06 archlinux kernel: x2apic enabled
May 02 23:34:06 archlinux kernel: APIC: Switched APIC routing to: cluster x2apic
May 02 23:34:06 archlinux kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
May 02 23:34:06 archlinux kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x26eae8729ef, max_idle_ns: 440795235156 ns
May 02 23:34:06 archlinux kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5401.81 BogoMIPS (lpj=8999696)
May 02 23:34:06 archlinux kernel: CPU0: Thermal monitoring enabled (TM1)
May 02 23:34:06 archlinux kernel: process: using mwait in idle threads
May 02 23:34:06 archlinux kernel: Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
May 02 23:34:06 archlinux kernel: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
May 02 23:34:06 archlinux kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
May 02 23:34:06 archlinux kernel: Spectre V2 : Mitigation: IBRS
May 02 23:34:06 archlinux kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
May 02 23:34:06 archlinux kernel: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
May 02 23:34:06 archlinux kernel: RETBleed: Mitigation: IBRS
May 02 23:34:06 archlinux kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
May 02 23:34:06 archlinux kernel: Spectre V2 : User space: Mitigation: STIBP via prctl
May 02 23:34:06 archlinux kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
May 02 23:34:06 archlinux kernel: MDS: Mitigation: Clear CPU buffers
May 02 23:34:06 archlinux kernel: MMIO Stale Data: Mitigation: Clear CPU buffers
May 02 23:34:06 archlinux kernel: SRBDS: Mitigation: Microcode
May 02 23:34:06 archlinux kernel: GDS: Mitigation: Microcode
May 02 23:34:06 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
May 02 23:34:06 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
May 02 23:34:06 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
May 02 23:34:06 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
May 02 23:34:06 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
May 02 23:34:06 archlinux kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
May 02 23:34:06 archlinux kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
May 02 23:34:06 archlinux kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
May 02 23:34:06 archlinux kernel: x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
May 02 23:34:06 archlinux kernel: Freeing SMP alternatives memory: 40K
May 02 23:34:06 archlinux kernel: pid_max: default: 32768 minimum: 301
May 02 23:34:06 archlinux kernel: LSM: initializing lsm=capability,landlock,lockdown,yama,bpf,integrity
May 02 23:34:06 archlinux kernel: landlock: Up and running.
May 02 23:34:06 archlinux kernel: Yama: becoming mindful.
May 02 23:34:06 archlinux kernel: LSM support for eBPF active
May 02 23:34:06 archlinux kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
May 02 23:34:06 archlinux kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
May 02 23:34:06 archlinux kernel: smpboot: CPU0: Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz (family: 0x6, model: 0x8e, stepping: 0x9)
May 02 23:34:06 archlinux kernel: RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
May 02 23:34:06 archlinux kernel: RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
May 02 23:34:06 archlinux kernel: RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
May 02 23:34:06 archlinux kernel: Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
May 02 23:34:06 archlinux kernel: ... version:                4
May 02 23:34:06 archlinux kernel: ... bit width:              48
May 02 23:34:06 archlinux kernel: ... generic registers:      4
May 02 23:34:06 archlinux kernel: ... value mask:             0000ffffffffffff
May 02 23:34:06 archlinux kernel: ... max period:             00007fffffffffff
May 02 23:34:06 archlinux kernel: ... fixed-purpose events:   3
May 02 23:34:06 archlinux kernel: ... event mask:             000000070000000f
May 02 23:34:06 archlinux kernel: signal: max sigframe size: 2032
May 02 23:34:06 archlinux kernel: Estimated ratio of average max frequency by base frequency (times 1024): 1175
May 02 23:34:06 archlinux kernel: rcu: Hierarchical SRCU implementation.
May 02 23:34:06 archlinux kernel: rcu:         Max phase no-delay instances is 1000.
May 02 23:34:06 archlinux kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
May 02 23:34:06 archlinux kernel: smp: Bringing up secondary CPUs ...
May 02 23:34:06 archlinux kernel: smpboot: x86: Booting SMP configuration:
May 02 23:34:06 archlinux kernel: .... node  #0, CPUs:      #1 #2 #3
May 02 23:34:06 archlinux kernel: MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
May 02 23:34:06 archlinux kernel: MMIO Stale Data CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html for more details.
May 02 23:34:06 archlinux kernel: smp: Brought up 1 node, 4 CPUs
May 02 23:34:06 archlinux kernel: smpboot: Max logical packages: 1
May 02 23:34:06 archlinux kernel: smpboot: Total of 4 processors activated (21607.24 BogoMIPS)
May 02 23:34:06 archlinux kernel: devtmpfs: initialized
May 02 23:34:06 archlinux kernel: x86/mm: Memory block size: 128MB
May 02 23:34:06 archlinux kernel: ACPI: PM: Registering ACPI NVS region [mem 0x76d3b000-0x76d3bfff] (4096 bytes)
May 02 23:34:06 archlinux kernel: ACPI: PM: Registering ACPI NVS region [mem 0x78028000-0x79127fff] (17825792 bytes)
May 02 23:34:06 archlinux kernel: ACPI: PM: Registering ACPI NVS region [mem 0x7f72e000-0x7ff7dfff] (8716288 bytes)
May 02 23:34:06 archlinux kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
May 02 23:34:06 archlinux kernel: futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
May 02 23:34:06 archlinux kernel: pinctrl core: initialized pinctrl subsystem
May 02 23:34:06 archlinux kernel: PM: RTC time: 21:34:02, date: 2024-05-02
May 02 23:34:06 archlinux kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
May 02 23:34:06 archlinux kernel: DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
May 02 23:34:06 archlinux kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
May 02 23:34:06 archlinux kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
May 02 23:34:06 archlinux kernel: audit: initializing netlink subsys (disabled)
May 02 23:34:06 archlinux kernel: audit: type=2000 audit(1714685641.063:1): state=initialized audit_enabled=0 res=1
May 02 23:34:06 archlinux kernel: thermal_sys: Registered thermal governor 'fair_share'
May 02 23:34:06 archlinux kernel: thermal_sys: Registered thermal governor 'bang_bang'
May 02 23:34:06 archlinux kernel: thermal_sys: Registered thermal governor 'step_wise'
May 02 23:34:06 archlinux kernel: thermal_sys: Registered thermal governor 'user_space'
May 02 23:34:06 archlinux kernel: thermal_sys: Registered thermal governor 'power_allocator'
May 02 23:34:06 archlinux kernel: cpuidle: using governor ladder
May 02 23:34:06 archlinux kernel: cpuidle: using governor menu
May 02 23:34:06 archlinux kernel: Simple Boot Flag at 0x44 set to 0x1
May 02 23:34:06 archlinux kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
May 02 23:34:06 archlinux kernel: PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
May 02 23:34:06 archlinux kernel: PCI: not using ECAM ([mem 0xe0000000-0xefffffff] not reserved)
May 02 23:34:06 archlinux kernel: PCI: Using configuration type 1 for base access
May 02 23:34:06 archlinux kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
May 02 23:34:06 archlinux kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
May 02 23:34:06 archlinux kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
May 02 23:34:06 archlinux kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
May 02 23:34:06 archlinux kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
May 02 23:34:06 archlinux kernel: ACPI: Added _OSI(Module Device)
May 02 23:34:06 archlinux kernel: ACPI: Added _OSI(Processor Device)
May 02 23:34:06 archlinux kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
May 02 23:34:06 archlinux kernel: ACPI: Added _OSI(Processor Aggregator Device)
May 02 23:34:06 archlinux kernel: ACPI: 13 ACPI AML tables successfully acquired and loaded
May 02 23:34:06 archlinux kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
May 02 23:34:06 archlinux kernel: ACPI: Dynamic OEM Table Load:
May 02 23:34:06 archlinux kernel: ACPI: SSDT 0xFFFF9AB301561C00 0003FF (v02 PmRef  Cpu0Cst  00003001 INTL 20160527)
May 02 23:34:06 archlinux kernel: ACPI: Dynamic OEM Table Load:
May 02 23:34:06 archlinux kernel: ACPI: SSDT 0xFFFF9AB30176E800 0006B4 (v02 PmRef  Cpu0Ist  00003000 INTL 20160527)
May 02 23:34:06 archlinux kernel: ACPI: Dynamic OEM Table Load:
May 02 23:34:06 archlinux kernel: ACPI: SSDT 0xFFFF9AB30176F800 00065C (v02 PmRef  ApIst    00003000 INTL 20160527)
May 02 23:34:06 archlinux kernel: ACPI: Dynamic OEM Table Load:
May 02 23:34:06 archlinux kernel: ACPI: SSDT 0xFFFF9AB3015A2800 000197 (v02 PmRef  ApHwp    00003000 INTL 20160527)
May 02 23:34:06 archlinux kernel: ACPI: Dynamic OEM Table Load:
May 02 23:34:06 archlinux kernel: ACPI: SSDT 0xFFFF9AB3015A2C00 00018A (v02 PmRef  ApCst    00003000 INTL 20160527)
May 02 23:34:06 archlinux kernel: ACPI: _OSC evaluated successfully for all CPUs
May 02 23:34:06 archlinux kernel: ACPI: EC: EC started
May 02 23:34:06 archlinux kernel: ACPI: EC: interrupt blocked
May 02 23:34:06 archlinux kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
May 02 23:34:06 archlinux kernel: ACPI: \_SB_.PCI0.LPCB.H_EC: Boot DSDT EC used to handle transactions
May 02 23:34:06 archlinux kernel: ACPI: Interpreter enabled
May 02 23:34:06 archlinux kernel: ACPI: PM: (supports S0 S3 S4 S5)
May 02 23:34:06 archlinux kernel: ACPI: Using IOAPIC for interrupt routing
May 02 23:34:06 archlinux kernel: PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
May 02 23:34:06 archlinux kernel: PCI: ECAM [mem 0xe0000000-0xefffffff] reserved as ACPI motherboard resource
May 02 23:34:06 archlinux kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
May 02 23:34:06 archlinux kernel: PCI: Using E820 reservations for host bridge windows
May 02 23:34:06 archlinux kernel: ACPI: Enabled 7 GPEs in block 00 to 7F
May 02 23:34:06 archlinux kernel: ACPI: \_SB_.PCI0.RP01.PXSX.WRST: New power resource
May 02 23:34:06 archlinux kernel: ACPI: \_SB_.PCI0.RP02.PXSX.WRST: New power resource
May 02 23:34:06 archlinux kernel: ACPI: \_SB_.PCI0.RP03.PXSX.WRST: New power resource
May 02 23:34:06 archlinux kernel: ACPI: \_SB_.PCI0.RP04.PXSX.WRST: New power resource
May 02 23:34:06 archlinux kernel: ACPI: \_SB_.PCI0.RP05.PXSX.WRST: New power resource
May 02 23:34:06 archlinux kernel: ACPI: \_SB_.PCI0.RP06.PXSX.WRST: New power resource
May 02 23:34:06 archlinux kernel: ACPI: \_SB_.PCI0.RP07.PXSX.WRST: New power resource
May 02 23:34:06 archlinux kernel: ACPI: \_SB_.PCI0.RP08.PXSX.WRST: New power resource
May 02 23:34:06 archlinux kernel: ACPI: \_SB_.PCI0.RP09.PXSX.WRST: New power resource
May 02 23:34:06 archlinux kernel: ACPI: \_SB_.PCI0.RP10.PXSX.WRST: New power resource
May 02 23:34:06 archlinux kernel: ACPI: \_SB_.PCI0.RP11.PXSX.WRST: New power resource
May 02 23:34:06 archlinux kernel: ACPI: \_SB_.PCI0.RP12.PXSX.WRST: New power resource
May 02 23:34:06 archlinux kernel: ACPI: \_SB_.PCI0.RP13.PXSX.WRST: New power resource
May 02 23:34:06 archlinux kernel: ACPI: \_SB_.PCI0.RP14.PXSX.WRST: New power resource
May 02 23:34:06 archlinux kernel: ACPI: \_SB_.PCI0.RP15.PXSX.WRST: New power resource
May 02 23:34:06 archlinux kernel: ACPI: \_SB_.PCI0.RP16.PXSX.WRST: New power resource
May 02 23:34:06 archlinux kernel: ACPI: \_SB_.PCI0.RP17.PXSX.WRST: New power resource
May 02 23:34:06 archlinux kernel: ACPI: \_SB_.PCI0.RP18.PXSX.WRST: New power resource
May 02 23:34:06 archlinux kernel: ACPI: \_SB_.PCI0.RP19.PXSX.WRST: New power resource
May 02 23:34:06 archlinux kernel: ACPI: \_SB_.PCI0.RP20.PXSX.WRST: New power resource
May 02 23:34:06 archlinux kernel: acpi ABCD0000:00: ACPI dock station (docks/bays count: 1)
May 02 23:34:06 archlinux kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
May 02 23:34:06 archlinux kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
May 02 23:34:06 archlinux kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
May 02 23:34:06 archlinux kernel: PCI host bridge to bus 0000:00
May 02 23:34:06 archlinux kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
May 02 23:34:06 archlinux kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
May 02 23:34:06 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
May 02 23:34:06 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x8d000000-0xdfffffff window]
May 02 23:34:06 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
May 02 23:34:06 archlinux kernel: pci_bus 0000:00: root bus resource [bus 00-fe]
May 02 23:34:06 archlinux kernel: pci 0000:00:00.0: [8086:5904] type 00 class 0x060000 conventional PCI endpoint
May 02 23:34:06 archlinux kernel: pci 0000:00:02.0: [8086:5916] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
May 02 23:34:06 archlinux kernel: pci 0000:00:02.0: BAR 0 [mem 0xa0000000-0xa0ffffff 64bit]
May 02 23:34:06 archlinux kernel: pci 0000:00:02.0: BAR 2 [mem 0x90000000-0x9fffffff 64bit pref]
May 02 23:34:06 archlinux kernel: pci 0000:00:02.0: BAR 4 [io  0x3000-0x303f]
May 02 23:34:06 archlinux kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
May 02 23:34:06 archlinux kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
May 02 23:34:06 archlinux kernel: pci 0000:00:04.0: [8086:1903] type 00 class 0x118000 conventional PCI endpoint
May 02 23:34:06 archlinux kernel: pci 0000:00:04.0: BAR 0 [mem 0xa1320000-0xa1327fff 64bit]
May 02 23:34:06 archlinux kernel: pci 0000:00:08.0: [8086:1911] type 00 class 0x088000 conventional PCI endpoint
May 02 23:34:06 archlinux kernel: pci 0000:00:08.0: BAR 0 [mem 0xa1330000-0xa1330fff 64bit]
May 02 23:34:06 archlinux kernel: pci 0000:00:14.0: [8086:9d2f] type 00 class 0x0c0330 conventional PCI endpoint
May 02 23:34:06 archlinux kernel: pci 0000:00:14.0: BAR 0 [mem 0xa1300000-0xa130ffff 64bit]
May 02 23:34:06 archlinux kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
May 02 23:34:06 archlinux kernel: pci 0000:00:14.2: [8086:9d31] type 00 class 0x118000 conventional PCI endpoint
May 02 23:34:06 archlinux kernel: pci 0000:00:14.2: BAR 0 [mem 0xa1331000-0xa1331fff 64bit]
May 02 23:34:06 archlinux kernel: pci 0000:00:15.0: [8086:9d60] type 00 class 0x118000 conventional PCI endpoint
May 02 23:34:06 archlinux kernel: pci 0000:00:15.0: BAR 0 [mem 0xa1332000-0xa1332fff 64bit]
May 02 23:34:06 archlinux kernel: pci 0000:00:15.1: [8086:9d61] type 00 class 0x118000 conventional PCI endpoint
May 02 23:34:06 archlinux kernel: pci 0000:00:15.1: BAR 0 [mem 0xa1333000-0xa1333fff 64bit]
May 02 23:34:06 archlinux kernel: pci 0000:00:15.3: [8086:9d63] type 00 class 0x118000 conventional PCI endpoint
May 02 23:34:06 archlinux kernel: pci 0000:00:15.3: BAR 0 [mem 0xa1334000-0xa1334fff 64bit]
May 02 23:34:06 archlinux kernel: pci 0000:00:16.0: [8086:9d3a] type 00 class 0x078000 conventional PCI endpoint
May 02 23:34:06 archlinux kernel: pci 0000:00:16.0: BAR 0 [mem 0xa1335000-0xa1335fff 64bit]
May 02 23:34:06 archlinux kernel: pci 0000:00:16.0: PME# supported from D3hot
May 02 23:34:06 archlinux kernel: pci 0000:00:1c.0: [8086:9d14] type 01 class 0x060400 PCIe Root Port
May 02 23:34:06 archlinux kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
May 02 23:34:06 archlinux kernel: pci 0000:00:1c.0:   bridge window [mem 0xa1000000-0xa11fffff]
May 02 23:34:06 archlinux kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
May 02 23:34:06 archlinux kernel: pci 0000:00:1d.0: [8086:9d18] type 01 class 0x060400 PCIe Root Port
May 02 23:34:06 archlinux kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
May 02 23:34:06 archlinux kernel: pci 0000:00:1d.0:   bridge window [mem 0xa1200000-0xa12fffff]
May 02 23:34:06 archlinux kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
May 02 23:34:06 archlinux kernel: pci 0000:00:1f.0: [8086:9d58] type 00 class 0x060100 conventional PCI endpoint
May 02 23:34:06 archlinux kernel: pci 0000:00:1f.2: [8086:9d21] type 00 class 0x058000 conventional PCI endpoint
May 02 23:34:06 archlinux kernel: pci 0000:00:1f.2: BAR 0 [mem 0xa132c000-0xa132ffff]
May 02 23:34:06 archlinux kernel: pci 0000:00:1f.3: [8086:9d71] type 00 class 0x040380 conventional PCI endpoint
May 02 23:34:06 archlinux kernel: pci 0000:00:1f.3: BAR 0 [mem 0xa1328000-0xa132bfff 64bit]
May 02 23:34:06 archlinux kernel: pci 0000:00:1f.3: BAR 4 [mem 0xa1310000-0xa131ffff 64bit]
May 02 23:34:06 archlinux kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
May 02 23:34:06 archlinux kernel: pci 0000:00:1f.4: [8086:9d23] type 00 class 0x0c0500 conventional PCI endpoint
May 02 23:34:06 archlinux kernel: pci 0000:00:1f.4: BAR 0 [mem 0xa1336000-0xa13360ff 64bit]
May 02 23:34:06 archlinux kernel: pci 0000:00:1f.4: BAR 4 [io  0x3040-0x305f]
May 02 23:34:06 archlinux kernel: pci 0000:01:00.0: [168c:003e] type 00 class 0x028000 PCIe Endpoint
May 02 23:34:06 archlinux kernel: pci 0000:01:00.0: BAR 0 [mem 0xa1000000-0xa11fffff 64bit]
May 02 23:34:06 archlinux kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
May 02 23:34:06 archlinux kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
May 02 23:34:06 archlinux kernel: pci 0000:02:00.0: [144d:a804] type 00 class 0x010802 PCIe Endpoint
May 02 23:34:06 archlinux kernel: pci 0000:02:00.0: BAR 0 [mem 0xa1200000-0xa1203fff 64bit]
May 02 23:34:06 archlinux kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
May 02 23:34:06 archlinux kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 11
May 02 23:34:06 archlinux kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 10
May 02 23:34:06 archlinux kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 11
May 02 23:34:06 archlinux kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 11
May 02 23:34:06 archlinux kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 11
May 02 23:34:06 archlinux kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 11
May 02 23:34:06 archlinux kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 11
May 02 23:34:06 archlinux kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 11
May 02 23:34:06 archlinux kernel: ACPI Warning: GPE type mismatch (level/edge) (20230628/evxface-791)
May 02 23:34:06 archlinux kernel: ACPI: EC: interrupt unblocked
May 02 23:34:06 archlinux kernel: ACPI: EC: event unblocked
May 02 23:34:06 archlinux kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
May 02 23:34:06 archlinux kernel: ACPI: EC: GPE=0x50
May 02 23:34:06 archlinux kernel: ACPI: \_SB_.PCI0.LPCB.H_EC: Boot DSDT EC initialization complete
May 02 23:34:06 archlinux kernel: ACPI: \_SB_.PCI0.LPCB.H_EC: EC: Used to handle transactions and events
May 02 23:34:06 archlinux kernel: iommu: Default domain type: Translated
May 02 23:34:06 archlinux kernel: iommu: DMA domain TLB invalidation policy: lazy mode
May 02 23:34:06 archlinux kernel: SCSI subsystem initialized
May 02 23:34:06 archlinux kernel: libata version 3.00 loaded.
May 02 23:34:06 archlinux kernel: ACPI: bus type USB registered
May 02 23:34:06 archlinux kernel: usbcore: registered new interface driver usbfs
May 02 23:34:06 archlinux kernel: usbcore: registered new interface driver hub
May 02 23:34:06 archlinux kernel: usbcore: registered new device driver usb
May 02 23:34:06 archlinux kernel: EDAC MC: Ver: 3.0.0
May 02 23:34:06 archlinux kernel: efivars: Registered efivars operations
May 02 23:34:06 archlinux kernel: NetLabel: Initializing
May 02 23:34:06 archlinux kernel: NetLabel:  domain hash size = 128
May 02 23:34:06 archlinux kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
May 02 23:34:06 archlinux kernel: NetLabel:  unlabeled traffic allowed by default
May 02 23:34:06 archlinux kernel: mctp: management component transport protocol core
May 02 23:34:06 archlinux kernel: NET: Registered PF_MCTP protocol family
May 02 23:34:06 archlinux kernel: PCI: Using ACPI for IRQ routing
May 02 23:34:06 archlinux kernel: PCI: pci_cache_line_size set to 64 bytes
May 02 23:34:06 archlinux kernel: e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
May 02 23:34:06 archlinux kernel: e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
May 02 23:34:06 archlinux kernel: e820: reserve RAM buffer [mem 0x75e3e018-0x77ffffff]
May 02 23:34:06 archlinux kernel: e820: reserve RAM buffer [mem 0x76d3b000-0x77ffffff]
May 02 23:34:06 archlinux kernel: e820: reserve RAM buffer [mem 0x78028000-0x7bffffff]
May 02 23:34:06 archlinux kernel: e820: reserve RAM buffer [mem 0x7c9e6000-0x7fffffff]
May 02 23:34:06 archlinux kernel: e820: reserve RAM buffer [mem 0x7ed3e000-0x7fffffff]
May 02 23:34:06 archlinux kernel: e820: reserve RAM buffer [mem 0x7ffff000-0x7fffffff]
May 02 23:34:06 archlinux kernel: e820: reserve RAM buffer [mem 0x272000000-0x273ffffff]
May 02 23:34:06 archlinux kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
May 02 23:34:06 archlinux kernel: pci 0000:00:02.0: vgaarb: bridge control possible
May 02 23:34:06 archlinux kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
May 02 23:34:06 archlinux kernel: vgaarb: loaded
May 02 23:34:06 archlinux kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
May 02 23:34:06 archlinux kernel: hpet0: 8 comparators, 64-bit 24.000000 MHz counter
May 02 23:34:06 archlinux kernel: clocksource: Switched to clocksource tsc-early
May 02 23:34:06 archlinux kernel: VFS: Disk quotas dquot_6.6.0
May 02 23:34:06 archlinux kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
May 02 23:34:06 archlinux kernel: pnp: PnP ACPI init
May 02 23:34:06 archlinux kernel: system 00:00: [mem 0xfd000000-0xfdabffff] has been reserved
May 02 23:34:06 archlinux kernel: system 00:00: [mem 0xfdad0000-0xfdadffff] has been reserved
May 02 23:34:06 archlinux kernel: system 00:00: [mem 0xfdb00000-0xfdffffff] has been reserved
May 02 23:34:06 archlinux kernel: system 00:00: [mem 0xfe000000-0xfe01ffff] has been reserved
May 02 23:34:06 archlinux kernel: system 00:00: [mem 0xfe036000-0xfe03bfff] has been reserved
May 02 23:34:06 archlinux kernel: system 00:00: [mem 0xfe03d000-0xfe3fffff] has been reserved
May 02 23:34:06 archlinux kernel: system 00:00: [mem 0xfe410000-0xfe7fffff] has been reserved
May 02 23:34:06 archlinux kernel: system 00:01: [io  0x2000-0x20fe] has been reserved
May 02 23:34:06 archlinux kernel: system 00:02: [io  0x06a4] has been reserved
May 02 23:34:06 archlinux kernel: system 00:02: [io  0x06a0] has been reserved
May 02 23:34:06 archlinux kernel: system 00:03: [io  0x0680-0x069f] has been reserved
May 02 23:34:06 archlinux kernel: system 00:03: [io  0xffff] has been reserved
May 02 23:34:06 archlinux kernel: system 00:03: [io  0xffff] has been reserved
May 02 23:34:06 archlinux kernel: system 00:03: [io  0xffff] has been reserved
May 02 23:34:06 archlinux kernel: system 00:03: [io  0x1800-0x18fe] has been reserved
May 02 23:34:06 archlinux kernel: system 00:03: [io  0x164e-0x164f] has been reserved
May 02 23:34:06 archlinux kernel: system 00:05: [io  0x1854-0x1857] has been reserved
May 02 23:34:06 archlinux kernel: system 00:07: [mem 0xfe029000-0xfe029fff] has been reserved
May 02 23:34:06 archlinux kernel: system 00:07: [mem 0xfe028000-0xfe028fff] has been reserved
May 02 23:34:06 archlinux kernel: system 00:07: [mem 0xfdaf0000-0xfdafffff] has been reserved
May 02 23:34:06 archlinux kernel: system 00:07: [mem 0xfdae0000-0xfdaeffff] has been reserved
May 02 23:34:06 archlinux kernel: system 00:07: [mem 0xfdac0000-0xfdacffff] has been reserved
May 02 23:34:06 archlinux kernel: system 00:08: [mem 0xfed10000-0xfed17fff] has been reserved
May 02 23:34:06 archlinux kernel: system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved
May 02 23:34:06 archlinux kernel: system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved
May 02 23:34:06 archlinux kernel: system 00:08: [mem 0xe0000000-0xefffffff] has been reserved
May 02 23:34:06 archlinux kernel: system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
May 02 23:34:06 archlinux kernel: system 00:08: [mem 0xfed90000-0xfed93fff] could not be reserved
May 02 23:34:06 archlinux kernel: system 00:08: [mem 0xfed45000-0xfed8ffff] could not be reserved
May 02 23:34:06 archlinux kernel: system 00:08: [mem 0xff000000-0xffffffff] has been reserved
May 02 23:34:06 archlinux kernel: system 00:08: [mem 0xfee00000-0xfeefffff] could not be reserved
May 02 23:34:06 archlinux kernel: system 00:08: [mem 0x8d000000-0x8d01ffff] has been reserved
May 02 23:34:06 archlinux kernel: pnp: PnP ACPI: found 9 devices
May 02 23:34:06 archlinux kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
May 02 23:34:06 archlinux kernel: pci 0000:00:1f.1: [8086:9d20] type 00 class 0x058000 conventional PCI endpoint
May 02 23:34:06 archlinux kernel: pci 0000:00:1f.1: BAR 0 [mem 0xfd000000-0xfdffffff 64bit]
May 02 23:34:06 archlinux kernel: NET: Registered PF_INET protocol family
May 02 23:34:06 archlinux kernel: IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
May 02 23:34:06 archlinux kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
May 02 23:34:06 archlinux kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
May 02 23:34:06 archlinux kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
May 02 23:34:06 archlinux kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
May 02 23:34:06 archlinux kernel: TCP: Hash tables configured (established 65536 bind 65536)
May 02 23:34:06 archlinux kernel: MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
May 02 23:34:06 archlinux kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
May 02 23:34:06 archlinux kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
May 02 23:34:06 archlinux kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
May 02 23:34:06 archlinux kernel: NET: Registered PF_XDP protocol family
May 02 23:34:06 archlinux kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
May 02 23:34:06 archlinux kernel: pci 0000:00:1c.0:   bridge window [mem 0xa1000000-0xa11fffff]
May 02 23:34:06 archlinux kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
May 02 23:34:06 archlinux kernel: pci 0000:00:1d.0:   bridge window [mem 0xa1200000-0xa12fffff]
May 02 23:34:06 archlinux kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
May 02 23:34:06 archlinux kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
May 02 23:34:06 archlinux kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000dffff window]
May 02 23:34:06 archlinux kernel: pci_bus 0000:00: resource 7 [mem 0x8d000000-0xdfffffff window]
May 02 23:34:06 archlinux kernel: pci_bus 0000:00: resource 8 [mem 0xfd000000-0xfe7fffff window]
May 02 23:34:06 archlinux kernel: pci_bus 0000:01: resource 1 [mem 0xa1000000-0xa11fffff]
May 02 23:34:06 archlinux kernel: pci_bus 0000:02: resource 1 [mem 0xa1200000-0xa12fffff]
May 02 23:34:06 archlinux kernel: PCI: CLS 64 bytes, default 64
May 02 23:34:06 archlinux kernel: DMAR: ACPI device "device:76" under DMAR at fed91000 as 00:15.0
May 02 23:34:06 archlinux kernel: DMAR: ACPI device "device:77" under DMAR at fed91000 as 00:15.1
May 02 23:34:06 archlinux kernel: DMAR: ACPI device "device:78" under DMAR at fed91000 as 00:15.3
May 02 23:34:06 archlinux kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
May 02 23:34:06 archlinux kernel: software IO TLB: mapped [mem 0x000000006e2d2000-0x00000000722d2000] (64MB)
May 02 23:34:06 archlinux kernel: Trying to unpack rootfs image as initramfs...
May 02 23:34:06 archlinux kernel: sgx: EPC section 0x80200000-0x85f7ffff
May 02 23:34:06 archlinux kernel: Initialise system trusted keyrings
May 02 23:34:06 archlinux kernel: Key type blacklist registered
May 02 23:34:06 archlinux kernel: workingset: timestamp_bits=41 max_order=21 bucket_order=0
May 02 23:34:06 archlinux kernel: zbud: loaded
May 02 23:34:06 archlinux kernel: integrity: Platform Keyring initialized
May 02 23:34:06 archlinux kernel: integrity: Machine keyring initialized
May 02 23:34:06 archlinux kernel: Key type asymmetric registered
May 02 23:34:06 archlinux kernel: Asymmetric key parser 'x509' registered
May 02 23:34:06 archlinux kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
May 02 23:34:06 archlinux kernel: io scheduler mq-deadline registered
May 02 23:34:06 archlinux kernel: io scheduler kyber registered
May 02 23:34:06 archlinux kernel: io scheduler bfq registered
May 02 23:34:06 archlinux kernel: pcieport 0000:00:1c.0: PME: Signaling with IRQ 122
May 02 23:34:06 archlinux kernel: pcieport 0000:00:1d.0: PME: Signaling with IRQ 123
May 02 23:34:06 archlinux kernel: pcieport 0000:00:1d.0: AER: enabled with IRQ 123
May 02 23:34:06 archlinux kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
May 02 23:34:06 archlinux kernel: ACPI: AC: AC Adapter [ADP1] (on-line)
May 02 23:34:06 archlinux kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:18/PNP0C09:00/PNP0C0D:00/input/input0
May 02 23:34:06 archlinux kernel: ACPI: button: Lid Switch [LID0]
May 02 23:34:06 archlinux kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
May 02 23:34:06 archlinux kernel: ACPI: button: Power Button [PWRB]
May 02 23:34:06 archlinux kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
May 02 23:34:06 archlinux kernel: ACPI: button: Power Button [PWRF]
May 02 23:34:06 archlinux kernel: thermal LNXTHERM:00: registered as thermal_zone0
May 02 23:34:06 archlinux kernel: ACPI: thermal: Thermal Zone [TZ00] (28 C)
May 02 23:34:06 archlinux kernel: thermal LNXTHERM:01: registered as thermal_zone1
May 02 23:34:06 archlinux kernel: ACPI: thermal: Thermal Zone [TZ01] (30 C)
May 02 23:34:06 archlinux kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
May 02 23:34:06 archlinux kernel: Non-volatile memory driver v1.3
May 02 23:34:06 archlinux kernel: Linux agpgart interface v0.103
May 02 23:34:06 archlinux kernel: ACPI: battery: Slot [BAT1] (battery present)
May 02 23:34:06 archlinux kernel: ACPI: bus type drm_connector registered
May 02 23:34:06 archlinux kernel: usbcore: registered new interface driver usbserial_generic
May 02 23:34:06 archlinux kernel: usbserial: USB Serial support registered for generic
May 02 23:34:06 archlinux kernel: rtc_cmos 00:04: RTC can wake from S4
May 02 23:34:06 archlinux kernel: rtc_cmos 00:04: registered as rtc0
May 02 23:34:06 archlinux kernel: rtc_cmos 00:04: setting system clock to 2024-05-02T21:34:02 UTC (1714685642)
May 02 23:34:06 archlinux kernel: rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram
May 02 23:34:06 archlinux kernel: intel_pstate: Intel P-state driver initializing
May 02 23:34:06 archlinux kernel: intel_pstate: HWP enabled
May 02 23:34:06 archlinux kernel: ledtrig-cpu: registered to indicate activity on CPUs
May 02 23:34:06 archlinux kernel: [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0
May 02 23:34:06 archlinux kernel: fbcon: Deferring console take-over
May 02 23:34:06 archlinux kernel: simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
May 02 23:34:06 archlinux kernel: hid: raw HID events driver (C) Jiri Kosina
May 02 23:34:06 archlinux kernel: drop_monitor: Initializing network drop monitor service
May 02 23:34:06 archlinux kernel: NET: Registered PF_INET6 protocol family
May 02 23:34:06 archlinux kernel: Freeing initrd memory: 23768K
May 02 23:34:06 archlinux kernel: Segment Routing with IPv6
May 02 23:34:06 archlinux kernel: RPL Segment Routing with IPv6
May 02 23:34:06 archlinux kernel: In-situ OAM (IOAM) with IPv6
May 02 23:34:06 archlinux kernel: NET: Registered PF_PACKET protocol family
May 02 23:34:06 archlinux kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
May 02 23:34:06 archlinux kernel: microcode: Current revision: 0x000000f4
May 02 23:34:06 archlinux kernel: microcode: Updated early from: 0x0000005e
May 02 23:34:06 archlinux kernel: IPI shorthand broadcast: enabled
May 02 23:34:06 archlinux kernel: sched_clock: Marking stable (447181269, 640525)->(452749072, -4927278)
May 02 23:34:06 archlinux kernel: registered taskstats version 1
May 02 23:34:06 archlinux kernel: Loading compiled-in X.509 certificates
May 02 23:34:06 archlinux kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 938521da0d8f450ee09889253996ef47d2912881'
May 02 23:34:06 archlinux kernel: zswap: loaded using pool zstd/zsmalloc
May 02 23:34:06 archlinux kernel: Key type .fscrypt registered
May 02 23:34:06 archlinux kernel: Key type fscrypt-provisioning registered
May 02 23:34:06 archlinux kernel: PM:   Magic number: 8:401:600
May 02 23:34:06 archlinux kernel: RAS: Correctable Errors collector initialized.
May 02 23:34:06 archlinux kernel: clk: Disabling unused clocks
May 02 23:34:06 archlinux kernel: Freeing unused decrypted memory: 2028K
May 02 23:34:06 archlinux kernel: Freeing unused kernel image (initmem) memory: 3432K
May 02 23:34:06 archlinux kernel: Write protecting the kernel read-only data: 30720k
May 02 23:34:06 archlinux kernel: Freeing unused kernel image (rodata/data gap) memory: 1416K
May 02 23:34:06 archlinux kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
May 02 23:34:06 archlinux kernel: rodata_test: all tests were successful
May 02 23:34:06 archlinux kernel: x86/mm: Checking user space page tables
May 02 23:34:06 archlinux kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
May 02 23:34:06 archlinux kernel: Run /init as init process
May 02 23:34:06 archlinux kernel:   with arguments:
May 02 23:34:06 archlinux kernel:     /init
May 02 23:34:06 archlinux kernel:   with environment:
May 02 23:34:06 archlinux kernel:     HOME=/
May 02 23:34:06 archlinux kernel:     TERM=linux
May 02 23:34:06 archlinux kernel: fbcon: Taking over console
May 02 23:34:06 archlinux kernel: Console: switching to colour frame buffer device 240x67
May 02 23:34:06 archlinux kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
May 02 23:34:06 archlinux kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
May 02 23:34:06 archlinux kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
May 02 23:34:06 archlinux kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
May 02 23:34:06 archlinux kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
May 02 23:34:06 archlinux kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000081109810
May 02 23:34:06 archlinux kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
May 02 23:34:06 archlinux kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
May 02 23:34:06 archlinux kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
May 02 23:34:06 archlinux kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.08
May 02 23:34:06 archlinux kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 02 23:34:06 archlinux kernel: usb usb1: Product: xHCI Host Controller
May 02 23:34:06 archlinux kernel: usb usb1: Manufacturer: Linux 6.8.7-arch1-1 xhci-hcd
May 02 23:34:06 archlinux kernel: usb usb1: SerialNumber: 0000:00:14.0
May 02 23:34:06 archlinux kernel: hub 1-0:1.0: USB hub found
May 02 23:34:06 archlinux kernel: hub 1-0:1.0: 12 ports detected
May 02 23:34:06 archlinux kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.08
May 02 23:34:06 archlinux kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 02 23:34:06 archlinux kernel: usb usb2: Product: xHCI Host Controller
May 02 23:34:06 archlinux kernel: usb usb2: Manufacturer: Linux 6.8.7-arch1-1 xhci-hcd
May 02 23:34:06 archlinux kernel: usb usb2: SerialNumber: 0000:00:14.0
May 02 23:34:06 archlinux kernel: hub 2-0:1.0: USB hub found
May 02 23:34:06 archlinux kernel: hub 2-0:1.0: 6 ports detected
May 02 23:34:06 archlinux kernel: nvme nvme0: pci function 0000:02:00.0
May 02 23:34:06 archlinux kernel: nvme nvme0: 4/0/0 default/read/poll queues
May 02 23:34:06 archlinux kernel:  nvme0n1: p1 p2 p3 p4 p5
May 02 23:34:06 archlinux kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
May 02 23:34:06 archlinux kernel: raid6: skipped pq benchmark and selected avx2x4
May 02 23:34:06 archlinux kernel: raid6: using avx2x2 recovery algorithm
May 02 23:34:06 archlinux kernel: xor: automatically using best checksumming function   avx       
May 02 23:34:06 archlinux kernel: usb 1-1: new high-speed USB device number 2 using xhci_hcd
May 02 23:34:06 archlinux kernel: usb 1-1: New USB device found, idVendor=04f2, idProduct=b5a4, bcdDevice=94.15
May 02 23:34:06 archlinux kernel: usb 1-1: New USB device strings: Mfr=3, Product=1, SerialNumber=2
May 02 23:34:06 archlinux kernel: usb 1-1: Product: EasyCamera
May 02 23:34:06 archlinux kernel: usb 1-1: Manufacturer: Chicony Electronics Co.,Ltd.
May 02 23:34:06 archlinux kernel: usb 1-1: SerialNumber: 0001
May 02 23:34:06 archlinux kernel: tsc: Refined TSC clocksource calibration: 2711.988 MHz
May 02 23:34:06 archlinux kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x27177b5d52d, max_idle_ns: 440795311757 ns
May 02 23:34:06 archlinux kernel: clocksource: Switched to clocksource tsc
May 02 23:34:06 archlinux kernel: usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
May 02 23:34:06 archlinux kernel: usb 2-1: New USB device found, idVendor=2109, idProduct=0817, bcdDevice= 6.74
May 02 23:34:06 archlinux kernel: usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
May 02 23:34:06 archlinux kernel: usb 2-1: Product: USB3.0 Hub             
May 02 23:34:06 archlinux kernel: usb 2-1: Manufacturer: VIA Labs, Inc.         
May 02 23:34:06 archlinux kernel: usb 2-1: SerialNumber: 000000000
May 02 23:34:06 archlinux kernel: hub 2-1:1.0: USB hub found
May 02 23:34:06 archlinux kernel: hub 2-1:1.0: 4 ports detected
May 02 23:34:06 archlinux kernel: Btrfs loaded, zoned=yes, fsverity=yes
May 02 23:34:06 archlinux kernel: usb 1-4: new high-speed USB device number 3 using xhci_hcd
May 02 23:34:06 archlinux kernel: Console: switching to colour dummy device 80x25
May 02 23:34:06 archlinux kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
May 02 23:34:06 archlinux kernel: i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=io+mem
May 02 23:34:06 archlinux kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
May 02 23:34:06 archlinux kernel: i915 0000:00:02.0: [drm] [ENCODER:113:DDI C/PHY C] is disabled/in DSI mode with an ungated DDI clock, gate it
May 02 23:34:06 archlinux kernel: [drm] Initialized i915 1.6.0 20230929 for 0000:00:02.0 on minor 1
May 02 23:34:06 archlinux kernel: ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
May 02 23:34:06 archlinux kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input4
May 02 23:34:06 archlinux kernel: i915 display info: display version: 9
May 02 23:34:06 archlinux kernel: i915 display info: cursor_needs_physical: no
May 02 23:34:06 archlinux kernel: i915 display info: has_cdclk_crawl: no
May 02 23:34:06 archlinux kernel: i915 display info: has_cdclk_squash: no
May 02 23:34:06 archlinux kernel: i915 display info: has_ddi: yes
May 02 23:34:06 archlinux kernel: i915 display info: has_dp_mst: yes
May 02 23:34:06 archlinux kernel: i915 display info: has_dsb: no
May 02 23:34:06 archlinux kernel: i915 display info: has_fpga_dbg: yes
May 02 23:34:06 archlinux kernel: i915 display info: has_gmch: no
May 02 23:34:06 archlinux kernel: i915 display info: has_hotplug: yes
May 02 23:34:06 archlinux kernel: i915 display info: has_hti: no
May 02 23:34:06 archlinux kernel: i915 display info: has_ipc: yes
May 02 23:34:06 archlinux kernel: i915 display info: has_overlay: no
May 02 23:34:06 archlinux kernel: i915 display info: has_psr: yes
May 02 23:34:06 archlinux kernel: i915 display info: has_psr_hw_tracking: yes
May 02 23:34:06 archlinux kernel: i915 display info: overlay_needs_physical: no
May 02 23:34:06 archlinux kernel: i915 display info: supports_tv: no
May 02 23:34:06 archlinux kernel: i915 display info: has_hdcp: yes
May 02 23:34:06 archlinux kernel: i915 display info: has_dmc: yes
May 02 23:34:06 archlinux kernel: i915 display info: has_dsc: no
May 02 23:34:06 archlinux kernel: fbcon: i915drmfb (fb0) is primary device
May 02 23:34:06 archlinux kernel: usb 1-4: New USB device found, idVendor=2109, idProduct=2817, bcdDevice= 6.74
May 02 23:34:06 archlinux kernel: usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
May 02 23:34:06 archlinux kernel: usb 1-4: Product: USB2.0 Hub             
May 02 23:34:06 archlinux kernel: usb 1-4: Manufacturer: VIA Labs, Inc.         
May 02 23:34:06 archlinux kernel: usb 1-4: SerialNumber: 000000000
May 02 23:34:06 archlinux kernel: hub 1-4:1.0: USB hub found
May 02 23:34:06 archlinux kernel: hub 1-4:1.0: 5 ports detected
May 02 23:34:06 archlinux kernel: usb 1-5: new full-speed USB device number 4 using xhci_hcd
May 02 23:34:06 archlinux kernel: usb 1-5: New USB device found, idVendor=138a, idProduct=0094, bcdDevice= 1.64
May 02 23:34:06 archlinux kernel: usb 1-5: New USB device strings: Mfr=0, Product=0, SerialNumber=1
May 02 23:34:06 archlinux kernel: usb 1-5: SerialNumber: cd6680b95405
May 02 23:34:06 archlinux kernel: usb 1-7: new full-speed USB device number 5 using xhci_hcd
May 02 23:34:06 archlinux kernel: usb 1-7: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=24.11
May 02 23:34:06 archlinux kernel: usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
May 02 23:34:06 archlinux kernel: usb 1-7: Product: USB Receiver
May 02 23:34:06 archlinux kernel: usb 1-7: Manufacturer: Logitech
May 02 23:34:06 archlinux kernel: usbcore: registered new interface driver usbhid
May 02 23:34:06 archlinux kernel: usbhid: USB HID core driver
May 02 23:34:06 archlinux kernel: usb 1-4.1: new high-speed USB device number 6 using xhci_hcd
May 02 23:34:06 archlinux kernel: Console: switching to colour frame buffer device 240x67
May 02 23:34:06 archlinux kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
May 02 23:34:06 archlinux kernel: usb 1-4.1: New USB device found, idVendor=1a40, idProduct=0101, bcdDevice= 1.11
May 02 23:34:06 archlinux kernel: usb 1-4.1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
May 02 23:34:06 archlinux kernel: usb 1-4.1: Product: USB 2.0 Hub
May 02 23:34:06 archlinux kernel: input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/0003:046D:C52B.0001/input/input5
May 02 23:34:06 archlinux kernel: hub 1-4.1:1.0: USB hub found
May 02 23:34:06 archlinux kernel: hub 1-4.1:1.0: 4 ports detected
May 02 23:34:06 archlinux kernel: hid-generic 0003:046D:C52B.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:14.0-7/input0
May 02 23:34:06 archlinux kernel: input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/0003:046D:C52B.0002/input/input6
May 02 23:34:06 archlinux kernel: input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/0003:046D:C52B.0002/input/input7
May 02 23:34:06 archlinux kernel: input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/0003:046D:C52B.0002/input/input8
May 02 23:34:06 archlinux kernel: hid-generic 0003:046D:C52B.0002: input,hiddev96,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-7/input1
May 02 23:34:06 archlinux kernel: hid-generic 0003:046D:C52B.0003: hiddev97,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-7/input2
May 02 23:34:06 archlinux kernel: usb 1-8: new full-speed USB device number 7 using xhci_hcd
May 02 23:34:06 archlinux kernel: usb 1-8: New USB device found, idVendor=0cf3, idProduct=e300, bcdDevice= 0.01
May 02 23:34:06 archlinux kernel: usb 1-8: New USB device strings: Mfr=0, Product=0, SerialNumber=0
May 02 23:34:06 archlinux kernel: logitech-djreceiver 0003:046D:C52B.0003: hiddev96,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-7/input2
May 02 23:34:06 archlinux kernel: usb 1-4.5: new high-speed USB device number 8 using xhci_hcd
May 02 23:34:06 archlinux kernel: usb 1-4.5: New USB device found, idVendor=050d, idProduct=008a, bcdDevice= 0.01
May 02 23:34:06 archlinux kernel: usb 1-4.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
May 02 23:34:06 archlinux kernel: usb 1-4.5: Product: USB-C 6-in-1 Multiport Adapter
May 02 23:34:06 archlinux kernel: usb 1-4.5: Manufacturer: Belkin International   
May 02 23:34:06 archlinux kernel: usb 1-4.5: SerialNumber: 0000000000000001
May 02 23:34:06 archlinux kernel: input: Logitech Wireless Device PID:4055 Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.2/0003:046D:C52B.0003/0003:046D:4055.0004/input/input10
May 02 23:34:06 archlinux kernel: hid-generic 0003:046D:4055.0004: input,hidraw1: USB HID v1.11 Mouse [Logitech Wireless Device PID:4055] on usb-0000:00:14.0-7/input2:1
May 02 23:34:06 archlinux kernel: input: Logitech Wireless Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.2/0003:046D:C52B.0003/0003:046D:4055.0004/input/input14
May 02 23:34:06 archlinux kernel: logitech-hidpp-device 0003:046D:4055.0004: input,hidraw1: USB HID v1.11 Mouse [Logitech Wireless Mouse] on usb-0000:00:14.0-7/input2:1
May 02 23:34:06 archlinux kernel: BTRFS: device label magnolia devid 1 transid 1789 /dev/nvme0n1p5 scanned by mount (153)
May 02 23:34:06 archlinux kernel: BTRFS info (device nvme0n1p5): first mount of filesystem aa276d53-410c-4bf4-ac41-08b658625043
May 02 23:34:06 archlinux kernel: BTRFS info (device nvme0n1p5): using crc32c (crc32c-intel) checksum algorithm
May 02 23:34:06 archlinux kernel: BTRFS info (device nvme0n1p5): disk space caching is enabled
May 02 23:34:06 archlinux kernel: usb 1-4.1.1: new high-speed USB device number 9 using xhci_hcd
May 02 23:34:06 archlinux systemd[1]: systemd 255.4-2-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)
May 02 23:34:06 archlinux systemd[1]: Detected architecture x86-64.
May 02 23:34:06 archlinux kernel: usb 1-4.1.1: New USB device found, idVendor=2109, idProduct=0102, bcdDevice= 7.01
May 02 23:34:06 archlinux kernel: usb 1-4.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
May 02 23:34:06 archlinux kernel: usb 1-4.1.1: Product: USB 2.0 BILLBOARD             
May 02 23:34:06 archlinux kernel: usb 1-4.1.1: Manufacturer: VIA Technologies Inc.         
May 02 23:34:06 archlinux kernel: usb 1-4.1.1: SerialNumber: 0000000000000001
May 02 23:34:06 archlinux kernel: usb 2-1.4: new SuperSpeed USB device number 3 using xhci_hcd
May 02 23:34:06 archlinux kernel: usb 2-1.4: New USB device found, idVendor=0bda, idProduct=8153, bcdDevice=31.00
May 02 23:34:06 archlinux kernel: usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=6
May 02 23:34:06 archlinux kernel: usb 2-1.4: Product: USB 10/100/1000 LAN
May 02 23:34:06 archlinux kernel: usb 2-1.4: Manufacturer: Realtek
May 02 23:34:06 archlinux kernel: usb 2-1.4: SerialNumber: 001000001
May 02 23:34:06 archlinux kernel: usb 1-4.1.2: new high-speed USB device number 10 using xhci_hcd
May 02 23:34:06 archlinux systemd[1]: bpf-lsm: LSM BPF program attached
May 02 23:34:06 archlinux kernel: usb 1-4.1.2: New USB device found, idVendor=05e3, idProduct=0751, bcdDevice=14.04
May 02 23:34:06 archlinux kernel: usb 1-4.1.2: New USB device strings: Mfr=3, Product=4, SerialNumber=0
May 02 23:34:06 archlinux kernel: usb 1-4.1.2: Product: USB Storage
May 02 23:34:06 archlinux kernel: usb 1-4.1.2: Manufacturer: USB Storage
May 02 23:34:06 archlinux systemd[1]: Queued start job for default target Graphical Interface.
May 02 23:34:06 archlinux systemd[1]: Created slice Slice /system/dirmngr.
May 02 23:34:06 archlinux systemd[1]: Created slice Slice /system/getty.
May 02 23:34:06 archlinux systemd[1]: Created slice Slice /system/gpg-agent.
May 02 23:34:06 archlinux systemd[1]: Created slice Slice /system/gpg-agent-browser.
May 02 23:34:06 archlinux systemd[1]: Created slice Slice /system/gpg-agent-extra.
May 02 23:34:06 archlinux systemd[1]: Created slice Slice /system/gpg-agent-ssh.
May 02 23:34:06 archlinux systemd[1]: Created slice Slice /system/keyboxd.
May 02 23:34:06 archlinux systemd[1]: Created slice Slice /system/modprobe.
May 02 23:34:06 archlinux systemd[1]: Created slice Slice /system/systemd-fsck.
May 02 23:34:06 archlinux systemd[1]: Created slice User and Session Slice.
May 02 23:34:06 archlinux systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
May 02 23:34:06 archlinux systemd[1]: Started Forward Password Requests to Wall Directory Watch.
May 02 23:34:06 archlinux systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
May 02 23:34:06 archlinux systemd[1]: Expecting device /dev/disk/by-uuid/2879-4041...
May 02 23:34:06 archlinux systemd[1]: Expecting device /dev/disk/by-uuid/aa276d53-410c-4bf4-ac41-08b658625043...
May 02 23:34:06 archlinux systemd[1]: Reached target Local Encrypted Volumes.
May 02 23:34:06 archlinux systemd[1]: Reached target Local Integrity Protected Volumes.
May 02 23:34:06 archlinux systemd[1]: Reached target Path Units.
May 02 23:34:06 archlinux systemd[1]: Reached target Remote Encrypted Volumes.
May 02 23:34:06 archlinux systemd[1]: Reached target Remote File Systems.
May 02 23:34:06 archlinux systemd[1]: Reached target Slice Units.
May 02 23:34:06 archlinux systemd[1]: Reached target Swaps.
May 02 23:34:06 archlinux systemd[1]: Reached target Local Verity Protected Volumes.
May 02 23:34:06 archlinux systemd[1]: Listening on Device-mapper event daemon FIFOs.
May 02 23:34:06 archlinux systemd[1]: Listening on LVM2 poll daemon socket.
May 02 23:34:06 archlinux systemd[1]: Listening on Process Core Dump Socket.
May 02 23:34:06 archlinux systemd[1]: Listening on Journal Socket (/dev/log).
May 02 23:34:06 archlinux systemd[1]: Listening on Journal Socket.
May 02 23:34:06 archlinux systemd[1]: Listening on Network Service Netlink Socket.
May 02 23:34:06 archlinux systemd[1]: TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:34:06 archlinux systemd[1]: Listening on udev Control Socket.
May 02 23:34:06 archlinux systemd[1]: Listening on udev Kernel Socket.
May 02 23:34:06 archlinux systemd[1]: Listening on User Database Manager Socket.
May 02 23:34:06 archlinux systemd[1]: Mounting Huge Pages File System...
May 02 23:34:06 archlinux systemd[1]: Mounting POSIX Message Queue File System...
May 02 23:34:06 archlinux systemd[1]: Mounting Kernel Debug File System...
May 02 23:34:06 archlinux systemd[1]: Mounting Kernel Trace File System...
May 02 23:34:06 archlinux systemd[1]: Mounting Temporary Directory /tmp...
May 02 23:34:06 archlinux systemd[1]: Starting Create List of Static Device Nodes...
May 02 23:34:06 archlinux systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
May 02 23:34:06 archlinux systemd[1]: Starting Load Kernel Module configfs...
May 02 23:34:06 archlinux systemd[1]: Starting Load Kernel Module dm_mod...
May 02 23:34:06 archlinux systemd[1]: Starting Load Kernel Module drm...
May 02 23:34:06 archlinux systemd[1]: Starting Load Kernel Module efi_pstore...
May 02 23:34:06 archlinux systemd[1]: Starting Load Kernel Module fuse...
May 02 23:34:06 archlinux systemd[1]: Starting Load Kernel Module loop...
May 02 23:34:06 archlinux systemd[1]: Starting Journal Service...
May 02 23:34:06 archlinux systemd[1]: Starting Load Kernel Modules...
May 02 23:34:06 archlinux systemd[1]: Starting Generate network units from Kernel command line...
May 02 23:34:06 archlinux systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:34:06 archlinux systemd[1]: Starting Remount Root and Kernel File Systems...
May 02 23:34:06 archlinux systemd[1]: TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:34:06 archlinux kernel: device-mapper: uevent: version 1.0.3
May 02 23:34:06 archlinux kernel: device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
May 02 23:34:06 archlinux systemd[1]: Starting Coldplug All udev Devices...
May 02 23:34:06 archlinux kernel: fuse: init (API version 7.39)
May 02 23:34:06 archlinux systemd[1]: Mounted Huge Pages File System.
May 02 23:34:06 archlinux systemd[1]: Mounted POSIX Message Queue File System.
May 02 23:34:06 archlinux systemd[1]: Mounted Kernel Debug File System.
May 02 23:34:06 archlinux systemd[1]: Mounted Kernel Trace File System.
May 02 23:34:06 archlinux systemd[1]: Mounted Temporary Directory /tmp.
May 02 23:34:06 archlinux systemd[1]: Finished Create List of Static Device Nodes.
May 02 23:34:06 archlinux systemd[1]: modprobe@configfs.service: Deactivated successfully.
May 02 23:34:06 archlinux systemd[1]: Finished Load Kernel Module configfs.
May 02 23:34:06 archlinux systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
May 02 23:34:06 archlinux systemd[1]: Finished Load Kernel Module dm_mod.
May 02 23:34:06 archlinux systemd[1]: modprobe@drm.service: Deactivated successfully.
May 02 23:34:06 archlinux systemd[1]: Finished Load Kernel Module drm.
May 02 23:34:06 archlinux kernel: loop: module loaded
May 02 23:34:06 archlinux systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
May 02 23:34:06 archlinux systemd[1]: Finished Load Kernel Module efi_pstore.
May 02 23:34:06 archlinux systemd[1]: modprobe@fuse.service: Deactivated successfully.
May 02 23:34:06 archlinux systemd[1]: Finished Load Kernel Module fuse.
May 02 23:34:06 archlinux kernel: BTRFS info (device nvme0n1p5: state M): turning on sync discard
May 02 23:34:06 archlinux kernel: BTRFS info (device nvme0n1p5: state M): use zstd compression, level 3
May 02 23:34:06 archlinux systemd[1]: modprobe@loop.service: Deactivated successfully.
May 02 23:34:06 archlinux systemd[1]: Finished Load Kernel Module loop.
May 02 23:34:06 archlinux systemd[1]: Mounting FUSE Control File System...
May 02 23:34:06 archlinux systemd-journald[210]: Collecting audit messages is disabled.
May 02 23:34:06 archlinux systemd[1]: Mounting Kernel Configuration File System...
May 02 23:34:06 archlinux systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
May 02 23:34:06 archlinux systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
May 02 23:34:06 archlinux systemd[1]: Finished Generate network units from Kernel command line.
May 02 23:34:06 archlinux systemd[1]: Finished Remount Root and Kernel File Systems.
May 02 23:34:06 archlinux systemd[1]: Mounted FUSE Control File System.
May 02 23:34:06 archlinux systemd[1]: Mounted Kernel Configuration File System.
May 02 23:34:06 archlinux systemd[1]: Reached target Preparation for Network.
May 02 23:34:06 archlinux systemd[1]: Rebuild Hardware Database was skipped because no trigger condition checks were met.
May 02 23:34:06 archlinux systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
May 02 23:34:06 archlinux systemd[1]: Finished Load Kernel Modules.
May 02 23:34:06 archlinux systemd[1]: Starting Apply Kernel Variables...
May 02 23:34:06 archlinux systemd[1]: Starting User Database Manager...
May 02 23:34:06 archlinux systemd[1]: Finished Apply Kernel Variables.
May 02 23:34:06 archlinux systemd-journald[210]: Journal started
May 02 23:34:06 archlinux systemd-journald[210]: Runtime Journal (/run/log/journal/bc47046c25d64071a8322148626a91cb) is 8.0M, max 384.1M, 376.1M free.
May 02 23:34:06 archlinux systemd-modules-load[211]: Inserted module 'crypto_user'
May 02 23:34:06 archlinux systemd-modules-load[211]: Inserted module 'sg'
May 02 23:34:06 archlinux systemd[1]: Started Journal Service.
May 02 23:34:06 archlinux systemd[1]: Started User Database Manager.
May 02 23:34:06 archlinux systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
May 02 23:34:06 archlinux systemd[1]: Starting Create System Users...
May 02 23:34:06 archlinux systemd[1]: Finished Coldplug All udev Devices.
May 02 23:34:06 archlinux systemd[1]: Finished Create System Users.
May 02 23:34:06 archlinux systemd[1]: Starting Create Static Device Nodes in /dev...
May 02 23:34:06 archlinux systemd[1]: Finished Create Static Device Nodes in /dev.
May 02 23:34:06 archlinux systemd[1]: Reached target Preparation for Local File Systems.
May 02 23:34:06 archlinux systemd[1]: Starting Rule-based Manager for Device Events and Files...
May 02 23:34:06 archlinux systemd-udevd[254]: Using default interface naming scheme 'v255'.
May 02 23:34:06 archlinux systemd[1]: Started Rule-based Manager for Device Events and Files.
May 02 23:34:07 archlinux systemd[1]: Starting Network Configuration...
May 02 23:34:07 archlinux mtp-probe[286]: checking bus 1, device 5: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7"
May 02 23:34:07 archlinux mtp-probe[286]: bus: 1, device: 5 was not an MTP device
May 02 23:34:07 archlinux systemd[1]: Found device SAMSUNG MZVLW512HMJP-000L2 SYSTEM_DRV.
May 02 23:34:07 archlinux kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
May 02 23:34:07 archlinux kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
May 02 23:34:07 archlinux kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
May 02 23:34:07 archlinux kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
May 02 23:34:07 archlinux kernel: cfg80211: failed to load regulatory.db
May 02 23:34:07 archlinux systemd-networkd[265]: lo: Link UP
May 02 23:34:07 archlinux systemd-networkd[265]: lo: Gained carrier
May 02 23:34:07 archlinux systemd-networkd[265]: Enumeration completed
May 02 23:34:07 archlinux systemd[1]: Found device SAMSUNG MZVLW512HMJP-000L2 magnolia.
May 02 23:34:07 archlinux systemd[1]: Started Network Configuration.
May 02 23:34:07 archlinux systemd[1]: etc.mount: Directory /etc to mount over is not empty, mounting anyway.
May 02 23:34:07 archlinux kernel: Consider using thermal netlink events interface
May 02 23:34:07 archlinux kernel: mousedev: PS/2 mouse device common for all mice
May 02 23:34:07 archlinux systemd[1]: Mounting /etc...
May 02 23:34:07 archlinux systemd[1]: var.mount: Directory /var to mount over is not empty, mounting anyway.
May 02 23:34:07 archlinux systemd[1]: Mounting /var...
May 02 23:34:07 archlinux kernel: intel_pmc_core INT33A1:00:  initialized
May 02 23:34:07 archlinux systemd[1]: Starting File System Check on /dev/disk/by-uuid/2879-4041...
May 02 23:34:07 archlinux systemd[1]: Mounted /etc.
May 02 23:34:07 archlinux systemd[1]: Mounted /var.
May 02 23:34:07 archlinux systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
May 02 23:34:07 archlinux systemd[1]: Reached target Containers.
May 02 23:34:07 archlinux systemd[1]: Starting Flush Journal to Persistent Storage...
May 02 23:34:07 archlinux systemd[1]: Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
May 02 23:34:07 archlinux systemd[1]: Starting Load/Save OS Random Seed...
May 02 23:34:07 archlinux systemd[1]: TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:34:07 archlinux kernel: input: Ideapad extra buttons as /devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/input/input15
May 02 23:34:07 archlinux mtp-probe[306]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-1"
May 02 23:34:07 archlinux mtp-probe[307]: checking bus 1, device 4: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5"
May 02 23:34:07 archlinux systemd-journald[210]: Time spent on flushing to /var/log/journal/bc47046c25d64071a8322148626a91cb is 309.794ms for 977 entries.
May 02 23:34:07 archlinux systemd-journald[210]: System Journal (/var/log/journal/bc47046c25d64071a8322148626a91cb) is 406.6M, max 4.0G, 3.6G free.
May 02 23:34:07 archlinux systemd-journald[210]: Received client request to flush runtime journal.
May 02 23:34:07 archlinux systemd-journald[210]: /var/log/journal/bc47046c25d64071a8322148626a91cb/system.journal: Journal file uses a different sequence number ID, rotating.
May 02 23:34:07 archlinux systemd-journald[210]: Rotating system journal.
May 02 23:34:07 archlinux kernel: mc: Linux media interface: v0.10
May 02 23:34:07 archlinux kernel: ideapad_acpi VPC2004:00: DYTC interface is not available
May 02 23:34:07 archlinux kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
May 02 23:34:07 archlinux kernel: intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
May 02 23:34:07 archlinux kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
May 02 23:34:07 archlinux kernel: intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
May 02 23:34:07 archlinux kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
May 02 23:34:07 archlinux kernel: intel-lpss 0000:00:15.3: enabling device (0000 -> 0002)
May 02 23:34:07 archlinux kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit
May 02 23:34:07 archlinux kernel: input: PC Speaker as /devices/platform/pcspkr/input/input16
May 02 23:34:07 archlinux kernel: usb-storage 1-4.1.2:1.0: USB Mass Storage device detected
May 02 23:34:07 archlinux kernel: videodev: Linux video capture interface: v2.00
May 02 23:34:07 archlinux kernel: scsi host0: usb-storage 1-4.1.2:1.0
May 02 23:34:07 archlinux kernel: usbcore: registered new interface driver usb-storage
May 02 23:34:07 archlinux kernel: Bluetooth: Core ver 2.22
May 02 23:34:07 archlinux kernel: NET: Registered PF_BLUETOOTH protocol family
May 02 23:34:07 archlinux kernel: Bluetooth: HCI device and connection manager initialized
May 02 23:34:07 archlinux kernel: Bluetooth: HCI socket layer initialized
May 02 23:34:07 archlinux kernel: Bluetooth: L2CAP socket layer initialized
May 02 23:34:07 archlinux kernel: Bluetooth: SCO socket layer initialized
May 02 23:34:07 archlinux kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
May 02 23:34:07 archlinux kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
May 02 23:34:07 archlinux kernel: i2c i2c-9: 2/4 memory slots populated (from DMI)
May 02 23:34:07 archlinux mtp-probe[307]: bus: 1, device: 4 was not an MTP device
May 02 23:34:07 archlinux systemd[1]: Finished Load/Save OS Random Seed.
May 02 23:34:07 archlinux systemd-fsck[303]: fsck.fat 4.2 (2021-01-31)
May 02 23:34:07 archlinux systemd-fsck[303]: /dev/nvme0n1p1: 227 files, 50425/65536 clusters
May 02 23:34:07 archlinux mtp-probe[306]: bus: 1, device: 2 was not an MTP device
May 02 23:34:07 archlinux systemd[1]: Finished File System Check on /dev/disk/by-uuid/2879-4041.
May 02 23:34:07 archlinux mtp-probe[321]: checking bus 2, device 3: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-1/2-1.4"
May 02 23:34:07 archlinux systemd[1]: Mounting /boot...
May 02 23:34:07 archlinux mtp-probe[318]: checking bus 1, device 10: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.1/1-4.1.2"
May 02 23:34:07 archlinux systemd[1]: Created slice Slice /system/systemd-backlight.
May 02 23:34:07 archlinux mtp-probe[321]: bus: 2, device: 3 was not an MTP device
May 02 23:34:07 archlinux systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:intel_backlight...
May 02 23:34:07 archlinux mtp-probe[318]: bus: 1, device: 10 was not an MTP device
May 02 23:34:07 archlinux systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:intel_backlight.
May 02 23:34:07 archlinux systemd[1]: Starting Virtual Console Setup...
May 02 23:34:07 archlinux systemd[1]: Finished Flush Journal to Persistent Storage.
May 02 23:34:07 archlinux kernel: input: SYNA2B31:00 06CB:7F8C Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-7/i2c-SYNA2B31:00/0018:06CB:7F8C.0005/input/input17
May 02 23:34:07 archlinux kernel: input: SYNA2B31:00 06CB:7F8C Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-7/i2c-SYNA2B31:00/0018:06CB:7F8C.0005/input/input18
May 02 23:34:07 archlinux kernel: hid-generic 0018:06CB:7F8C.0005: input,hidraw2: I2C HID v1.00 Mouse [SYNA2B31:00 06CB:7F8C] on i2c-SYNA2B31:00
May 02 23:34:07 archlinux systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
May 02 23:34:07 archlinux systemd[1]: Starting Load/Save RF Kill Switch Status...
May 02 23:34:07 archlinux systemd[1]: Starting Load/Save Screen Backlight Brightness of leds:platform::kbd_backlight...
May 02 23:34:07 archlinux kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
May 02 23:34:07 archlinux systemd[1]: Finished Virtual Console Setup.
May 02 23:34:07 archlinux kernel: hid-generic 0018:048D:8186.0006: hidraw3: I2C HID v1.00 Device [ITE8186:00 048D:8186] on i2c-ITE8186:00
May 02 23:34:07 archlinux systemd[1]: Finished Load/Save Screen Backlight Brightness of leds:platform::kbd_backlight.
May 02 23:34:07 archlinux systemd[1]: Started Load/Save RF Kill Switch Status.
May 02 23:34:08 archlinux kernel: scsi 0:0:0:0: Direct-Access     Generic  STORAGE DEVICE   1404 PQ: 0 ANSI: 6
May 02 23:34:08 archlinux kernel: sd 0:0:0:0: Attached scsi generic sg0 type 0
May 02 23:34:08 archlinux kernel: i2c_hid_acpi i2c-SYNA7813:00: device did not ack reset within 1000 ms
May 02 23:34:08 archlinux kernel: input: SYNA7813:00 06CB:1786 Touchscreen as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-6/i2c-SYNA7813:00/0018:06CB:1786.0007/input/input20
May 02 23:34:08 archlinux kernel: hid-generic 0018:06CB:1786.0007: input,hidraw4: I2C HID v1.00 Device [SYNA7813:00 06CB:1786] on i2c-SYNA7813:00
May 02 23:34:08 archlinux kernel: sd 0:0:0:0: [sda] Media removed, stopped polling
May 02 23:34:08 archlinux kernel: sd 0:0:0:0: [sda] Attached SCSI removable disk
May 02 23:34:08 archlinux systemd[1]: Mounted /boot.
May 02 23:34:08 archlinux systemd[1]: Reached target Local File Systems.
May 02 23:34:08 archlinux systemd[1]: Listening on System Extension Image Management (Varlink).
May 02 23:34:08 archlinux systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
May 02 23:34:08 archlinux systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
May 02 23:34:08 archlinux kernel: usbcore: registered new device driver r8152-cfgselector
May 02 23:34:08 archlinux kernel: usbcore: registered new interface driver uas
May 02 23:34:08 archlinux systemd[1]: Starting Update Boot Loader Random Seed...
May 02 23:34:08 archlinux systemd[1]: Starting Automatic Boot Loader Update...
May 02 23:34:08 archlinux kernel: iTCO_vendor_support: vendor-support=0
May 02 23:34:08 archlinux bootctl[368]: ! Mount point '/boot' which backs the random seed file is world accessible, which is a security hole! !
May 02 23:34:08 archlinux bootctl[368]: ! Random seed file '/boot/loader/random-seed' is world accessible, which is a security hole! !
May 02 23:34:08 archlinux bootctl[368]: Random seed file /boot/loader/random-seed successfully refreshed (32 bytes).
May 02 23:34:08 archlinux systemd[1]: Starting Create Volatile Files and Directories...
May 02 23:34:08 archlinux kernel: RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
May 02 23:34:08 archlinux kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
May 02 23:34:08 archlinux kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
May 02 23:34:08 archlinux kernel: RAPL PMU: hw unit of domain dram 2^-14 Joules
May 02 23:34:08 archlinux kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
May 02 23:34:08 archlinux systemd[1]: Finished Update Boot Loader Random Seed.
May 02 23:34:08 archlinux bootctl[370]: Skipping "/boot/EFI/systemd/systemd-bootx64.efi", same boot loader version in place already.
May 02 23:34:08 archlinux bootctl[370]: Skipping "/boot/EFI/BOOT/BOOTX64.EFI", same boot loader version in place already.
May 02 23:34:08 archlinux systemd[1]: Finished Automatic Boot Loader Update.
May 02 23:34:08 archlinux kernel: intel_rapl_common: Found RAPL domain package
May 02 23:34:08 archlinux kernel: intel_rapl_common: Found RAPL domain core
May 02 23:34:08 archlinux kernel: intel_rapl_common: Found RAPL domain uncore
May 02 23:34:08 archlinux kernel: intel_rapl_common: Found RAPL domain dram
May 02 23:34:08 archlinux kernel: hid-sensor-hub 0018:048D:8186.0006: hidraw3: I2C HID v1.00 Device [ITE8186:00 048D:8186] on i2c-ITE8186:00
May 02 23:34:08 archlinux kernel: cryptd: max_cpu_qlen set to 1000
May 02 23:34:08 archlinux kernel: iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400)
May 02 23:34:08 archlinux kernel: iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
May 02 23:34:08 archlinux kernel: AVX2 version of gcm_enc/dec engaged.
May 02 23:34:08 archlinux kernel: AES CTR mode by8 optimization enabled
May 02 23:34:08 archlinux kernel: intel_rapl_common: Found RAPL domain package
May 02 23:34:08 archlinux kernel: intel_rapl_common: Found RAPL domain dram
May 02 23:34:08 archlinux kernel: r8152-cfgselector 2-1.4: reset SuperSpeed USB device number 3 using xhci_hcd
May 02 23:34:08 archlinux kernel: usb 1-1: Found UVC 1.00 device EasyCamera (04f2:b5a4)
May 02 23:34:08 archlinux kernel: ath10k_pci 0000:01:00.0: pci irq msi oper_irq_mode 2 irq_mode 0 reset_mode 0
May 02 23:34:08 archlinux kernel: usbcore: registered new interface driver uvcvideo
May 02 23:34:08 archlinux kernel: r8152 2-1.4:1.0: load rtl8153b-2 v2 04/27/23 successfully
May 02 23:34:09 archlinux kernel: snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
May 02 23:34:09 archlinux kernel: snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
May 02 23:34:09 archlinux kernel: input: SYNA2B31:00 06CB:7F8C Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-7/i2c-SYNA2B31:00/0018:06CB:7F8C.0005/input/input22
May 02 23:34:09 archlinux kernel: r8152 2-1.4:1.0 eth0: v1.12.13
May 02 23:34:09 archlinux kernel: usbcore: registered new interface driver r8152
May 02 23:34:09 archlinux kernel: usbcore: registered new interface driver cdc_ether
May 02 23:34:09 archlinux kernel: input: SYNA2B31:00 06CB:7F8C Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-7/i2c-SYNA2B31:00/0018:06CB:7F8C.0005/input/input23
May 02 23:34:09 archlinux kernel: hid-multitouch 0018:06CB:7F8C.0005: input,hidraw2: I2C HID v1.00 Mouse [SYNA2B31:00 06CB:7F8C] on i2c-SYNA2B31:00
May 02 23:34:09 archlinux systemd[1]: Finished Create Volatile Files and Directories.
May 02 23:34:09 archlinux kernel: input: SYNA7813:00 06CB:1786 as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-6/i2c-SYNA7813:00/0018:06CB:1786.0007/input/input25
May 02 23:34:09 archlinux systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 02 23:34:09 archlinux systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 02 23:34:09 archlinux systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
May 02 23:34:09 archlinux kernel: hid-multitouch 0018:06CB:1786.0007: input,hidraw4: I2C HID v1.00 Device [SYNA7813:00 06CB:1786] on i2c-SYNA7813:00
May 02 23:34:09 archlinux systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
May 02 23:34:09 archlinux kernel: usbcore: registered new interface driver r8153_ecm
May 02 23:34:09 archlinux kernel: usbcore: registered new interface driver btusb
May 02 23:34:09 archlinux mtp-probe[393]: checking bus 2, device 3: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-1/2-1.4"
May 02 23:34:09 archlinux kernel: Bluetooth: hci0: using rampatch file: qca/rampatch_usb_00000302.bin
May 02 23:34:09 archlinux kernel: Bluetooth: hci0: QCA: patch rome 0x302 build 0x3e8, firmware rome 0x302 build 0x111
May 02 23:34:09 archlinux systemd[1]: Starting Network Name Resolution...
May 02 23:34:09 archlinux systemd[1]: Starting Network Time Synchronization...
May 02 23:34:09 archlinux systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
May 02 23:34:09 archlinux systemd[1]: Starting Record System Boot/Shutdown in UTMP...
May 02 23:34:09 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC299: line_outs=2 (0x14/0x17/0x0/0x0/0x0) type:speaker
May 02 23:34:09 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
May 02 23:34:09 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
May 02 23:34:09 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
May 02 23:34:09 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:    inputs:
May 02 23:34:09 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:      Mic=0x19
May 02 23:34:09 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
May 02 23:34:09 archlinux mtp-probe[393]: bus: 2, device: 3 was not an MTP device
May 02 23:34:09 archlinux systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
May 02 23:34:09 archlinux systemd[1]: Starting Load Kernel Module dm_mod...
May 02 23:34:09 archlinux systemd[1]: Starting Load Kernel Module efi_pstore...
May 02 23:34:09 archlinux systemd[1]: Starting Load Kernel Module loop...
May 02 23:34:09 archlinux systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
May 02 23:34:09 archlinux systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 02 23:34:09 archlinux systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 02 23:34:09 archlinux systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
May 02 23:34:09 archlinux systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
May 02 23:34:09 archlinux systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
May 02 23:34:09 archlinux systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:34:09 archlinux systemd[1]: TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:34:09 archlinux systemd[1]: TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:34:09 archlinux systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
May 02 23:34:09 archlinux kernel: r8152 2-1.4:1.0 enp0s20f0u1u4: renamed from eth0
May 02 23:34:09 archlinux systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
May 02 23:34:09 archlinux systemd[1]: Finished Load Kernel Module dm_mod.
May 02 23:34:09 archlinux systemd-networkd[265]: eth0: Interface name change detected, renamed to enp0s20f0u1u4.
May 02 23:34:09 archlinux systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
May 02 23:34:09 archlinux systemd[1]: Finished Load Kernel Module efi_pstore.
May 02 23:34:09 archlinux kernel: ath10k_pci 0000:01:00.0: qca6174 hw3.2 target 0x05030000 chip_id 0x00340aff sub 17aa:0827
May 02 23:34:09 archlinux kernel: ath10k_pci 0000:01:00.0: kconfig debug 1 debugfs 1 tracing 1 dfs 0 testmode 0
May 02 23:34:09 archlinux kernel: ath10k_pci 0000:01:00.0: firmware ver WLAN.RM.4.4.1-00309- api 6 features wowlan,ignore-otp,mfp crc32 0793bcf2
May 02 23:34:09 archlinux systemd[1]: Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
May 02 23:34:09 archlinux systemd[1]: Finished Record System Boot/Shutdown in UTMP.
May 02 23:34:09 archlinux systemd[1]: modprobe@loop.service: Deactivated successfully.
May 02 23:34:09 archlinux systemd-resolved[391]: Positive Trust Anchors:
May 02 23:34:09 archlinux systemd[1]: Finished Load Kernel Module loop.
May 02 23:34:09 archlinux systemd-resolved[391]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d
May 02 23:34:09 archlinux systemd-resolved[391]: 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 170.0.0.192.in-addr.arpa 171.0.0.192.in-addr.arpa 168.192.in-addr.arpa d.f.ip6.arpa ipv4only.arpa corp home internal intranet lan local private test
May 02 23:34:09 archlinux systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
May 02 23:34:09 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-resolved[391]: Using system hostname 'archlinux'.
May 02 23:34:09 archlinux systemd[1]: Started Network Name Resolution.
May 02 23:34:09 archlinux systemd[1]: Reached target Network.
May 02 23:34:09 archlinux systemd[1]: Reached target Host and Network Name Lookups.
May 02 23:34:09 archlinux kernel: ath10k_pci 0000:01:00.0: board_file api 2 bmi_id N/A crc32 d2863f91
May 02 23:34:09 archlinux systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
May 02 23:34:09 archlinux kernel: intel_tcc_cooling: Programmable TCC Offset detected
May 02 23:34:09 archlinux systemd[1]: Starting Load Kernel Module dm_mod...
May 02 23:34:09 archlinux systemd[1]: Starting Load Kernel Module efi_pstore...
May 02 23:34:09 archlinux systemd[1]: Starting Load Kernel Module loop...
May 02 23:34:09 archlinux systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
May 02 23:34:09 archlinux systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 02 23:34:09 archlinux systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 02 23:34:09 archlinux systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
May 02 23:34:09 archlinux systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
May 02 23:34:09 archlinux systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
May 02 23:34:09 archlinux systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:34:09 archlinux systemd[1]: TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:34:09 archlinux systemd[1]: TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:34:09 archlinux systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
May 02 23:34:09 archlinux systemd[1]: Started Network Time Synchronization.
May 02 23:34:09 archlinux systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
May 02 23:34:09 archlinux systemd[1]: Finished Load Kernel Module dm_mod.
May 02 23:34:09 archlinux systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
May 02 23:34:09 archlinux systemd[1]: Finished Load Kernel Module efi_pstore.
May 02 23:34:09 archlinux systemd[1]: modprobe@loop.service: Deactivated successfully.
May 02 23:34:09 archlinux systemd[1]: Finished Load Kernel Module loop.
May 02 23:34:09 archlinux systemd[1]: Reached target System Time Set.
May 02 23:34:09 archlinux systemd[1]: Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
May 02 23:34:09 archlinux systemd[1]: Reached target System Initialization.
May 02 23:34:09 archlinux systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
May 02 23:34:09 archlinux systemd[1]: Started Daily man-db regeneration.
May 02 23:34:09 archlinux systemd[1]: Started Daily verification of password and group files.
May 02 23:34:09 archlinux systemd[1]: Started Daily Cleanup of Temporary Directories.
May 02 23:34:09 archlinux systemd[1]: Reached target Timer Units.
May 02 23:34:09 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:34:09 archlinux systemd[1]: Listening on D-Bus System Message Bus Socket.
May 02 23:34:09 archlinux systemd[1]: Listening on GnuPG network certificate management daemon for /etc/pacman.d/gnupg.
May 02 23:34:09 archlinux systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers) for /etc/pacman.d/gnupg.
May 02 23:34:09 archlinux systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (restricted) for /etc/pacman.d/gnupg.
May 02 23:34:09 archlinux systemd[1]: Listening on GnuPG cryptographic agent (ssh-agent emulation) for /etc/pacman.d/gnupg.
May 02 23:34:09 archlinux systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache for /etc/pacman.d/gnupg.
May 02 23:34:09 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:34:09 archlinux systemd[1]: Listening on GnuPG public key management service for /etc/pacman.d/gnupg.
May 02 23:34:09 archlinux systemd[1]: Reached target Socket Units.
May 02 23:34:09 archlinux systemd[1]: Starting D-Bus System Message Bus...
May 02 23:34:09 archlinux systemd[1]: TPM2 PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:34:09 archlinux systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
May 02 23:34:09 archlinux kernel: ath10k_pci 0000:01:00.0: htt-ver 3.87 wmi-op 4 htt-op 3 cal otp max-sta 32 raw 0 hwcrypto 1
May 02 23:34:09 archlinux dbus-broker-launch[423]: Looking up NSS user entry for 'pulse'...
May 02 23:34:09 archlinux dbus-broker-launch[423]: NSS returned no entry for 'pulse'
May 02 23:34:09 archlinux dbus-broker-launch[423]: Invalid user-name in /usr/share/dbus-1/system.d/pulseaudio-system.conf +27: user="pulse"
May 02 23:34:09 archlinux systemd[1]: Started D-Bus System Message Bus.
May 02 23:34:09 archlinux systemd[1]: Reached target Basic System.
May 02 23:34:09 archlinux systemd[1]: Starting Bluetooth service...
May 02 23:34:09 archlinux systemd[1]: Starting IIO Sensor Proxy service...
May 02 23:34:09 archlinux (uetoothd)[426]: bluetooth.service: ConfigurationDirectory 'bluetooth' already exists but the mode is different. (File system: 755 ConfigurationDirectoryMode: 555)
May 02 23:34:09 archlinux systemd[1]: Starting Home Area Manager...
May 02 23:34:09 archlinux kernel: Bluetooth: hci0: using NVM file: qca/nvm_usb_00000302.bin
May 02 23:34:09 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:34:09 archlinux dbus-broker-launch[423]: Ready
May 02 23:34:09 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:34:09 archlinux systemd[1]: Starting User Login Management...
May 02 23:34:09 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:34:09 archlinux systemd[1]: TPM2 PCR Barrier (User) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:34:09 archlinux systemd-homed[428]: Successfully loaded private key pair.
May 02 23:34:09 archlinux systemd-homed[428]: Watching /home.
May 02 23:34:09 archlinux systemd-homed[428]: User record gabx.identity is signed only by us, accepting.
May 02 23:34:09 archlinux systemd-homed[428]: Added registered home for user gabx.
May 02 23:34:09 archlinux kernel: Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
May 02 23:34:09 archlinux systemd[1]: Starting Authorization Manager...
May 02 23:34:09 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:34:09 archlinux kernel: ath: EEPROM regdomain: 0x6c
May 02 23:34:09 archlinux kernel: ath: EEPROM indicates we should expect a direct regpair map
May 02 23:34:09 archlinux kernel: ath: Country alpha2 being used: 00
May 02 23:34:09 archlinux kernel: ath: Regpair used: 0x6c
May 02 23:34:09 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:34:09 archlinux bluetoothd[426]: Bluetooth daemon 5.75
May 02 23:34:09 archlinux systemd[1]: Started Home Area Manager.
May 02 23:34:09 archlinux bluetoothd[426]: Starting SDP server
May 02 23:34:09 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:34:09 archlinux kernel: ath10k_pci 0000:01:00.0 wlp1s0: renamed from wlan0
May 02 23:34:09 archlinux systemd[1]: Started Bluetooth service.
May 02 23:34:09 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:34:09 archlinux systemd[1]: Reached target Bluetooth Support.
May 02 23:34:09 archlinux bluetoothd[426]: src/plugin.c:init_plugin() System does not support bap plugin
May 02 23:34:09 archlinux bluetoothd[426]: src/plugin.c:init_plugin() System does not support bass plugin
May 02 23:34:09 archlinux bluetoothd[426]: src/plugin.c:init_plugin() System does not support mcp plugin
May 02 23:34:09 archlinux bluetoothd[426]: src/plugin.c:init_plugin() System does not support vcp plugin
May 02 23:34:09 archlinux bluetoothd[426]: profiles/audio/micp.c:micp_init() D-Bus experimental not enabled
May 02 23:34:09 archlinux kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May 02 23:34:09 archlinux kernel: Bluetooth: BNEP filters: protocol multicast
May 02 23:34:09 archlinux kernel: Bluetooth: BNEP socket layer initialized
May 02 23:34:09 archlinux bluetoothd[426]: src/plugin.c:init_plugin() System does not support micp plugin
May 02 23:34:09 archlinux bluetoothd[426]: src/plugin.c:init_plugin() System does not support ccp plugin
May 02 23:34:09 archlinux bluetoothd[426]: src/plugin.c:init_plugin() System does not support csip plugin
May 02 23:34:09 archlinux bluetoothd[426]: Bluetooth management interface 1.22 initialized
May 02 23:34:09 archlinux systemd[1]: Finished Home Area Activation.
May 02 23:34:09 archlinux systemd-networkd[265]: wlan0: Interface name change detected, renamed to wlp1s0.
May 02 23:34:09 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: wlp1s0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:34:09 archlinux systemd[1]: Starting Hostname Service...
May 02 23:34:09 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: wlp1s0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-logind[429]: New seat seat0.
May 02 23:34:09 archlinux systemd[1]: Starting Permit User Sessions...
May 02 23:34:09 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: wlp1s0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: wlp1s0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-networkd[265]: wlp1s0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:34:09 archlinux systemd-logind[429]: Watching system buttons on /dev/input/event2 (Power Button)
May 02 23:34:09 archlinux systemd-logind[429]: Watching system buttons on /dev/input/event0 (Lid Switch)
May 02 23:34:09 archlinux systemd-logind[429]: Watching system buttons on /dev/input/event1 (Power Button)
May 02 23:34:09 archlinux systemd-logind[429]: Watching system buttons on /dev/input/event3 (AT Translated Set 2 keyboard)
May 02 23:34:09 archlinux systemd[1]: Started User Login Management.
May 02 23:34:09 archlinux systemd[1]: Finished Permit User Sessions.
May 02 23:34:09 archlinux systemd[1]: Started Getty on tty1.
May 02 23:34:09 archlinux systemd[1]: Reached target Login Prompts.
May 02 23:34:09 archlinux systemd[1]: Reached target Multi-User System.
May 02 23:34:09 archlinux systemd[1]: Reached target Graphical Interface.
May 02 23:34:09 archlinux polkitd[436]: Started polkitd version 124
May 02 23:34:09 archlinux polkitd[436]: Loading rules from directory /etc/polkit-1/rules.d
May 02 23:34:09 archlinux polkitd[436]: Loading rules from directory /usr/share/polkit-1/rules.d
May 02 23:34:09 archlinux systemd[1]: Started Hostname Service.
May 02 23:34:09 archlinux polkitd[436]: Finished loading, compiling and executing 10 rules
May 02 23:34:09 archlinux polkitd[436]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
May 02 23:34:09 archlinux systemd[1]: Started Authorization Manager.
May 02 23:34:09 archlinux systemd[1]: Started IIO Sensor Proxy service.
May 02 23:34:09 archlinux systemd[1]: Startup finished in 6.730s (firmware) + 2.449s (loader) + 3.604s (kernel) + 3.963s (userspace) = 16.747s.
May 02 23:34:09 archlinux agetty[446]: failed to open credentials directory
May 02 23:34:09 archlinux kernel: input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input27
May 02 23:34:09 archlinux kernel: input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input28
May 02 23:34:09 archlinux kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input29
May 02 23:34:09 archlinux kernel: input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input30
May 02 23:34:09 archlinux kernel: input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input31
May 02 23:34:09 archlinux systemd[1]: Reached target Sound Card.
May 02 23:34:10 archlinux bluetoothd[426]: src/adapter.c:reset_adv_monitors_complete() Failed to reset Adv Monitors: Failed (0x03)
May 02 23:34:10 archlinux bluetoothd[426]: Battery Provider Manager created
May 02 23:34:10 archlinux kernel: Bluetooth: MGMT ver 1.22
May 02 23:34:10 archlinux kernel: NET: Registered PF_ALG protocol family
May 02 23:34:10 archlinux bluetoothd[426]: Failed to clear UUIDs: Failed (0x03)
May 02 23:34:10 archlinux bluetoothd[426]: Failed to add UUID: Failed (0x03)
May 02 23:34:10 archlinux bluetoothd[426]: Failed to add UUID: Failed (0x03)
May 02 23:34:10 archlinux bluetoothd[426]: Failed to add UUID: Failed (0x03)
May 02 23:34:10 archlinux bluetoothd[426]: Failed to set mode: Failed (0x03)
May 02 23:34:10 archlinux bluetoothd[426]: Failed to add UUID: Failed (0x03)
May 02 23:34:10 archlinux bluetoothd[426]: Failed to add UUID: Failed (0x03)
May 02 23:34:10 archlinux bluetoothd[426]: Failed to add UUID: Failed (0x03)
May 02 23:34:12 archlinux systemd-homed[428]: gabx: changing state inactive → activating-for-acquire
May 02 23:34:12 archlinux systemd-homework[489]: None of the supplied plaintext passwords unlock the user record's hashed passwords.
May 02 23:34:12 archlinux systemd-homed[428]: Activation failed: Required key not available
May 02 23:34:12 archlinux systemd-homed[428]: gabx: changing state activating-for-acquire → inactive
May 02 23:34:12 archlinux systemd-homed[428]: Got notification that all sessions of user gabx ended, deactivating automatically.
May 02 23:34:12 archlinux systemd-homed[428]: Home gabx already deactivated, no automatic deactivation needed.
May 02 23:34:14 archlinux systemd[1]: systemd-rfkill.service: Deactivated successfully.
May 02 23:34:18 archlinux systemd-homed[428]: gabx: changing state inactive → activating-for-acquire
May 02 23:34:18 archlinux systemd-homework[493]: Provided password unlocks user record.
May 02 23:34:18 archlinux systemd-homework[493]: Read embedded .identity file.
May 02 23:34:18 archlinux systemd-homework[493]: Provided password unlocks user record.
May 02 23:34:18 archlinux systemd-homework[493]: Reconciling embedded user identity completed (host and embedded version were identical).
May 02 23:34:18 archlinux systemd-homework[493]: Recursive changing of ownership not necessary, skipped.
May 02 23:34:18 archlinux systemd-homework[493]: Synchronized disk.
May 02 23:34:18 archlinux systemd-homework[493]: Moving to final mount point /home/gabx completed.
May 02 23:34:18 archlinux systemd-homework[493]: Everything completed.
May 02 23:34:18 archlinux systemd-homed[428]: Home gabx is signed exclusively by our key, accepting.
May 02 23:34:18 archlinux systemd-homed[428]: gabx: changing state activating-for-acquire → active
May 02 23:34:18 archlinux login[446]: pam_systemd_home(login:auth): Home for user gabx successfully acquired.
May 02 23:34:18 archlinux login[446]: pam_unix(login:session): session opened for user gabx(uid=60509) by gabx(uid=0)
May 02 23:34:18 archlinux systemd-logind[429]: New session 1 of user gabx.
May 02 23:34:18 archlinux systemd[1]: Created slice User Slice of UID 60509.
May 02 23:34:18 archlinux systemd[1]: Starting User Runtime Directory /run/user/60509...
May 02 23:34:18 archlinux systemd[1]: Finished User Runtime Directory /run/user/60509.
May 02 23:34:18 archlinux systemd[1]: Starting User Manager for UID 60509...
May 02 23:34:18 archlinux (systemd)[498]: pam_systemd_home(systemd-user:account): Home for user gabx successfully acquired.
May 02 23:34:18 archlinux (systemd)[498]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[gabx] ruser=[<unknown>] rhost=[<unknown>]
May 02 23:34:18 archlinux (systemd)[498]: pam_unix(systemd-user:session): session opened for user gabx(uid=60509) by gabx(uid=0)
May 02 23:33:18 archlinux systemd-journald[208]: /var/log/journal/bc47046c25d64071a8322148626a91cb/user-60509.journal: Journal file uses a different sequence number ID, rotating.
May 02 23:33:18 archlinux login[445]: LOGIN ON tty1 BY gabx
May 02 23:33:18 archlinux systemd[1]: Started User Manager for UID 60509.
May 02 23:33:18 archlinux systemd[1]: Started Session 1 of User gabx.
May 02 23:33:24 archlinux systemd[1]: Starting RealtimeKit Scheduling Policy Service...
May 02 23:33:24 archlinux systemd[1]: Started RealtimeKit Scheduling Policy Service.
May 02 23:33:24 archlinux rtkit-daemon[616]: Successfully called chroot.
May 02 23:33:24 archlinux rtkit-daemon[616]: Successfully dropped privileges.
May 02 23:33:24 archlinux rtkit-daemon[616]: Successfully limited resources.
May 02 23:33:24 archlinux rtkit-daemon[616]: Running.
May 02 23:33:24 archlinux rtkit-daemon[616]: Watchdog thread running.
May 02 23:33:24 archlinux rtkit-daemon[616]: Canary thread running.
May 02 23:33:24 archlinux rtkit-daemon[616]: Supervising 0 threads of 0 processes of 0 users.
May 02 23:33:24 archlinux rtkit-daemon[616]: Supervising 0 threads of 0 processes of 0 users.
May 02 23:33:24 archlinux rtkit-daemon[616]: Successfully made thread 615 of process 585 owned by '60509' RT at priority 20.
May 02 23:33:24 archlinux rtkit-daemon[616]: Supervising 1 threads of 1 processes of 1 users.
May 02 23:33:25 archlinux systemd[1]: Starting Manage, Install and Generate Color Profiles...
May 02 23:33:25 archlinux systemd[1]: Started Manage, Install and Generate Color Profiles.
May 02 23:33:25 archlinux dbus-broker-launch[423]: Activation request for 'org.freedesktop.Avahi' failed: The systemd unit 'dbus-org.freedesktop.Avahi.service' could not be found.
May 02 23:33:25 archlinux systemd[1]: Reached target User and Group Name Lookups.
May 02 23:33:25 archlinux systemd[1]: Starting Accounts Service...
May 02 23:33:26 archlinux accounts-daemon[704]: started daemon version 23.13.0
May 02 23:33:26 archlinux systemd[1]: Started Accounts Service.
May 02 23:33:26 archlinux systemd[1]: Starting Daemon for power management...
May 02 23:33:26 archlinux systemd[1]: Started Daemon for power management.
May 02 23:33:26 archlinux rtkit-daemon[616]: Successfully made thread 802 of process 802 owned by '60509' high priority at nice level -11.
May 02 23:33:26 archlinux rtkit-daemon[616]: Supervising 2 threads of 2 processes of 1 users.
May 02 23:33:26 archlinux kernel: rfkill: input handler disabled
May 02 23:33:26 archlinux rtkit-daemon[616]: Successfully made thread 948 of process 948 owned by '60509' high priority at nice level -11.
May 02 23:33:26 archlinux rtkit-daemon[616]: Supervising 2 threads of 2 processes of 1 users.
May 02 23:33:27 archlinux rtkit-daemon[616]: Successfully made thread 952 of process 952 owned by '60509' high priority at nice level -11.
May 02 23:33:27 archlinux rtkit-daemon[616]: Supervising 2 threads of 2 processes of 1 users.
May 02 23:33:27 archlinux rtkit-daemon[616]: Successfully made thread 955 of process 955 owned by '60509' high priority at nice level -11.
May 02 23:33:27 archlinux rtkit-daemon[616]: Supervising 2 threads of 2 processes of 1 users.
May 02 23:33:27 archlinux rtkit-daemon[616]: Successfully made thread 958 of process 958 owned by '60509' high priority at nice level -11.
May 02 23:33:27 archlinux rtkit-daemon[616]: Supervising 2 threads of 2 processes of 1 users.
May 02 23:33:38 archlinux systemd-logind[430]: Power key pressed short.
May 02 23:33:38 archlinux systemd-logind[430]: Powering off...
May 02 23:33:38 archlinux systemd-logind[430]: System is powering down.
May 02 23:33:38 archlinux systemd[1]: Stopping Session 1 of User gabx...
May 02 23:33:38 archlinux systemd[1]: Removed slice Slice /system/modprobe.
May 02 23:33:38 archlinux systemd[1]: Stopped target Bluetooth Support.
May 02 23:33:38 archlinux systemd[1]: Stopped target Graphical Interface.
May 02 23:33:38 archlinux login[445]: pam_systemd_home(login:session): Not deactivating home directory of gabx, as it is still used.
May 02 23:33:38 archlinux login[445]: pam_unix(login:session): session closed for user gabx
May 02 23:33:38 archlinux systemd[1]: Stopped target Multi-User System.
May 02 23:33:38 archlinux systemd[1]: Stopped target Login Prompts.
May 02 23:33:38 archlinux systemd[1]: Stopped target Containers.
May 02 23:33:38 archlinux systemd[1]: Stopped target Host and Network Name Lookups.
May 02 23:33:38 archlinux systemd[1]: Stopped target Remote Encrypted Volumes.
May 02 23:33:38 archlinux systemd[1]: Stopped target Sound Card.
May 02 23:33:38 archlinux systemd[1]: Stopped target Timer Units.
May 02 23:33:38 archlinux systemd[1]: archlinux-keyring-wkd-sync.timer: Deactivated successfully.
May 02 23:33:38 archlinux systemd[1]: Stopped Refresh existing PGP keys of archlinux-keyring regularly.
May 02 23:33:38 archlinux systemd[1]: man-db.timer: Deactivated successfully.
May 02 23:33:38 archlinux systemd[1]: Stopped Daily man-db regeneration.
May 02 23:33:38 archlinux systemd[1]: shadow.timer: Deactivated successfully.
May 02 23:33:38 archlinux systemd[1]: Stopped Daily verification of password and group files.
May 02 23:33:38 archlinux systemd[1]: systemd-tmpfiles-clean.timer: Deactivated successfully.
May 02 23:33:38 archlinux systemd[1]: Stopped Daily Cleanup of Temporary Directories.
May 02 23:33:38 archlinux kernel: rfkill: input handler enabled
May 02 23:33:38 archlinux systemd[1]: Stopped target System Time Set.
May 02 23:33:38 archlinux systemd[1]: lvm2-lvmpolld.socket: Deactivated successfully.
May 02 23:33:38 archlinux systemd[1]: Closed LVM2 poll daemon socket.
May 02 23:33:38 archlinux systemd[1]: systemd-rfkill.socket: Deactivated successfully.
May 02 23:33:38 archlinux systemd[1]: Closed Load/Save RF Kill Switch Status /dev/rfkill Watch.
May 02 23:33:38 archlinux systemd[1]: Stopping Accounts Service...
May 02 23:33:38 archlinux bluetoothd[427]: Terminating
May 02 23:33:38 archlinux systemd[1]: Stopping Bluetooth service...
May 02 23:33:38 archlinux bluetoothd[427]: Battery Provider Manager destroyed
May 02 23:33:38 archlinux systemd[1]: Stopping Manage, Install and Generate Color Profiles...
May 02 23:33:38 archlinux bluetoothd[427]: Stopping SDP server
May 02 23:33:38 archlinux systemd[1]: Stopping Getty on tty1...
May 02 23:33:38 archlinux bluetoothd[427]: Exit
May 02 23:33:38 archlinux systemd[1]: Stopping IIO Sensor Proxy service...
May 02 23:33:38 archlinux systemd[1]: Starting Generate shutdown-ramfs...
May 02 23:33:38 archlinux systemd[1]: Stopping Authorization Manager...
May 02 23:33:38 archlinux systemd[1]: Stopping RealtimeKit Scheduling Policy Service...
May 02 23:33:38 archlinux systemd[1]: Stopping Hostname Service...
May 02 23:33:38 archlinux systemd[1]: Stopping Daemon for power management...
May 02 23:33:38 archlinux systemd[1]: run-user-60509-gvfs.mount: Deactivated successfully.
May 02 23:33:38 archlinux systemd[1]: Unmounted /run/user/60509/gvfs.
May 02 23:33:38 archlinux systemd[1]: bluetooth.service: Deactivated successfully.
May 02 23:33:38 archlinux systemd[1]: Stopped Bluetooth service.
May 02 23:33:38 archlinux systemd[1]: iio-sensor-proxy.service: Deactivated successfully.
May 02 23:33:38 archlinux systemd[1]: Stopped IIO Sensor Proxy service.
May 02 23:33:38 archlinux systemd[1]: polkit.service: Deactivated successfully.
May 02 23:33:38 archlinux systemd[1]: Stopped Authorization Manager.
May 02 23:33:38 archlinux systemd[1]: systemd-hostnamed.service: Deactivated successfully.
May 02 23:33:38 archlinux systemd[1]: Stopped Hostname Service.
May 02 23:33:38 archlinux systemd[1]: getty@tty1.service: Deactivated successfully.
May 02 23:33:38 archlinux systemd[1]: Stopped Getty on tty1.
May 02 23:33:38 archlinux systemd[1]: rtkit-daemon.service: Deactivated successfully.
May 02 23:33:38 archlinux systemd[1]: Stopped RealtimeKit Scheduling Policy Service.
May 02 23:33:38 archlinux systemd[1]: colord.service: Deactivated successfully.
May 02 23:33:38 archlinux systemd[1]: Stopped Manage, Install and Generate Color Profiles.
May 02 23:33:38 archlinux systemd[1]: accounts-daemon.service: Deactivated successfully.
May 02 23:33:38 archlinux systemd[1]: Stopped Accounts Service.
May 02 23:33:38 archlinux systemd[1]: session-1.scope: Deactivated successfully.
May 02 23:33:38 archlinux systemd[1]: Stopped Session 1 of User gabx.
May 02 23:33:38 archlinux systemd[1]: session-1.scope: Consumed 3.752s CPU time.
May 02 23:33:38 archlinux systemd-logind[430]: Session 1 logged out. Waiting for processes to exit.
May 02 23:33:38 archlinux systemd[1]: Removed slice Slice /system/getty.
May 02 23:33:38 archlinux mkinitcpio[968]: ==> Starting build: 'none'
May 02 23:33:38 archlinux mkinitcpio[968]:   -> Running build hook: [sd-shutdown]
May 02 23:33:38 archlinux systemd[1]: Stopping User Login Management...
May 02 23:33:38 archlinux systemd[1]: Stopping User Manager for UID 60509...
May 02 23:33:38 archlinux systemd[1]: upower.service: Deactivated successfully.
May 02 23:33:38 archlinux systemd[1]: Stopped Daemon for power management.
May 02 23:33:38 archlinux systemd[1]: systemd-logind.service: Deactivated successfully.
May 02 23:33:38 archlinux systemd[1]: Stopped User Login Management.
May 02 23:33:38 archlinux systemd-homed[429]: Got notification that all sessions of user gabx ended, deactivating automatically.
May 02 23:33:38 archlinux systemd-homed[429]: gabx: changing state active → deactivating
May 02 23:33:38 archlinux systemd[1]: user@60509.service: Deactivated successfully.
May 02 23:33:38 archlinux systemd[1]: Stopped User Manager for UID 60509.
May 02 23:33:38 archlinux mkinitcpio[968]: ==> Build complete.
May 02 23:33:38 archlinux systemd[1]: home-gabx.mount: Deactivated successfully.
May 02 23:33:38 archlinux systemd[1]: Unmounted /home/gabx.
May 02 23:33:38 archlinux systemd[1]: mkinitcpio-generate-shutdown-ramfs.service: Deactivated successfully.
May 02 23:33:38 archlinux systemd[1]: Finished Generate shutdown-ramfs.
May 02 23:33:38 archlinux systemd[1]: Stopping Permit User Sessions...
May 02 23:33:38 archlinux systemd[1]: Stopping User Runtime Directory /run/user/60509...
May 02 23:33:38 archlinux systemd[1]: systemd-user-sessions.service: Deactivated successfully.
May 02 23:33:38 archlinux systemd[1]: Stopped Permit User Sessions.
May 02 23:33:38 archlinux systemd[1]: Stopped target Network.
May 02 23:33:38 archlinux systemd[1]: Stopped target User and Group Name Lookups.
May 02 23:33:38 archlinux systemd[1]: Stopped target Remote File Systems.
May 02 23:33:39 archlinux systemd[1]: Stopping Home Area Activation...
May 02 23:33:39 archlinux systemd[1]: Stopping Network Configuration...
May 02 23:33:39 archlinux systemd[1]: run-user-60509.mount: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Unmounted /run/user/60509.
May 02 23:33:39 archlinux systemd[1]: user-runtime-dir@60509.service: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Stopped User Runtime Directory /run/user/60509.
May 02 23:33:39 archlinux systemd[1]: Removed slice User Slice of UID 60509.
May 02 23:33:39 archlinux systemd[1]: user-60509.slice: Consumed 4.278s CPU time.
May 02 23:33:39 archlinux systemd-homed[429]: Automatically deactivating home of user gabx.
May 02 23:33:39 archlinux systemd[1]: systemd-networkd.service: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Stopped Network Configuration.
May 02 23:33:39 archlinux systemd[1]: Stopped target Preparation for Network.
May 02 23:33:39 archlinux systemd[1]: systemd-network-generator.service: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Stopped Generate network units from Kernel command line.
May 02 23:33:39 archlinux systemd-homework[1097]: Syncing completed.
May 02 23:33:39 archlinux systemd-homework[1097]: Unmounting completed.
May 02 23:33:39 archlinux systemd-homework[1097]: Everything completed.
May 02 23:33:39 archlinux systemd-homed[429]: gabx: changing state deactivating → inactive
May 02 23:33:39 archlinux systemd-homed[429]: Home gabx is already deactivated.
May 02 23:33:39 archlinux systemd[1]: systemd-homed-activate.service: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Stopped Home Area Activation.
May 02 23:33:39 archlinux systemd[1]: Stopping Home Area Manager...
May 02 23:33:39 archlinux systemd[1]: systemd-homed.service: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Stopped Home Area Manager.
May 02 23:33:39 archlinux systemd[1]: Stopped target Basic System.
May 02 23:33:39 archlinux systemd[1]: Stopped target Path Units.
May 02 23:33:39 archlinux systemd[1]: Stopped target Slice Units.
May 02 23:33:39 archlinux systemd[1]: Removed slice User and Session Slice.
May 02 23:33:39 archlinux systemd[1]: user.slice: Consumed 4.278s CPU time.
May 02 23:33:39 archlinux systemd[1]: Stopped target Socket Units.
May 02 23:33:39 archlinux systemd[1]: dirmngr@etc-pacman.d-gnupg.socket: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Closed GnuPG network certificate management daemon for /etc/pacman.d/gnupg.
May 02 23:33:39 archlinux systemd[1]: Removed slice Slice /system/dirmngr.
May 02 23:33:39 archlinux systemd[1]: gpg-agent-browser@etc-pacman.d-gnupg.socket: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers) for /etc/pacman.d/gnupg.
May 02 23:33:39 archlinux systemd[1]: Removed slice Slice /system/gpg-agent-browser.
May 02 23:33:39 archlinux systemd[1]: gpg-agent-extra@etc-pacman.d-gnupg.socket: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Closed GnuPG cryptographic agent and passphrase cache (restricted) for /etc/pacman.d/gnupg.
May 02 23:33:39 archlinux systemd[1]: Removed slice Slice /system/gpg-agent-extra.
May 02 23:33:39 archlinux systemd[1]: gpg-agent-ssh@etc-pacman.d-gnupg.socket: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Closed GnuPG cryptographic agent (ssh-agent emulation) for /etc/pacman.d/gnupg.
May 02 23:33:39 archlinux systemd[1]: Removed slice Slice /system/gpg-agent-ssh.
May 02 23:33:39 archlinux systemd[1]: gpg-agent@etc-pacman.d-gnupg.socket: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Closed GnuPG cryptographic agent and passphrase cache for /etc/pacman.d/gnupg.
May 02 23:33:39 archlinux systemd[1]: Removed slice Slice /system/gpg-agent.
May 02 23:33:39 archlinux systemd[1]: keyboxd@etc-pacman.d-gnupg.socket: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Closed GnuPG public key management service for /etc/pacman.d/gnupg.
May 02 23:33:39 archlinux systemd[1]: Removed slice Slice /system/keyboxd.
May 02 23:33:39 archlinux systemd[1]: systemd-networkd.socket: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Closed Network Service Netlink Socket.
May 02 23:33:39 archlinux dbus-broker[426]: Dispatched 2060 messages @ 6(±6)μs / message.
May 02 23:33:39 archlinux systemd[1]: Stopping D-Bus System Message Bus...
May 02 23:33:39 archlinux systemd[1]: dbus-broker.service: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Stopped D-Bus System Message Bus.
May 02 23:33:39 archlinux systemd[1]: dbus.socket: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Closed D-Bus System Message Bus Socket.
May 02 23:33:39 archlinux systemd[1]: Stopped target System Initialization.
May 02 23:33:39 archlinux systemd[1]: proc-sys-fs-binfmt_misc.automount: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Unset automount Arbitrary Executable File Formats File System Automount Point.
May 02 23:33:39 archlinux systemd[1]: Stopped target Local Encrypted Volumes.
May 02 23:33:39 archlinux systemd[1]: systemd-ask-password-console.path: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
May 02 23:33:39 archlinux systemd[1]: systemd-ask-password-wall.path: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Stopped Forward Password Requests to Wall Directory Watch.
May 02 23:33:39 archlinux systemd[1]: Stopped target Local Integrity Protected Volumes.
May 02 23:33:39 archlinux systemd[1]: Stopped target Local Verity Protected Volumes.
May 02 23:33:39 archlinux systemd[1]: Stopping Load/Save Screen Backlight Brightness of backlight:intel_backlight...
May 02 23:33:39 archlinux systemd[1]: Stopping Load/Save Screen Backlight Brightness of leds:platform::kbd_backlight...
May 02 23:33:39 archlinux systemd[1]: systemd-boot-random-seed.service: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Stopped Update Boot Loader Random Seed.
May 02 23:33:39 archlinux systemd[1]: systemd-boot-update.service: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Stopped Automatic Boot Loader Update.
May 02 23:33:39 archlinux systemd[1]: Stopping Load/Save OS Random Seed...
May 02 23:33:39 archlinux systemd[1]: Stopping Network Name Resolution...
May 02 23:33:39 archlinux systemd[1]: Stopping Network Time Synchronization...
May 02 23:33:39 archlinux systemd[1]: Stopping Record System Boot/Shutdown in UTMP...
May 02 23:33:39 archlinux systemd[1]: systemd-resolved.service: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Stopped Network Name Resolution.
May 02 23:33:39 archlinux systemd[1]: systemd-timesyncd.service: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Stopped Network Time Synchronization.
May 02 23:33:39 archlinux systemd[1]: systemd-backlight@backlight:intel_backlight.service: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Stopped Load/Save Screen Backlight Brightness of backlight:intel_backlight.
May 02 23:33:39 archlinux systemd[1]: systemd-backlight@leds:platform::kbd_backlight.service: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Stopped Load/Save Screen Backlight Brightness of leds:platform::kbd_backlight.
May 02 23:33:39 archlinux systemd[1]: systemd-random-seed.service: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Stopped Load/Save OS Random Seed.
May 02 23:33:39 archlinux systemd[1]: Removed slice Slice /system/systemd-backlight.
May 02 23:33:39 archlinux systemd[1]: systemd-sysctl.service: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Stopped Apply Kernel Variables.
May 02 23:33:39 archlinux systemd[1]: systemd-coredump.socket: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Closed Process Core Dump Socket.
May 02 23:33:39 archlinux systemd[1]: systemd-modules-load.service: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Stopped Load Kernel Modules.
May 02 23:33:39 archlinux systemd[1]: systemd-update-utmp.service: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Stopped Record System Boot/Shutdown in UTMP.
May 02 23:33:39 archlinux systemd[1]: systemd-tmpfiles-setup.service: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Stopped Create Volatile Files and Directories.
May 02 23:33:39 archlinux systemd[1]: Stopped target Local File Systems.
May 02 23:33:39 archlinux systemd[1]: Unmounting /boot...
May 02 23:33:39 archlinux systemd[1]: Unmounting Temporary Directory /tmp...
May 02 23:33:39 archlinux systemd[1]: Stopping Flush Journal to Persistent Storage...
May 02 23:33:39 archlinux systemd[1]: boot.mount: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Unmounted /boot.
May 02 23:33:39 archlinux systemd[1]: tmp.mount: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Unmounted Temporary Directory /tmp.
May 02 23:33:39 archlinux systemd[1]: Stopped target Swaps.
May 02 23:33:39 archlinux systemd[1]: systemd-fsck@dev-disk-by\x2duuid-2879\x2d4041.service: Deactivated successfully.
May 02 23:33:39 archlinux systemd[1]: Stopped File System Check on /dev/disk/by-uuid/2879-4041.
May 02 23:33:39 archlinux systemd[1]: Removed slice Slice /system/systemd-fsck.
May 02 23:33:04 archlinux kernel: Linux version 6.8.7-arch1-1 (linux@archlinux) (gcc (GCC) 13.2.1 20230801, GNU ld (GNU Binutils) 2.42.0) #1 SMP PREEMPT_DYNAMIC Wed, 17 Apr 2024 15:20:28 +0000
May 02 23:33:04 archlinux kernel: Command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root=LABEL=magnolia rootflags=subvol=@ rw
May 02 23:33:04 archlinux kernel: BIOS-provided physical RAM map:
May 02 23:33:04 archlinux kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
May 02 23:33:04 archlinux kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
May 02 23:33:04 archlinux kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009dfff] usable
May 02 23:33:04 archlinux kernel: BIOS-e820: [mem 0x000000000009e000-0x00000000000fffff] reserved
May 02 23:33:04 archlinux kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000076d3afff] usable
May 02 23:33:04 archlinux kernel: BIOS-e820: [mem 0x0000000076d3b000-0x0000000076d3bfff] ACPI NVS
May 02 23:33:04 archlinux kernel: BIOS-e820: [mem 0x0000000076d3c000-0x0000000076d3cfff] reserved
May 02 23:33:04 archlinux kernel: BIOS-e820: [mem 0x0000000076d3d000-0x0000000078027fff] usable
May 02 23:33:04 archlinux kernel: BIOS-e820: [mem 0x0000000078028000-0x0000000079127fff] ACPI NVS
May 02 23:33:04 archlinux kernel: BIOS-e820: [mem 0x0000000079128000-0x000000007ed3dfff] usable
May 02 23:33:04 archlinux kernel: BIOS-e820: [mem 0x000000007ed3e000-0x000000007f72dfff] reserved
May 02 23:33:04 archlinux kernel: BIOS-e820: [mem 0x000000007f72e000-0x000000007ff7dfff] ACPI NVS
May 02 23:33:04 archlinux kernel: BIOS-e820: [mem 0x000000007ff7e000-0x000000007fffdfff] ACPI data
May 02 23:33:04 archlinux kernel: BIOS-e820: [mem 0x000000007fffe000-0x000000007fffefff] usable
May 02 23:33:04 archlinux kernel: BIOS-e820: [mem 0x000000007ffff000-0x000000008cffffff] reserved
May 02 23:33:04 archlinux kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
May 02 23:33:04 archlinux kernel: BIOS-e820: [mem 0x00000000fd000000-0x00000000fe7fffff] reserved
May 02 23:33:04 archlinux kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
May 02 23:33:04 archlinux kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
May 02 23:33:04 archlinux kernel: BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
May 02 23:33:04 archlinux kernel: BIOS-e820: [mem 0x00000000fed84000-0x00000000fed84fff] reserved
May 02 23:33:04 archlinux kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
May 02 23:33:04 archlinux kernel: BIOS-e820: [mem 0x00000000ffa00000-0x00000000ffffffff] reserved
May 02 23:33:04 archlinux kernel: BIOS-e820: [mem 0x0000000100000000-0x0000000271ffffff] usable
May 02 23:33:04 archlinux kernel: NX (Execute Disable) protection: active
May 02 23:33:04 archlinux kernel: APIC: Static calls initialized
May 02 23:33:04 archlinux kernel: e820: update [mem 0x75e3e018-0x75e4e057] usable ==> usable
May 02 23:33:04 archlinux kernel: e820: update [mem 0x75e3e018-0x75e4e057] usable ==> usable
May 02 23:33:04 archlinux kernel: extended physical RAM map:
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x0000000000059000-0x000000000009dfff] usable
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x000000000009e000-0x00000000000fffff] reserved
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x0000000000100000-0x0000000075e3e017] usable
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x0000000075e3e018-0x0000000075e4e057] usable
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x0000000075e4e058-0x0000000076d3afff] usable
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x0000000076d3b000-0x0000000076d3bfff] ACPI NVS
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x0000000076d3c000-0x0000000076d3cfff] reserved
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x0000000076d3d000-0x0000000078027fff] usable
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x0000000078028000-0x0000000079127fff] ACPI NVS
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x0000000079128000-0x000000007ed3dfff] usable
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x000000007ed3e000-0x000000007f72dfff] reserved
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x000000007f72e000-0x000000007ff7dfff] ACPI NVS
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x000000007ff7e000-0x000000007fffdfff] ACPI data
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x000000007fffe000-0x000000007fffefff] usable
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x000000007ffff000-0x000000008cffffff] reserved
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x00000000fd000000-0x00000000fe7fffff] reserved
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x00000000fed84000-0x00000000fed84fff] reserved
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x00000000ffa00000-0x00000000ffffffff] reserved
May 02 23:33:04 archlinux kernel: reserve setup_data: [mem 0x0000000100000000-0x0000000271ffffff] usable
May 02 23:33:04 archlinux kernel: efi: EFI v2.5 by INSYDE Corp.
May 02 23:33:04 archlinux kernel: efi: ACPI 2.0=0x7fffd014 SMBIOS=0x7efb3000 SMBIOS 3.0=0x7efb1000 ESRT=0x7efaf018 PROP=0x76d37858 RNG=0x7ffa6f98 INITRD=0x7913dc18 TPMEventLog=0x7913b018 
May 02 23:33:04 archlinux kernel: random: crng init done
May 02 23:33:04 archlinux kernel: TPM Final Events table not present
May 02 23:33:04 archlinux kernel: efi: Remove mem43: MMIO range=[0xe0000000-0xefffffff] (256MB) from e820 map
May 02 23:33:04 archlinux kernel: e820: remove [mem 0xe0000000-0xefffffff] reserved
May 02 23:33:04 archlinux kernel: efi: Remove mem44: MMIO range=[0xfd000000-0xfe7fffff] (24MB) from e820 map
May 02 23:33:04 archlinux kernel: e820: remove [mem 0xfd000000-0xfe7fffff] reserved
May 02 23:33:04 archlinux kernel: efi: Not removing mem45: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
May 02 23:33:04 archlinux kernel: efi: Not removing mem46: MMIO range=[0xfed00000-0xfed00fff] (4KB) from e820 map
May 02 23:33:04 archlinux kernel: efi: Not removing mem47: MMIO range=[0xfed10000-0xfed19fff] (40KB) from e820 map
May 02 23:33:04 archlinux kernel: efi: Not removing mem48: MMIO range=[0xfed84000-0xfed84fff] (4KB) from e820 map
May 02 23:33:04 archlinux kernel: efi: Not removing mem49: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
May 02 23:33:04 archlinux kernel: efi: Remove mem50: MMIO range=[0xffa00000-0xffffffff] (6MB) from e820 map
May 02 23:33:04 archlinux kernel: e820: remove [mem 0xffa00000-0xffffffff] reserved
May 02 23:33:04 archlinux kernel: SMBIOS 3.0.0 present.
May 02 23:33:04 archlinux kernel: DMI: LENOVO 80VF/VIUU4, BIOS 2JCN39WW 05/31/2017
May 02 23:33:04 archlinux kernel: tsc: Detected 2700.000 MHz processor
May 02 23:33:04 archlinux kernel: tsc: Detected 2699.909 MHz TSC
May 02 23:33:04 archlinux kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
May 02 23:33:04 archlinux kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
May 02 23:33:04 archlinux kernel: last_pfn = 0x272000 max_arch_pfn = 0x400000000
May 02 23:33:04 archlinux kernel: MTRR map: 4 entries (3 fixed + 1 variable; max 23), built from 10 variable MTRRs
May 02 23:33:04 archlinux kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
May 02 23:33:04 archlinux kernel: last_pfn = 0x7ffff max_arch_pfn = 0x400000000
May 02 23:33:04 archlinux kernel: esrt: Reserving ESRT space from 0x000000007efaf018 to 0x000000007efaf078.
May 02 23:33:04 archlinux kernel: Using GB pages for direct mapping
May 02 23:33:04 archlinux kernel: Secure boot disabled
May 02 23:33:04 archlinux kernel: RAMDISK: [mem 0x722d2000-0x73a07fff]
May 02 23:33:04 archlinux kernel: ACPI: Early table checksum verification disabled
May 02 23:33:04 archlinux kernel: ACPI: RSDP 0x000000007FFFD014 000024 (v02 LENOVO)
May 02 23:33:04 archlinux kernel: ACPI: XSDT 0x000000007FFB7188 00012C (v01 LENOVO CB-01    00000001      01000013)
May 02 23:33:04 archlinux kernel: ACPI: FACP 0x000000007FFEA000 00010C (v05 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: DSDT 0x000000007FFBB000 02AA88 (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: FACS 0x000000007FF5A000 000040
May 02 23:33:04 archlinux kernel: ACPI: UEFI 0x000000007FFFC000 000236 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: UEFI 0x000000007FFFB000 000042 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: MSDM 0x000000007FFFA000 000055 (v03 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: SSDT 0x000000007FFF9000 0004C3 (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: SSDT 0x000000007FFF8000 000046 (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: TPM2 0x000000007FFF7000 000034 (v03 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: SSDT 0x000000007FFF3000 003113 (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: SSDT 0x000000007FFEF000 0038D7 (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: ASF! 0x000000007FFEE000 0000A5 (v32 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: ASPT 0x000000007FFED000 000034 (v07 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: BOOT 0x000000007FFEC000 000028 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: DBGP 0x000000007FFEB000 000034 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: HPET 0x000000007FFE9000 000038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: APIC 0x000000007FFE8000 0000BC (v03 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: MCFG 0x000000007FFE7000 00003C (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: SLIC 0x000000007FFE6000 000176 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: SSDT 0x000000007FFBA000 0006CF (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: SSDT 0x000000007FFB9000 0001BC (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: LPIT 0x000000007FFB8000 000094 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: WSMT 0x000000007FFB6000 000028 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: SSDT 0x000000007FFB5000 00029F (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: SSDT 0x000000007FFB4000 000346 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: SSDT 0x000000007FFB0000 003002 (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: SSDT 0x000000007FFAF000 00051E (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: DBGP 0x000000007FFAE000 000034 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: DBG2 0x000000007FFAD000 000054 (v00 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: SSDT 0x000000007FFAC000 000F61 (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: SSDT 0x000000007FFAB000 000EDE (v02 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: DMAR 0x000000007FFAA000 000114 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: NHLT 0x000000007FFA9000 00002D (v00 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: FPDT 0x000000007FFA8000 000044 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: BGRT 0x000000007FFA7000 000038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
May 02 23:33:04 archlinux kernel: ACPI: Reserving FACP table memory at [mem 0x7ffea000-0x7ffea10b]
May 02 23:33:04 archlinux kernel: ACPI: Reserving DSDT table memory at [mem 0x7ffbb000-0x7ffe5a87]
May 02 23:33:04 archlinux kernel: ACPI: Reserving FACS table memory at [mem 0x7ff5a000-0x7ff5a03f]
May 02 23:33:04 archlinux kernel: ACPI: Reserving UEFI table memory at [mem 0x7fffc000-0x7fffc235]
May 02 23:33:04 archlinux kernel: ACPI: Reserving UEFI table memory at [mem 0x7fffb000-0x7fffb041]
May 02 23:33:04 archlinux kernel: ACPI: Reserving MSDM table memory at [mem 0x7fffa000-0x7fffa054]
May 02 23:33:04 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7fff9000-0x7fff94c2]
May 02 23:33:04 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7fff8000-0x7fff8045]
May 02 23:33:04 archlinux kernel: ACPI: Reserving TPM2 table memory at [mem 0x7fff7000-0x7fff7033]
May 02 23:33:04 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7fff3000-0x7fff6112]
May 02 23:33:04 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffef000-0x7fff28d6]
May 02 23:33:04 archlinux kernel: ACPI: Reserving ASF! table memory at [mem 0x7ffee000-0x7ffee0a4]
May 02 23:33:04 archlinux kernel: ACPI: Reserving ASPT table memory at [mem 0x7ffed000-0x7ffed033]
May 02 23:33:04 archlinux kernel: ACPI: Reserving BOOT table memory at [mem 0x7ffec000-0x7ffec027]
May 02 23:33:04 archlinux kernel: ACPI: Reserving DBGP table memory at [mem 0x7ffeb000-0x7ffeb033]
May 02 23:33:04 archlinux kernel: ACPI: Reserving HPET table memory at [mem 0x7ffe9000-0x7ffe9037]
May 02 23:33:04 archlinux kernel: ACPI: Reserving APIC table memory at [mem 0x7ffe8000-0x7ffe80bb]
May 02 23:33:04 archlinux kernel: ACPI: Reserving MCFG table memory at [mem 0x7ffe7000-0x7ffe703b]
May 02 23:33:04 archlinux kernel: ACPI: Reserving SLIC table memory at [mem 0x7ffe6000-0x7ffe6175]
May 02 23:33:04 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffba000-0x7ffba6ce]
May 02 23:33:04 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffb9000-0x7ffb91bb]
May 02 23:33:04 archlinux kernel: ACPI: Reserving LPIT table memory at [mem 0x7ffb8000-0x7ffb8093]
May 02 23:33:04 archlinux kernel: ACPI: Reserving WSMT table memory at [mem 0x7ffb6000-0x7ffb6027]
May 02 23:33:04 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffb5000-0x7ffb529e]
May 02 23:33:04 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffb4000-0x7ffb4345]
May 02 23:33:04 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffb0000-0x7ffb3001]
May 02 23:33:04 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffaf000-0x7ffaf51d]
May 02 23:33:04 archlinux kernel: ACPI: Reserving DBGP table memory at [mem 0x7ffae000-0x7ffae033]
May 02 23:33:04 archlinux kernel: ACPI: Reserving DBG2 table memory at [mem 0x7ffad000-0x7ffad053]
May 02 23:33:04 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffac000-0x7ffacf60]
May 02 23:33:04 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x7ffab000-0x7ffabedd]
May 02 23:33:04 archlinux kernel: ACPI: Reserving DMAR table memory at [mem 0x7ffaa000-0x7ffaa113]
May 02 23:33:04 archlinux kernel: ACPI: Reserving NHLT table memory at [mem 0x7ffa9000-0x7ffa902c]
May 02 23:33:04 archlinux kernel: ACPI: Reserving FPDT table memory at [mem 0x7ffa8000-0x7ffa8043]
May 02 23:33:04 archlinux kernel: ACPI: Reserving BGRT table memory at [mem 0x7ffa7000-0x7ffa7037]
May 02 23:33:04 archlinux kernel: No NUMA configuration found
May 02 23:33:04 archlinux kernel: Faking a node at [mem 0x0000000000000000-0x0000000271ffffff]
May 02 23:33:04 archlinux kernel: NODE_DATA(0) allocated [mem 0x271ffb000-0x271ffffff]
May 02 23:33:04 archlinux kernel: Zone ranges:
May 02 23:33:04 archlinux kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
May 02 23:33:04 archlinux kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
May 02 23:33:04 archlinux kernel:   Normal   [mem 0x0000000100000000-0x0000000271ffffff]
May 02 23:33:04 archlinux kernel:   Device   empty
May 02 23:33:04 archlinux kernel: Movable zone start for each node
May 02 23:33:04 archlinux kernel: Early memory node ranges
May 02 23:33:04 archlinux kernel:   node   0: [mem 0x0000000000001000-0x0000000000057fff]
May 02 23:33:04 archlinux kernel:   node   0: [mem 0x0000000000059000-0x000000000009dfff]
May 02 23:33:04 archlinux kernel:   node   0: [mem 0x0000000000100000-0x0000000076d3afff]
May 02 23:33:04 archlinux kernel:   node   0: [mem 0x0000000076d3d000-0x0000000078027fff]
May 02 23:33:04 archlinux kernel:   node   0: [mem 0x0000000079128000-0x000000007ed3dfff]
May 02 23:33:04 archlinux kernel:   node   0: [mem 0x000000007fffe000-0x000000007fffefff]
May 02 23:33:04 archlinux kernel:   node   0: [mem 0x0000000100000000-0x0000000271ffffff]
May 02 23:33:04 archlinux kernel: Initmem setup node 0 [mem 0x0000000000001000-0x0000000271ffffff]
May 02 23:33:04 archlinux kernel: On node 0, zone DMA: 1 pages in unavailable ranges
May 02 23:33:04 archlinux kernel: On node 0, zone DMA: 1 pages in unavailable ranges
May 02 23:33:04 archlinux kernel: On node 0, zone DMA: 98 pages in unavailable ranges
May 02 23:33:04 archlinux kernel: On node 0, zone DMA32: 2 pages in unavailable ranges
May 02 23:33:04 archlinux kernel: On node 0, zone DMA32: 4352 pages in unavailable ranges
May 02 23:33:04 archlinux kernel: On node 0, zone DMA32: 4800 pages in unavailable ranges
May 02 23:33:04 archlinux kernel: On node 0, zone Normal: 1 pages in unavailable ranges
May 02 23:33:04 archlinux kernel: On node 0, zone Normal: 24576 pages in unavailable ranges
May 02 23:33:04 archlinux kernel: Reserving Intel graphics memory at [mem 0x89000000-0x8cffffff]
May 02 23:33:04 archlinux kernel: ACPI: PM-Timer IO Port: 0x1808
May 02 23:33:04 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
May 02 23:33:04 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
May 02 23:33:04 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
May 02 23:33:04 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
May 02 23:33:04 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
May 02 23:33:04 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
May 02 23:33:04 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
May 02 23:33:04 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
May 02 23:33:04 archlinux kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
May 02 23:33:04 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
May 02 23:33:04 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
May 02 23:33:04 archlinux kernel: ACPI: Using ACPI (MADT) for SMP configuration information
May 02 23:33:04 archlinux kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
May 02 23:33:04 archlinux kernel: e820: update [mem 0x7c9e6000-0x7cdb2fff] usable ==> reserved
May 02 23:33:04 archlinux kernel: TSC deadline timer available
May 02 23:33:04 archlinux kernel: smpboot: Allowing 4 CPUs, 0 hotplug CPUs
May 02 23:33:04 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
May 02 23:33:04 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x00058000-0x00058fff]
May 02 23:33:04 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x000fffff]
May 02 23:33:04 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x75e3e000-0x75e3efff]
May 02 23:33:04 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x75e4e000-0x75e4efff]
May 02 23:33:04 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x76d3b000-0x76d3bfff]
May 02 23:33:04 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x76d3c000-0x76d3cfff]
May 02 23:33:04 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x78028000-0x79127fff]
May 02 23:33:04 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x7c9e6000-0x7cdb2fff]
May 02 23:33:04 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x7ed3e000-0x7f72dfff]
May 02 23:33:04 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x7f72e000-0x7ff7dfff]
May 02 23:33:04 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x7ff7e000-0x7fffdfff]
May 02 23:33:04 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x7ffff000-0x8cffffff]
May 02 23:33:04 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x8d000000-0xfebfffff]
May 02 23:33:04 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
May 02 23:33:04 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
May 02 23:33:04 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
May 02 23:33:04 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed0ffff]
May 02 23:33:04 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
May 02 23:33:04 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed1a000-0xfed83fff]
May 02 23:33:04 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed84000-0xfed84fff]
May 02 23:33:04 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed85000-0xfedfffff]
May 02 23:33:04 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
May 02 23:33:04 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
May 02 23:33:04 archlinux kernel: [mem 0x8d000000-0xfebfffff] available for PCI devices
May 02 23:33:04 archlinux kernel: Booting paravirtualized kernel on bare hardware
May 02 23:33:04 archlinux kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
May 02 23:33:04 archlinux kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
May 02 23:33:04 archlinux kernel: percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u524288
May 02 23:33:04 archlinux kernel: pcpu-alloc: s225280 r8192 d28672 u524288 alloc=1*2097152
May 02 23:33:04 archlinux kernel: pcpu-alloc: [0] 0 1 2 3 
May 02 23:33:04 archlinux kernel: Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root=LABEL=magnolia rootflags=subvol=@ rw
May 02 23:33:04 archlinux kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
May 02 23:33:04 archlinux kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
May 02 23:33:04 archlinux kernel: Fallback order for Node 0: 0 
May 02 23:33:04 archlinux kernel: Built 1 zonelists, mobility grouping on.  Total pages: 1998668
May 02 23:33:04 archlinux kernel: Policy zone: Normal
May 02 23:33:04 archlinux kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
May 02 23:33:04 archlinux kernel: software IO TLB: area num 4.
May 02 23:33:04 archlinux kernel: Memory: 7783004K/8122212K available (16384K kernel code, 2119K rwdata, 12920K rodata, 3432K init, 3828K bss, 338948K reserved, 0K cma-reserved)
May 02 23:33:04 archlinux kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
May 02 23:33:04 archlinux kernel: Kernel/User page tables isolation: enabled
May 02 23:33:04 archlinux kernel: ftrace: allocating 48826 entries in 191 pages
May 02 23:33:04 archlinux kernel: ftrace: allocated 191 pages with 7 groups
May 02 23:33:04 archlinux kernel: Dynamic Preempt: full
May 02 23:33:04 archlinux kernel: rcu: Preemptible hierarchical RCU implementation.
May 02 23:33:04 archlinux kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=4.
May 02 23:33:04 archlinux kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
May 02 23:33:04 archlinux kernel:         Trampoline variant of Tasks RCU enabled.
May 02 23:33:04 archlinux kernel:         Rude variant of Tasks RCU enabled.
May 02 23:33:04 archlinux kernel:         Tracing variant of Tasks RCU enabled.
May 02 23:33:04 archlinux kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
May 02 23:33:04 archlinux kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
May 02 23:33:04 archlinux kernel: NR_IRQS: 20736, nr_irqs: 1024, preallocated irqs: 16
May 02 23:33:04 archlinux kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
May 02 23:33:04 archlinux kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
May 02 23:33:04 archlinux kernel: Console: colour dummy device 80x25
May 02 23:33:04 archlinux kernel: printk: legacy console [tty0] enabled
May 02 23:33:04 archlinux kernel: ACPI: Core revision 20230628
May 02 23:33:04 archlinux kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
May 02 23:33:04 archlinux kernel: APIC: Switch to symmetric I/O mode setup
May 02 23:33:04 archlinux kernel: DMAR: Host address width 39
May 02 23:33:04 archlinux kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
May 02 23:33:04 archlinux kernel: DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
May 02 23:33:04 archlinux kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
May 02 23:33:04 archlinux kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
May 02 23:33:04 archlinux kernel: DMAR: RMRR base: 0x0000007f622000 end: 0x0000007f641fff
May 02 23:33:04 archlinux kernel: DMAR: RMRR base: 0x00000088800000 end: 0x0000008cffffff
May 02 23:33:04 archlinux kernel: DMAR: ANDD device: 1 name: \_SB.PCI0.I2C0
May 02 23:33:04 archlinux kernel: DMAR: ANDD device: 2 name: \_SB.PCI0.I2C1
May 02 23:33:04 archlinux kernel: DMAR: ANDD device: 4 name: \_SB.PCI0.I2C3
May 02 23:33:04 archlinux kernel: DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
May 02 23:33:04 archlinux kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
May 02 23:33:04 archlinux kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
May 02 23:33:04 archlinux kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
May 02 23:33:04 archlinux kernel: x2apic enabled
May 02 23:33:04 archlinux kernel: APIC: Switched APIC routing to: cluster x2apic
May 02 23:33:04 archlinux kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
May 02 23:33:04 archlinux kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x26eae8729ef, max_idle_ns: 440795235156 ns
May 02 23:33:04 archlinux kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5401.81 BogoMIPS (lpj=8999696)
May 02 23:33:04 archlinux kernel: CPU0: Thermal monitoring enabled (TM1)
May 02 23:33:04 archlinux kernel: process: using mwait in idle threads
May 02 23:33:04 archlinux kernel: Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
May 02 23:33:04 archlinux kernel: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
May 02 23:33:04 archlinux kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
May 02 23:33:04 archlinux kernel: Spectre V2 : Mitigation: IBRS
May 02 23:33:04 archlinux kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
May 02 23:33:04 archlinux kernel: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
May 02 23:33:04 archlinux kernel: RETBleed: Mitigation: IBRS
May 02 23:33:04 archlinux kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
May 02 23:33:04 archlinux kernel: Spectre V2 : User space: Mitigation: STIBP via prctl
May 02 23:33:04 archlinux kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
May 02 23:33:04 archlinux kernel: MDS: Mitigation: Clear CPU buffers
May 02 23:33:04 archlinux kernel: MMIO Stale Data: Mitigation: Clear CPU buffers
May 02 23:33:04 archlinux kernel: SRBDS: Mitigation: Microcode
May 02 23:33:04 archlinux kernel: GDS: Mitigation: Microcode
May 02 23:33:04 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
May 02 23:33:04 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
May 02 23:33:04 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
May 02 23:33:04 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
May 02 23:33:04 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
May 02 23:33:04 archlinux kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
May 02 23:33:04 archlinux kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
May 02 23:33:04 archlinux kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
May 02 23:33:04 archlinux kernel: x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
May 02 23:33:04 archlinux kernel: Freeing SMP alternatives memory: 40K
May 02 23:33:04 archlinux kernel: pid_max: default: 32768 minimum: 301
May 02 23:33:04 archlinux kernel: LSM: initializing lsm=capability,landlock,lockdown,yama,bpf,integrity
May 02 23:33:04 archlinux kernel: landlock: Up and running.
May 02 23:33:04 archlinux kernel: Yama: becoming mindful.
May 02 23:33:04 archlinux kernel: LSM support for eBPF active
May 02 23:33:04 archlinux kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
May 02 23:33:04 archlinux kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
May 02 23:33:04 archlinux kernel: smpboot: CPU0: Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz (family: 0x6, model: 0x8e, stepping: 0x9)
May 02 23:33:04 archlinux kernel: RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
May 02 23:33:04 archlinux kernel: RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
May 02 23:33:04 archlinux kernel: RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1.
May 02 23:33:04 archlinux kernel: Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
May 02 23:33:04 archlinux kernel: ... version:                4
May 02 23:33:04 archlinux kernel: ... bit width:              48
May 02 23:33:04 archlinux kernel: ... generic registers:      4
May 02 23:33:04 archlinux kernel: ... value mask:             0000ffffffffffff
May 02 23:33:04 archlinux kernel: ... max period:             00007fffffffffff
May 02 23:33:04 archlinux kernel: ... fixed-purpose events:   3
May 02 23:33:04 archlinux kernel: ... event mask:             000000070000000f
May 02 23:33:04 archlinux kernel: signal: max sigframe size: 2032
May 02 23:33:04 archlinux kernel: Estimated ratio of average max frequency by base frequency (times 1024): 1175
May 02 23:33:04 archlinux kernel: rcu: Hierarchical SRCU implementation.
May 02 23:33:04 archlinux kernel: rcu:         Max phase no-delay instances is 1000.
May 02 23:33:04 archlinux kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
May 02 23:33:04 archlinux kernel: smp: Bringing up secondary CPUs ...
May 02 23:33:04 archlinux kernel: smpboot: x86: Booting SMP configuration:
May 02 23:33:04 archlinux kernel: .... node  #0, CPUs:      #1 #2 #3
May 02 23:33:04 archlinux kernel: MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
May 02 23:33:04 archlinux kernel: MMIO Stale Data CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html for more details.
May 02 23:33:04 archlinux kernel: smp: Brought up 1 node, 4 CPUs
May 02 23:33:04 archlinux kernel: smpboot: Max logical packages: 1
May 02 23:33:04 archlinux kernel: smpboot: Total of 4 processors activated (21607.24 BogoMIPS)
May 02 23:33:04 archlinux kernel: devtmpfs: initialized
May 02 23:33:04 archlinux kernel: x86/mm: Memory block size: 128MB
May 02 23:33:04 archlinux kernel: ACPI: PM: Registering ACPI NVS region [mem 0x76d3b000-0x76d3bfff] (4096 bytes)
May 02 23:33:04 archlinux kernel: ACPI: PM: Registering ACPI NVS region [mem 0x78028000-0x79127fff] (17825792 bytes)
May 02 23:33:04 archlinux kernel: ACPI: PM: Registering ACPI NVS region [mem 0x7f72e000-0x7ff7dfff] (8716288 bytes)
May 02 23:33:04 archlinux kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
May 02 23:33:04 archlinux kernel: futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
May 02 23:33:04 archlinux kernel: pinctrl core: initialized pinctrl subsystem
May 02 23:33:04 archlinux kernel: PM: RTC time: 21:33:00, date: 2024-05-02
May 02 23:33:04 archlinux kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
May 02 23:33:04 archlinux kernel: DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
May 02 23:33:04 archlinux kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
May 02 23:33:04 archlinux kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
May 02 23:33:04 archlinux kernel: audit: initializing netlink subsys (disabled)
May 02 23:33:04 archlinux kernel: audit: type=2000 audit(1714685580.063:1): state=initialized audit_enabled=0 res=1
May 02 23:33:04 archlinux kernel: thermal_sys: Registered thermal governor 'fair_share'
May 02 23:33:04 archlinux kernel: thermal_sys: Registered thermal governor 'bang_bang'
May 02 23:33:04 archlinux kernel: thermal_sys: Registered thermal governor 'step_wise'
May 02 23:33:04 archlinux kernel: thermal_sys: Registered thermal governor 'user_space'
May 02 23:33:04 archlinux kernel: thermal_sys: Registered thermal governor 'power_allocator'
May 02 23:33:04 archlinux kernel: cpuidle: using governor ladder
May 02 23:33:04 archlinux kernel: cpuidle: using governor menu
May 02 23:33:04 archlinux kernel: Simple Boot Flag at 0x44 set to 0x1
May 02 23:33:04 archlinux kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
May 02 23:33:04 archlinux kernel: PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
May 02 23:33:04 archlinux kernel: PCI: not using ECAM ([mem 0xe0000000-0xefffffff] not reserved)
May 02 23:33:04 archlinux kernel: PCI: Using configuration type 1 for base access
May 02 23:33:04 archlinux kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
May 02 23:33:04 archlinux kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
May 02 23:33:04 archlinux kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
May 02 23:33:04 archlinux kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
May 02 23:33:04 archlinux kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
May 02 23:33:04 archlinux kernel: ACPI: Added _OSI(Module Device)
May 02 23:33:04 archlinux kernel: ACPI: Added _OSI(Processor Device)
May 02 23:33:04 archlinux kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
May 02 23:33:04 archlinux kernel: ACPI: Added _OSI(Processor Aggregator Device)
May 02 23:33:04 archlinux kernel: ACPI: 13 ACPI AML tables successfully acquired and loaded
May 02 23:33:04 archlinux kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
May 02 23:33:04 archlinux kernel: ACPI: Dynamic OEM Table Load:
May 02 23:33:04 archlinux kernel: ACPI: SSDT 0xFFFF8F93C188C000 0003FF (v02 PmRef  Cpu0Cst  00003001 INTL 20160527)
May 02 23:33:04 archlinux kernel: ACPI: Dynamic OEM Table Load:
May 02 23:33:04 archlinux kernel: ACPI: SSDT 0xFFFF8F93C0ECE800 0006B4 (v02 PmRef  Cpu0Ist  00003000 INTL 20160527)
May 02 23:33:04 archlinux kernel: ACPI: Dynamic OEM Table Load:
May 02 23:33:04 archlinux kernel: ACPI: SSDT 0xFFFF8F93C0ECB000 00065C (v02 PmRef  ApIst    00003000 INTL 20160527)
May 02 23:33:04 archlinux kernel: ACPI: Dynamic OEM Table Load:
May 02 23:33:04 archlinux kernel: ACPI: SSDT 0xFFFF8F93C188AE00 000197 (v02 PmRef  ApHwp    00003000 INTL 20160527)
May 02 23:33:04 archlinux kernel: ACPI: Dynamic OEM Table Load:
May 02 23:33:04 archlinux kernel: ACPI: SSDT 0xFFFF8F93C188B000 00018A (v02 PmRef  ApCst    00003000 INTL 20160527)
May 02 23:33:04 archlinux kernel: ACPI: _OSC evaluated successfully for all CPUs
May 02 23:33:04 archlinux kernel: ACPI: EC: EC started
May 02 23:33:04 archlinux kernel: ACPI: EC: interrupt blocked
May 02 23:33:04 archlinux kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
May 02 23:33:04 archlinux kernel: ACPI: \_SB_.PCI0.LPCB.H_EC: Boot DSDT EC used to handle transactions
May 02 23:33:04 archlinux kernel: ACPI: Interpreter enabled
May 02 23:33:04 archlinux kernel: ACPI: PM: (supports S0 S3 S4 S5)
May 02 23:33:04 archlinux kernel: ACPI: Using IOAPIC for interrupt routing
May 02 23:33:04 archlinux kernel: PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
May 02 23:33:04 archlinux kernel: PCI: ECAM [mem 0xe0000000-0xefffffff] reserved as ACPI motherboard resource
May 02 23:33:04 archlinux kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
May 02 23:33:04 archlinux kernel: PCI: Using E820 reservations for host bridge windows
May 02 23:33:04 archlinux kernel: ACPI: Enabled 7 GPEs in block 00 to 7F
May 02 23:33:04 archlinux kernel: ACPI: \_SB_.PCI0.RP01.PXSX.WRST: New power resource
May 02 23:33:04 archlinux kernel: ACPI: \_SB_.PCI0.RP02.PXSX.WRST: New power resource
May 02 23:33:04 archlinux kernel: ACPI: \_SB_.PCI0.RP03.PXSX.WRST: New power resource
May 02 23:33:04 archlinux kernel: ACPI: \_SB_.PCI0.RP04.PXSX.WRST: New power resource
May 02 23:33:04 archlinux kernel: ACPI: \_SB_.PCI0.RP05.PXSX.WRST: New power resource
May 02 23:33:04 archlinux kernel: ACPI: \_SB_.PCI0.RP06.PXSX.WRST: New power resource
May 02 23:33:04 archlinux kernel: ACPI: \_SB_.PCI0.RP07.PXSX.WRST: New power resource
May 02 23:33:04 archlinux kernel: ACPI: \_SB_.PCI0.RP08.PXSX.WRST: New power resource
May 02 23:33:04 archlinux kernel: ACPI: \_SB_.PCI0.RP09.PXSX.WRST: New power resource
May 02 23:33:04 archlinux kernel: ACPI: \_SB_.PCI0.RP10.PXSX.WRST: New power resource
May 02 23:33:04 archlinux kernel: ACPI: \_SB_.PCI0.RP11.PXSX.WRST: New power resource
May 02 23:33:04 archlinux kernel: ACPI: \_SB_.PCI0.RP12.PXSX.WRST: New power resource
May 02 23:33:04 archlinux kernel: ACPI: \_SB_.PCI0.RP13.PXSX.WRST: New power resource
May 02 23:33:04 archlinux kernel: ACPI: \_SB_.PCI0.RP14.PXSX.WRST: New power resource
May 02 23:33:04 archlinux kernel: ACPI: \_SB_.PCI0.RP15.PXSX.WRST: New power resource
May 02 23:33:04 archlinux kernel: ACPI: \_SB_.PCI0.RP16.PXSX.WRST: New power resource
May 02 23:33:04 archlinux kernel: ACPI: \_SB_.PCI0.RP17.PXSX.WRST: New power resource
May 02 23:33:04 archlinux kernel: ACPI: \_SB_.PCI0.RP18.PXSX.WRST: New power resource
May 02 23:33:04 archlinux kernel: ACPI: \_SB_.PCI0.RP19.PXSX.WRST: New power resource
May 02 23:33:04 archlinux kernel: ACPI: \_SB_.PCI0.RP20.PXSX.WRST: New power resource
May 02 23:33:04 archlinux kernel: acpi ABCD0000:00: ACPI dock station (docks/bays count: 1)
May 02 23:33:04 archlinux kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
May 02 23:33:04 archlinux kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
May 02 23:33:04 archlinux kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
May 02 23:33:04 archlinux kernel: PCI host bridge to bus 0000:00
May 02 23:33:04 archlinux kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
May 02 23:33:04 archlinux kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
May 02 23:33:04 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
May 02 23:33:04 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x8d000000-0xdfffffff window]
May 02 23:33:04 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
May 02 23:33:04 archlinux kernel: pci_bus 0000:00: root bus resource [bus 00-fe]
May 02 23:33:04 archlinux kernel: pci 0000:00:00.0: [8086:5904] type 00 class 0x060000 conventional PCI endpoint
May 02 23:33:04 archlinux kernel: pci 0000:00:02.0: [8086:5916] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
May 02 23:33:04 archlinux kernel: pci 0000:00:02.0: BAR 0 [mem 0xa0000000-0xa0ffffff 64bit]
May 02 23:33:04 archlinux kernel: pci 0000:00:02.0: BAR 2 [mem 0x90000000-0x9fffffff 64bit pref]
May 02 23:33:04 archlinux kernel: pci 0000:00:02.0: BAR 4 [io  0x3000-0x303f]
May 02 23:33:04 archlinux kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
May 02 23:33:04 archlinux kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
May 02 23:33:04 archlinux kernel: pci 0000:00:04.0: [8086:1903] type 00 class 0x118000 conventional PCI endpoint
May 02 23:33:04 archlinux kernel: pci 0000:00:04.0: BAR 0 [mem 0xa1320000-0xa1327fff 64bit]
May 02 23:33:04 archlinux kernel: pci 0000:00:08.0: [8086:1911] type 00 class 0x088000 conventional PCI endpoint
May 02 23:33:04 archlinux kernel: pci 0000:00:08.0: BAR 0 [mem 0xa1330000-0xa1330fff 64bit]
May 02 23:33:04 archlinux kernel: pci 0000:00:14.0: [8086:9d2f] type 00 class 0x0c0330 conventional PCI endpoint
May 02 23:33:04 archlinux kernel: pci 0000:00:14.0: BAR 0 [mem 0xa1300000-0xa130ffff 64bit]
May 02 23:33:04 archlinux kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
May 02 23:33:04 archlinux kernel: pci 0000:00:14.2: [8086:9d31] type 00 class 0x118000 conventional PCI endpoint
May 02 23:33:04 archlinux kernel: pci 0000:00:14.2: BAR 0 [mem 0xa1331000-0xa1331fff 64bit]
May 02 23:33:04 archlinux kernel: pci 0000:00:15.0: [8086:9d60] type 00 class 0x118000 conventional PCI endpoint
May 02 23:33:04 archlinux kernel: pci 0000:00:15.0: BAR 0 [mem 0xa1332000-0xa1332fff 64bit]
May 02 23:33:04 archlinux kernel: pci 0000:00:15.1: [8086:9d61] type 00 class 0x118000 conventional PCI endpoint
May 02 23:33:04 archlinux kernel: pci 0000:00:15.1: BAR 0 [mem 0xa1333000-0xa1333fff 64bit]
May 02 23:33:04 archlinux kernel: pci 0000:00:15.3: [8086:9d63] type 00 class 0x118000 conventional PCI endpoint
May 02 23:33:04 archlinux kernel: pci 0000:00:15.3: BAR 0 [mem 0xa1334000-0xa1334fff 64bit]
May 02 23:33:04 archlinux kernel: pci 0000:00:16.0: [8086:9d3a] type 00 class 0x078000 conventional PCI endpoint
May 02 23:33:04 archlinux kernel: pci 0000:00:16.0: BAR 0 [mem 0xa1335000-0xa1335fff 64bit]
May 02 23:33:04 archlinux kernel: pci 0000:00:16.0: PME# supported from D3hot
May 02 23:33:04 archlinux kernel: pci 0000:00:1c.0: [8086:9d14] type 01 class 0x060400 PCIe Root Port
May 02 23:33:04 archlinux kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
May 02 23:33:04 archlinux kernel: pci 0000:00:1c.0:   bridge window [mem 0xa1000000-0xa11fffff]
May 02 23:33:04 archlinux kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
May 02 23:33:04 archlinux kernel: pci 0000:00:1d.0: [8086:9d18] type 01 class 0x060400 PCIe Root Port
May 02 23:33:04 archlinux kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
May 02 23:33:04 archlinux kernel: pci 0000:00:1d.0:   bridge window [mem 0xa1200000-0xa12fffff]
May 02 23:33:04 archlinux kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
May 02 23:33:04 archlinux kernel: pci 0000:00:1f.0: [8086:9d58] type 00 class 0x060100 conventional PCI endpoint
May 02 23:33:04 archlinux kernel: pci 0000:00:1f.2: [8086:9d21] type 00 class 0x058000 conventional PCI endpoint
May 02 23:33:04 archlinux kernel: pci 0000:00:1f.2: BAR 0 [mem 0xa132c000-0xa132ffff]
May 02 23:33:04 archlinux kernel: pci 0000:00:1f.3: [8086:9d71] type 00 class 0x040380 conventional PCI endpoint
May 02 23:33:04 archlinux kernel: pci 0000:00:1f.3: BAR 0 [mem 0xa1328000-0xa132bfff 64bit]
May 02 23:33:04 archlinux kernel: pci 0000:00:1f.3: BAR 4 [mem 0xa1310000-0xa131ffff 64bit]
May 02 23:33:04 archlinux kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
May 02 23:33:04 archlinux kernel: pci 0000:00:1f.4: [8086:9d23] type 00 class 0x0c0500 conventional PCI endpoint
May 02 23:33:04 archlinux kernel: pci 0000:00:1f.4: BAR 0 [mem 0xa1336000-0xa13360ff 64bit]
May 02 23:33:04 archlinux kernel: pci 0000:00:1f.4: BAR 4 [io  0x3040-0x305f]
May 02 23:33:04 archlinux kernel: pci 0000:01:00.0: [168c:003e] type 00 class 0x028000 PCIe Endpoint
May 02 23:33:04 archlinux kernel: pci 0000:01:00.0: BAR 0 [mem 0xa1000000-0xa11fffff 64bit]
May 02 23:33:04 archlinux kernel: pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
May 02 23:33:04 archlinux kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
May 02 23:33:04 archlinux kernel: pci 0000:02:00.0: [144d:a804] type 00 class 0x010802 PCIe Endpoint
May 02 23:33:04 archlinux kernel: pci 0000:02:00.0: BAR 0 [mem 0xa1200000-0xa1203fff 64bit]
May 02 23:33:04 archlinux kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
May 02 23:33:04 archlinux kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 11
May 02 23:33:04 archlinux kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 10
May 02 23:33:04 archlinux kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 11
May 02 23:33:04 archlinux kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 11
May 02 23:33:04 archlinux kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 11
May 02 23:33:04 archlinux kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 11
May 02 23:33:04 archlinux kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 11
May 02 23:33:04 archlinux kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 11
May 02 23:33:04 archlinux kernel: ACPI Warning: GPE type mismatch (level/edge) (20230628/evxface-791)
May 02 23:33:04 archlinux kernel: ACPI: EC: interrupt unblocked
May 02 23:33:04 archlinux kernel: ACPI: EC: event unblocked
May 02 23:33:04 archlinux kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
May 02 23:33:04 archlinux kernel: ACPI: EC: GPE=0x50
May 02 23:33:04 archlinux kernel: ACPI: \_SB_.PCI0.LPCB.H_EC: Boot DSDT EC initialization complete
May 02 23:33:04 archlinux kernel: ACPI: \_SB_.PCI0.LPCB.H_EC: EC: Used to handle transactions and events
May 02 23:33:04 archlinux kernel: iommu: Default domain type: Translated
May 02 23:33:04 archlinux kernel: iommu: DMA domain TLB invalidation policy: lazy mode
May 02 23:33:04 archlinux kernel: SCSI subsystem initialized
May 02 23:33:04 archlinux kernel: libata version 3.00 loaded.
May 02 23:33:04 archlinux kernel: ACPI: bus type USB registered
May 02 23:33:04 archlinux kernel: usbcore: registered new interface driver usbfs
May 02 23:33:04 archlinux kernel: usbcore: registered new interface driver hub
May 02 23:33:04 archlinux kernel: usbcore: registered new device driver usb
May 02 23:33:04 archlinux kernel: EDAC MC: Ver: 3.0.0
May 02 23:33:04 archlinux kernel: efivars: Registered efivars operations
May 02 23:33:04 archlinux kernel: NetLabel: Initializing
May 02 23:33:04 archlinux kernel: NetLabel:  domain hash size = 128
May 02 23:33:04 archlinux kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
May 02 23:33:04 archlinux kernel: NetLabel:  unlabeled traffic allowed by default
May 02 23:33:04 archlinux kernel: mctp: management component transport protocol core
May 02 23:33:04 archlinux kernel: NET: Registered PF_MCTP protocol family
May 02 23:33:04 archlinux kernel: PCI: Using ACPI for IRQ routing
May 02 23:33:04 archlinux kernel: PCI: pci_cache_line_size set to 64 bytes
May 02 23:33:04 archlinux kernel: e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
May 02 23:33:04 archlinux kernel: e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
May 02 23:33:04 archlinux kernel: e820: reserve RAM buffer [mem 0x75e3e018-0x77ffffff]
May 02 23:33:04 archlinux kernel: e820: reserve RAM buffer [mem 0x76d3b000-0x77ffffff]
May 02 23:33:04 archlinux kernel: e820: reserve RAM buffer [mem 0x78028000-0x7bffffff]
May 02 23:33:04 archlinux kernel: e820: reserve RAM buffer [mem 0x7c9e6000-0x7fffffff]
May 02 23:33:04 archlinux kernel: e820: reserve RAM buffer [mem 0x7ed3e000-0x7fffffff]
May 02 23:33:04 archlinux kernel: e820: reserve RAM buffer [mem 0x7ffff000-0x7fffffff]
May 02 23:33:04 archlinux kernel: e820: reserve RAM buffer [mem 0x272000000-0x273ffffff]
May 02 23:33:04 archlinux kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
May 02 23:33:04 archlinux kernel: pci 0000:00:02.0: vgaarb: bridge control possible
May 02 23:33:04 archlinux kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
May 02 23:33:04 archlinux kernel: vgaarb: loaded
May 02 23:33:04 archlinux kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
May 02 23:33:04 archlinux kernel: hpet0: 8 comparators, 64-bit 24.000000 MHz counter
May 02 23:33:04 archlinux kernel: clocksource: Switched to clocksource tsc-early
May 02 23:33:04 archlinux kernel: VFS: Disk quotas dquot_6.6.0
May 02 23:33:04 archlinux kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
May 02 23:33:04 archlinux kernel: pnp: PnP ACPI init
May 02 23:33:04 archlinux kernel: system 00:00: [mem 0xfd000000-0xfdabffff] has been reserved
May 02 23:33:04 archlinux kernel: system 00:00: [mem 0xfdad0000-0xfdadffff] has been reserved
May 02 23:33:04 archlinux kernel: system 00:00: [mem 0xfdb00000-0xfdffffff] has been reserved
May 02 23:33:04 archlinux kernel: system 00:00: [mem 0xfe000000-0xfe01ffff] has been reserved
May 02 23:33:04 archlinux kernel: system 00:00: [mem 0xfe036000-0xfe03bfff] has been reserved
May 02 23:33:04 archlinux kernel: system 00:00: [mem 0xfe03d000-0xfe3fffff] has been reserved
May 02 23:33:04 archlinux kernel: system 00:00: [mem 0xfe410000-0xfe7fffff] has been reserved
May 02 23:33:04 archlinux kernel: system 00:01: [io  0x2000-0x20fe] has been reserved
May 02 23:33:04 archlinux kernel: system 00:02: [io  0x06a4] has been reserved
May 02 23:33:04 archlinux kernel: system 00:02: [io  0x06a0] has been reserved
May 02 23:33:04 archlinux kernel: system 00:03: [io  0x0680-0x069f] has been reserved
May 02 23:33:04 archlinux kernel: system 00:03: [io  0xffff] has been reserved
May 02 23:33:04 archlinux kernel: system 00:03: [io  0xffff] has been reserved
May 02 23:33:04 archlinux kernel: system 00:03: [io  0xffff] has been reserved
May 02 23:33:04 archlinux kernel: system 00:03: [io  0x1800-0x18fe] has been reserved
May 02 23:33:04 archlinux kernel: system 00:03: [io  0x164e-0x164f] has been reserved
May 02 23:33:04 archlinux kernel: system 00:05: [io  0x1854-0x1857] has been reserved
May 02 23:33:04 archlinux kernel: system 00:07: [mem 0xfe029000-0xfe029fff] has been reserved
May 02 23:33:04 archlinux kernel: system 00:07: [mem 0xfe028000-0xfe028fff] has been reserved
May 02 23:33:04 archlinux kernel: system 00:07: [mem 0xfdaf0000-0xfdafffff] has been reserved
May 02 23:33:04 archlinux kernel: system 00:07: [mem 0xfdae0000-0xfdaeffff] has been reserved
May 02 23:33:04 archlinux kernel: system 00:07: [mem 0xfdac0000-0xfdacffff] has been reserved
May 02 23:33:04 archlinux kernel: system 00:08: [mem 0xfed10000-0xfed17fff] has been reserved
May 02 23:33:04 archlinux kernel: system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved
May 02 23:33:04 archlinux kernel: system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved
May 02 23:33:04 archlinux kernel: system 00:08: [mem 0xe0000000-0xefffffff] has been reserved
May 02 23:33:04 archlinux kernel: system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
May 02 23:33:04 archlinux kernel: system 00:08: [mem 0xfed90000-0xfed93fff] could not be reserved
May 02 23:33:04 archlinux kernel: system 00:08: [mem 0xfed45000-0xfed8ffff] could not be reserved
May 02 23:33:04 archlinux kernel: system 00:08: [mem 0xff000000-0xffffffff] has been reserved
May 02 23:33:04 archlinux kernel: system 00:08: [mem 0xfee00000-0xfeefffff] could not be reserved
May 02 23:33:04 archlinux kernel: system 00:08: [mem 0x8d000000-0x8d01ffff] has been reserved
May 02 23:33:04 archlinux kernel: pnp: PnP ACPI: found 9 devices
May 02 23:33:04 archlinux kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
May 02 23:33:04 archlinux kernel: pci 0000:00:1f.1: [8086:9d20] type 00 class 0x058000 conventional PCI endpoint
May 02 23:33:04 archlinux kernel: pci 0000:00:1f.1: BAR 0 [mem 0xfd000000-0xfdffffff 64bit]
May 02 23:33:04 archlinux kernel: NET: Registered PF_INET protocol family
May 02 23:33:04 archlinux kernel: IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
May 02 23:33:04 archlinux kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
May 02 23:33:04 archlinux kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
May 02 23:33:04 archlinux kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
May 02 23:33:04 archlinux kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
May 02 23:33:04 archlinux kernel: TCP: Hash tables configured (established 65536 bind 65536)
May 02 23:33:04 archlinux kernel: MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
May 02 23:33:04 archlinux kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
May 02 23:33:04 archlinux kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
May 02 23:33:04 archlinux kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
May 02 23:33:04 archlinux kernel: NET: Registered PF_XDP protocol family
May 02 23:33:04 archlinux kernel: pci 0000:00:1c.0: PCI bridge to [bus 01]
May 02 23:33:04 archlinux kernel: pci 0000:00:1c.0:   bridge window [mem 0xa1000000-0xa11fffff]
May 02 23:33:04 archlinux kernel: pci 0000:00:1d.0: PCI bridge to [bus 02]
May 02 23:33:04 archlinux kernel: pci 0000:00:1d.0:   bridge window [mem 0xa1200000-0xa12fffff]
May 02 23:33:04 archlinux kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
May 02 23:33:04 archlinux kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
May 02 23:33:04 archlinux kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000dffff window]
May 02 23:33:04 archlinux kernel: pci_bus 0000:00: resource 7 [mem 0x8d000000-0xdfffffff window]
May 02 23:33:04 archlinux kernel: pci_bus 0000:00: resource 8 [mem 0xfd000000-0xfe7fffff window]
May 02 23:33:04 archlinux kernel: pci_bus 0000:01: resource 1 [mem 0xa1000000-0xa11fffff]
May 02 23:33:04 archlinux kernel: pci_bus 0000:02: resource 1 [mem 0xa1200000-0xa12fffff]
May 02 23:33:04 archlinux kernel: PCI: CLS 64 bytes, default 64
May 02 23:33:04 archlinux kernel: DMAR: ACPI device "device:76" under DMAR at fed91000 as 00:15.0
May 02 23:33:04 archlinux kernel: DMAR: ACPI device "device:77" under DMAR at fed91000 as 00:15.1
May 02 23:33:04 archlinux kernel: DMAR: ACPI device "device:78" under DMAR at fed91000 as 00:15.3
May 02 23:33:04 archlinux kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
May 02 23:33:04 archlinux kernel: software IO TLB: mapped [mem 0x000000006e2d2000-0x00000000722d2000] (64MB)
May 02 23:33:04 archlinux kernel: Trying to unpack rootfs image as initramfs...
May 02 23:33:04 archlinux kernel: sgx: EPC section 0x80200000-0x85f7ffff
May 02 23:33:04 archlinux kernel: Initialise system trusted keyrings
May 02 23:33:04 archlinux kernel: Key type blacklist registered
May 02 23:33:04 archlinux kernel: workingset: timestamp_bits=41 max_order=21 bucket_order=0
May 02 23:33:04 archlinux kernel: zbud: loaded
May 02 23:33:04 archlinux kernel: integrity: Platform Keyring initialized
May 02 23:33:04 archlinux kernel: integrity: Machine keyring initialized
May 02 23:33:04 archlinux kernel: Key type asymmetric registered
May 02 23:33:04 archlinux kernel: Asymmetric key parser 'x509' registered
May 02 23:33:04 archlinux kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
May 02 23:33:04 archlinux kernel: io scheduler mq-deadline registered
May 02 23:33:04 archlinux kernel: io scheduler kyber registered
May 02 23:33:04 archlinux kernel: io scheduler bfq registered
May 02 23:33:04 archlinux kernel: pcieport 0000:00:1c.0: PME: Signaling with IRQ 122
May 02 23:33:04 archlinux kernel: pcieport 0000:00:1d.0: PME: Signaling with IRQ 123
May 02 23:33:04 archlinux kernel: pcieport 0000:00:1d.0: AER: enabled with IRQ 123
May 02 23:33:04 archlinux kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
May 02 23:33:04 archlinux kernel: ACPI: AC: AC Adapter [ADP1] (on-line)
May 02 23:33:04 archlinux kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:18/PNP0C09:00/PNP0C0D:00/input/input0
May 02 23:33:04 archlinux kernel: ACPI: button: Lid Switch [LID0]
May 02 23:33:04 archlinux kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
May 02 23:33:04 archlinux kernel: ACPI: button: Power Button [PWRB]
May 02 23:33:04 archlinux kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
May 02 23:33:04 archlinux kernel: ACPI: button: Power Button [PWRF]
May 02 23:33:04 archlinux kernel: thermal LNXTHERM:00: registered as thermal_zone0
May 02 23:33:04 archlinux kernel: ACPI: thermal: Thermal Zone [TZ00] (28 C)
May 02 23:33:04 archlinux kernel: thermal LNXTHERM:01: registered as thermal_zone1
May 02 23:33:04 archlinux kernel: ACPI: thermal: Thermal Zone [TZ01] (30 C)
May 02 23:33:04 archlinux kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
May 02 23:33:04 archlinux kernel: Non-volatile memory driver v1.3
May 02 23:33:04 archlinux kernel: Linux agpgart interface v0.103
May 02 23:33:04 archlinux kernel: ACPI: battery: Slot [BAT1] (battery present)
May 02 23:33:04 archlinux kernel: ACPI: bus type drm_connector registered
May 02 23:33:04 archlinux kernel: usbcore: registered new interface driver usbserial_generic
May 02 23:33:04 archlinux kernel: usbserial: USB Serial support registered for generic
May 02 23:33:04 archlinux kernel: rtc_cmos 00:04: RTC can wake from S4
May 02 23:33:04 archlinux kernel: rtc_cmos 00:04: registered as rtc0
May 02 23:33:04 archlinux kernel: rtc_cmos 00:04: setting system clock to 2024-05-02T21:33:00 UTC (1714685580)
May 02 23:33:04 archlinux kernel: rtc_cmos 00:04: alarms up to one month, y3k, 242 bytes nvram
May 02 23:33:04 archlinux kernel: intel_pstate: Intel P-state driver initializing
May 02 23:33:04 archlinux kernel: intel_pstate: HWP enabled
May 02 23:33:04 archlinux kernel: ledtrig-cpu: registered to indicate activity on CPUs
May 02 23:33:04 archlinux kernel: [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0
May 02 23:33:04 archlinux kernel: fbcon: Deferring console take-over
May 02 23:33:04 archlinux kernel: simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
May 02 23:33:04 archlinux kernel: hid: raw HID events driver (C) Jiri Kosina
May 02 23:33:04 archlinux kernel: drop_monitor: Initializing network drop monitor service
May 02 23:33:04 archlinux kernel: NET: Registered PF_INET6 protocol family
May 02 23:33:04 archlinux kernel: Freeing initrd memory: 23768K
May 02 23:33:04 archlinux kernel: Segment Routing with IPv6
May 02 23:33:04 archlinux kernel: RPL Segment Routing with IPv6
May 02 23:33:04 archlinux kernel: In-situ OAM (IOAM) with IPv6
May 02 23:33:04 archlinux kernel: NET: Registered PF_PACKET protocol family
May 02 23:33:04 archlinux kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
May 02 23:33:04 archlinux kernel: microcode: Current revision: 0x000000f4
May 02 23:33:04 archlinux kernel: microcode: Updated early from: 0x0000005e
May 02 23:33:04 archlinux kernel: IPI shorthand broadcast: enabled
May 02 23:33:04 archlinux kernel: sched_clock: Marking stable (456670099, 661850)->(460532939, -3200990)
May 02 23:33:04 archlinux kernel: registered taskstats version 1
May 02 23:33:04 archlinux kernel: Loading compiled-in X.509 certificates
May 02 23:33:04 archlinux kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 938521da0d8f450ee09889253996ef47d2912881'
May 02 23:33:04 archlinux kernel: zswap: loaded using pool zstd/zsmalloc
May 02 23:33:04 archlinux kernel: Key type .fscrypt registered
May 02 23:33:04 archlinux kernel: Key type fscrypt-provisioning registered
May 02 23:33:04 archlinux kernel: PM:   Magic number: 8:401:600
May 02 23:33:04 archlinux kernel: RAS: Correctable Errors collector initialized.
May 02 23:33:04 archlinux kernel: clk: Disabling unused clocks
May 02 23:33:04 archlinux kernel: Freeing unused decrypted memory: 2028K
May 02 23:33:04 archlinux kernel: Freeing unused kernel image (initmem) memory: 3432K
May 02 23:33:04 archlinux kernel: Write protecting the kernel read-only data: 30720k
May 02 23:33:04 archlinux kernel: Freeing unused kernel image (rodata/data gap) memory: 1416K
May 02 23:33:04 archlinux kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
May 02 23:33:04 archlinux kernel: rodata_test: all tests were successful
May 02 23:33:04 archlinux kernel: x86/mm: Checking user space page tables
May 02 23:33:04 archlinux kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
May 02 23:33:04 archlinux kernel: Run /init as init process
May 02 23:33:04 archlinux kernel:   with arguments:
May 02 23:33:04 archlinux kernel:     /init
May 02 23:33:04 archlinux kernel:   with environment:
May 02 23:33:04 archlinux kernel:     HOME=/
May 02 23:33:04 archlinux kernel:     TERM=linux
May 02 23:33:04 archlinux kernel: fbcon: Taking over console
May 02 23:33:04 archlinux kernel: Console: switching to colour frame buffer device 240x67
May 02 23:33:04 archlinux kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
May 02 23:33:04 archlinux kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
May 02 23:33:04 archlinux kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
May 02 23:33:04 archlinux kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
May 02 23:33:04 archlinux kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
May 02 23:33:04 archlinux kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000081109810
May 02 23:33:04 archlinux kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
May 02 23:33:04 archlinux kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
May 02 23:33:04 archlinux kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
May 02 23:33:04 archlinux kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.08
May 02 23:33:04 archlinux kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 02 23:33:04 archlinux kernel: usb usb1: Product: xHCI Host Controller
May 02 23:33:04 archlinux kernel: usb usb1: Manufacturer: Linux 6.8.7-arch1-1 xhci-hcd
May 02 23:33:04 archlinux kernel: usb usb1: SerialNumber: 0000:00:14.0
May 02 23:33:04 archlinux kernel: hub 1-0:1.0: USB hub found
May 02 23:33:04 archlinux kernel: hub 1-0:1.0: 12 ports detected
May 02 23:33:04 archlinux kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.08
May 02 23:33:04 archlinux kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 02 23:33:04 archlinux kernel: usb usb2: Product: xHCI Host Controller
May 02 23:33:04 archlinux kernel: usb usb2: Manufacturer: Linux 6.8.7-arch1-1 xhci-hcd
May 02 23:33:04 archlinux kernel: usb usb2: SerialNumber: 0000:00:14.0
May 02 23:33:04 archlinux kernel: hub 2-0:1.0: USB hub found
May 02 23:33:04 archlinux kernel: hub 2-0:1.0: 6 ports detected
May 02 23:33:04 archlinux kernel: nvme nvme0: pci function 0000:02:00.0
May 02 23:33:04 archlinux kernel: nvme nvme0: 4/0/0 default/read/poll queues
May 02 23:33:04 archlinux kernel:  nvme0n1: p1 p2 p3 p4 p5
May 02 23:33:04 archlinux kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
May 02 23:33:04 archlinux kernel: raid6: skipped pq benchmark and selected avx2x4
May 02 23:33:04 archlinux kernel: raid6: using avx2x2 recovery algorithm
May 02 23:33:04 archlinux kernel: xor: automatically using best checksumming function   avx       
May 02 23:33:04 archlinux kernel: usb 1-1: new high-speed USB device number 2 using xhci_hcd
May 02 23:33:04 archlinux kernel: usb 1-1: New USB device found, idVendor=04f2, idProduct=b5a4, bcdDevice=94.15
May 02 23:33:04 archlinux kernel: usb 1-1: New USB device strings: Mfr=3, Product=1, SerialNumber=2
May 02 23:33:04 archlinux kernel: usb 1-1: Product: EasyCamera
May 02 23:33:04 archlinux kernel: usb 1-1: Manufacturer: Chicony Electronics Co.,Ltd.
May 02 23:33:04 archlinux kernel: usb 1-1: SerialNumber: 0001
May 02 23:33:04 archlinux kernel: tsc: Refined TSC clocksource calibration: 2711.996 MHz
May 02 23:33:04 archlinux kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x271782d3887, max_idle_ns: 440795314643 ns
May 02 23:33:04 archlinux kernel: clocksource: Switched to clocksource tsc
May 02 23:33:04 archlinux kernel: usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
May 02 23:33:04 archlinux kernel: usb 2-1: New USB device found, idVendor=2109, idProduct=0817, bcdDevice= 6.74
May 02 23:33:04 archlinux kernel: usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
May 02 23:33:04 archlinux kernel: usb 2-1: Product: USB3.0 Hub             
May 02 23:33:04 archlinux kernel: usb 2-1: Manufacturer: VIA Labs, Inc.         
May 02 23:33:04 archlinux kernel: usb 2-1: SerialNumber: 000000000
May 02 23:33:04 archlinux kernel: hub 2-1:1.0: USB hub found
May 02 23:33:04 archlinux kernel: hub 2-1:1.0: 4 ports detected
May 02 23:33:04 archlinux kernel: Btrfs loaded, zoned=yes, fsverity=yes
May 02 23:33:04 archlinux kernel: Console: switching to colour dummy device 80x25
May 02 23:33:04 archlinux kernel: usb 1-4: new high-speed USB device number 3 using xhci_hcd
May 02 23:33:04 archlinux kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
May 02 23:33:04 archlinux kernel: i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=io+mem
May 02 23:33:04 archlinux kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
May 02 23:33:04 archlinux kernel: i915 0000:00:02.0: [drm] [ENCODER:113:DDI C/PHY C] is disabled/in DSI mode with an ungated DDI clock, gate it
May 02 23:33:04 archlinux kernel: [drm] Initialized i915 1.6.0 20230929 for 0000:00:02.0 on minor 1
May 02 23:33:04 archlinux kernel: ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
May 02 23:33:04 archlinux kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input4
May 02 23:33:04 archlinux kernel: i915 display info: display version: 9
May 02 23:33:04 archlinux kernel: i915 display info: cursor_needs_physical: no
May 02 23:33:04 archlinux kernel: i915 display info: has_cdclk_crawl: no
May 02 23:33:04 archlinux kernel: i915 display info: has_cdclk_squash: no
May 02 23:33:04 archlinux kernel: i915 display info: has_ddi: yes
May 02 23:33:04 archlinux kernel: i915 display info: has_dp_mst: yes
May 02 23:33:04 archlinux kernel: i915 display info: has_dsb: no
May 02 23:33:04 archlinux kernel: i915 display info: has_fpga_dbg: yes
May 02 23:33:04 archlinux kernel: i915 display info: has_gmch: no
May 02 23:33:04 archlinux kernel: i915 display info: has_hotplug: yes
May 02 23:33:04 archlinux kernel: i915 display info: has_hti: no
May 02 23:33:04 archlinux kernel: i915 display info: has_ipc: yes
May 02 23:33:04 archlinux kernel: i915 display info: has_overlay: no
May 02 23:33:04 archlinux kernel: i915 display info: has_psr: yes
May 02 23:33:04 archlinux kernel: i915 display info: has_psr_hw_tracking: yes
May 02 23:33:04 archlinux kernel: i915 display info: overlay_needs_physical: no
May 02 23:33:04 archlinux kernel: i915 display info: supports_tv: no
May 02 23:33:04 archlinux kernel: i915 display info: has_hdcp: yes
May 02 23:33:04 archlinux kernel: i915 display info: has_dmc: yes
May 02 23:33:04 archlinux kernel: i915 display info: has_dsc: no
May 02 23:33:04 archlinux kernel: fbcon: i915drmfb (fb0) is primary device
May 02 23:33:04 archlinux kernel: usb 1-4: New USB device found, idVendor=2109, idProduct=2817, bcdDevice= 6.74
May 02 23:33:04 archlinux kernel: usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
May 02 23:33:04 archlinux kernel: usb 1-4: Product: USB2.0 Hub             
May 02 23:33:04 archlinux kernel: usb 1-4: Manufacturer: VIA Labs, Inc.         
May 02 23:33:04 archlinux kernel: usb 1-4: SerialNumber: 000000000
May 02 23:33:04 archlinux kernel: hub 1-4:1.0: USB hub found
May 02 23:33:04 archlinux kernel: hub 1-4:1.0: 5 ports detected
May 02 23:33:04 archlinux kernel: usb 1-5: new full-speed USB device number 4 using xhci_hcd
May 02 23:33:04 archlinux kernel: usb 1-5: New USB device found, idVendor=138a, idProduct=0094, bcdDevice= 1.64
May 02 23:33:04 archlinux kernel: usb 1-5: New USB device strings: Mfr=0, Product=0, SerialNumber=1
May 02 23:33:04 archlinux kernel: usb 1-5: SerialNumber: cd6680b95405
May 02 23:33:04 archlinux kernel: usb 2-1.4: new SuperSpeed USB device number 3 using xhci_hcd
May 02 23:33:04 archlinux kernel: usb 2-1.4: New USB device found, idVendor=0bda, idProduct=8153, bcdDevice=31.00
May 02 23:33:04 archlinux kernel: usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=6
May 02 23:33:04 archlinux kernel: usb 2-1.4: Product: USB 10/100/1000 LAN
May 02 23:33:04 archlinux kernel: usb 2-1.4: Manufacturer: Realtek
May 02 23:33:04 archlinux kernel: usb 2-1.4: SerialNumber: 001000001
May 02 23:33:04 archlinux kernel: usb 1-7: new full-speed USB device number 5 using xhci_hcd
May 02 23:33:04 archlinux kernel: usb 1-7: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=24.11
May 02 23:33:04 archlinux kernel: usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
May 02 23:33:04 archlinux kernel: usb 1-7: Product: USB Receiver
May 02 23:33:04 archlinux kernel: usb 1-7: Manufacturer: Logitech
May 02 23:33:04 archlinux kernel: usbcore: registered new interface driver usbhid
May 02 23:33:04 archlinux kernel: usbhid: USB HID core driver
May 02 23:33:04 archlinux kernel: usb 1-4.1: new high-speed USB device number 6 using xhci_hcd
May 02 23:33:04 archlinux kernel: Console: switching to colour frame buffer device 240x67
May 02 23:33:04 archlinux kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
May 02 23:33:04 archlinux kernel: input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/0003:046D:C52B.0001/input/input5
May 02 23:33:04 archlinux kernel: hid-generic 0003:046D:C52B.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:14.0-7/input0
May 02 23:33:04 archlinux kernel: input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/0003:046D:C52B.0002/input/input6
May 02 23:33:04 archlinux kernel: input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/0003:046D:C52B.0002/input/input7
May 02 23:33:04 archlinux kernel: usb 1-4.1: New USB device found, idVendor=1a40, idProduct=0101, bcdDevice= 1.11
May 02 23:33:04 archlinux kernel: usb 1-4.1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
May 02 23:33:04 archlinux kernel: usb 1-4.1: Product: USB 2.0 Hub
May 02 23:33:04 archlinux kernel: hub 1-4.1:1.0: USB hub found
May 02 23:33:04 archlinux kernel: hub 1-4.1:1.0: 4 ports detected
May 02 23:33:04 archlinux kernel: input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.1/0003:046D:C52B.0002/input/input8
May 02 23:33:04 archlinux kernel: hid-generic 0003:046D:C52B.0002: input,hiddev96,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-7/input1
May 02 23:33:04 archlinux kernel: hid-generic 0003:046D:C52B.0003: hiddev97,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-7/input2
May 02 23:33:04 archlinux kernel: usb 1-8: new full-speed USB device number 7 using xhci_hcd
May 02 23:33:04 archlinux kernel: usb 1-8: New USB device found, idVendor=0cf3, idProduct=e300, bcdDevice= 0.01
May 02 23:33:04 archlinux kernel: usb 1-8: New USB device strings: Mfr=0, Product=0, SerialNumber=0
May 02 23:33:04 archlinux kernel: logitech-djreceiver 0003:046D:C52B.0003: hiddev96,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-7/input2
May 02 23:33:04 archlinux kernel: usb 1-4.5: new high-speed USB device number 8 using xhci_hcd
May 02 23:33:04 archlinux kernel: input: Logitech Wireless Device PID:4055 Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.2/0003:046D:C52B.0003/0003:046D:4055.0004/input/input10
May 02 23:33:04 archlinux kernel: hid-generic 0003:046D:4055.0004: input,hidraw1: USB HID v1.11 Mouse [Logitech Wireless Device PID:4055] on usb-0000:00:14.0-7/input2:1
May 02 23:33:04 archlinux kernel: input: Logitech Wireless Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.2/0003:046D:C52B.0003/0003:046D:4055.0004/input/input14
May 02 23:33:04 archlinux kernel: logitech-hidpp-device 0003:046D:4055.0004: input,hidraw1: USB HID v1.11 Mouse [Logitech Wireless Mouse] on usb-0000:00:14.0-7/input2:1
May 02 23:33:04 archlinux kernel: usb 1-4.5: New USB device found, idVendor=050d, idProduct=008a, bcdDevice= 0.01
May 02 23:33:04 archlinux kernel: usb 1-4.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
May 02 23:33:04 archlinux kernel: usb 1-4.5: Product: USB-C 6-in-1 Multiport Adapter
May 02 23:33:04 archlinux kernel: usb 1-4.5: Manufacturer: Belkin International   
May 02 23:33:04 archlinux kernel: usb 1-4.5: SerialNumber: 0000000000000001
May 02 23:33:04 archlinux kernel: BTRFS: device label magnolia devid 1 transid 1783 /dev/nvme0n1p5 scanned by mount (152)
May 02 23:33:04 archlinux kernel: BTRFS info (device nvme0n1p5): first mount of filesystem aa276d53-410c-4bf4-ac41-08b658625043
May 02 23:33:04 archlinux kernel: BTRFS info (device nvme0n1p5): using crc32c (crc32c-intel) checksum algorithm
May 02 23:33:04 archlinux kernel: BTRFS info (device nvme0n1p5): disk space caching is enabled
May 02 23:33:04 archlinux kernel: usb 1-4.1.1: new high-speed USB device number 9 using xhci_hcd
May 02 23:33:04 archlinux systemd[1]: systemd 255.4-2-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)
May 02 23:33:04 archlinux systemd[1]: Detected architecture x86-64.
May 02 23:33:04 archlinux kernel: usb 1-4.1.1: New USB device found, idVendor=2109, idProduct=0102, bcdDevice= 7.01
May 02 23:33:04 archlinux kernel: usb 1-4.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
May 02 23:33:04 archlinux kernel: usb 1-4.1.1: Product: USB 2.0 BILLBOARD             
May 02 23:33:04 archlinux kernel: usb 1-4.1.1: Manufacturer: VIA Technologies Inc.         
May 02 23:33:04 archlinux kernel: usb 1-4.1.1: SerialNumber: 0000000000000001
May 02 23:33:04 archlinux kernel: usb 1-4.1.2: new high-speed USB device number 10 using xhci_hcd
May 02 23:33:04 archlinux systemd[1]: bpf-lsm: LSM BPF program attached
May 02 23:33:04 archlinux kernel: usb 1-4.1.2: New USB device found, idVendor=05e3, idProduct=0751, bcdDevice=14.04
May 02 23:33:04 archlinux kernel: usb 1-4.1.2: New USB device strings: Mfr=3, Product=4, SerialNumber=0
May 02 23:33:04 archlinux kernel: usb 1-4.1.2: Product: USB Storage
May 02 23:33:04 archlinux kernel: usb 1-4.1.2: Manufacturer: USB Storage
May 02 23:33:04 archlinux systemd[1]: Queued start job for default target Graphical Interface.
May 02 23:33:04 archlinux systemd[1]: Created slice Slice /system/dirmngr.
May 02 23:33:04 archlinux systemd[1]: Created slice Slice /system/getty.
May 02 23:33:04 archlinux systemd[1]: Created slice Slice /system/gpg-agent.
May 02 23:33:04 archlinux systemd[1]: Created slice Slice /system/gpg-agent-browser.
May 02 23:33:04 archlinux systemd[1]: Created slice Slice /system/gpg-agent-extra.
May 02 23:33:04 archlinux systemd[1]: Created slice Slice /system/gpg-agent-ssh.
May 02 23:33:04 archlinux systemd[1]: Created slice Slice /system/keyboxd.
May 02 23:33:04 archlinux systemd[1]: Created slice Slice /system/modprobe.
May 02 23:33:04 archlinux systemd[1]: Created slice Slice /system/systemd-fsck.
May 02 23:33:04 archlinux systemd[1]: Created slice User and Session Slice.
May 02 23:33:04 archlinux systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
May 02 23:33:04 archlinux systemd[1]: Started Forward Password Requests to Wall Directory Watch.
May 02 23:33:04 archlinux systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
May 02 23:33:04 archlinux systemd[1]: Expecting device /dev/disk/by-uuid/2879-4041...
May 02 23:33:04 archlinux systemd[1]: Expecting device /dev/disk/by-uuid/aa276d53-410c-4bf4-ac41-08b658625043...
May 02 23:33:04 archlinux systemd[1]: Reached target Local Encrypted Volumes.
May 02 23:33:04 archlinux systemd[1]: Reached target Local Integrity Protected Volumes.
May 02 23:33:04 archlinux systemd[1]: Reached target Path Units.
May 02 23:33:04 archlinux systemd[1]: Reached target Remote Encrypted Volumes.
May 02 23:33:04 archlinux systemd[1]: Reached target Remote File Systems.
May 02 23:33:04 archlinux systemd[1]: Reached target Slice Units.
May 02 23:33:04 archlinux systemd[1]: Reached target Swaps.
May 02 23:33:04 archlinux systemd[1]: Reached target Local Verity Protected Volumes.
May 02 23:33:04 archlinux systemd[1]: Listening on Device-mapper event daemon FIFOs.
May 02 23:33:04 archlinux systemd[1]: Listening on LVM2 poll daemon socket.
May 02 23:33:04 archlinux systemd[1]: Listening on Process Core Dump Socket.
May 02 23:33:04 archlinux systemd[1]: Listening on Journal Socket (/dev/log).
May 02 23:33:04 archlinux systemd[1]: Listening on Journal Socket.
May 02 23:33:04 archlinux systemd[1]: Listening on Network Service Netlink Socket.
May 02 23:33:04 archlinux systemd[1]: TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:33:04 archlinux systemd[1]: Listening on udev Control Socket.
May 02 23:33:04 archlinux systemd[1]: Listening on udev Kernel Socket.
May 02 23:33:04 archlinux systemd[1]: Listening on User Database Manager Socket.
May 02 23:33:04 archlinux systemd[1]: Mounting Huge Pages File System...
May 02 23:33:04 archlinux systemd[1]: Mounting POSIX Message Queue File System...
May 02 23:33:04 archlinux systemd[1]: Mounting Kernel Debug File System...
May 02 23:33:04 archlinux systemd[1]: Mounting Kernel Trace File System...
May 02 23:33:04 archlinux systemd[1]: Mounting Temporary Directory /tmp...
May 02 23:33:04 archlinux systemd[1]: Starting Create List of Static Device Nodes...
May 02 23:33:04 archlinux systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
May 02 23:33:04 archlinux systemd[1]: Starting Load Kernel Module configfs...
May 02 23:33:04 archlinux systemd[1]: Starting Load Kernel Module dm_mod...
May 02 23:33:04 archlinux systemd[1]: Starting Load Kernel Module drm...
May 02 23:33:04 archlinux systemd[1]: Starting Load Kernel Module efi_pstore...
May 02 23:33:04 archlinux systemd[1]: Starting Load Kernel Module fuse...
May 02 23:33:04 archlinux systemd[1]: Starting Load Kernel Module loop...
May 02 23:33:04 archlinux systemd[1]: Starting Journal Service...
May 02 23:33:04 archlinux systemd[1]: Starting Load Kernel Modules...
May 02 23:33:04 archlinux systemd[1]: Starting Generate network units from Kernel command line...
May 02 23:33:04 archlinux systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:33:04 archlinux systemd[1]: Starting Remount Root and Kernel File Systems...
May 02 23:33:04 archlinux systemd[1]: TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:33:04 archlinux systemd[1]: Starting Coldplug All udev Devices...
May 02 23:33:04 archlinux systemd[1]: Mounted Huge Pages File System.
May 02 23:33:04 archlinux kernel: device-mapper: uevent: version 1.0.3
May 02 23:33:04 archlinux systemd[1]: Mounted POSIX Message Queue File System.
May 02 23:33:04 archlinux kernel: fuse: init (API version 7.39)
May 02 23:33:04 archlinux kernel: device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
May 02 23:33:04 archlinux systemd[1]: Mounted Kernel Debug File System.
May 02 23:33:04 archlinux systemd[1]: Mounted Kernel Trace File System.
May 02 23:33:04 archlinux systemd[1]: Mounted Temporary Directory /tmp.
May 02 23:33:04 archlinux systemd[1]: Finished Create List of Static Device Nodes.
May 02 23:33:04 archlinux systemd[1]: modprobe@configfs.service: Deactivated successfully.
May 02 23:33:04 archlinux systemd[1]: Finished Load Kernel Module configfs.
May 02 23:33:04 archlinux systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
May 02 23:33:04 archlinux systemd[1]: Finished Load Kernel Module dm_mod.
May 02 23:33:04 archlinux systemd[1]: modprobe@drm.service: Deactivated successfully.
May 02 23:33:04 archlinux systemd[1]: Finished Load Kernel Module drm.
May 02 23:33:04 archlinux systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
May 02 23:33:04 archlinux systemd[1]: Finished Load Kernel Module efi_pstore.
May 02 23:33:04 archlinux systemd[1]: modprobe@fuse.service: Deactivated successfully.
May 02 23:33:04 archlinux kernel: loop: module loaded
May 02 23:33:04 archlinux systemd[1]: Finished Load Kernel Module fuse.
May 02 23:33:04 archlinux systemd[1]: modprobe@loop.service: Deactivated successfully.
May 02 23:33:04 archlinux systemd[1]: Finished Load Kernel Module loop.
May 02 23:33:04 archlinux systemd[1]: Finished Generate network units from Kernel command line.
May 02 23:33:04 archlinux systemd[1]: Reached target Preparation for Network.
May 02 23:33:04 archlinux systemd[1]: Mounting FUSE Control File System...
May 02 23:33:04 archlinux systemd[1]: Mounting Kernel Configuration File System...
May 02 23:33:04 archlinux systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
May 02 23:33:04 archlinux systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
May 02 23:33:04 archlinux systemd-journald[208]: Collecting audit messages is disabled.
May 02 23:33:04 archlinux systemd[1]: Finished Load Kernel Modules.
May 02 23:33:04 archlinux systemd[1]: Mounted FUSE Control File System.
May 02 23:33:04 archlinux systemd[1]: Starting Apply Kernel Variables...
May 02 23:33:04 archlinux systemd[1]: Mounted Kernel Configuration File System.
May 02 23:33:04 archlinux systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
May 02 23:33:04 archlinux systemd[1]: Starting User Database Manager...
May 02 23:33:04 archlinux systemd[1]: Finished Apply Kernel Variables.
May 02 23:33:04 archlinux systemd-journald[208]: Journal started
May 02 23:33:04 archlinux systemd-journald[208]: Runtime Journal (/run/log/journal/bc47046c25d64071a8322148626a91cb) is 8.0M, max 384.1M, 376.1M free.
May 02 23:33:04 archlinux systemd-modules-load[209]: Inserted module 'crypto_user'
May 02 23:33:04 archlinux systemd-modules-load[209]: Inserted module 'sg'
May 02 23:33:04 archlinux systemd[1]: Started Journal Service.
May 02 23:33:04 archlinux kernel: BTRFS warning (device nvme0n1p5): block group 3251634176 has wrong amount of free space
May 02 23:33:04 archlinux kernel: BTRFS warning (device nvme0n1p5): failed to load free space cache for block group 3251634176, rebuilding it now
May 02 23:33:04 archlinux systemd[1]: Finished Coldplug All udev Devices.
May 02 23:33:04 archlinux kernel: BTRFS info (device nvme0n1p5: state M): turning on sync discard
May 02 23:33:04 archlinux kernel: BTRFS info (device nvme0n1p5: state M): use zstd compression, level 3
May 02 23:33:04 archlinux systemd[1]: Finished Remount Root and Kernel File Systems.
May 02 23:33:04 archlinux systemd[1]: Rebuild Hardware Database was skipped because no trigger condition checks were met.
May 02 23:33:04 archlinux systemd[1]: Started User Database Manager.
May 02 23:33:04 archlinux systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
May 02 23:33:04 archlinux systemd[1]: Starting Create System Users...
May 02 23:33:04 archlinux systemd[1]: Finished Create System Users.
May 02 23:33:04 archlinux systemd[1]: Starting Create Static Device Nodes in /dev...
May 02 23:33:04 archlinux systemd[1]: Finished Create Static Device Nodes in /dev.
May 02 23:33:04 archlinux systemd[1]: Reached target Preparation for Local File Systems.
May 02 23:33:05 archlinux systemd[1]: Starting Rule-based Manager for Device Events and Files...
May 02 23:33:05 archlinux systemd-udevd[253]: Using default interface naming scheme 'v255'.
May 02 23:33:05 archlinux systemd[1]: Started Rule-based Manager for Device Events and Files.
May 02 23:33:05 archlinux systemd[1]: Starting Network Configuration...
May 02 23:33:05 archlinux mtp-probe[285]: checking bus 1, device 5: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7"
May 02 23:33:05 archlinux mtp-probe[285]: bus: 1, device: 5 was not an MTP device
May 02 23:33:05 archlinux kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
May 02 23:33:05 archlinux kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
May 02 23:33:05 archlinux kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
May 02 23:33:05 archlinux kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
May 02 23:33:05 archlinux kernel: cfg80211: failed to load regulatory.db
May 02 23:33:05 archlinux kernel: mousedev: PS/2 mouse device common for all mice
May 02 23:33:05 archlinux systemd-networkd[262]: lo: Link UP
May 02 23:33:05 archlinux systemd-networkd[262]: lo: Gained carrier
May 02 23:33:05 archlinux systemd-networkd[262]: Enumeration completed
May 02 23:33:05 archlinux kernel: Consider using thermal netlink events interface
May 02 23:33:05 archlinux systemd[1]: Started Network Configuration.
May 02 23:33:05 archlinux systemd[1]: Found device SAMSUNG MZVLW512HMJP-000L2 SYSTEM_DRV.
May 02 23:33:05 archlinux systemd[1]: Found device SAMSUNG MZVLW512HMJP-000L2 magnolia.
May 02 23:33:05 archlinux systemd[1]: etc.mount: Directory /etc to mount over is not empty, mounting anyway.
May 02 23:33:05 archlinux mtp-probe[296]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-1"
May 02 23:33:05 archlinux systemd[1]: Mounting /etc...
May 02 23:33:05 archlinux systemd[1]: var.mount: Directory /var to mount over is not empty, mounting anyway.
May 02 23:33:05 archlinux kernel: intel_pmc_core INT33A1:00:  initialized
May 02 23:33:05 archlinux mtp-probe[297]: checking bus 1, device 4: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5"
May 02 23:33:05 archlinux mtp-probe[296]: bus: 1, device: 2 was not an MTP device
May 02 23:33:05 archlinux systemd[1]: Mounting /var...
May 02 23:33:05 archlinux systemd[1]: Starting File System Check on /dev/disk/by-uuid/2879-4041...
May 02 23:33:05 archlinux kernel: input: Ideapad extra buttons as /devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/input/input15
May 02 23:33:05 archlinux mtp-probe[297]: bus: 1, device: 4 was not an MTP device
May 02 23:33:05 archlinux systemd[1]: Mounted /etc.
May 02 23:33:05 archlinux kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
May 02 23:33:05 archlinux systemd[1]: Mounted /var.
May 02 23:33:05 archlinux kernel: mc: Linux media interface: v0.10
May 02 23:33:05 archlinux kernel: intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
May 02 23:33:05 archlinux systemd[1]: Starting Flush Journal to Persistent Storage...
May 02 23:33:05 archlinux systemd[1]: Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
May 02 23:33:05 archlinux kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
May 02 23:33:05 archlinux systemd-journald[208]: Time spent on flushing to /var/log/journal/bc47046c25d64071a8322148626a91cb is 120.969ms for 981 entries.
May 02 23:33:05 archlinux systemd-journald[208]: System Journal (/var/log/journal/bc47046c25d64071a8322148626a91cb) is 410.9M, max 4.0G, 3.5G free.
May 02 23:33:05 archlinux systemd-journald[208]: Received client request to flush runtime journal.
May 02 23:33:05 archlinux systemd-journald[208]: /var/log/journal/bc47046c25d64071a8322148626a91cb/system.journal: Journal file uses a different sequence number ID, rotating.
May 02 23:33:05 archlinux systemd-journald[208]: Rotating system journal.
May 02 23:33:05 archlinux kernel: ideapad_acpi VPC2004:00: DYTC interface is not available
May 02 23:33:05 archlinux kernel: intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
May 02 23:33:05 archlinux kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
May 02 23:33:05 archlinux kernel: intel-lpss 0000:00:15.3: enabling device (0000 -> 0002)
May 02 23:33:05 archlinux kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit
May 02 23:33:05 archlinux kernel: Bluetooth: Core ver 2.22
May 02 23:33:05 archlinux kernel: NET: Registered PF_BLUETOOTH protocol family
May 02 23:33:05 archlinux kernel: Bluetooth: HCI device and connection manager initialized
May 02 23:33:05 archlinux kernel: Bluetooth: HCI socket layer initialized
May 02 23:33:05 archlinux kernel: Bluetooth: L2CAP socket layer initialized
May 02 23:33:05 archlinux kernel: Bluetooth: SCO socket layer initialized
May 02 23:33:05 archlinux kernel: input: PC Speaker as /devices/platform/pcspkr/input/input16
May 02 23:33:05 archlinux kernel: usb-storage 1-4.1.2:1.0: USB Mass Storage device detected
May 02 23:33:05 archlinux kernel: scsi host0: usb-storage 1-4.1.2:1.0
May 02 23:33:05 archlinux kernel: usbcore: registered new interface driver usb-storage
May 02 23:33:05 archlinux systemd[1]: Starting Load/Save OS Random Seed...
May 02 23:33:05 archlinux systemd-fsck[313]: fsck.fat 4.2 (2021-01-31)
May 02 23:33:05 archlinux systemd-fsck[313]: /dev/nvme0n1p1: 227 files, 50425/65536 clusters
May 02 23:33:05 archlinux mtp-probe[319]: checking bus 1, device 10: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.1/1-4.1.2"
May 02 23:33:05 archlinux systemd[1]: TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:33:05 archlinux mtp-probe[319]: bus: 1, device: 10 was not an MTP device
May 02 23:33:05 archlinux systemd[1]: Finished File System Check on /dev/disk/by-uuid/2879-4041.
May 02 23:33:05 archlinux mtp-probe[317]: checking bus 2, device 3: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-1/2-1.4"
May 02 23:33:05 archlinux systemd[1]: Finished Load/Save OS Random Seed.
May 02 23:33:05 archlinux mtp-probe[317]: bus: 2, device: 3 was not an MTP device
May 02 23:33:05 archlinux systemd[1]: Created slice Slice /system/systemd-backlight.
May 02 23:33:05 archlinux systemd[1]: Mounting /boot...
May 02 23:33:05 archlinux systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
May 02 23:33:05 archlinux systemd[1]: Reached target Containers.
May 02 23:33:05 archlinux systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:intel_backlight...
May 02 23:33:05 archlinux systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:intel_backlight.
May 02 23:33:05 archlinux systemd[1]: Finished Flush Journal to Persistent Storage.
May 02 23:33:05 archlinux kernel: videodev: Linux video capture interface: v2.00
May 02 23:33:05 archlinux systemd[1]: Starting Virtual Console Setup...
May 02 23:33:05 archlinux systemd[1]: systemd-vconsole-setup.service: Deactivated successfully.
May 02 23:33:05 archlinux systemd[1]: Stopped Virtual Console Setup.
May 02 23:33:05 archlinux systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
May 02 23:33:05 archlinux systemd[1]: Starting Virtual Console Setup...
May 02 23:33:05 archlinux systemd[1]: Starting Load/Save RF Kill Switch Status...
May 02 23:33:05 archlinux kernel: input: SYNA2B31:00 06CB:7F8C Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-7/i2c-SYNA2B31:00/0018:06CB:7F8C.0005/input/input17
May 02 23:33:05 archlinux kernel: input: SYNA2B31:00 06CB:7F8C Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-7/i2c-SYNA2B31:00/0018:06CB:7F8C.0005/input/input18
May 02 23:33:05 archlinux kernel: hid-generic 0018:06CB:7F8C.0005: input,hidraw2: I2C HID v1.00 Mouse [SYNA2B31:00 06CB:7F8C] on i2c-SYNA2B31:00
May 02 23:33:05 archlinux systemd[1]: Starting Load/Save Screen Backlight Brightness of leds:platform::kbd_backlight...
May 02 23:33:05 archlinux kernel: intel_rapl_common: Found RAPL domain package
May 02 23:33:05 archlinux kernel: intel_rapl_common: Found RAPL domain core
May 02 23:33:05 archlinux kernel: intel_rapl_common: Found RAPL domain uncore
May 02 23:33:05 archlinux kernel: intel_rapl_common: Found RAPL domain dram
May 02 23:33:05 archlinux systemd[1]: Finished Load/Save Screen Backlight Brightness of leds:platform::kbd_backlight.
May 02 23:33:05 archlinux kernel: hid-generic 0018:048D:8186.0006: hidraw3: I2C HID v1.00 Device [ITE8186:00 048D:8186] on i2c-ITE8186:00
May 02 23:33:05 archlinux systemd[1]: Finished Virtual Console Setup.
May 02 23:33:05 archlinux kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
May 02 23:33:06 archlinux kernel: scsi 0:0:0:0: Direct-Access     Generic  STORAGE DEVICE   1404 PQ: 0 ANSI: 6
May 02 23:33:06 archlinux kernel: sd 0:0:0:0: Attached scsi generic sg0 type 0
May 02 23:33:06 archlinux kernel: i2c_hid_acpi i2c-SYNA7813:00: device did not ack reset within 1000 ms
May 02 23:33:06 archlinux kernel: input: SYNA7813:00 06CB:1786 Touchscreen as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-6/i2c-SYNA7813:00/0018:06CB:1786.0007/input/input20
May 02 23:33:06 archlinux kernel: hid-generic 0018:06CB:1786.0007: input,hidraw4: I2C HID v1.00 Device [SYNA7813:00 06CB:1786] on i2c-SYNA7813:00
May 02 23:33:06 archlinux kernel: sd 0:0:0:0: [sda] Media removed, stopped polling
May 02 23:33:06 archlinux kernel: sd 0:0:0:0: [sda] Attached SCSI removable disk
May 02 23:33:06 archlinux kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
May 02 23:33:06 archlinux kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
May 02 23:33:06 archlinux kernel: i2c i2c-9: 2/4 memory slots populated (from DMI)
May 02 23:33:06 archlinux systemd[1]: Mounted /boot.
May 02 23:33:06 archlinux systemd[1]: Reached target Local File Systems.
May 02 23:33:06 archlinux systemd[1]: Listening on System Extension Image Management (Varlink).
May 02 23:33:06 archlinux systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
May 02 23:33:06 archlinux systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
May 02 23:33:06 archlinux kernel: usbcore: registered new device driver r8152-cfgselector
May 02 23:33:06 archlinux kernel: RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
May 02 23:33:06 archlinux kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
May 02 23:33:06 archlinux kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
May 02 23:33:06 archlinux kernel: RAPL PMU: hw unit of domain dram 2^-14 Joules
May 02 23:33:06 archlinux kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
May 02 23:33:06 archlinux kernel: usbcore: registered new interface driver uas
May 02 23:33:06 archlinux kernel: cryptd: max_cpu_qlen set to 1000
May 02 23:33:06 archlinux systemd[1]: Starting Update Boot Loader Random Seed...
May 02 23:33:06 archlinux bootctl[368]: ! Mount point '/boot' which backs the random seed file is world accessible, which is a security hole! !
May 02 23:33:06 archlinux bootctl[368]: ! Random seed file '/boot/loader/random-seed' is world accessible, which is a security hole! !
May 02 23:33:06 archlinux systemd[1]: Starting Automatic Boot Loader Update...
May 02 23:33:06 archlinux bootctl[368]: Random seed file /boot/loader/random-seed successfully refreshed (32 bytes).
May 02 23:33:06 archlinux systemd[1]: Starting Create Volatile Files and Directories...
May 02 23:33:06 archlinux systemd[1]: Started Load/Save RF Kill Switch Status.
May 02 23:33:06 archlinux systemd[1]: Finished Update Boot Loader Random Seed.
May 02 23:33:06 archlinux bootctl[371]: Skipping "/boot/EFI/systemd/systemd-bootx64.efi", same boot loader version in place already.
May 02 23:33:06 archlinux bootctl[371]: Skipping "/boot/EFI/BOOT/BOOTX64.EFI", same boot loader version in place already.
May 02 23:33:06 archlinux systemd[1]: Finished Automatic Boot Loader Update.
May 02 23:33:06 archlinux kernel: AVX2 version of gcm_enc/dec engaged.
May 02 23:33:06 archlinux kernel: AES CTR mode by8 optimization enabled
May 02 23:33:06 archlinux kernel: iTCO_vendor_support: vendor-support=0
May 02 23:33:06 archlinux kernel: intel_rapl_common: Found RAPL domain package
May 02 23:33:06 archlinux kernel: intel_rapl_common: Found RAPL domain dram
May 02 23:33:06 archlinux kernel: hid-sensor-hub 0018:048D:8186.0006: hidraw3: I2C HID v1.00 Device [ITE8186:00 048D:8186] on i2c-ITE8186:00
May 02 23:33:06 archlinux kernel: usb 1-1: Found UVC 1.00 device EasyCamera (04f2:b5a4)
May 02 23:33:06 archlinux kernel: usbcore: registered new interface driver uvcvideo
May 02 23:33:06 archlinux kernel: ath10k_pci 0000:01:00.0: pci irq msi oper_irq_mode 2 irq_mode 0 reset_mode 0
May 02 23:33:07 archlinux kernel: r8152-cfgselector 2-1.4: reset SuperSpeed USB device number 3 using xhci_hcd
May 02 23:33:07 archlinux kernel: iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400)
May 02 23:33:07 archlinux kernel: iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
May 02 23:33:07 archlinux kernel: r8152 2-1.4:1.0: load rtl8153b-2 v2 04/27/23 successfully
May 02 23:33:07 archlinux kernel: input: SYNA7813:00 06CB:1786 as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-6/i2c-SYNA7813:00/0018:06CB:1786.0007/input/input22
May 02 23:33:07 archlinux kernel: snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
May 02 23:33:07 archlinux kernel: snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
May 02 23:33:07 archlinux kernel: usbcore: registered new interface driver btusb
May 02 23:33:07 archlinux kernel: Bluetooth: hci0: using rampatch file: qca/rampatch_usb_00000302.bin
May 02 23:33:07 archlinux kernel: Bluetooth: hci0: QCA: patch rome 0x302 build 0x3e8, firmware rome 0x302 build 0x111
May 02 23:33:07 archlinux kernel: r8152 2-1.4:1.0 eth0: v1.12.13
May 02 23:33:07 archlinux kernel: usbcore: registered new interface driver r8152
May 02 23:33:07 archlinux systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
May 02 23:33:07 archlinux kernel: hid-multitouch 0018:06CB:1786.0007: input,hidraw2: I2C HID v1.00 Device [SYNA7813:00 06CB:1786] on i2c-SYNA7813:00
May 02 23:33:07 archlinux kernel: input: SYNA2B31:00 06CB:7F8C Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-7/i2c-SYNA2B31:00/0018:06CB:7F8C.0005/input/input24
May 02 23:33:07 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC299: line_outs=2 (0x14/0x17/0x0/0x0/0x0) type:speaker
May 02 23:33:07 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
May 02 23:33:07 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
May 02 23:33:07 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
May 02 23:33:07 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:    inputs:
May 02 23:33:07 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:      Mic=0x19
May 02 23:33:07 archlinux kernel: snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
May 02 23:33:07 archlinux kernel: input: SYNA2B31:00 06CB:7F8C Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-7/i2c-SYNA2B31:00/0018:06CB:7F8C.0005/input/input25
May 02 23:33:07 archlinux kernel: hid-multitouch 0018:06CB:7F8C.0005: input,hidraw4: I2C HID v1.00 Mouse [SYNA2B31:00 06CB:7F8C] on i2c-SYNA2B31:00
May 02 23:33:07 archlinux systemd[1]: Starting Load Kernel Module dm_mod...
May 02 23:33:07 archlinux systemd[1]: Starting Load Kernel Module efi_pstore...
May 02 23:33:07 archlinux systemd[1]: Starting Load Kernel Module loop...
May 02 23:33:07 archlinux systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
May 02 23:33:07 archlinux systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
May 02 23:33:07 archlinux systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:33:07 archlinux systemd[1]: TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:33:07 archlinux systemd[1]: TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:33:07 archlinux systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
May 02 23:33:07 archlinux systemd[1]: Finished Load Kernel Module dm_mod.
May 02 23:33:07 archlinux systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
May 02 23:33:07 archlinux systemd[1]: Finished Load Kernel Module efi_pstore.
May 02 23:33:07 archlinux systemd[1]: modprobe@loop.service: Deactivated successfully.
May 02 23:33:07 archlinux systemd[1]: Finished Load Kernel Module loop.
May 02 23:33:07 archlinux systemd[1]: Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
May 02 23:33:07 archlinux systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
May 02 23:33:07 archlinux systemd[1]: Finished Create Volatile Files and Directories.
May 02 23:33:07 archlinux systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 02 23:33:07 archlinux systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 02 23:33:07 archlinux systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
May 02 23:33:07 archlinux systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
May 02 23:33:07 archlinux kernel: usbcore: registered new interface driver cdc_ether
May 02 23:33:07 archlinux kernel: usbcore: registered new interface driver r8153_ecm
May 02 23:33:07 archlinux systemd[1]: Starting Network Name Resolution...
May 02 23:33:07 archlinux mtp-probe[402]: checking bus 2, device 3: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-1/2-1.4"
May 02 23:33:07 archlinux systemd[1]: Starting Network Time Synchronization...
May 02 23:33:07 archlinux systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
May 02 23:33:07 archlinux kernel: ath10k_pci 0000:01:00.0: qca6174 hw3.2 target 0x05030000 chip_id 0x00340aff sub 17aa:0827
May 02 23:33:07 archlinux kernel: ath10k_pci 0000:01:00.0: kconfig debug 1 debugfs 1 tracing 1 dfs 0 testmode 0
May 02 23:33:07 archlinux kernel: ath10k_pci 0000:01:00.0: firmware ver WLAN.RM.4.4.1-00309- api 6 features wowlan,ignore-otp,mfp crc32 0793bcf2
May 02 23:33:07 archlinux systemd[1]: Starting Record System Boot/Shutdown in UTMP...
May 02 23:33:07 archlinux mtp-probe[402]: bus: 2, device: 3 was not an MTP device
May 02 23:33:07 archlinux systemd[1]: Finished Record System Boot/Shutdown in UTMP.
May 02 23:33:07 archlinux kernel: ath10k_pci 0000:01:00.0: board_file api 2 bmi_id N/A crc32 d2863f91
May 02 23:33:07 archlinux systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
May 02 23:33:07 archlinux systemd-resolved[401]: Positive Trust Anchors:
May 02 23:33:07 archlinux systemd-resolved[401]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d
May 02 23:33:07 archlinux systemd-resolved[401]: 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 170.0.0.192.in-addr.arpa 171.0.0.192.in-addr.arpa 168.192.in-addr.arpa d.f.ip6.arpa ipv4only.arpa corp home internal intranet lan local private test
May 02 23:33:07 archlinux kernel: intel_tcc_cooling: Programmable TCC Offset detected
May 02 23:33:07 archlinux systemd[1]: Starting Load Kernel Module dm_mod...
May 02 23:33:07 archlinux kernel: r8152 2-1.4:1.0 enp0s20f0u1u4: renamed from eth0
May 02 23:33:07 archlinux systemd[1]: Starting Load Kernel Module efi_pstore...
May 02 23:33:07 archlinux systemd-resolved[401]: Using system hostname 'archlinux'.
May 02 23:33:07 archlinux systemd[1]: Starting Load Kernel Module loop...
May 02 23:33:07 archlinux systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
May 02 23:33:07 archlinux systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 02 23:33:07 archlinux systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 02 23:33:07 archlinux systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
May 02 23:33:07 archlinux systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
May 02 23:33:07 archlinux systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
May 02 23:33:07 archlinux systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:33:07 archlinux systemd[1]: TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:33:07 archlinux systemd[1]: TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:33:07 archlinux systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
May 02 23:33:07 archlinux systemd[1]: Started Network Time Synchronization.
May 02 23:33:07 archlinux systemd-networkd[262]: eth0: Interface name change detected, renamed to enp0s20f0u1u4.
May 02 23:33:07 archlinux systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
May 02 23:33:07 archlinux systemd[1]: Finished Load Kernel Module dm_mod.
May 02 23:33:07 archlinux systemd[1]: Started Network Name Resolution.
May 02 23:33:07 archlinux systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
May 02 23:33:07 archlinux systemd[1]: Finished Load Kernel Module efi_pstore.
May 02 23:33:07 archlinux systemd[1]: modprobe@loop.service: Deactivated successfully.
May 02 23:33:07 archlinux systemd[1]: Finished Load Kernel Module loop.
May 02 23:33:07 archlinux systemd[1]: Reached target Network.
May 02 23:33:07 archlinux systemd[1]: Reached target Host and Network Name Lookups.
May 02 23:33:07 archlinux systemd[1]: Reached target System Time Set.
May 02 23:33:07 archlinux systemd-networkd[262]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:33:07 archlinux systemd[1]: Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
May 02 23:33:07 archlinux systemd[1]: Reached target System Initialization.
May 02 23:33:07 archlinux systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
May 02 23:33:07 archlinux systemd[1]: Started Daily man-db regeneration.
May 02 23:33:07 archlinux systemd[1]: Started Daily verification of password and group files.
May 02 23:33:07 archlinux systemd[1]: Started Daily Cleanup of Temporary Directories.
May 02 23:33:07 archlinux systemd[1]: Reached target Timer Units.
May 02 23:33:07 archlinux kernel: ath10k_pci 0000:01:00.0: htt-ver 3.87 wmi-op 4 htt-op 3 cal otp max-sta 32 raw 0 hwcrypto 1
May 02 23:33:07 archlinux systemd[1]: Listening on D-Bus System Message Bus Socket.
May 02 23:33:07 archlinux systemd-networkd[262]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:33:07 archlinux systemd[1]: Listening on GnuPG network certificate management daemon for /etc/pacman.d/gnupg.
May 02 23:33:07 archlinux systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers) for /etc/pacman.d/gnupg.
May 02 23:33:07 archlinux systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (restricted) for /etc/pacman.d/gnupg.
May 02 23:33:07 archlinux systemd[1]: Listening on GnuPG cryptographic agent (ssh-agent emulation) for /etc/pacman.d/gnupg.
May 02 23:33:07 archlinux systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache for /etc/pacman.d/gnupg.
May 02 23:33:07 archlinux systemd[1]: Listening on GnuPG public key management service for /etc/pacman.d/gnupg.
May 02 23:33:07 archlinux kernel: Bluetooth: hci0: using NVM file: qca/nvm_usb_00000302.bin
May 02 23:33:07 archlinux systemd[1]: Reached target Socket Units.
May 02 23:33:07 archlinux systemd[1]: Starting D-Bus System Message Bus...
May 02 23:33:07 archlinux systemd[1]: TPM2 PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:33:07 archlinux systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
May 02 23:33:07 archlinux kernel: Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
May 02 23:33:07 archlinux dbus-broker-launch[423]: Looking up NSS user entry for 'pulse'...
May 02 23:33:07 archlinux dbus-broker-launch[423]: NSS returned no entry for 'pulse'
May 02 23:33:07 archlinux dbus-broker-launch[423]: Invalid user-name in /usr/share/dbus-1/system.d/pulseaudio-system.conf +27: user="pulse"
May 02 23:33:07 archlinux systemd[1]: Started D-Bus System Message Bus.
May 02 23:33:07 archlinux systemd[1]: Reached target Basic System.
May 02 23:33:07 archlinux systemd[1]: Starting Bluetooth service...
May 02 23:33:07 archlinux systemd[1]: Starting IIO Sensor Proxy service...
May 02 23:33:07 archlinux (uetoothd)[427]: bluetooth.service: ConfigurationDirectory 'bluetooth' already exists but the mode is different. (File system: 755 ConfigurationDirectoryMode: 555)
May 02 23:33:07 archlinux kernel: ath: EEPROM regdomain: 0x6c
May 02 23:33:07 archlinux kernel: ath: EEPROM indicates we should expect a direct regpair map
May 02 23:33:07 archlinux kernel: ath: Country alpha2 being used: 00
May 02 23:33:07 archlinux kernel: ath: Regpair used: 0x6c
May 02 23:33:07 archlinux systemd-networkd[262]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:33:07 archlinux kernel: ath10k_pci 0000:01:00.0 wlp1s0: renamed from wlan0
May 02 23:33:07 archlinux systemd-networkd[262]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:33:07 archlinux systemd[1]: Starting Home Area Manager...
May 02 23:33:07 archlinux systemd-networkd[262]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:33:07 archlinux systemd[1]: Starting User Login Management...
May 02 23:33:07 archlinux dbus-broker-launch[423]: Ready
May 02 23:33:07 archlinux systemd-networkd[262]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: wlan0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:33:07 archlinux systemd[1]: TPM2 PCR Barrier (User) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 02 23:33:07 archlinux systemd-networkd[262]: wlan0: Interface name change detected, renamed to wlp1s0.
May 02 23:33:07 archlinux systemd-networkd[262]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:33:07 archlinux systemd[1]: Started Verify integrity of password and group files.
May 02 23:33:07 archlinux systemd-networkd[262]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: wlp1s0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: wlp1s0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: wlp1s0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: wlp1s0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: Failed to update state file /run/systemd/netif/state, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: enp0s20f0u1u4: Failed to update link state file /run/systemd/netif/links/2, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-networkd[262]: wlp1s0: Failed to update link state file /run/systemd/netif/links/3, ignoring: Permission denied
May 02 23:33:07 archlinux systemd-homed[429]: Successfully loaded private key pair.
May 02 23:33:07 archlinux systemd-homed[429]: Watching /home.
May 02 23:33:07 archlinux systemd-homed[429]: User record gabx.identity is signed only by us, accepting.
May 02 23:33:07 archlinux systemd-homed[429]: Added registered home for user gabx.
May 02 23:33:07 archlinux systemd[1]: Starting Authorization Manager...
May 02 23:33:07 archlinux systemd[1]: Started Home Area Manager.
May 02 23:33:07 archlinux bluetoothd[427]: Bluetooth daemon 5.75
May 02 23:33:07 archlinux systemd[1]: Finished Home Area Activation.
May 02 23:33:07 archlinux bluetoothd[427]: Starting SDP server
May 02 23:33:07 archlinux systemd[1]: Starting Permit User Sessions...
May 02 23:33:07 archlinux systemd[1]: Started Bluetooth service.
May 02 23:33:07 archlinux systemd[1]: Reached target Bluetooth Support.
May 02 23:33:07 archlinux kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May 02 23:33:07 archlinux kernel: Bluetooth: BNEP filters: protocol multicast
May 02 23:33:07 archlinux kernel: Bluetooth: BNEP socket layer initialized
May 02 23:33:07 archlinux bluetoothd[427]: src/plugin.c:init_plugin() System does not support bap plugin
May 02 23:33:07 archlinux bluetoothd[427]: src/plugin.c:init_plugin() System does not support bass plugin
May 02 23:33:07 archlinux bluetoothd[427]: src/plugin.c:init_plugin() System does not support mcp plugin
May 02 23:33:07 archlinux bluetoothd[427]: src/plugin.c:init_plugin() System does not support vcp plugin
May 02 23:33:07 archlinux bluetoothd[427]: profiles/audio/micp.c:micp_init() D-Bus experimental not enabled
May 02 23:33:07 archlinux bluetoothd[427]: src/plugin.c:init_plugin() System does not support micp plugin
May 02 23:33:07 archlinux bluetoothd[427]: src/plugin.c:init_plugin() System does not support ccp plugin
May 02 23:33:07 archlinux bluetoothd[427]: src/plugin.c:init_plugin() System does not support csip plugin
May 02 23:33:07 archlinux bluetoothd[427]: Bluetooth management interface 1.22 initialized
May 02 23:33:07 archlinux systemd[1]: Starting Hostname Service...
May 02 23:33:07 archlinux systemd-logind[430]: New seat seat0.
May 02 23:33:07 archlinux systemd-logind[430]: Watching system buttons on /dev/input/event2 (Power Button)
May 02 23:33:07 archlinux systemd[1]: Finished Permit User Sessions.
May 02 23:33:07 archlinux systemd-logind[430]: Watching system buttons on /dev/input/event0 (Lid Switch)
May 02 23:33:07 archlinux systemd-logind[430]: Watching system buttons on /dev/input/event1 (Power Button)
May 02 23:33:07 archlinux systemd-logind[430]: Watching system buttons on /dev/input/event3 (AT Translated Set 2 keyboard)
May 02 23:33:07 archlinux systemd[1]: Started Getty on tty1.
May 02 23:33:07 archlinux systemd[1]: Reached target Login Prompts.
May 02 23:33:07 archlinux systemd[1]: Started User Login Management.
May 02 23:33:07 archlinux systemd[1]: shadow.service: Deactivated successfully.
May 02 23:33:07 archlinux systemd[1]: Reached target Multi-User System.
May 02 23:33:07 archlinux systemd[1]: Reached target Graphical Interface.
May 02 23:33:07 archlinux polkitd[437]: Started polkitd version 124
May 02 23:33:07 archlinux polkitd[437]: Loading rules from directory /etc/polkit-1/rules.d
May 02 23:33:07 archlinux polkitd[437]: Loading rules from directory /usr/share/polkit-1/rules.d
May 02 23:33:07 archlinux systemd[1]: Started Hostname Service.
May 02 23:33:07 archlinux polkitd[437]: Finished loading, compiling and executing 10 rules
May 02 23:33:07 archlinux systemd[1]: Started Authorization Manager.
May 02 23:33:07 archlinux polkitd[437]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
May 02 23:33:07 archlinux systemd[1]: Started IIO Sensor Proxy service.
May 02 23:33:07 archlinux systemd[1]: Startup finished in 6.781s (firmware) + 2.196s (loader) + 3.612s (kernel) + 3.986s (userspace) = 16.576s.
May 02 23:33:07 archlinux agetty[445]: failed to open credentials directory
May 02 23:33:07 archlinux kernel: input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input27
May 02 23:33:07 archlinux kernel: input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input28
May 02 23:33:07 archlinux kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input29
May 02 23:33:07 archlinux kernel: input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input30
May 02 23:33:07 archlinux kernel: input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input31
May 02 23:33:07 archlinux systemd[1]: Reached target Sound Card.
May 02 23:33:08 archlinux bluetoothd[427]: src/adapter.c:reset_adv_monitors_complete() Failed to reset Adv Monitors: Failed (0x03)
May 02 23:33:08 archlinux bluetoothd[427]: Battery Provider Manager created
May 02 23:33:08 archlinux kernel: Bluetooth: MGMT ver 1.22
May 02 23:33:08 archlinux kernel: NET: Registered PF_ALG protocol family
May 02 23:33:08 archlinux bluetoothd[427]: Failed to clear UUIDs: Failed (0x03)
May 02 23:33:08 archlinux bluetoothd[427]: Failed to add UUID: Failed (0x03)
May 02 23:33:08 archlinux bluetoothd[427]: Failed to add UUID: Failed (0x03)
May 02 23:33:08 archlinux bluetoothd[427]: Failed to add UUID: Failed (0x03)
May 02 23:33:08 archlinux bluetoothd[427]: Failed to set mode: Failed (0x03)
May 02 23:33:08 archlinux bluetoothd[427]: Failed to add UUID: Failed (0x03)
May 02 23:33:08 archlinux bluetoothd[427]: Failed to add UUID: Failed (0x03)
May 02 23:33:08 archlinux bluetoothd[427]: Failed to add UUID: Failed (0x03)
May 02 23:33:12 archlinux systemd-homed[429]: gabx: changing state inactive → activating-for-acquire
May 02 23:33:12 archlinux systemd-homework[496]: None of the supplied plaintext passwords unlock the user record's hashed passwords.
May 02 23:33:12 archlinux systemd-homed[429]: Activation failed: Required key not available
May 02 23:33:12 archlinux systemd-homed[429]: gabx: changing state activating-for-acquire → inactive
May 02 23:33:12 archlinux systemd-homed[429]: Got notification that all sessions of user gabx ended, deactivating automatically.
May 02 23:33:12 archlinux systemd-homed[429]: Home gabx already deactivated, no automatic deactivation needed.
May 02 23:33:12 archlinux systemd[1]: systemd-rfkill.service: Deactivated successfully.
May 02 23:33:17 archlinux systemd-homed[429]: gabx: changing state inactive → activating-for-acquire
May 02 23:33:17 archlinux systemd-homework[499]: Provided password unlocks user record.
May 02 23:33:17 archlinux systemd-homework[499]: Read embedded .identity file.
May 02 23:33:17 archlinux systemd-homework[499]: Provided password unlocks user record.
May 02 23:33:17 archlinux systemd-homework[499]: Reconciling embedded user identity completed (host and embedded version were identical).
May 02 23:33:17 archlinux systemd-homework[499]: Recursive changing of ownership not necessary, skipped.
May 02 23:33:17 archlinux systemd-homework[499]: Synchronized disk.
May 02 23:33:17 archlinux systemd-homework[499]: Moving to final mount point /home/gabx completed.
May 02 23:33:17 archlinux systemd-homework[499]: Everything completed.
May 02 23:33:17 archlinux systemd-homed[429]: Home gabx is signed exclusively by our key, accepting.
May 02 23:33:17 archlinux systemd-homed[429]: gabx: changing state activating-for-acquire → active
May 02 23:33:17 archlinux login[445]: pam_systemd_home(login:auth): Home for user gabx successfully acquired.
May 02 23:33:17 archlinux login[445]: pam_unix(login:session): session opened for user gabx(uid=60509) by gabx(uid=0)
May 02 23:33:17 archlinux systemd-logind[430]: New session 1 of user gabx.
May 02 23:33:17 archlinux systemd[1]: Created slice User Slice of UID 60509.
May 02 23:33:17 archlinux systemd[1]: Starting User Runtime Directory /run/user/60509...
May 02 23:33:18 archlinux systemd[1]: Finished User Runtime Directory /run/user/60509.
May 02 23:33:18 archlinux systemd[1]: Starting User Manager for UID 60509...
May 02 23:33:18 archlinux (systemd)[504]: pam_systemd_home(systemd-user:account): Home for user gabx successfully acquired.
May 02 23:33:18 archlinux (systemd)[504]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[gabx] ruser=[<unknown>] rhost=[<unknown>]
May 02 23:33:18 archlinux (systemd)[504]: pam_unix(systemd-user:session): session opened for user gabx(uid=60509) by gabx(uid=0)
Apr 30 16:25:25 magnolia systemd-resolved[396]: Clock change detected. Flushing caches.
Apr 30 16:25:26 magnolia systemd-journald[207]: Time jumped backwards, rotating.
Apr 30 16:26:04 magnolia systemd-logind[413]: The system will power off now!
Apr 30 16:26:04 magnolia systemd-logind[413]: System is powering down.
Apr 30 16:26:04 magnolia kernel: rfkill: input handler enabled
Apr 30 16:26:04 magnolia systemd[1]: Stopping Session 1 of User gabx...
Apr 30 16:26:04 magnolia systemd[1]: Removed slice Slice /system/modprobe.
Apr 30 16:26:04 magnolia systemd[1]: Stopped target Bluetooth Support.
Apr 30 16:26:04 magnolia systemd[1]: Stopped target Graphical Interface.
Apr 30 16:26:04 magnolia systemd[1]: Stopped target Multi-User System.
Apr 30 16:26:04 magnolia systemd[1]: Stopped target Login Prompts.
Apr 30 16:26:04 magnolia systemd[1]: Stopped target Containers.
Apr 30 16:26:04 magnolia systemd[1]: Stopped target Remote Encrypted Volumes.
Apr 30 16:26:04 magnolia systemd[1]: Stopped target Sound Card.
Apr 30 16:26:04 magnolia systemd[1]: Stopped target Timer Units.
Apr 30 16:26:04 magnolia systemd[1]: archlinux-keyring-wkd-sync.timer: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Stopped Refresh existing PGP keys of archlinux-keyring regularly.
Apr 30 16:26:04 magnolia systemd[1]: man-db.timer: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Stopped Daily man-db regeneration.
Apr 30 16:26:04 magnolia systemd[1]: shadow.timer: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Stopped Daily verification of password and group files.
Apr 30 16:26:04 magnolia systemd[1]: systemd-tmpfiles-clean.timer: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Stopped Daily Cleanup of Temporary Directories.
Apr 30 16:26:04 magnolia systemd[1]: Stopped target System Time Set.
Apr 30 16:26:04 magnolia systemd[1]: lvm2-lvmpolld.socket: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Closed LVM2 poll daemon socket.
Apr 30 16:26:04 magnolia systemd[1]: systemd-rfkill.socket: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Closed Load/Save RF Kill Switch Status /dev/rfkill Watch.
Apr 30 16:26:04 magnolia systemd[1]: Stopping Accounts Service...
Apr 30 16:26:04 magnolia bluetoothd[410]: Terminating
Apr 30 16:26:04 magnolia systemd[1]: Stopping Bluetooth service...
Apr 30 16:26:04 magnolia bluetoothd[410]: Battery Provider Manager destroyed
Apr 30 16:26:04 magnolia bluetoothd[410]: Stopping SDP server
Apr 30 16:26:04 magnolia bluetoothd[410]: Exit
Apr 30 16:26:04 magnolia systemd[1]: Stopping Manage, Install and Generate Color Profiles...
Apr 30 16:26:04 magnolia systemd[1]: Stopping Getty on tty1...
Apr 30 16:26:04 magnolia systemd[1]: Stopping IIO Sensor Proxy service...
Apr 30 16:26:04 magnolia login[429]: pam_systemd_home(login:session): Not deactivating home directory of gabx, as it is still used.
Apr 30 16:26:04 magnolia login[429]: pam_unix(login:session): session closed for user gabx
Apr 30 16:26:04 magnolia polkitd[419]: Unregistered Authentication Agent for unix-session:1 (system bus name :1.18, object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8) (disconnected from bus)
Apr 30 16:26:04 magnolia systemd[1]: Starting Generate shutdown-ramfs...
Apr 30 16:26:04 magnolia mkinitcpio[2052]: ==> Starting build: 'none'
Apr 30 16:26:04 magnolia mkinitcpio[2052]:   -> Running build hook: [sd-shutdown]
Apr 30 16:26:04 magnolia ntpd[1278]: ntpd exiting on signal 15 (Terminated)
Apr 30 16:26:04 magnolia ntpd[1278]: 54.36.61.42 local addr 192.168.1.150 -> <null>
Apr 30 16:26:04 magnolia systemd[1]: Stopping Network Time Service...
Apr 30 16:26:04 magnolia ntpd[1278]: 176.137.36.37 local addr 192.168.1.150 -> <null>
Apr 30 16:26:04 magnolia ntpd[1278]: 2001:41d0:701:1100::285d local addr 2a01:e0a:2c7:1180:7fcc:17:d217:beb5 -> <null>
Apr 30 16:26:04 magnolia ntpd[1278]: 95.81.173.74 local addr 192.168.1.150 -> <null>
Apr 30 16:26:04 magnolia systemd[1]: Stopping Authorization Manager...
Apr 30 16:26:04 magnolia systemd[1]: Stopping RealtimeKit Scheduling Policy Service...
Apr 30 16:26:04 magnolia systemd[1]: Stopping Disk Manager...
Apr 30 16:26:04 magnolia systemd[1]: Stopping Daemon for power management...
Apr 30 16:26:04 magnolia systemd[1]: run-user-60509-doc.mount: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Unmounted /run/user/60509/doc.
Apr 30 16:26:04 magnolia systemd[1]: run-user-60509-gvfs.mount: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Unmounted /run/user/60509/gvfs.
Apr 30 16:26:04 magnolia udisksd[945]: udisks daemon version 2.10.1 exiting
Apr 30 16:26:04 magnolia systemd[1]: bluetooth.service: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Stopped Bluetooth service.
Apr 30 16:26:04 magnolia systemd[1]: iio-sensor-proxy.service: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Stopped IIO Sensor Proxy service.
Apr 30 16:26:04 magnolia systemd[1]: polkit.service: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Stopped Authorization Manager.
Apr 30 16:26:04 magnolia systemd[1]: getty@tty1.service: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Stopped Getty on tty1.
Apr 30 16:26:04 magnolia systemd[1]: rtkit-daemon.service: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Stopped RealtimeKit Scheduling Policy Service.
Apr 30 16:26:04 magnolia systemd[1]: colord.service: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Stopped Manage, Install and Generate Color Profiles.
Apr 30 16:26:04 magnolia systemd[1]: accounts-daemon.service: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Stopped Accounts Service.
Apr 30 16:26:04 magnolia systemd[1]: udisks2.service: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Stopped Disk Manager.
Apr 30 16:26:04 magnolia systemd[1]: ntpd.service: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Stopped Network Time Service.
Apr 30 16:26:04 magnolia mkinitcpio[2052]: ==> Build complete.
Apr 30 16:26:04 magnolia systemd[1]: mkinitcpio-generate-shutdown-ramfs.service: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Finished Generate shutdown-ramfs.
Apr 30 16:26:04 magnolia systemd[1]: session-1.scope: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Stopped Session 1 of User gabx.
Apr 30 16:26:04 magnolia systemd[1]: session-1.scope: Consumed 2min 11.503s CPU time.
Apr 30 16:26:04 magnolia systemd-logind[413]: Session 1 logged out. Waiting for processes to exit.
Apr 30 16:26:04 magnolia systemd[1]: Removed slice Slice /system/getty.
Apr 30 16:26:04 magnolia systemd[1]: Stopped target Host and Network Name Lookups.
Apr 30 16:26:04 magnolia systemd[1]: Stopping User Login Management...
Apr 30 16:26:04 magnolia systemd[1]: Stopping User Manager for UID 60509...
Apr 30 16:26:04 magnolia systemd-logind[413]: Removed session 1.
Apr 30 16:26:04 magnolia systemd[1]: upower.service: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Stopped Daemon for power management.
Apr 30 16:26:04 magnolia systemd[1]: systemd-logind.service: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Stopped User Login Management.
Apr 30 16:26:04 magnolia systemd-homed[412]: Got notification that all sessions of user gabx ended, deactivating automatically.
Apr 30 16:26:04 magnolia systemd-homed[412]: gabx: changing state active → deactivating
Apr 30 16:26:04 magnolia systemd[1]: user@60509.service: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Stopped User Manager for UID 60509.
Apr 30 16:26:04 magnolia systemd[1]: home-gabx.mount: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Unmounted /home/gabx.
Apr 30 16:26:04 magnolia systemd[1]: Stopping Permit User Sessions...
Apr 30 16:26:04 magnolia systemd[1]: Stopping User Runtime Directory /run/user/60509...
Apr 30 16:26:04 magnolia systemd[1]: systemd-user-sessions.service: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Stopped Permit User Sessions.
Apr 30 16:26:04 magnolia systemd[1]: Stopped target Network.
Apr 30 16:26:04 magnolia systemd[1]: Stopped target User and Group Name Lookups.
Apr 30 16:26:04 magnolia systemd[1]: Stopped target Remote File Systems.
Apr 30 16:26:04 magnolia NetworkManager[1236]: <info>  [1714487164.9623] caught SIGTERM, shutting down normally.
Apr 30 16:26:04 magnolia systemd[1]: Stopping Network Manager...
Apr 30 16:26:04 magnolia NetworkManager[1236]: <info>  [1714487164.9644] dhcp4 (enp0s20f0u1u4): canceled DHCP transaction
Apr 30 16:26:04 magnolia NetworkManager[1236]: <info>  [1714487164.9645] dhcp4 (enp0s20f0u1u4): activation: beginning transaction (timeout in 45 seconds)
Apr 30 16:26:04 magnolia NetworkManager[1236]: <info>  [1714487164.9645] dhcp4 (enp0s20f0u1u4): state changed no lease
Apr 30 16:26:04 magnolia NetworkManager[1236]: <info>  [1714487164.9658] manager: NetworkManager state is now CONNECTED_SITE
Apr 30 16:26:04 magnolia systemd[1]: Stopping Home Area Activation...
Apr 30 16:26:04 magnolia NetworkManager[1236]: <info>  [1714487164.9675] device (wlp1s0): state change: disconnected -> unmanaged (reason 'unmanaged', sys-iface-state: 'managed')
Apr 30 16:26:04 magnolia systemd[1]: Stopping Network Configuration...
Apr 30 16:26:04 magnolia systemd-networkd[1243]: enp0s20f0u1u4: DHCP lease lost
Apr 30 16:26:04 magnolia systemd[1]: Stopping WPA supplicant...
Apr 30 16:26:04 magnolia systemd[1]: run-user-60509.mount: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Unmounted /run/user/60509.
Apr 30 16:26:04 magnolia systemd[1]: user-runtime-dir@60509.service: Deactivated successfully.
Apr 30 16:26:04 magnolia systemd[1]: Stopped User Runtime Directory /run/user/60509.
Apr 30 16:26:05 magnolia wpa_supplicant[1024]: p2p-dev-wlp1s0: CTRL-EVENT-DSCP-POLICY clear_all
Apr 30 16:26:05 magnolia systemd-homed[412]: Automatically deactivating home of user gabx.
Apr 30 16:26:05 magnolia wpa_supplicant[1024]: p2p-dev-wlp1s0: CTRL-EVENT-DSCP-POLICY clear_all
Apr 30 16:26:05 magnolia dbus-broker-launch[408]: Activation request for 'org.freedesktop.nm_dispatcher' failed.
Apr 30 16:26:05 magnolia wpa_supplicant[1024]: nl80211: deinit ifname=p2p-dev-wlp1s0 disabled_11b_rates=0
Apr 30 16:26:05 magnolia systemd[1]: Removed slice User Slice of UID 60509.
Apr 30 16:26:05 magnolia systemd[1]: user-60509.slice: Consumed 2min 12.071s CPU time.
Apr 30 16:26:05 magnolia wpa_supplicant[1024]: p2p-dev-wlp1s0: CTRL-EVENT-TERMINATING
Apr 30 16:26:05 magnolia wpa_supplicant[1024]: wlp1s0: CTRL-EVENT-DSCP-POLICY clear_all
Apr 30 16:26:05 magnolia NetworkManager[1236]: <info>  [1714487165.1077] device (wlp1s0): set-hw-addr: reset MAC address to 58:00:E3:D0:F2:A9 (unmanage)
Apr 30 16:26:05 magnolia systemd-networkd[1243]: enp0s20f0u1u4: DHCPv6 lease lost
Apr 30 16:26:05 magnolia systemd-homework[2225]: Syncing completed.
Apr 30 16:26:05 magnolia systemd-homework[2225]: Unmounting completed.
Apr 30 16:26:05 magnolia systemd-homework[2225]: Everything completed.
Apr 30 16:26:05 magnolia systemd-homed[412]: gabx: changing state deactivating → inactive
Apr 30 16:26:05 magnolia systemd-homed[412]: Home gabx is already deactivated.
Apr 30 16:26:05 magnolia systemd[1]: systemd-homed-activate.service: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Stopped Home Area Activation.
Apr 30 16:26:05 magnolia systemd[1]: Stopping Home Area Manager...
Apr 30 16:26:05 magnolia systemd[1]: systemd-homed.service: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Stopped Home Area Manager.
Apr 30 16:26:05 magnolia wpa_supplicant[1024]: wlp1s0: CTRL-EVENT-DSCP-POLICY clear_all
Apr 30 16:26:05 magnolia wpa_supplicant[1024]: nl80211: deinit ifname=wlp1s0 disabled_11b_rates=0
Apr 30 16:26:05 magnolia wpa_supplicant[1024]: wlp1s0: CTRL-EVENT-TERMINATING
Apr 30 16:26:05 magnolia systemd[1]: wpa_supplicant.service: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Stopped WPA supplicant.
Apr 30 16:26:05 magnolia NetworkManager[1236]: <info>  [1714487165.3581] device (p2p-dev-wlp1s0): state change: disconnected -> unmanaged (reason 'removed', sys-iface-state: 'removed')
Apr 30 16:26:05 magnolia dbus-broker-launch[408]: Activation request for 'org.freedesktop.nm_dispatcher' failed.
Apr 30 16:26:05 magnolia NetworkManager[1236]: <info>  [1714487165.3780] exiting (success)
Apr 30 16:26:05 magnolia systemd[1]: systemd-networkd.service: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Stopped Network Configuration.
Apr 30 16:26:05 magnolia systemd[1]: NetworkManager.service: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Stopped Network Manager.
Apr 30 16:26:05 magnolia systemd[1]: Stopped target Basic System.
Apr 30 16:26:05 magnolia systemd[1]: Stopped target Preparation for Network.
Apr 30 16:26:05 magnolia systemd[1]: Stopped target Path Units.
Apr 30 16:26:05 magnolia systemd[1]: Stopped target Slice Units.
Apr 30 16:26:05 magnolia systemd[1]: Removed slice User and Session Slice.
Apr 30 16:26:05 magnolia systemd[1]: user.slice: Consumed 2min 12.071s CPU time.
Apr 30 16:26:05 magnolia systemd[1]: Stopped target Socket Units.
Apr 30 16:26:05 magnolia systemd[1]: dirmngr@etc-pacman.d-gnupg.socket: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Closed GnuPG network certificate management daemon for /etc/pacman.d/gnupg.
Apr 30 16:26:05 magnolia systemd[1]: Removed slice Slice /system/dirmngr.
Apr 30 16:26:05 magnolia systemd[1]: gpg-agent-browser@etc-pacman.d-gnupg.socket: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers) for /etc/pacman.d/gnupg.
Apr 30 16:26:05 magnolia systemd[1]: Removed slice Slice /system/gpg-agent-browser.
Apr 30 16:26:05 magnolia systemd[1]: gpg-agent-extra@etc-pacman.d-gnupg.socket: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Closed GnuPG cryptographic agent and passphrase cache (restricted) for /etc/pacman.d/gnupg.
Apr 30 16:26:05 magnolia systemd[1]: Removed slice Slice /system/gpg-agent-extra.
Apr 30 16:26:05 magnolia systemd[1]: gpg-agent-ssh@etc-pacman.d-gnupg.socket: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Closed GnuPG cryptographic agent (ssh-agent emulation) for /etc/pacman.d/gnupg.
Apr 30 16:26:05 magnolia systemd[1]: Removed slice Slice /system/gpg-agent-ssh.
Apr 30 16:26:05 magnolia systemd[1]: gpg-agent@etc-pacman.d-gnupg.socket: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Closed GnuPG cryptographic agent and passphrase cache for /etc/pacman.d/gnupg.
Apr 30 16:26:05 magnolia systemd[1]: Removed slice Slice /system/gpg-agent.
Apr 30 16:26:05 magnolia systemd[1]: keyboxd@etc-pacman.d-gnupg.socket: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Closed GnuPG public key management service for /etc/pacman.d/gnupg.
Apr 30 16:26:05 magnolia systemd[1]: Removed slice Slice /system/keyboxd.
Apr 30 16:26:05 magnolia systemd[1]: systemd-networkd.socket: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Closed Network Service Netlink Socket.
Apr 30 16:26:05 magnolia dbus-broker[409]: Dispatched 5137 messages @ 8(±8)μs / message.
Apr 30 16:26:05 magnolia systemd[1]: Stopping D-Bus System Message Bus...
Apr 30 16:26:05 magnolia systemd[1]: systemd-network-generator.service: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Stopped Generate network units from Kernel command line.
Apr 30 16:26:05 magnolia systemd[1]: dbus-broker.service: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Stopped D-Bus System Message Bus.
Apr 30 16:26:05 magnolia systemd[1]: dbus.socket: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Closed D-Bus System Message Bus Socket.
Apr 30 16:26:05 magnolia systemd[1]: Stopped target System Initialization.
Apr 30 16:26:05 magnolia systemd[1]: proc-sys-fs-binfmt_misc.automount: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Unset automount Arbitrary Executable File Formats File System Automount Point.
Apr 30 16:26:05 magnolia systemd[1]: Stopped target Local Encrypted Volumes.
Apr 30 16:26:05 magnolia systemd[1]: systemd-ask-password-console.path: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
Apr 30 16:26:05 magnolia systemd[1]: systemd-ask-password-wall.path: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Stopped Forward Password Requests to Wall Directory Watch.
Apr 30 16:26:05 magnolia systemd[1]: Stopped target Local Integrity Protected Volumes.
Apr 30 16:26:05 magnolia systemd[1]: Stopped target Local Verity Protected Volumes.
Apr 30 16:26:05 magnolia systemd[1]: Stopping Load/Save Screen Backlight Brightness of backlight:intel_backlight...
Apr 30 16:26:05 magnolia systemd[1]: Stopping Load/Save Screen Backlight Brightness of leds:platform::kbd_backlight...
Apr 30 16:26:05 magnolia systemd[1]: systemd-boot-random-seed.service: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Stopped Update Boot Loader Random Seed.
Apr 30 16:26:05 magnolia systemd[1]: systemd-boot-update.service: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Stopped Automatic Boot Loader Update.
Apr 30 16:26:05 magnolia systemd[1]: Stopping Load/Save OS Random Seed...
Apr 30 16:26:05 magnolia systemd[1]: Stopping Network Name Resolution...
Apr 30 16:26:05 magnolia systemd[1]: Stopping Record System Boot/Shutdown in UTMP...
Apr 30 16:26:05 magnolia systemd[1]: systemd-backlight@backlight:intel_backlight.service: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Stopped Load/Save Screen Backlight Brightness of backlight:intel_backlight.
Apr 30 16:26:05 magnolia systemd[1]: systemd-random-seed.service: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Stopped Load/Save OS Random Seed.
Apr 30 16:26:05 magnolia systemd[1]: systemd-backlight@leds:platform::kbd_backlight.service: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Stopped Load/Save Screen Backlight Brightness of leds:platform::kbd_backlight.
Apr 30 16:26:05 magnolia systemd[1]: systemd-resolved.service: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Stopped Network Name Resolution.
Apr 30 16:26:05 magnolia systemd[1]: Removed slice Slice /system/systemd-backlight.
Apr 30 16:26:05 magnolia systemd[1]: systemd-sysctl.service: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Stopped Apply Kernel Variables.
Apr 30 16:26:05 magnolia systemd[1]: systemd-coredump.socket: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Closed Process Core Dump Socket.
Apr 30 16:26:05 magnolia systemd[1]: systemd-modules-load.service: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Stopped Load Kernel Modules.
Apr 30 16:26:05 magnolia systemd[1]: systemd-update-utmp.service: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Stopped Record System Boot/Shutdown in UTMP.
Apr 30 16:26:05 magnolia systemd[1]: systemd-tmpfiles-setup.service: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Stopped Create Volatile Files and Directories.
Apr 30 16:26:05 magnolia systemd[1]: Stopped target Local File Systems.
Apr 30 16:26:05 magnolia systemd[1]: Unmounting /boot...
Apr 30 16:26:05 magnolia systemd[1]: Unmounting Temporary Directory /tmp...
Apr 30 16:26:05 magnolia systemd[1]: Stopping Flush Journal to Persistent Storage...
Apr 30 16:26:05 magnolia systemd[1]: boot.mount: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Unmounted /boot.
Apr 30 16:26:05 magnolia systemd[1]: tmp.mount: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Unmounted Temporary Directory /tmp.
Apr 30 16:26:05 magnolia systemd[1]: Stopped target Swaps.
Apr 30 16:26:05 magnolia systemd[1]: systemd-fsck@dev-disk-by\x2duuid-2879\x2d4041.service: Deactivated successfully.
Apr 30 16:26:05 magnolia systemd[1]: Stopped File System Check on /dev/disk/by-uuid/2879-4041.

Offline

Board footer

Powered by FluxBB