You are not logged in.

#1 2026-03-15 10:25:19

shellback
Member
Registered: 2015-01-17
Posts: 39

[SOLVED] Programs recieves SIGPIPE and exits after system goes to idle

Hi!

I have a very frustrating problem. Im using niri, swayidle, swaylock among other things (list of eventually relevant programs further down in this post) and have started to experience some rather irritating behaviour.

I have swayidle configured to run swaylock after 300 s, and to turn of screen after 330 s. This works as it should, and does so on both my pc and laptop, but for some reason I have also started to experience another behaviour on the pc.

If I let the pc go idle and screen turns off, when I later unlock, some of the programs have exited. Not all though, but some. Among those programs that gets exited is code-oss and steam.

The most plausable cause for this is my own habit of medling with things. I have a vague remembrance to at least search for ways to ensure that enogh ram is free, but I can't remember if I even found something, or if I changed something or not. To sum up, there might exist some seting I've done that is the cause for this, but I haven't been able to find any.

I've had strace check code while it is killed, and the info from that was pretty short:

--- SIGPIPE {si_signo=SIGPIPE, si_code=SI_USER, si_pid=50813, si_uid=1000} ---
signalstack({ss_sp=NULL, ss_flags=SS_DISABLE, ss_size=8192}, NULL) = 0
+++ exited with 1 +++

Checking code's parent with strace gives me:

+++ killed by SIGKILL +++

Something is obviusly signaling programs to quit when screen goes idle, or at leas around the same time. I'm terrible at reading or even finding logs, and whould love if someone could have the mercy of helping me come to bottom with what I have done. While reading logs, I can't seem to find any relevant information of anything, as far as I understand them, there is just business as usual.

Will try to list and post anything I can find might be relevant below, please ask If something is missing

List of used programs:

[list=*]
[*]niri[/*]
[*]swayidle[/*]
[*]swaylock[/*]
[*]upower[/*]
[*]ashell[/*]
[*]code-oss[/*]
[*]steam[/*]
[*]nwg-drawer[/*]
[*]systemd[/*]
[*]wpaperd[/*]
[*]greetd[/*]
[*]gtkgreeter[/*]
[/list]

~/.config/systemd/user/swayidle.service:

[Unit]
PartOf=graphical-session.target
After=graphical-session.target niri.service user@1000.service home-shellback.mount
Requisite=graphical-session.target

[Service]
Environment="WAYLAND_DISPLAY=wayland-1"
Environment="XDG_RUNTIME_DIR=/run/user/1000"
Environment="DISPLAY=wayland1"
ExecStart=/usr/bin/swayidle -w timeout 300 '/home/shellback/.config/lockcmd.sh -d' timeout 330 'niri msg action power-off-monitors'
Restart=on-failure

~/.config/lockcmd.sh:

#!/bin/bash

#gtklock -c /home/andreas/.config/gtklock/config.ini --monitor-priority DVI-D-1 $1
# --idle-hide --idle-timeout 10
swaylock -f -e -i "/home/shellback/.local/state/wpaperd/wallpapers/DP-1" -s stretch --font "Inter Display Bold" --font-size 12 --inside-color "2E3440ee" --inside-clear-color "2E3440bb" --inside-caps-lock-color "B48EADcc" --inside-ver-color "4C566Acc" --inside-wrong-color "BF616Acc" --key-hl-color "88C0D0cc" -r --ring-color "00000000" --ring-clear-color "00000000" --ring-caps-lock-color "00000000" --ring-ver-color "00000000" --ring-wrong-color "00000000" --separator-color "00000000" --text-color "D8DEE9" --text-clear-color "D8DEE9" --text-caps-lock-color "D8DEE9" --text-ver-color "D8DEE9" --text-wrong-color "D8DEE9" --indicator-thickness 24 --indicator-radius 72
#timeout 360 'wlopm --off DVI-D-1 --off HDMI-A-1' resume 'wlopm --on DVI-D-1 --on HDMI-A-1'

/usr/bin/niriwm (used by gtkgreeter to launch niri):

#! /bin/sh

export GTK_THEME=Nordic-standard-buttons
export LANG="sv_SE.utf8"
export LANGUAGE="sv_SE.utf8"
export LC_CTYPE="sv_SE.utf8"
export LC_NUMERIC="sv_SE.utf8"
export LC_TIME="sv_SE.utf8"
export LC_COLLATE="sv_SE.utf8"
export LC_MONETARY="sv_SE.utf8"
export LC_MESSAGES="sv_SE.utf8"
export LC_PAPER="sv_SE.utf8"
export LC_NAME="sv_SE.utf8"
export LC_ADDRESS="sv_SE.utf8"
export LC_TELEPHONE="sv_SE.utf8"
export LC_MEASUREMENT="sv_SE.utf8"
export LC_IDENTIFICATION="sv_SE.utf8"

# Make sure there's no already running session.
if systemctl --user -q is-active niri.service; then
  echo 'A niri session is already running.'
  exit 1
fi

# Reset failed state of all user units.
systemctl --user reset-failed

# Import the login manager environment.
systemctl --user import-environment

# DBus activation environment is independent from systemd. While most of
# dbus-activated services are already using `SystemdService` directive, some
# still don't and thus we should set the dbus environment with a separate
# command.
if hash dbus-update-activation-environment 2>/dev/null; then
    dbus-update-activation-environment --all
fi

# Start niri and wait for it to terminate.
systemctl --user --wait start niri.service

# Force stop of graphical-session.target.
systemctl --user start --job-mode=replace-irreversibly niri-shutdown.target

# Unset environment that we've set.
systemctl --user unset-environment WAYLAND_DISPLAY XDG_SESSION_TYPE XDG_CURRENT_DESKTOP NIRI_SOCKET

/etc/systemd/logind.conf:

[Login]
#NAutoVTs=6
#ReserveVT=6
#KillUserProcesses=no
#KillOnlyUsers=
#KillExcludeUsers=root
#InhibitDelayMaxSec=5
#UserStopDelaySec=10
#SleepOperation=suspend-then-hibernate suspend
#HandlePowerKey=poweroff
#HandlePowerKeyLongPress=ignore
#HandleRebootKey=reboot
#HandleRebootKeyLongPress=poweroff
#HandleSuspendKey=suspend
#HandleSuspendKeyLongPress=hibernate
#HandleHibernateKey=hibernate
#HandleHibernateKeyLongPress=ignore
#HandleLidSwitch=suspend
#HandleLidSwitchExternalPower=suspend
#HandleLidSwitchDocked=ignore
#HandleSecureAttentionKey=secure-attention-key
#PowerKeyIgnoreInhibited=no
#SuspendKeyIgnoreInhibited=no
#HibernateKeyIgnoreInhibited=no
#LidSwitchIgnoreInhibited=yes
#RebootKeyIgnoreInhibited=no
#HoldoffTimeoutSec=30s
IdleAction=ignore
IdleActionSec=0
#RuntimeDirectorySize=10%
#RuntimeDirectoryInodesMax=
#RemoveIPC=yes
#InhibitorsMax=8192
#SessionsMax=8192
#StopIdleSessionSec=infinity
#DesignatedMaintenanceTime=
#WallMessages=yes

~/.config/niri/config.kdl:

input {
  keyboard {
    xkb {
       layout "se"
    }

    numlock
  }

  touchpad {
    tap
    dwt
    accel-speed 0.5
    scroll-method "edge"
    disabled-on-external-mouse
  }

  mouse {

  }

  trackpoint {
    accel-speed 1.0
  }

  focus-follows-mouse max-scroll-amount="0%"
}

output "DP-1" {
  mode "3440x1440@164.999"
  variable-refresh-rate
  hot-corners {
    top-right
  }
}

layout {
  gaps 12
  center-focused-column "never"

  preset-column-widths {
    proportion 0.25
    proportion 0.333
    proportion 0.5
    proportion 0.667
    proportion 0.75
    proportion 1.0
  }

  preset-window-heights {
    proportion 0.33333
    proportion 0.5
    proportion 0.66667
    proportion 1.0
  }

  default-column-width { proportion 0.5; }

  focus-ring {
    width 2
    active-color "#8fbcbb"
    inactive-color "#88c0d0"
    active-gradient from="#88c0d0" to="#8fbcbb" angle=45
    inactive-gradient from="#81a1c1" to="#5e81ac" angle=45
  }

  border {
    off
    width 4
    active-color "#ffc87f"
    inactive-color "#505050"
    urgent-color "#9b0000"
  }

  shadow {
    on
    draw-behind-window true
    softness 13
    spread 2
    offset x=4 y=-4
    color "#2e3440"
  }
  struts {

  }
}

recent-windows {
    debounce-ms 750
    open-delay-ms 150

    highlight {
        active-color "#81a1c1ff"
        urgent-color "#ff9999ff"
        padding 40
        corner-radius 24
    }

    previews {
        max-height 480
        max-scale 0.275
    }

    binds {
        Alt+Tab         { next-window scope="all"; }
        Alt+Shift+Tab   { previous-window scope="all"; }
        Mod+Tab       { next-window     scope="workspace"; }
        Mod+Shift+Tab { previous-window scope="workspace"; }
        Ctrl+Alt+Tab       { next-window     scope="all" filter="app-id"; }
        Ctrl+Alt+Shift+Tab { previous-window scope="all" filter="app-id"; }
    }
}

prefer-no-csd

screenshot-path "~/Bilder/Skärmbilder/Skärmbilder från %Y-%m-%d %H-%M-%S.png"

gestures {
  dnd-edge-view-scroll {
    trigger-width 100
    max-speed 3000
  }

  dnd-edge-workspace-switch {
    trigger-height 100
    max-speed 3000
  }
}

animations {
  workspace-switch {
    spring damping-ratio=0.6 stiffness=1000 epsilon=0.0001
  }
  
  horizontal-view-movement {
    spring damping-ratio=0.8 stiffness=200 epsilon=0.0001
  }

  window-open {
    duration-ms 150
    curve "linear"
  }

  window-close {
    duration-ms 150
    curve "linear"
  }

  window-movement {
    spring damping-ratio=0.7 stiffness=800 epsilon=0.0001
  }

  window-resize {
    spring damping-ratio=0.7 stiffness=800 epsilon=0.0001
  }

  overview-open-close {
    spring damping-ratio=0.7 stiffness=800 epsilon=0.0001
  }
}

hotkey-overlay {
    skip-at-startup
}

overview {
    zoom 0.25
    backdrop-color "#4c566a"
    workspace-shadow {
        on
        softness 13
        spread 2
        offset x=4 y=-4
        color "#2e3440"
    }
}

window-rule {
  match app-id=r#"^org\.wezfurlong\.wezterm$"#
  default-column-width {}
}

window-rule {
  match app-id=r#"firefox$"# title="^Picture-in-Picture$"
  open-floating true
}

window-rule {
  match app-id="thunar" title="^Byt namn.*$"
  match app-id="thunar" title="Förlopp för filåtgärder"
  match app-id="firefox" title="Tillägg: (Bitwarden Lösenordshanterare) - Bitwarden — Mozilla Firefox"
  open-floating true
}

window-rule {
  geometry-corner-radius 12
  clip-to-geometry true
}
window-rule {
  match app-id="gay.vaskel.soteria"
  match app-id="gcr-prompter"
  geometry-corner-radius 30
  clip-to-geometry true
}

spawn-at-startup "xwayland-satellite"

environment {
  ELECTRON_OZONE_PLATFORM_HINT "auto"
}

binds {
  Mod+Shift+M { show-hotkey-overlay; }
  Mod+Return hotkey-overlay-title="Öppna Terminal" { spawn "alacritty"; }
  Mod+M hotkey-overlay-title="Starta ett program" { spawn "nwg-drawer"; }
  Super+L allow-when-locked=true hotkey-overlay-title="Lås skärmen" { spawn "~/.config/lockcmd.sh"; }
  Super+Ctrl+Shift+O { spawn "/home/shellback/.config/niri/toggle_screen.sh"; }
  Mod+O repeat=false { toggle-overview; }
  Mod+Shift+Q { close-window; }
  Mod+Left { focus-column-left; }
  Mod+Down { focus-window-down; }
  Mod+Up  { focus-window-up; }
  Mod+Right { focus-column-right; }
  Mod+J   { focus-column-left; }
  Mod+K   { focus-window-down; }
  Mod+I   { focus-window-up; }
  Mod+L   { focus-column-right; }
  Mod+Ctrl+Left { move-column-left; }
  Mod+Ctrl+Down { move-window-down; }
  Mod+Ctrl+Up  { move-window-up; }
  Mod+Ctrl+Right { move-column-right; }
  Mod+Ctrl+H   { move-column-left; }
  Mod+Ctrl+J   { move-window-down; }
  Mod+Ctrl+K   { move-window-up; }
  Mod+Ctrl+L   { move-column-right; }
  Mod+Home { focus-column-first; }
  Mod+End { focus-column-last; }
  Mod+Ctrl+Home { move-column-to-first; }
  Mod+Ctrl+End { move-column-to-last; }
  Mod+Shift+Left { focus-monitor-left; }
  Mod+Shift+Down { focus-monitor-down; }
  Mod+Shift+Up  { focus-monitor-up; }
  Mod+Shift+Right { focus-monitor-right; }
  Mod+Shift+J   { focus-monitor-left; }
  Mod+Shift+K   { focus-monitor-down; }
  Mod+Shift+I   { focus-monitor-up; }
  Mod+Shift+L   { focus-monitor-right; }
  Mod+Shift+Ctrl+Left { move-column-to-monitor-left; }
  Mod+Shift+Ctrl+Down { move-column-to-monitor-down; }
  Mod+Shift+Ctrl+Up  { move-column-to-monitor-up; }
  Mod+Shift+Ctrl+Right { move-column-to-monitor-right; }
  Mod+Shift+Ctrl+H   { move-column-to-monitor-left; }
  Mod+Shift+Ctrl+J   { move-column-to-monitor-down; }
  Mod+Shift+Ctrl+K   { move-column-to-monitor-up; }
  Mod+Shift+Ctrl+L   { move-column-to-monitor-right; }
  Mod+Page_Down   { focus-workspace-down; }
  Mod+Page_Up    { focus-workspace-up; }
  Mod+U       { focus-workspace-down; }
  Mod+Y       { focus-workspace-up; }
  Mod+Ctrl+Page_Down { move-column-to-workspace-down; }
  Mod+Ctrl+Page_Up  { move-column-to-workspace-up; }
  Mod+Ctrl+U     { move-column-to-workspace-down; }
  Mod+Ctrl+I     { move-column-to-workspace-up; }
  Mod+Shift+Page_Down { move-workspace-down; }
  Mod+Shift+Page_Up  { move-workspace-up; }
  Mod+Shift+U     { move-workspace-down; }
  Mod+Shift+Y     { move-workspace-up; }
  Mod+WheelScrollDown   cooldown-ms=150 { focus-workspace-down; }
  Mod+WheelScrollUp    cooldown-ms=150 { focus-workspace-up; }
  Mod+Ctrl+WheelScrollDown cooldown-ms=150 { move-column-to-workspace-down; }
  Mod+Ctrl+WheelScrollUp  cooldown-ms=150 { move-column-to-workspace-up; }
  Mod+WheelScrollRight   { focus-column-right; }
  Mod+WheelScrollLeft    { focus-column-left; }
  Mod+Ctrl+WheelScrollRight { move-column-right; }
  Mod+Ctrl+WheelScrollLeft { move-column-left; }
  Mod+Shift+WheelScrollDown   { focus-column-right; }
  Mod+Shift+WheelScrollUp    { focus-column-left; }
  Mod+Ctrl+Shift+WheelScrollDown { move-column-right; }
  Mod+Ctrl+Shift+WheelScrollUp  { move-column-left; }
  Mod+1 { focus-workspace 1; }
  Mod+2 { focus-workspace 2; }
  Mod+3 { focus-workspace 3; }
  Mod+4 { focus-workspace 4; }
  Mod+5 { focus-workspace 5; }
  Mod+6 { focus-workspace 6; }
  Mod+7 { focus-workspace 7; }
  Mod+8 { focus-workspace 8; }
  Mod+9 { focus-workspace 9; }
  Mod+Ctrl+1 { move-column-to-workspace 1; }
  Mod+Ctrl+2 { move-column-to-workspace 2; }
  Mod+Ctrl+3 { move-column-to-workspace 3; }
  Mod+Ctrl+4 { move-column-to-workspace 4; }
  Mod+Ctrl+5 { move-column-to-workspace 5; }
  Mod+Ctrl+6 { move-column-to-workspace 6; }
  Mod+Ctrl+7 { move-column-to-workspace 7; }
  Mod+Ctrl+8 { move-column-to-workspace 8; }
  Mod+Ctrl+9 { move-column-to-workspace 9; }
  Mod+Shift+Comma { consume-or-expel-window-left; }
  Mod+Shift+Period { consume-or-expel-window-right; }
  Mod+Comma { consume-window-into-column; }
  Mod+Period { expel-window-from-column; }
  Mod+R { switch-preset-column-width; }
  Mod+Shift+R { switch-preset-window-height; }
  Mod+Ctrl+R { reset-window-height; }
  Mod+F { maximize-column; }
  Mod+Shift+F { fullscreen-window; }
  Mod+Ctrl+F { expand-column-to-available-width; }
  Mod+C { center-column; }
  Mod+Ctrl+C { center-visible-columns; }
  Mod+Shift+H { set-column-width "-10%"; }
  Mod+H { set-column-width "+10%"; }
  Mod+Shift+Minus { set-window-height "-10%"; }
  Mod+Shift+Equal { set-window-height "+10%"; }
  Mod+V    { toggle-window-floating; }
  Mod+Shift+V { switch-focus-between-floating-and-tiling; }
  Mod+W { toggle-column-tabbed-display; }
  Print { screenshot; }
  Ctrl+Print { screenshot-screen; }
  Alt+Print { screenshot-window; }
  Mod+Escape allow-inhibiting=false { toggle-keyboard-shortcuts-inhibit; }
  Mod+Shift+E { quit; }
  Ctrl+Alt+Delete { quit; }
  Mod+Shift+P { power-off-monitors; }
}
spawn-at-startup "gnome-keyring-daemon" "--start" "--components=secrets"
spawn-at-startup "dbus-update-activation-environment" "--all"
spawn-at-startup "~/.config/setWaylandTheme.sh"

Last edited by shellback (2026-03-15 19:05:27)

Offline

#2 2026-03-15 11:41:06

shellback
Member
Registered: 2015-01-17
Posts: 39

Re: [SOLVED] Programs recieves SIGPIPE and exits after system goes to idle

Update:

Apparently, it has nothing to do with the locking... code get closed if I dont use it for a while, guessing around 10-15 min...

What in the light have I configured...

Offline

#3 2026-03-15 13:44:23

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 74,314

Re: [SOLVED] Programs recieves SIGPIPE and exits after system goes to idle

Please use [code][/code] tags, not "quote" tags. Edit your post in this regard.

+++ killed by SIGKILL +++
# Start niri and wait for it to terminate.
systemctl --user --wait start niri.service

# Force stop of graphical-session.target.
systemctl --user start --job-mode=replace-irreversibly niri-shutdown.target

# Unset environment that we've set.
systemctl --user unset-environment WAYLAND_DISPLAY XDG_SESSION_TYPE XDG_CURRENT_DESKTOP NIRI_SOCKET

What happens if you skip the niri-shutdown.target and unset-environment and instead

date >> /tmp/niri.terminated

Offline

#4 2026-03-15 14:19:06

shellback
Member
Registered: 2015-01-17
Posts: 39

Re: [SOLVED] Programs recieves SIGPIPE and exits after system goes to idle

sry for the missuse of tags ;P

seth wrote:
# Start niri and wait for it to terminate.
systemctl --user --wait start niri.service

# Force stop of graphical-session.target.
systemctl --user start --job-mode=replace-irreversibly niri-shutdown.target

# Unset environment that we've set.
systemctl --user unset-environment WAYLAND_DISPLAY XDG_SESSION_TYPE XDG_CURRENT_DESKTOP NIRI_SOCKET

That, and the mayor part of that script, have I copied from the niri.desktop file that niri ships with. I just whanted a place to put in some environment values of my own (those in the beginning). I guess though a more elegant solution would be to just write those and then call the desktop file, but...

nostalgic aside... Not quite sure that I interpret u correct in what u suggests, or maybe more the reason for it... should I comment out those 2 last systemctl command and just insert your one-liner?

Offline

#5 2026-03-15 14:22:48

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 74,314

Re: [SOLVED] Programs recieves SIGPIPE and exits after system goes to idle

The plan is to see whether niri terminates and that causes the kills (from systemd)

…
# Start niri and wait for it to terminate.
systemctl --user --wait start niri.service

date >> /tmp/niri.terminated # this will append the current date when niri.service terminates for whatever reason

# Force stop of graphical-session.target.
#systemctl --user start --job-mode=replace-irreversibly niri-shutdown.target

# Unset environment that we've set.
#systemctl --user unset-environment WAYLAND_DISPLAY XDG_SESSION_TYPE XDG_CURRENT_DESKTOP NIRI_SOCKET

Also check the system journal for the chain of events, you can access older journals

sudo journalctl -b -1

for the previous boot.

Offline

#6 2026-03-15 15:23:35

shellback
Member
Registered: 2015-01-17
Posts: 39

Re: [SOLVED] Programs recieves SIGPIPE and exits after system goes to idle

seth wrote:

The plan is to see whether niri terminates and that causes the kills (from systemd)

ah, cleaver!

Have changed the file, and about to reboot...

in the meantime, below is the journal from this boot. Can't say exactl when it hapens, but code has quit a couple of times at least since last reboot, and steam 1 time. I have tried to view them myself, but I haven't spoted anything in them. I'm terrible though at interpreting logs

mar 15 14:45:54 archlinux kernel: Linux version 6.19.6-arch1-1 (linux@archlinux) (gcc (GCC) 15.2.1 20260209, GNU ld (GNU Binutils) 2.46) #1 SMP PREEMPT_DYNAMIC Wed, 04 Mar 2026 18:25:08 +0000
mar 15 14:45:54 archlinux kernel: Command line: root=/dev/mapper/root rootfstype=btrfs rootflags=subvol=/@ rw modeprobe.blacklist=pcspkr zswap.enabled=0 resume=/dev/mapper/swap hibernate.compressor=lz4 loglevel=3
mar 15 14:45:54 archlinux kernel: BIOS-provided physical RAM map:
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000009dfffff] usable
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x0000000009e00000-0x0000000009ffffff] reserved
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x000000000a200000-0x000000000a20bfff] ACPI NVS
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x000000000a20c000-0x000000000affffff] usable
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x000000000b000000-0x000000000b01ffff] reserved
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x000000000b020000-0x00000000d9897fff] usable
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x00000000d9898000-0x00000000dad89fff] reserved
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x00000000dad8a000-0x00000000dafa6fff] ACPI data
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x00000000dafa7000-0x00000000db493fff] ACPI NVS
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x00000000db494000-0x00000000dc51cfff] reserved
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x00000000dc51d000-0x00000000deffffff] usable
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x00000000df000000-0x00000000dfffffff] reserved
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x00000000fd000000-0x00000000fd0fffff] reserved
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x00000000fd500000-0x00000000fd5fffff] reserved
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000feefffff] reserved
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
mar 15 14:45:54 archlinux kernel: BIOS-e820: [mem 0x0000000100000000-0x000000041f37ffff] usable
mar 15 14:45:54 archlinux kernel: NX (Execute Disable) protection: active
mar 15 14:45:54 archlinux kernel: APIC: Static calls initialized
mar 15 14:45:54 archlinux kernel: efi: EFI v2.6 by American Megatrends
mar 15 14:45:54 archlinux kernel: efi: TPMFinalLog=0xdb447000 ACPI 2.0=0xdaea1000 ACPI=0xdaea1000 SMBIOS=0xdc3de000 SMBIOS 3.0=0xdc3dd000 ESRT=0xd7909e18 MEMATTR=0xd7032018 RNG=0xdafa6f18 INITRD=0xcec1cf18 TPMEventLog=0xdaf9f018 
mar 15 14:45:54 archlinux kernel: random: crng init done
mar 15 14:45:54 archlinux kernel: efi: memattr: Unexpected EFI Memory Attributes table version -685376616
mar 15 14:45:54 archlinux kernel: efi: Remove mem34: MMIO range=[0xf8000000-0xfbffffff] (64MB) from e820 map
mar 15 14:45:54 archlinux kernel: e820: remove [mem 0xf8000000-0xfbffffff] reserved
mar 15 14:45:54 archlinux kernel: efi: Remove mem35: MMIO range=[0xfd000000-0xfd0fffff] (1MB) from e820 map
mar 15 14:45:54 archlinux kernel: e820: remove [mem 0xfd000000-0xfd0fffff] reserved
mar 15 14:45:54 archlinux kernel: efi: Remove mem36: MMIO range=[0xfd500000-0xfd5fffff] (1MB) from e820 map
mar 15 14:45:54 archlinux kernel: e820: remove [mem 0xfd500000-0xfd5fffff] reserved
mar 15 14:45:54 archlinux kernel: efi: Not removing mem37: MMIO range=[0xfea00000-0xfea0ffff] (64KB) from e820 map
mar 15 14:45:54 archlinux kernel: efi: Remove mem38: MMIO range=[0xfeb80000-0xfec01fff] (0MB) from e820 map
mar 15 14:45:54 archlinux kernel: e820: remove [mem 0xfeb80000-0xfec01fff] reserved
mar 15 14:45:54 archlinux kernel: efi: Not removing mem39: MMIO range=[0xfec10000-0xfec10fff] (4KB) from e820 map
mar 15 14:45:54 archlinux kernel: efi: Not removing mem40: MMIO range=[0xfec30000-0xfec30fff] (4KB) from e820 map
mar 15 14:45:54 archlinux kernel: efi: Not removing mem41: MMIO range=[0xfed00000-0xfed00fff] (4KB) from e820 map
mar 15 14:45:54 archlinux kernel: efi: Not removing mem42: MMIO range=[0xfed40000-0xfed44fff] (20KB) from e820 map
mar 15 14:45:54 archlinux kernel: efi: Not removing mem43: MMIO range=[0xfed80000-0xfed8ffff] (64KB) from e820 map
mar 15 14:45:54 archlinux kernel: efi: Not removing mem44: MMIO range=[0xfedc2000-0xfedcffff] (56KB) from e820 map
mar 15 14:45:54 archlinux kernel: efi: Not removing mem45: MMIO range=[0xfedd4000-0xfedd5fff] (8KB) from e820 map
mar 15 14:45:54 archlinux kernel: efi: Remove mem46: MMIO range=[0xfee00000-0xfeefffff] (1MB) from e820 map
mar 15 14:45:54 archlinux kernel: e820: remove [mem 0xfee00000-0xfeefffff] reserved
mar 15 14:45:54 archlinux kernel: efi: Remove mem47: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
mar 15 14:45:54 archlinux kernel: e820: remove [mem 0xff000000-0xffffffff] reserved
mar 15 14:45:54 archlinux kernel: SMBIOS 3.2.0 present.
mar 15 14:45:54 archlinux kernel: DMI: System manufacturer System Product Name/ROG STRIX B450-F GAMING, BIOS 2605 08/06/2019
mar 15 14:45:54 archlinux kernel: DMI: Memory slots populated: 2/4
mar 15 14:45:54 archlinux kernel: tsc: Fast TSC calibration failed
mar 15 14:45:54 archlinux kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
mar 15 14:45:54 archlinux kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
mar 15 14:45:54 archlinux kernel: last_pfn = 0x41f380 max_arch_pfn = 0x400000000
mar 15 14:45:54 archlinux kernel: total RAM covered: 3583M
mar 15 14:45:54 archlinux kernel: Found optimal setting for mtrr clean up
mar 15 14:45:54 archlinux kernel:  gran_size: 64K         chunk_size: 128M         num_reg: 4          lose cover RAM: 0G
mar 15 14:45:54 archlinux kernel: MTRR map: 7 entries (3 fixed + 4 variable; max 20), built from 9 variable MTRRs
mar 15 14:45:54 archlinux kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
mar 15 14:45:54 archlinux kernel: e820: update [mem 0xdbcf0000-0xdbcfffff] usable ==> reserved
mar 15 14:45:54 archlinux kernel: e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved
mar 15 14:45:54 archlinux kernel: last_pfn = 0xdf000 max_arch_pfn = 0x400000000
mar 15 14:45:54 archlinux kernel: esrt: Reserving ESRT space from 0x00000000d7909e18 to 0x00000000d7909e50.
mar 15 14:45:54 archlinux kernel: e820: update [mem 0xd7909000-0xd7909fff] usable ==> reserved
mar 15 14:45:54 archlinux kernel: Using GB pages for direct mapping
mar 15 14:45:54 archlinux kernel: Secure boot enabled
mar 15 14:45:54 archlinux kernel: RAMDISK: [mem 0xc738c000-0xca7c2fff]
mar 15 14:45:54 archlinux kernel: ACPI: Early table checksum verification disabled
mar 15 14:45:54 archlinux kernel: ACPI: RSDP 0x00000000DAEA1000 000024 (v02 ALASKA)
mar 15 14:45:54 archlinux kernel: ACPI: XSDT 0x00000000DAEA10A8 0000CC (v01 ALASKA A M I    01072009 AMI  00010013)
mar 15 14:45:54 archlinux kernel: ACPI: FACP 0x00000000DAEB03E0 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
mar 15 14:45:54 archlinux kernel: ACPI: DSDT 0x00000000DAEA1210 00F1C9 (v02 ALASKA A M I    01072009 INTL 20120913)
mar 15 14:45:54 archlinux kernel: ACPI: FACS 0x00000000DB47CD80 000040
mar 15 14:45:54 archlinux kernel: ACPI: APIC 0x00000000DAEB04F8 00015E (v03 ALASKA A M I    01072009 AMI  00010013)
mar 15 14:45:54 archlinux kernel: ACPI: FPDT 0x00000000DAEB0658 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
mar 15 14:45:54 archlinux kernel: ACPI: FIDT 0x00000000DAEB06A0 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
mar 15 14:45:54 archlinux kernel: ACPI: SSDT 0x00000000DAEB0740 0000C8 (v02 ALASKA CPUSSDT  01072009 AMI  01072009)
mar 15 14:45:54 archlinux kernel: ACPI: SSDT 0x00000000DAEB0808 008C98 (v02 AMD    AMD ALIB 00000002 MSFT 04000000)
mar 15 14:45:54 archlinux kernel: ACPI: SSDT 0x00000000DAEB94A0 003301 (v01 AMD    AMD AOD  00000001 INTL 20120913)
mar 15 14:45:54 archlinux kernel: ACPI: MCFG 0x00000000DAEBC7A8 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
mar 15 14:45:54 archlinux kernel: ACPI: SSDT 0x00000000DAEC2878 0010AF (v01 AMD    AmdTable 00000001 INTL 20120913)
mar 15 14:45:54 archlinux kernel: ACPI: HPET 0x00000000DAEBC840 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
mar 15 14:45:54 archlinux kernel: ACPI: UEFI 0x00000000DAEBC878 000042 (v01 ALASKA A M I    00000002      01000013)
mar 15 14:45:54 archlinux kernel: ACPI: BGRT 0x00000000DAEBC8C0 000038 (v01 ALASKA A M I    01072009 AMI  00010013)
mar 15 14:45:54 archlinux kernel: ACPI: WPBT 0x00000000DAEBC8F8 00003C (v01 ALASKA A M I    00000001 ASUS 00000001)
mar 15 14:45:54 archlinux kernel: ACPI: TPM2 0x00000000DAEBC938 000034 (v03 ALASKA A M I    00000001 AMI  00000000)
mar 15 14:45:54 archlinux kernel: ACPI: IVRS 0x00000000DAEBC970 0000D0 (v02 AMD    AMD IVRS 00000001 AMD  00000000)
mar 15 14:45:54 archlinux kernel: ACPI: PCCT 0x00000000DAEBCA40 00006E (v01 AMD    AMD PCCT 00000001 AMD  00000000)
mar 15 14:45:54 archlinux kernel: ACPI: SSDT 0x00000000DAEBCAB0 002F29 (v01 AMD    AMD CPU  00000001 AMD  00000001)
mar 15 14:45:54 archlinux kernel: ACPI: CRAT 0x00000000DAEBF9E0 001058 (v01 AMD    AMD CRAT 00000001 AMD  00000001)
mar 15 14:45:54 archlinux kernel: ACPI: CDIT 0x00000000DAEC0A38 000029 (v01 AMD    AMD CDIT 00000001 AMD  00000001)
mar 15 14:45:54 archlinux kernel: ACPI: SSDT 0x00000000DAEC0A68 001D4A (v01 AMD    AmdTable 00000001 INTL 20120913)
mar 15 14:45:54 archlinux kernel: ACPI: SSDT 0x00000000DAEC27B8 0000BF (v01 AMD    AMD PT   00001000 INTL 20120913)
mar 15 14:45:54 archlinux kernel: ACPI: Reserving FACP table memory at [mem 0xdaeb03e0-0xdaeb04f3]
mar 15 14:45:54 archlinux kernel: ACPI: Reserving DSDT table memory at [mem 0xdaea1210-0xdaeb03d8]
mar 15 14:45:54 archlinux kernel: ACPI: Reserving FACS table memory at [mem 0xdb47cd80-0xdb47cdbf]
mar 15 14:45:54 archlinux kernel: ACPI: Reserving APIC table memory at [mem 0xdaeb04f8-0xdaeb0655]
mar 15 14:45:54 archlinux kernel: ACPI: Reserving FPDT table memory at [mem 0xdaeb0658-0xdaeb069b]
mar 15 14:45:54 archlinux kernel: ACPI: Reserving FIDT table memory at [mem 0xdaeb06a0-0xdaeb073b]
mar 15 14:45:54 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0xdaeb0740-0xdaeb0807]
mar 15 14:45:54 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0xdaeb0808-0xdaeb949f]
mar 15 14:45:54 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0xdaeb94a0-0xdaebc7a0]
mar 15 14:45:54 archlinux kernel: ACPI: Reserving MCFG table memory at [mem 0xdaebc7a8-0xdaebc7e3]
mar 15 14:45:54 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0xdaec2878-0xdaec3926]
mar 15 14:45:54 archlinux kernel: ACPI: Reserving HPET table memory at [mem 0xdaebc840-0xdaebc877]
mar 15 14:45:54 archlinux kernel: ACPI: Reserving UEFI table memory at [mem 0xdaebc878-0xdaebc8b9]
mar 15 14:45:54 archlinux kernel: ACPI: Reserving BGRT table memory at [mem 0xdaebc8c0-0xdaebc8f7]
mar 15 14:45:54 archlinux kernel: ACPI: Reserving WPBT table memory at [mem 0xdaebc8f8-0xdaebc933]
mar 15 14:45:54 archlinux kernel: ACPI: Reserving TPM2 table memory at [mem 0xdaebc938-0xdaebc96b]
mar 15 14:45:54 archlinux kernel: ACPI: Reserving IVRS table memory at [mem 0xdaebc970-0xdaebca3f]
mar 15 14:45:54 archlinux kernel: ACPI: Reserving PCCT table memory at [mem 0xdaebca40-0xdaebcaad]
mar 15 14:45:54 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0xdaebcab0-0xdaebf9d8]
mar 15 14:45:54 archlinux kernel: ACPI: Reserving CRAT table memory at [mem 0xdaebf9e0-0xdaec0a37]
mar 15 14:45:54 archlinux kernel: ACPI: Reserving CDIT table memory at [mem 0xdaec0a38-0xdaec0a60]
mar 15 14:45:54 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0xdaec0a68-0xdaec27b1]
mar 15 14:45:54 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0xdaec27b8-0xdaec2876]
mar 15 14:45:54 archlinux kernel: No NUMA configuration found
mar 15 14:45:54 archlinux kernel: Faking a node at [mem 0x0000000000000000-0x000000041f37ffff]
mar 15 14:45:54 archlinux kernel: NODE_DATA(0) allocated [mem 0x41f355280-0x41f37ffff]
mar 15 14:45:54 archlinux kernel: Zone ranges:
mar 15 14:45:54 archlinux kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
mar 15 14:45:54 archlinux kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
mar 15 14:45:54 archlinux kernel:   Normal   [mem 0x0000000100000000-0x000000041f37ffff]
mar 15 14:45:54 archlinux kernel:   Device   empty
mar 15 14:45:54 archlinux kernel: Movable zone start for each node
mar 15 14:45:54 archlinux kernel: Early memory node ranges
mar 15 14:45:54 archlinux kernel:   node   0: [mem 0x0000000000001000-0x000000000009ffff]
mar 15 14:45:54 archlinux kernel:   node   0: [mem 0x0000000000100000-0x0000000009dfffff]
mar 15 14:45:54 archlinux kernel:   node   0: [mem 0x000000000a000000-0x000000000a1fffff]
mar 15 14:45:54 archlinux kernel:   node   0: [mem 0x000000000a20c000-0x000000000affffff]
mar 15 14:45:54 archlinux kernel:   node   0: [mem 0x000000000b020000-0x00000000d9897fff]
mar 15 14:45:54 archlinux kernel:   node   0: [mem 0x00000000dc51d000-0x00000000deffffff]
mar 15 14:45:54 archlinux kernel:   node   0: [mem 0x0000000100000000-0x000000041f37ffff]
mar 15 14:45:54 archlinux kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000041f37ffff]
mar 15 14:45:54 archlinux kernel: On node 0, zone DMA: 1 pages in unavailable ranges
mar 15 14:45:54 archlinux kernel: On node 0, zone DMA: 96 pages in unavailable ranges
mar 15 14:45:54 archlinux kernel: On node 0, zone DMA32: 512 pages in unavailable ranges
mar 15 14:45:54 archlinux kernel: On node 0, zone DMA32: 12 pages in unavailable ranges
mar 15 14:45:54 archlinux kernel: On node 0, zone DMA32: 32 pages in unavailable ranges
mar 15 14:45:54 archlinux kernel: On node 0, zone DMA32: 11397 pages in unavailable ranges
mar 15 14:45:54 archlinux kernel: On node 0, zone Normal: 4096 pages in unavailable ranges
mar 15 14:45:54 archlinux kernel: On node 0, zone Normal: 3200 pages in unavailable ranges
mar 15 14:45:54 archlinux kernel: ACPI: PM-Timer IO Port: 0x808
mar 15 14:45:54 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
mar 15 14:45:54 archlinux kernel: IOAPIC[0]: apic_id 13, version 33, address 0xfec00000, GSI 0-23
mar 15 14:45:54 archlinux kernel: IOAPIC[1]: apic_id 14, version 33, address 0xfec01000, GSI 24-55
mar 15 14:45:54 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
mar 15 14:45:54 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
mar 15 14:45:54 archlinux kernel: ACPI: Using ACPI (MADT) for SMP configuration information
mar 15 14:45:54 archlinux kernel: ACPI: HPET id: 0x10228201 base: 0xfed00000
mar 15 14:45:54 archlinux kernel: e820: update [mem 0xd5531000-0xd56e1fff] usable ==> reserved
mar 15 14:45:54 archlinux kernel: CPU topo: Max. logical packages:   1
mar 15 14:45:54 archlinux kernel: CPU topo: Max. logical dies:       1
mar 15 14:45:54 archlinux kernel: CPU topo: Max. dies per package:   1
mar 15 14:45:54 archlinux kernel: CPU topo: Max. threads per core:   2
mar 15 14:45:54 archlinux kernel: CPU topo: Num. cores per package:     6
mar 15 14:45:54 archlinux kernel: CPU topo: Num. threads per package:  12
mar 15 14:45:54 archlinux kernel: CPU topo: Allowing 12 present CPUs plus 0 hotplug CPUs
mar 15 14:45:54 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
mar 15 14:45:54 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
mar 15 14:45:54 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x09e00000-0x09ffffff]
mar 15 14:45:54 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20bfff]
mar 15 14:45:54 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x0b000000-0x0b01ffff]
mar 15 14:45:54 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xd5531000-0xd56e1fff]
mar 15 14:45:54 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xd7909000-0xd7909fff]
mar 15 14:45:54 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xd9898000-0xdc51cfff]
mar 15 14:45:54 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xdf000000-0xffffffff]
mar 15 14:45:54 archlinux kernel: [mem 0xe0000000-0xfe9fffff] available for PCI devices
mar 15 14:45:54 archlinux kernel: Booting paravirtualized kernel on bare hardware
mar 15 14:45:54 archlinux kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
mar 15 14:45:54 archlinux kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:12 nr_cpu_ids:12 nr_node_ids:1
mar 15 14:45:54 archlinux kernel: percpu: Embedded 63 pages/cpu s221184 r8192 d28672 u262144
mar 15 14:45:54 archlinux kernel: pcpu-alloc: s221184 r8192 d28672 u262144 alloc=1*2097152
mar 15 14:45:54 archlinux kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 -- -- -- -- 
mar 15 14:45:54 archlinux kernel: Kernel command line: root=/dev/mapper/root rootfstype=btrfs rootflags=subvol=/@ rw modeprobe.blacklist=pcspkr zswap.enabled=0 resume=/dev/mapper/swap hibernate.compressor=lz4 loglevel=3
mar 15 14:45:54 archlinux kernel: printk: log buffer data + meta data: 131072 + 458752 = 589824 bytes
mar 15 14:45:54 archlinux kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
mar 15 14:45:54 archlinux kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
mar 15 14:45:54 archlinux kernel: software IO TLB: area num 16.
mar 15 14:45:54 archlinux kernel: Fallback order for Node 0: 0 
mar 15 14:45:54 archlinux kernel: Built 1 zonelists, mobility grouping on.  Total pages: 4174958
mar 15 14:45:54 archlinux kernel: Policy zone: Normal
mar 15 14:45:54 archlinux kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
mar 15 14:45:54 archlinux kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=12, Nodes=1
mar 15 14:45:54 archlinux kernel: ftrace: allocating 57655 entries in 228 pages
mar 15 14:45:54 archlinux kernel: ftrace: allocated 228 pages with 4 groups
mar 15 14:45:54 archlinux kernel: Dynamic Preempt: full
mar 15 14:45:54 archlinux kernel: rcu: Preemptible hierarchical RCU implementation.
mar 15 14:45:54 archlinux kernel: rcu:         RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=12.
mar 15 14:45:54 archlinux kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
mar 15 14:45:54 archlinux kernel:         Trampoline variant of Tasks RCU enabled.
mar 15 14:45:54 archlinux kernel:         Rude variant of Tasks RCU enabled.
mar 15 14:45:54 archlinux kernel:         Tracing variant of Tasks RCU enabled.
mar 15 14:45:54 archlinux kernel: rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
mar 15 14:45:54 archlinux kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=12
mar 15 14:45:54 archlinux kernel: RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=12.
mar 15 14:45:54 archlinux kernel: RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=12.
mar 15 14:45:54 archlinux kernel: RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=12.
mar 15 14:45:54 archlinux kernel: NR_IRQS: 524544, nr_irqs: 1064, preallocated irqs: 16
mar 15 14:45:54 archlinux kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
mar 15 14:45:54 archlinux kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
mar 15 14:45:54 archlinux kernel: Console: colour dummy device 80x25
mar 15 14:45:54 archlinux kernel: printk: legacy console [tty0] enabled
mar 15 14:45:54 archlinux kernel: ACPI: Core revision 20250807
mar 15 14:45:54 archlinux kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
mar 15 14:45:54 archlinux kernel: APIC: Switch to symmetric I/O mode setup
mar 15 14:45:54 archlinux kernel: AMD-Vi: Using global IVHD EFR:0x58f77ef22294ade, EFR2:0x0
mar 15 14:45:54 archlinux kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
mar 15 14:45:54 archlinux kernel: tsc: PIT calibration matches HPET. 1 loops
mar 15 14:45:54 archlinux kernel: tsc: Detected 3600.114 MHz processor
mar 15 14:45:54 archlinux kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x33e4bf75c23, max_idle_ns: 440795374469 ns
mar 15 14:45:54 archlinux kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 7200.22 BogoMIPS (lpj=3600114)
mar 15 14:45:54 archlinux kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
mar 15 14:45:54 archlinux kernel: RDRAND is not reliable on this platform; disabling.
mar 15 14:45:54 archlinux kernel: LVT offset 1 assigned for vector 0xf9
mar 15 14:45:54 archlinux kernel: LVT offset 2 assigned for vector 0xf4
mar 15 14:45:54 archlinux kernel: Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
mar 15 14:45:54 archlinux kernel: Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
mar 15 14:45:54 archlinux kernel: process: using mwait in idle threads
mar 15 14:45:54 archlinux kernel: mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
mar 15 14:45:54 archlinux kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
mar 15 14:45:54 archlinux kernel: Spectre V2 : Mitigation: Retpolines
mar 15 14:45:54 archlinux kernel: RETBleed: Mitigation: untrained return thunk
mar 15 14:45:54 archlinux kernel: Spectre V2 : User space: Mitigation: STIBP always-on protection
mar 15 14:45:54 archlinux kernel: Speculative Return Stack Overflow: Mitigation: Safe RET
mar 15 14:45:54 archlinux kernel: VMSCAPE: Mitigation: IBPB before exit to userspace
mar 15 14:45:54 archlinux kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
mar 15 14:45:54 archlinux kernel: Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
mar 15 14:45:54 archlinux kernel: Spectre V2 : Enabling Speculation Barrier for firmware calls
mar 15 14:45:54 archlinux kernel: active return thunk: retbleed_return_thunk
mar 15 14:45:54 archlinux kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
mar 15 14:45:54 archlinux kernel: active return thunk: srso_return_thunk
mar 15 14:45:54 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
mar 15 14:45:54 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
mar 15 14:45:54 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
mar 15 14:45:54 archlinux kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
mar 15 14:45:54 archlinux kernel: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
mar 15 14:45:54 archlinux kernel: Freeing SMP alternatives memory: 56K
mar 15 14:45:54 archlinux kernel: pid_max: default: 32768 minimum: 301
mar 15 14:45:54 archlinux kernel: landlock: Up and running.
mar 15 14:45:54 archlinux kernel: Yama: becoming mindful.
mar 15 14:45:54 archlinux kernel: LSM support for eBPF active
mar 15 14:45:54 archlinux kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
mar 15 14:45:54 archlinux kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
mar 15 14:45:54 archlinux kernel: smpboot: CPU0: AMD Ryzen 5 3600 6-Core Processor (family: 0x17, model: 0x71, stepping: 0x0)
mar 15 14:45:54 archlinux kernel: Performance Events: Fam17h+ core perfctr, AMD PMU driver.
mar 15 14:45:54 archlinux kernel: ... version:                   0
mar 15 14:45:54 archlinux kernel: ... bit width:                 48
mar 15 14:45:54 archlinux kernel: ... generic counters:          6
mar 15 14:45:54 archlinux kernel: ... generic bitmap:            000000000000003f
mar 15 14:45:54 archlinux kernel: ... fixed-purpose counters:    0
mar 15 14:45:54 archlinux kernel: ... fixed-purpose bitmap:      0000000000000000
mar 15 14:45:54 archlinux kernel: ... value mask:                0000ffffffffffff
mar 15 14:45:54 archlinux kernel: ... max period:                00007fffffffffff
mar 15 14:45:54 archlinux kernel: ... global_ctrl mask:          000000000000003f
mar 15 14:45:54 archlinux kernel: signal: max sigframe size: 1776
mar 15 14:45:54 archlinux kernel: rcu: Hierarchical SRCU implementation.
mar 15 14:45:54 archlinux kernel: rcu:         Max phase no-delay instances is 400.
mar 15 14:45:54 archlinux kernel: Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
mar 15 14:45:54 archlinux kernel: MCE: In-kernel MCE decoding enabled.
mar 15 14:45:54 archlinux kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
mar 15 14:45:54 archlinux kernel: smp: Bringing up secondary CPUs ...
mar 15 14:45:54 archlinux kernel: smpboot: x86: Booting SMP configuration:
mar 15 14:45:54 archlinux kernel: .... node  #0, CPUs:        #1  #2  #3  #4  #5
mar 15 14:45:54 archlinux kernel: RDRAND is not reliable on this platform; disabling.
mar 15 14:45:54 archlinux kernel: RDRAND is not reliable on this platform; disabling.
mar 15 14:45:54 archlinux kernel: RDRAND is not reliable on this platform; disabling.
mar 15 14:45:54 archlinux kernel: RDRAND is not reliable on this platform; disabling.
mar 15 14:45:54 archlinux kernel: RDRAND is not reliable on this platform; disabling.
mar 15 14:45:54 archlinux kernel:   #6  #7  #8  #9 #10 #11
mar 15 14:45:54 archlinux kernel: RDRAND is not reliable on this platform; disabling.
mar 15 14:45:54 archlinux kernel: Spectre V2 : Update user space SMT mitigation: STIBP always-on
mar 15 14:45:54 archlinux kernel: RDRAND is not reliable on this platform; disabling.
mar 15 14:45:54 archlinux kernel: RDRAND is not reliable on this platform; disabling.
mar 15 14:45:54 archlinux kernel: RDRAND is not reliable on this platform; disabling.
mar 15 14:45:54 archlinux kernel: RDRAND is not reliable on this platform; disabling.
mar 15 14:45:54 archlinux kernel: RDRAND is not reliable on this platform; disabling.
mar 15 14:45:54 archlinux kernel: smp: Brought up 1 node, 12 CPUs
mar 15 14:45:54 archlinux kernel: smpboot: Total of 12 processors activated (86402.73 BogoMIPS)
mar 15 14:45:54 archlinux kernel: Memory: 16205376K/16699832K available (20566K kernel code, 2951K rwdata, 16748K rodata, 4776K init, 4600K bss, 474148K reserved, 0K cma-reserved)
mar 15 14:45:54 archlinux kernel: devtmpfs: initialized
mar 15 14:45:54 archlinux kernel: x86/mm: Memory block size: 128MB
mar 15 14:45:54 archlinux kernel: ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20bfff] (49152 bytes)
mar 15 14:45:54 archlinux kernel: ACPI: PM: Registering ACPI NVS region [mem 0xdafa7000-0xdb493fff] (5165056 bytes)
mar 15 14:45:54 archlinux kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
mar 15 14:45:54 archlinux kernel: posixtimers hash table entries: 8192 (order: 5, 131072 bytes, linear)
mar 15 14:45:54 archlinux kernel: futex hash table entries: 4096 (262144 bytes on 1 NUMA nodes, total 256 KiB, linear).
mar 15 14:45:54 archlinux kernel: PM: RTC time: 13:45:52, date: 2026-03-15
mar 15 14:45:54 archlinux kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
mar 15 14:45:54 archlinux kernel: DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
mar 15 14:45:54 archlinux kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
mar 15 14:45:54 archlinux kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
mar 15 14:45:54 archlinux kernel: audit: initializing netlink subsys (disabled)
mar 15 14:45:54 archlinux kernel: audit: type=2000 audit(1773582351.175:1): state=initialized audit_enabled=0 res=1
mar 15 14:45:54 archlinux kernel: thermal_sys: Registered thermal governor 'fair_share'
mar 15 14:45:54 archlinux kernel: thermal_sys: Registered thermal governor 'bang_bang'
mar 15 14:45:54 archlinux kernel: thermal_sys: Registered thermal governor 'step_wise'
mar 15 14:45:54 archlinux kernel: thermal_sys: Registered thermal governor 'user_space'
mar 15 14:45:54 archlinux kernel: thermal_sys: Registered thermal governor 'power_allocator'
mar 15 14:45:54 archlinux kernel: cpuidle: using governor ladder
mar 15 14:45:54 archlinux kernel: cpuidle: using governor menu
mar 15 14:45:54 archlinux kernel: Detected 1 PCC Subspaces
mar 15 14:45:54 archlinux kernel: Registering PCC driver as Mailbox controller
mar 15 14:45:54 archlinux kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
mar 15 14:45:54 archlinux kernel: PCI: ECAM [mem 0xf8000000-0xfbffffff] (base 0xf8000000) for domain 0000 [bus 00-3f]
mar 15 14:45:54 archlinux kernel: PCI: Using configuration type 1 for base access
mar 15 14:45:54 archlinux kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
mar 15 14:45:54 archlinux kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
mar 15 14:45:54 archlinux kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
mar 15 14:45:54 archlinux kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
mar 15 14:45:54 archlinux kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
mar 15 14:45:54 archlinux kernel: raid6: skipped pq benchmark and selected avx2x4
mar 15 14:45:54 archlinux kernel: raid6: using avx2x2 recovery algorithm
mar 15 14:45:54 archlinux kernel: fbcon: Taking over console
mar 15 14:45:54 archlinux kernel: ACPI: Added _OSI(Module Device)
mar 15 14:45:54 archlinux kernel: ACPI: Added _OSI(Processor Device)
mar 15 14:45:54 archlinux kernel: ACPI: Added _OSI(Processor Aggregator Device)
mar 15 14:45:54 archlinux kernel: ACPI: 8 ACPI AML tables successfully acquired and loaded
mar 15 14:45:54 archlinux kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
mar 15 14:45:54 archlinux kernel: ACPI: EC: EC started
mar 15 14:45:54 archlinux kernel: ACPI: EC: interrupt blocked
mar 15 14:45:54 archlinux kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
mar 15 14:45:54 archlinux kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: Boot DSDT EC used to handle transactions
mar 15 14:45:54 archlinux kernel: ACPI: Interpreter enabled
mar 15 14:45:54 archlinux kernel: ACPI: PM: (supports S0 S3 S4 S5)
mar 15 14:45:54 archlinux kernel: ACPI: Using IOAPIC for interrupt routing
mar 15 14:45:54 archlinux kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
mar 15 14:45:54 archlinux kernel: PCI: Using E820 reservations for host bridge windows
mar 15 14:45:54 archlinux kernel: ACPI: Enabled 3 GPEs in block 00 to 1F
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT3._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO11._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT4._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO12._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT5._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO13._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT6._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO14._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT1._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT9._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT2._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO10._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT7._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO15._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT8._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO16._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO17._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO18._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO19._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO20._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO21._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO22._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
mar 15 14:45:54 archlinux kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
mar 15 14:45:54 archlinux kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME LTR DPC]
mar 15 14:45:54 archlinux kernel: acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
mar 15 14:45:54 archlinux kernel: acpi PNP0A08:00: [Firmware Info]: ECAM [mem 0xf8000000-0xfbffffff] for domain 0000 [bus 00-3f] only partially covers this bridge
mar 15 14:45:54 archlinux kernel: PCI host bridge to bus 0000:00
mar 15 14:45:54 archlinux kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xefff window]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfec2ffff window]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
mar 15 14:45:54 archlinux kernel: pci 0000:00:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:00:00.2: [1022:1481] type 00 class 0x080600 conventional PCI endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:00:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:00:01.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
mar 15 14:45:54 archlinux kernel: pci 0000:00:01.1: PCI bridge to [bus 01]
mar 15 14:45:54 archlinux kernel: pci 0000:00:01.1:   bridge window [mem 0xfcf00000-0xfcffffff]
mar 15 14:45:54 archlinux kernel: pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
mar 15 14:45:54 archlinux kernel: pci 0000:00:01.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
mar 15 14:45:54 archlinux kernel: pci 0000:00:01.3: PCI bridge to [bus 02-08]
mar 15 14:45:54 archlinux kernel: pci 0000:00:01.3:   bridge window [io  0xe000-0xefff]
mar 15 14:45:54 archlinux kernel: pci 0000:00:01.3:   bridge window [mem 0xfca00000-0xfcbfffff]
mar 15 14:45:54 archlinux kernel: pci 0000:00:01.3: enabling Extended Tags
mar 15 14:45:54 archlinux kernel: pci 0000:00:01.3: PME# supported from D0 D3hot D3cold
mar 15 14:45:54 archlinux kernel: pci 0000:00:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:00:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:00:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
mar 15 14:45:54 archlinux kernel: pci 0000:00:03.1: PCI bridge to [bus 09]
mar 15 14:45:54 archlinux kernel: pci 0000:00:03.1:   bridge window [io  0xd000-0xdfff]
mar 15 14:45:54 archlinux kernel: pci 0000:00:03.1:   bridge window [mem 0xfce00000-0xfcefffff]
mar 15 14:45:54 archlinux kernel: pci 0000:00:03.1:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
mar 15 14:45:54 archlinux kernel: pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
mar 15 14:45:54 archlinux kernel: pci 0000:00:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:00:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:00:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:00:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
mar 15 14:45:54 archlinux kernel: pci 0000:00:07.1: PCI bridge to [bus 0a]
mar 15 14:45:54 archlinux kernel: pci 0000:00:07.1: enabling Extended Tags
mar 15 14:45:54 archlinux kernel: pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.1: PCI bridge to [bus 0b]
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.1:   bridge window [mem 0xfc700000-0xfc9fffff]
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.1: enabling Extended Tags
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.2: [1022:1484] type 01 class 0x060400 PCIe Root Port
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.2: PCI bridge to [bus 0c]
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.2:   bridge window [mem 0xfcd00000-0xfcdfffff]
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.2: enabling Extended Tags
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.2: PME# supported from D0 D3hot D3cold
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.3: [1022:1484] type 01 class 0x060400 PCIe Root Port
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.3: PCI bridge to [bus 0d]
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.3:   bridge window [mem 0xfcc00000-0xfccfffff]
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.3: enabling Extended Tags
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.3: PME# supported from D0 D3hot D3cold
mar 15 14:45:54 archlinux kernel: pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:00:18.0: [1022:1440] type 00 class 0x060000 conventional PCI endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:00:18.1: [1022:1441] type 00 class 0x060000 conventional PCI endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:00:18.2: [1022:1442] type 00 class 0x060000 conventional PCI endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:00:18.3: [1022:1443] type 00 class 0x060000 conventional PCI endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:00:18.4: [1022:1444] type 00 class 0x060000 conventional PCI endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:00:18.5: [1022:1445] type 00 class 0x060000 conventional PCI endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:00:18.6: [1022:1446] type 00 class 0x060000 conventional PCI endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:00:18.7: [1022:1447] type 00 class 0x060000 conventional PCI endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:01:00.0: [2646:5013] type 00 class 0x010802 PCIe Endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:01:00.0: BAR 0 [mem 0xfcf00000-0xfcf03fff 64bit]
mar 15 14:45:54 archlinux kernel: pci 0000:00:01.1: PCI bridge to [bus 01]
mar 15 14:45:54 archlinux kernel: pci 0000:02:00.0: [1022:43d5] type 00 class 0x0c0330 PCIe Legacy Endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:02:00.0: BAR 0 [mem 0xfcba0000-0xfcba7fff 64bit]
mar 15 14:45:54 archlinux kernel: pci 0000:02:00.0: enabling Extended Tags
mar 15 14:45:54 archlinux kernel: pci 0000:02:00.0: PME# supported from D3hot D3cold
mar 15 14:45:54 archlinux kernel: pci 0000:02:00.1: [1022:43c8] type 00 class 0x010601 PCIe Legacy Endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:02:00.1: BAR 5 [mem 0xfcb80000-0xfcb9ffff]
mar 15 14:45:54 archlinux kernel: pci 0000:02:00.1: ROM [mem 0xfcb00000-0xfcb7ffff pref]
mar 15 14:45:54 archlinux kernel: pci 0000:02:00.1: enabling Extended Tags
mar 15 14:45:54 archlinux kernel: pci 0000:02:00.1: PME# supported from D3hot D3cold
mar 15 14:45:54 archlinux kernel: pci 0000:02:00.2: [1022:43c6] type 01 class 0x060400 PCIe Switch Upstream Port
mar 15 14:45:54 archlinux kernel: pci 0000:02:00.2: PCI bridge to [bus 03-08]
mar 15 14:45:54 archlinux kernel: pci 0000:02:00.2:   bridge window [io  0xe000-0xefff]
mar 15 14:45:54 archlinux kernel: pci 0000:02:00.2:   bridge window [mem 0xfca00000-0xfcafffff]
mar 15 14:45:54 archlinux kernel: pci 0000:02:00.2: enabling Extended Tags
mar 15 14:45:54 archlinux kernel: pci 0000:02:00.2: PME# supported from D3hot D3cold
mar 15 14:45:54 archlinux kernel: pci 0000:00:01.3: PCI bridge to [bus 02-08]
mar 15 14:45:54 archlinux kernel: pci 0000:03:00.0: [1022:43c7] type 01 class 0x060400 PCIe Switch Downstream Port
mar 15 14:45:54 archlinux kernel: pci 0000:03:00.0: PCI bridge to [bus 04]
mar 15 14:45:54 archlinux kernel: pci 0000:03:00.0:   bridge window [io  0xe000-0xefff]
mar 15 14:45:54 archlinux kernel: pci 0000:03:00.0:   bridge window [mem 0xfca00000-0xfcafffff]
mar 15 14:45:54 archlinux kernel: pci 0000:03:00.0: enabling Extended Tags
mar 15 14:45:54 archlinux kernel: pci 0000:03:00.0: PME# supported from D3hot D3cold
mar 15 14:45:54 archlinux kernel: pci 0000:03:01.0: [1022:43c7] type 01 class 0x060400 PCIe Switch Downstream Port
mar 15 14:45:54 archlinux kernel: pci 0000:03:01.0: PCI bridge to [bus 05]
mar 15 14:45:54 archlinux kernel: pci 0000:03:01.0: enabling Extended Tags
mar 15 14:45:54 archlinux kernel: pci 0000:03:01.0: PME# supported from D3hot D3cold
mar 15 14:45:54 archlinux kernel: pci 0000:03:04.0: [1022:43c7] type 01 class 0x060400 PCIe Switch Downstream Port
mar 15 14:45:54 archlinux kernel: pci 0000:03:04.0: PCI bridge to [bus 06]
mar 15 14:45:54 archlinux kernel: pci 0000:03:04.0: enabling Extended Tags
mar 15 14:45:54 archlinux kernel: pci 0000:03:04.0: PME# supported from D3hot D3cold
mar 15 14:45:54 archlinux kernel: pci 0000:03:06.0: [1022:43c7] type 01 class 0x060400 PCIe Switch Downstream Port
mar 15 14:45:54 archlinux kernel: pci 0000:03:06.0: PCI bridge to [bus 07]
mar 15 14:45:54 archlinux kernel: pci 0000:03:06.0: enabling Extended Tags
mar 15 14:45:54 archlinux kernel: pci 0000:03:06.0: PME# supported from D3hot D3cold
mar 15 14:45:54 archlinux kernel: pci 0000:03:07.0: [1022:43c7] type 01 class 0x060400 PCIe Switch Downstream Port
mar 15 14:45:54 archlinux kernel: pci 0000:03:07.0: PCI bridge to [bus 08]
mar 15 14:45:54 archlinux kernel: pci 0000:03:07.0: enabling Extended Tags
mar 15 14:45:54 archlinux kernel: pci 0000:03:07.0: PME# supported from D3hot D3cold
mar 15 14:45:54 archlinux kernel: pci 0000:02:00.2: PCI bridge to [bus 03-08]
mar 15 14:45:54 archlinux kernel: pci 0000:04:00.0: [8086:1539] type 00 class 0x020000 PCIe Endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:04:00.0: BAR 0 [mem 0xfca00000-0xfca1ffff]
mar 15 14:45:54 archlinux kernel: pci 0000:04:00.0: BAR 2 [io  0xe000-0xe01f]
mar 15 14:45:54 archlinux kernel: pci 0000:04:00.0: BAR 3 [mem 0xfca20000-0xfca23fff]
mar 15 14:45:54 archlinux kernel: pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
mar 15 14:45:54 archlinux kernel: pci 0000:03:00.0: PCI bridge to [bus 04]
mar 15 14:45:54 archlinux kernel: pci 0000:03:01.0: PCI bridge to [bus 05]
mar 15 14:45:54 archlinux kernel: pci 0000:03:04.0: PCI bridge to [bus 06]
mar 15 14:45:54 archlinux kernel: pci 0000:03:06.0: PCI bridge to [bus 07]
mar 15 14:45:54 archlinux kernel: pci 0000:03:07.0: PCI bridge to [bus 08]
mar 15 14:45:54 archlinux kernel: pci 0000:09:00.0: [1002:67df] type 00 class 0x030000 PCIe Legacy Endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:09:00.0: BAR 0 [mem 0xe0000000-0xefffffff 64bit pref]
mar 15 14:45:54 archlinux kernel: pci 0000:09:00.0: BAR 2 [mem 0xf0000000-0xf01fffff 64bit pref]
mar 15 14:45:54 archlinux kernel: pci 0000:09:00.0: BAR 4 [io  0xd000-0xd0ff]
mar 15 14:45:54 archlinux kernel: pci 0000:09:00.0: BAR 5 [mem 0xfce00000-0xfce3ffff]
mar 15 14:45:54 archlinux kernel: pci 0000:09:00.0: ROM [mem 0xfce40000-0xfce5ffff pref]
mar 15 14:45:54 archlinux kernel: pci 0000:09:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
mar 15 14:45:54 archlinux kernel: pci 0000:09:00.0: supports D1 D2
mar 15 14:45:54 archlinux kernel: pci 0000:09:00.0: PME# supported from D1 D2 D3hot D3cold
mar 15 14:45:54 archlinux kernel: pci 0000:09:00.1: [1002:aaf0] type 00 class 0x040300 PCIe Legacy Endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:09:00.1: BAR 0 [mem 0xfce60000-0xfce63fff 64bit]
mar 15 14:45:54 archlinux kernel: pci 0000:09:00.1: supports D1 D2
mar 15 14:45:54 archlinux kernel: pci 0000:00:03.1: PCI bridge to [bus 09]
mar 15 14:45:54 archlinux kernel: pci 0000:0a:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:0a:00.0: enabling Extended Tags
mar 15 14:45:54 archlinux kernel: pci 0000:00:07.1: PCI bridge to [bus 0a]
mar 15 14:45:54 archlinux kernel: pci 0000:0b:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:0b:00.0: enabling Extended Tags
mar 15 14:45:54 archlinux kernel: pci 0000:0b:00.1: [1022:1486] type 00 class 0x108000 PCIe Endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:0b:00.1: BAR 2 [mem 0xfc800000-0xfc8fffff]
mar 15 14:45:54 archlinux kernel: pci 0000:0b:00.1: BAR 5 [mem 0xfc908000-0xfc909fff]
mar 15 14:45:54 archlinux kernel: pci 0000:0b:00.1: enabling Extended Tags
mar 15 14:45:54 archlinux kernel: pci 0000:0b:00.3: [1022:149c] type 00 class 0x0c0330 PCIe Endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:0b:00.3: BAR 0 [mem 0xfc700000-0xfc7fffff 64bit]
mar 15 14:45:54 archlinux kernel: pci 0000:0b:00.3: enabling Extended Tags
mar 15 14:45:54 archlinux kernel: pci 0000:0b:00.3: PME# supported from D0 D3hot D3cold
mar 15 14:45:54 archlinux kernel: pci 0000:0b:00.4: [1022:1487] type 00 class 0x040300 PCIe Endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:0b:00.4: BAR 0 [mem 0xfc900000-0xfc907fff]
mar 15 14:45:54 archlinux kernel: pci 0000:0b:00.4: enabling Extended Tags
mar 15 14:45:54 archlinux kernel: pci 0000:0b:00.4: PME# supported from D0 D3hot D3cold
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.1: PCI bridge to [bus 0b]
mar 15 14:45:54 archlinux kernel: pci 0000:0c:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:0c:00.0: BAR 5 [mem 0xfcd00000-0xfcd007ff]
mar 15 14:45:54 archlinux kernel: pci 0000:0c:00.0: enabling Extended Tags
mar 15 14:45:54 archlinux kernel: pci 0000:0c:00.0: PME# supported from D3hot D3cold
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.2: PCI bridge to [bus 0c]
mar 15 14:45:54 archlinux kernel: pci 0000:0d:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
mar 15 14:45:54 archlinux kernel: pci 0000:0d:00.0: BAR 5 [mem 0xfcc00000-0xfcc007ff]
mar 15 14:45:54 archlinux kernel: pci 0000:0d:00.0: enabling Extended Tags
mar 15 14:45:54 archlinux kernel: pci 0000:0d:00.0: PME# supported from D3hot D3cold
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.3: PCI bridge to [bus 0d]
mar 15 14:45:54 archlinux kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 0
mar 15 14:45:54 archlinux kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 0
mar 15 14:45:54 archlinux kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 0
mar 15 14:45:54 archlinux kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 0
mar 15 14:45:54 archlinux kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
mar 15 14:45:54 archlinux kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 0
mar 15 14:45:54 archlinux kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
mar 15 14:45:54 archlinux kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 0
mar 15 14:45:54 archlinux kernel: ACPI: EC: interrupt unblocked
mar 15 14:45:54 archlinux kernel: ACPI: EC: event unblocked
mar 15 14:45:54 archlinux kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
mar 15 14:45:54 archlinux kernel: ACPI: EC: GPE=0x2
mar 15 14:45:54 archlinux kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: Boot DSDT EC initialization complete
mar 15 14:45:54 archlinux kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: EC: Used to handle transactions and events
mar 15 14:45:54 archlinux kernel: iommu: Default domain type: Translated
mar 15 14:45:54 archlinux kernel: iommu: DMA domain TLB invalidation policy: lazy mode
mar 15 14:45:54 archlinux kernel: SCSI subsystem initialized
mar 15 14:45:54 archlinux kernel: libata version 3.00 loaded.
mar 15 14:45:54 archlinux kernel: ACPI: bus type USB registered
mar 15 14:45:54 archlinux kernel: usbcore: registered new interface driver usbfs
mar 15 14:45:54 archlinux kernel: usbcore: registered new interface driver hub
mar 15 14:45:54 archlinux kernel: usbcore: registered new device driver usb
mar 15 14:45:54 archlinux kernel: EDAC MC: Ver: 3.0.0
mar 15 14:45:54 archlinux kernel: efivars: Registered efivars operations
mar 15 14:45:54 archlinux kernel: NetLabel: Initializing
mar 15 14:45:54 archlinux kernel: NetLabel:  domain hash size = 128
mar 15 14:45:54 archlinux kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
mar 15 14:45:54 archlinux kernel: NetLabel:  unlabeled traffic allowed by default
mar 15 14:45:54 archlinux kernel: mctp: management component transport protocol core
mar 15 14:45:54 archlinux kernel: NET: Registered PF_MCTP protocol family
mar 15 14:45:54 archlinux kernel: PCI: Using ACPI for IRQ routing
mar 15 14:45:54 archlinux kernel: PCI: pci_cache_line_size set to 64 bytes
mar 15 14:45:54 archlinux kernel: e820: reserve RAM buffer [mem 0x09e00000-0x0bffffff]
mar 15 14:45:54 archlinux kernel: e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
mar 15 14:45:54 archlinux kernel: e820: reserve RAM buffer [mem 0x0b000000-0x0bffffff]
mar 15 14:45:54 archlinux kernel: e820: reserve RAM buffer [mem 0xd5531000-0xd7ffffff]
mar 15 14:45:54 archlinux kernel: e820: reserve RAM buffer [mem 0xd7909000-0xd7ffffff]
mar 15 14:45:54 archlinux kernel: e820: reserve RAM buffer [mem 0xd9898000-0xdbffffff]
mar 15 14:45:54 archlinux kernel: e820: reserve RAM buffer [mem 0xdf000000-0xdfffffff]
mar 15 14:45:54 archlinux kernel: e820: reserve RAM buffer [mem 0x41f380000-0x41fffffff]
mar 15 14:45:54 archlinux kernel: pci 0000:09:00.0: vgaarb: setting as boot VGA device
mar 15 14:45:54 archlinux kernel: pci 0000:09:00.0: vgaarb: bridge control possible
mar 15 14:45:54 archlinux kernel: pci 0000:09:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
mar 15 14:45:54 archlinux kernel: vgaarb: loaded
mar 15 14:45:54 archlinux kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
mar 15 14:45:54 archlinux kernel: hpet0: 3 comparators, 32-bit 14.318180 MHz counter
mar 15 14:45:54 archlinux kernel: clocksource: Switched to clocksource tsc-early
mar 15 14:45:54 archlinux kernel: VFS: Disk quotas dquot_6.6.0
mar 15 14:45:54 archlinux kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
mar 15 14:45:54 archlinux kernel: pnp: PnP ACPI init
mar 15 14:45:54 archlinux kernel: system 00:00: [mem 0xf8000000-0xfbffffff] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:01: [mem 0xfd000000-0xfd0fffff] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:03: [io  0x02a0-0x02af] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:03: [io  0x0230-0x023f] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:03: [io  0x0290-0x029f] has been reserved
mar 15 14:45:54 archlinux kernel: pnp 00:04: [dma 0 disabled]
mar 15 14:45:54 archlinux kernel: system 00:05: [io  0x04d0-0x04d1] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [io  0x040b] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [io  0x04d6] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [io  0x0c00-0x0c01] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [io  0x0c14] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [io  0x0c50-0x0c51] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [io  0x0c52] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [io  0x0c6c] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [io  0x0c6f] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [io  0x0cd0-0x0cd1] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [io  0x0cd2-0x0cd3] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [io  0x0cd4-0x0cd5] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [io  0x0cd6-0x0cd7] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [io  0x0cd8-0x0cdf] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [io  0x0800-0x089f] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [io  0x0b00-0x0b0f] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [io  0x0b20-0x0b3f] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [io  0x0900-0x090f] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [io  0x0910-0x091f] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [mem 0xfec00000-0xfec00fff] could not be reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [mem 0xfec01000-0xfec01fff] could not be reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [mem 0xfedc0000-0xfedc0fff] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [mem 0xfee00000-0xfee00fff] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [mem 0xfed80000-0xfed8ffff] could not be reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [mem 0xfec10000-0xfec10fff] has been reserved
mar 15 14:45:54 archlinux kernel: system 00:05: [mem 0xff000000-0xffffffff] has been reserved
mar 15 14:45:54 archlinux kernel: pnp: PnP ACPI: found 6 devices
mar 15 14:45:54 archlinux kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
mar 15 14:45:54 archlinux kernel: NET: Registered PF_INET protocol family
mar 15 14:45:54 archlinux kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
mar 15 14:45:54 archlinux kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
mar 15 14:45:54 archlinux kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
mar 15 14:45:54 archlinux kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
mar 15 14:45:54 archlinux kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
mar 15 14:45:54 archlinux kernel: TCP: Hash tables configured (established 131072 bind 65536)
mar 15 14:45:54 archlinux kernel: MPTCP token hash table entries: 16384 (order: 7, 393216 bytes, linear)
mar 15 14:45:54 archlinux kernel: UDP hash table entries: 8192 (order: 7, 524288 bytes, linear)
mar 15 14:45:54 archlinux kernel: UDP-Lite hash table entries: 8192 (order: 7, 524288 bytes, linear)
mar 15 14:45:54 archlinux kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
mar 15 14:45:54 archlinux kernel: NET: Registered PF_XDP protocol family
mar 15 14:45:54 archlinux kernel: pci 0000:00:01.1: PCI bridge to [bus 01]
mar 15 14:45:54 archlinux kernel: pci 0000:00:01.1:   bridge window [mem 0xfcf00000-0xfcffffff]
mar 15 14:45:54 archlinux kernel: pci 0000:03:00.0: PCI bridge to [bus 04]
mar 15 14:45:54 archlinux kernel: pci 0000:03:00.0:   bridge window [io  0xe000-0xefff]
mar 15 14:45:54 archlinux kernel: pci 0000:03:00.0:   bridge window [mem 0xfca00000-0xfcafffff]
mar 15 14:45:54 archlinux kernel: pci 0000:03:01.0: PCI bridge to [bus 05]
mar 15 14:45:54 archlinux kernel: pci 0000:03:04.0: PCI bridge to [bus 06]
mar 15 14:45:54 archlinux kernel: pci 0000:03:06.0: PCI bridge to [bus 07]
mar 15 14:45:54 archlinux kernel: pci 0000:03:07.0: PCI bridge to [bus 08]
mar 15 14:45:54 archlinux kernel: pci 0000:02:00.2: PCI bridge to [bus 03-08]
mar 15 14:45:54 archlinux kernel: pci 0000:02:00.2:   bridge window [io  0xe000-0xefff]
mar 15 14:45:54 archlinux kernel: pci 0000:02:00.2:   bridge window [mem 0xfca00000-0xfcafffff]
mar 15 14:45:54 archlinux kernel: pci 0000:00:01.3: PCI bridge to [bus 02-08]
mar 15 14:45:54 archlinux kernel: pci 0000:00:01.3:   bridge window [io  0xe000-0xefff]
mar 15 14:45:54 archlinux kernel: pci 0000:00:01.3:   bridge window [mem 0xfca00000-0xfcbfffff]
mar 15 14:45:54 archlinux kernel: pci 0000:00:03.1: PCI bridge to [bus 09]
mar 15 14:45:54 archlinux kernel: pci 0000:00:03.1:   bridge window [io  0xd000-0xdfff]
mar 15 14:45:54 archlinux kernel: pci 0000:00:03.1:   bridge window [mem 0xfce00000-0xfcefffff]
mar 15 14:45:54 archlinux kernel: pci 0000:00:03.1:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
mar 15 14:45:54 archlinux kernel: pci 0000:00:07.1: PCI bridge to [bus 0a]
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.1: PCI bridge to [bus 0b]
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.1:   bridge window [mem 0xfc700000-0xfc9fffff]
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.2: PCI bridge to [bus 0c]
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.2:   bridge window [mem 0xfcd00000-0xfcdfffff]
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.3: PCI bridge to [bus 0d]
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.3:   bridge window [mem 0xfcc00000-0xfccfffff]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:00: resource 7 [io  0x0d00-0xefff window]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:00: resource 9 [mem 0xe0000000-0xfec2ffff window]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:00: resource 10 [mem 0xfee00000-0xffffffff window]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:01: resource 1 [mem 0xfcf00000-0xfcffffff]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:02: resource 0 [io  0xe000-0xefff]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:02: resource 1 [mem 0xfca00000-0xfcbfffff]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:03: resource 0 [io  0xe000-0xefff]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:03: resource 1 [mem 0xfca00000-0xfcafffff]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:04: resource 0 [io  0xe000-0xefff]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:04: resource 1 [mem 0xfca00000-0xfcafffff]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:09: resource 0 [io  0xd000-0xdfff]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:09: resource 1 [mem 0xfce00000-0xfcefffff]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:09: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:0b: resource 1 [mem 0xfc700000-0xfc9fffff]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:0c: resource 1 [mem 0xfcd00000-0xfcdfffff]
mar 15 14:45:54 archlinux kernel: pci_bus 0000:0d: resource 1 [mem 0xfcc00000-0xfccfffff]
mar 15 14:45:54 archlinux kernel: pci 0000:09:00.1: D0 power state depends on 0000:09:00.0
mar 15 14:45:54 archlinux kernel: PCI: CLS 64 bytes, default 64
mar 15 14:45:54 archlinux kernel: pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
mar 15 14:45:54 archlinux kernel: Trying to unpack rootfs image as initramfs...
mar 15 14:45:54 archlinux kernel: pci 0000:00:01.0: Adding to iommu group 0
mar 15 14:45:54 archlinux kernel: pci 0000:00:01.1: Adding to iommu group 1
mar 15 14:45:54 archlinux kernel: pci 0000:00:01.3: Adding to iommu group 2
mar 15 14:45:54 archlinux kernel: pci 0000:00:02.0: Adding to iommu group 3
mar 15 14:45:54 archlinux kernel: pci 0000:00:03.0: Adding to iommu group 4
mar 15 14:45:54 archlinux kernel: pci 0000:00:03.1: Adding to iommu group 5
mar 15 14:45:54 archlinux kernel: pci 0000:00:04.0: Adding to iommu group 6
mar 15 14:45:54 archlinux kernel: pci 0000:00:05.0: Adding to iommu group 7
mar 15 14:45:54 archlinux kernel: pci 0000:00:07.0: Adding to iommu group 8
mar 15 14:45:54 archlinux kernel: pci 0000:00:07.1: Adding to iommu group 8
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.0: Adding to iommu group 9
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.1: Adding to iommu group 9
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.2: Adding to iommu group 9
mar 15 14:45:54 archlinux kernel: pci 0000:00:08.3: Adding to iommu group 9
mar 15 14:45:54 archlinux kernel: pci 0000:00:14.0: Adding to iommu group 10
mar 15 14:45:54 archlinux kernel: pci 0000:00:14.3: Adding to iommu group 10
mar 15 14:45:54 archlinux kernel: pci 0000:00:18.0: Adding to iommu group 11
mar 15 14:45:54 archlinux kernel: pci 0000:00:18.1: Adding to iommu group 11
mar 15 14:45:54 archlinux kernel: pci 0000:00:18.2: Adding to iommu group 11
mar 15 14:45:54 archlinux kernel: pci 0000:00:18.3: Adding to iommu group 11
mar 15 14:45:54 archlinux kernel: pci 0000:00:18.4: Adding to iommu group 11
mar 15 14:45:54 archlinux kernel: pci 0000:00:18.5: Adding to iommu group 11
mar 15 14:45:54 archlinux kernel: pci 0000:00:18.6: Adding to iommu group 11
mar 15 14:45:54 archlinux kernel: pci 0000:00:18.7: Adding to iommu group 11
mar 15 14:45:54 archlinux kernel: pci 0000:01:00.0: Adding to iommu group 12
mar 15 14:45:54 archlinux kernel: pci 0000:02:00.0: Adding to iommu group 13
mar 15 14:45:54 archlinux kernel: pci 0000:02:00.1: Adding to iommu group 13
mar 15 14:45:54 archlinux kernel: pci 0000:02:00.2: Adding to iommu group 13
mar 15 14:45:54 archlinux kernel: pci 0000:03:00.0: Adding to iommu group 13
mar 15 14:45:54 archlinux kernel: pci 0000:03:01.0: Adding to iommu group 13
mar 15 14:45:54 archlinux kernel: pci 0000:03:04.0: Adding to iommu group 13
mar 15 14:45:54 archlinux kernel: pci 0000:03:06.0: Adding to iommu group 13
mar 15 14:45:54 archlinux kernel: pci 0000:03:07.0: Adding to iommu group 13
mar 15 14:45:54 archlinux kernel: pci 0000:04:00.0: Adding to iommu group 13
mar 15 14:45:54 archlinux kernel: pci 0000:09:00.0: Adding to iommu group 14
mar 15 14:45:54 archlinux kernel: pci 0000:09:00.1: Adding to iommu group 14
mar 15 14:45:54 archlinux kernel: pci 0000:0a:00.0: Adding to iommu group 8
mar 15 14:45:54 archlinux kernel: pci 0000:0b:00.0: Adding to iommu group 9
mar 15 14:45:54 archlinux kernel: pci 0000:0b:00.1: Adding to iommu group 9
mar 15 14:45:54 archlinux kernel: pci 0000:0b:00.3: Adding to iommu group 9
mar 15 14:45:54 archlinux kernel: pci 0000:0b:00.4: Adding to iommu group 9
mar 15 14:45:54 archlinux kernel: pci 0000:0c:00.0: Adding to iommu group 9
mar 15 14:45:54 archlinux kernel: pci 0000:0d:00.0: Adding to iommu group 9
mar 15 14:45:54 archlinux kernel: AMD-Vi: Extended features (0x58f77ef22294ade, 0x0): PPR X2APIC NX GT IA GA PC GA_vAPIC
mar 15 14:45:54 archlinux kernel: AMD-Vi: Interrupt remapping enabled
mar 15 14:45:54 archlinux kernel: AMD-Vi: X2APIC enabled
mar 15 14:45:54 archlinux kernel: AMD-Vi: Virtual APIC enabled
mar 15 14:45:54 archlinux kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
mar 15 14:45:54 archlinux kernel: software IO TLB: mapped [mem 0x00000000cac1d000-0x00000000cec1d000] (64MB)
mar 15 14:45:54 archlinux kernel: LVT offset 0 assigned for vector 0x400
mar 15 14:45:54 archlinux kernel: perf: AMD IBS detected (0x000003ff)
mar 15 14:45:54 archlinux kernel: perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
mar 15 14:45:54 archlinux kernel: Initialise system trusted keyrings
mar 15 14:45:54 archlinux kernel: Key type blacklist registered
mar 15 14:45:54 archlinux kernel: workingset: timestamp_bits=36 max_order=22 bucket_order=0
mar 15 14:45:54 archlinux kernel: fuse: init (API version 7.45)
mar 15 14:45:54 archlinux kernel: integrity: Platform Keyring initialized
mar 15 14:45:54 archlinux kernel: integrity: Machine keyring initialized
mar 15 14:45:54 archlinux kernel: Initramfs unpacking failed: Decoding failed
mar 15 14:45:54 archlinux kernel: xor: automatically using best checksumming function   avx       
mar 15 14:45:54 archlinux kernel: Key type asymmetric registered
mar 15 14:45:54 archlinux kernel: Asymmetric key parser 'x509' registered
mar 15 14:45:54 archlinux kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
mar 15 14:45:54 archlinux kernel: io scheduler mq-deadline registered
mar 15 14:45:54 archlinux kernel: io scheduler kyber registered
mar 15 14:45:54 archlinux kernel: io scheduler bfq registered
mar 15 14:45:54 archlinux kernel: ledtrig-cpu: registered to indicate activity on CPUs
mar 15 14:45:54 archlinux kernel: pcieport 0000:00:01.1: AER: enabled with IRQ 28
mar 15 14:45:54 archlinux kernel: pcieport 0000:00:01.1: DPC: enabled with IRQ 28
mar 15 14:45:54 archlinux kernel: pcieport 0000:00:01.1: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 6, DL_ActiveErr+
mar 15 14:45:54 archlinux kernel: pcieport 0000:00:01.3: AER: enabled with IRQ 29
mar 15 14:45:54 archlinux kernel: pcieport 0000:00:01.3: DPC: enabled with IRQ 29
mar 15 14:45:54 archlinux kernel: pcieport 0000:00:01.3: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 6, DL_ActiveErr+
mar 15 14:45:54 archlinux kernel: pcieport 0000:00:03.1: AER: enabled with IRQ 30
mar 15 14:45:54 archlinux kernel: pcieport 0000:00:03.1: DPC: enabled with IRQ 30
mar 15 14:45:54 archlinux kernel: pcieport 0000:00:03.1: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 6, DL_ActiveErr+
mar 15 14:45:54 archlinux kernel: iommu ivhd0: AMD-Vi: Event logged [INVALID_DEVICE_REQUEST device=0000:00:00.0 pasid=0x00000 address=0xfffffffdf8000000 flags=0x0a00]
mar 15 14:45:54 archlinux kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
mar 15 14:45:54 archlinux kernel: ACPI: button: Power Button [PWRB]
mar 15 14:45:54 archlinux kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
mar 15 14:45:54 archlinux kernel: ACPI: button: Power Button [PWRF]
mar 15 14:45:54 archlinux kernel: Monitor-Mwait will be used to enter C-1 state
mar 15 14:45:54 archlinux kernel: Freeing initrd memory: 53468K
mar 15 14:45:54 archlinux kernel: Estimated ratio of average max frequency by base frequency (times 1024): 1110
mar 15 14:45:54 archlinux kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
mar 15 14:45:54 archlinux kernel: 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
mar 15 14:45:54 archlinux kernel: Non-volatile memory driver v1.3
mar 15 14:45:54 archlinux kernel: Linux agpgart interface v0.103
mar 15 14:45:54 archlinux kernel: tpm_crb MSFT0101:00: [Firmware Bug]: ACPI region does not cover the entire command/response buffer. [mem 0xdad61000-0xdad61fff flags 0x200] vs dad61000 4000
mar 15 14:45:54 archlinux kernel: tpm_crb MSFT0101:00: [Firmware Bug]: ACPI region does not cover the entire command/response buffer. [mem 0xdad65000-0xdad65fff flags 0x200] vs dad65000 4000
mar 15 14:45:54 archlinux kernel: tpm_crb MSFT0101:00: Disabling hwrng
mar 15 14:45:54 archlinux kernel: ACPI: bus type drm_connector registered
mar 15 14:45:54 archlinux kernel: ahci 0000:02:00.1: SSS flag set, parallel bus scan disabled
mar 15 14:45:54 archlinux kernel: ahci 0000:02:00.1: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
mar 15 14:45:54 archlinux kernel: ahci 0000:02:00.1: 4/8 ports implemented (port mask 0x33)
mar 15 14:45:54 archlinux kernel: ahci 0000:02:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst 
mar 15 14:45:54 archlinux kernel: scsi host0: ahci
mar 15 14:45:54 archlinux kernel: scsi host1: ahci
mar 15 14:45:54 archlinux kernel: scsi host2: ahci
mar 15 14:45:54 archlinux kernel: scsi host3: ahci
mar 15 14:45:54 archlinux kernel: scsi host4: ahci
mar 15 14:45:54 archlinux kernel: scsi host5: ahci
mar 15 14:45:54 archlinux kernel: scsi host6: ahci
mar 15 14:45:54 archlinux kernel: scsi host7: ahci
mar 15 14:45:54 archlinux kernel: ata1: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80100 irq 43 lpm-pol 3
mar 15 14:45:54 archlinux kernel: ata2: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80180 irq 43 lpm-pol 3
mar 15 14:45:54 archlinux kernel: ata3: DUMMY
mar 15 14:45:54 archlinux kernel: ata4: DUMMY
mar 15 14:45:54 archlinux kernel: ata5: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80300 irq 43 lpm-pol 3
mar 15 14:45:54 archlinux kernel: ata6: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80380 irq 43 lpm-pol 3
mar 15 14:45:54 archlinux kernel: ata7: DUMMY
mar 15 14:45:54 archlinux kernel: ata8: DUMMY
mar 15 14:45:54 archlinux kernel: ahci 0000:0c:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
mar 15 14:45:54 archlinux kernel: ahci 0000:0c:00.0: 1/1 ports implemented (port mask 0x1)
mar 15 14:45:54 archlinux kernel: ahci 0000:0c:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part 
mar 15 14:45:54 archlinux kernel: scsi host8: ahci
mar 15 14:45:54 archlinux kernel: ata9: SATA max UDMA/133 abar m2048@0xfcd00000 port 0xfcd00100 irq 45 lpm-pol 3
mar 15 14:45:54 archlinux kernel: ahci 0000:0d:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
mar 15 14:45:54 archlinux kernel: ahci 0000:0d:00.0: 1/1 ports implemented (port mask 0x1)
mar 15 14:45:54 archlinux kernel: ahci 0000:0d:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part 
mar 15 14:45:54 archlinux kernel: scsi host9: ahci
mar 15 14:45:54 archlinux kernel: ata10: SATA max UDMA/133 abar m2048@0xfcc00000 port 0xfcc00100 irq 47 lpm-pol 3
mar 15 14:45:54 archlinux kernel: xhci_hcd 0000:02:00.0: xHCI Host Controller
mar 15 14:45:54 archlinux kernel: xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 1
mar 15 14:45:54 archlinux kernel: xhci_hcd 0000:02:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000000000010
mar 15 14:45:54 archlinux kernel: xhci_hcd 0000:02:00.0: xHCI Host Controller
mar 15 14:45:54 archlinux kernel: xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 2
mar 15 14:45:54 archlinux kernel: xhci_hcd 0000:02:00.0: Host supports USB 3.1 Enhanced SuperSpeed
mar 15 14:45:54 archlinux kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.19
mar 15 14:45:54 archlinux kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
mar 15 14:45:54 archlinux kernel: usb usb1: Product: xHCI Host Controller
mar 15 14:45:54 archlinux kernel: usb usb1: Manufacturer: Linux 6.19.6-arch1-1 xhci-hcd
mar 15 14:45:54 archlinux kernel: usb usb1: SerialNumber: 0000:02:00.0
mar 15 14:45:54 archlinux kernel: hub 1-0:1.0: USB hub found
mar 15 14:45:54 archlinux kernel: hub 1-0:1.0: 10 ports detected
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT5._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT5._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT6._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT6._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT7._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT7._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT8._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT8._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT9._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT9._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO10._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO10._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO11._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO11._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO12._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO12._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO13._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO13._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO14._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO14._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
mar 15 14:45:54 archlinux kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.19
mar 15 14:45:54 archlinux kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
mar 15 14:45:54 archlinux kernel: usb usb2: Product: xHCI Host Controller
mar 15 14:45:54 archlinux kernel: usb usb2: Manufacturer: Linux 6.19.6-arch1-1 xhci-hcd
mar 15 14:45:54 archlinux kernel: usb usb2: SerialNumber: 0000:02:00.0
mar 15 14:45:54 archlinux kernel: hub 2-0:1.0: USB hub found
mar 15 14:45:54 archlinux kernel: hub 2-0:1.0: 4 ports detected
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT1._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT1._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT2._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT2._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT3._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT3._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT4._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT4._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: xhci_hcd 0000:0b:00.3: xHCI Host Controller
mar 15 14:45:54 archlinux kernel: xhci_hcd 0000:0b:00.3: new USB bus registered, assigned bus number 3
mar 15 14:45:54 archlinux kernel: xhci_hcd 0000:0b:00.3: hcc params 0x0278ffe5 hci version 0x110 quirks 0x0000000000000010
mar 15 14:45:54 archlinux kernel: xhci_hcd 0000:0b:00.3: xHCI Host Controller
mar 15 14:45:54 archlinux kernel: xhci_hcd 0000:0b:00.3: new USB bus registered, assigned bus number 4
mar 15 14:45:54 archlinux kernel: xhci_hcd 0000:0b:00.3: Host supports USB 3.1 Enhanced SuperSpeed
mar 15 14:45:54 archlinux kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.19
mar 15 14:45:54 archlinux kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
mar 15 14:45:54 archlinux kernel: usb usb3: Product: xHCI Host Controller
mar 15 14:45:54 archlinux kernel: usb usb3: Manufacturer: Linux 6.19.6-arch1-1 xhci-hcd
mar 15 14:45:54 archlinux kernel: usb usb3: SerialNumber: 0000:0b:00.3
mar 15 14:45:54 archlinux kernel: hub 3-0:1.0: USB hub found
mar 15 14:45:54 archlinux kernel: hub 3-0:1.0: 4 ports detected
mar 15 14:45:54 archlinux kernel: usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
mar 15 14:45:54 archlinux kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.19
mar 15 14:45:54 archlinux kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
mar 15 14:45:54 archlinux kernel: usb usb4: Product: xHCI Host Controller
mar 15 14:45:54 archlinux kernel: usb usb4: Manufacturer: Linux 6.19.6-arch1-1 xhci-hcd
mar 15 14:45:54 archlinux kernel: usb usb4: SerialNumber: 0000:0b:00.3
mar 15 14:45:54 archlinux kernel: hub 4-0:1.0: USB hub found
mar 15 14:45:54 archlinux kernel: hub 4-0:1.0: 4 ports detected
mar 15 14:45:54 archlinux kernel: usbcore: registered new interface driver usbserial_generic
mar 15 14:45:54 archlinux kernel: usbserial: USB Serial support registered for generic
mar 15 14:45:54 archlinux kernel: i8042: PNP: No PS/2 controller found.
mar 15 14:45:54 archlinux kernel: rtc_cmos 00:02: RTC can wake from S4
mar 15 14:45:54 archlinux kernel: rtc_cmos 00:02: registered as rtc0
mar 15 14:45:54 archlinux kernel: rtc_cmos 00:02: setting system clock to 2026-03-15T13:45:52 UTC (1773582352)
mar 15 14:45:54 archlinux kernel: rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
mar 15 14:45:54 archlinux kernel: amd_pstate: min_freq(0) or max_freq(0) or nominal_freq(0) value is incorrect
mar 15 14:45:54 archlinux kernel: amd_pstate: Failed to initialize CPU 0: -22
mar 15 14:45:54 archlinux kernel: amd_pstate: min_freq(0) or max_freq(0) or nominal_freq(0) value is incorrect
mar 15 14:45:54 archlinux kernel: amd_pstate: Failed to initialize CPU 1: -22
mar 15 14:45:54 archlinux kernel: amd_pstate: min_freq(0) or max_freq(0) or nominal_freq(0) value is incorrect
mar 15 14:45:54 archlinux kernel: amd_pstate: Failed to initialize CPU 2: -22
mar 15 14:45:54 archlinux kernel: amd_pstate: min_freq(0) or max_freq(0) or nominal_freq(0) value is incorrect
mar 15 14:45:54 archlinux kernel: amd_pstate: Failed to initialize CPU 3: -22
mar 15 14:45:54 archlinux kernel: amd_pstate: min_freq(0) or max_freq(0) or nominal_freq(0) value is incorrect
mar 15 14:45:54 archlinux kernel: amd_pstate: Failed to initialize CPU 4: -22
mar 15 14:45:54 archlinux kernel: amd_pstate: min_freq(0) or max_freq(0) or nominal_freq(0) value is incorrect
mar 15 14:45:54 archlinux kernel: amd_pstate: Failed to initialize CPU 5: -22
mar 15 14:45:54 archlinux kernel: amd_pstate: min_freq(0) or max_freq(0) or nominal_freq(0) value is incorrect
mar 15 14:45:54 archlinux kernel: amd_pstate: Failed to initialize CPU 6: -22
mar 15 14:45:54 archlinux kernel: amd_pstate: min_freq(0) or max_freq(0) or nominal_freq(0) value is incorrect
mar 15 14:45:54 archlinux kernel: amd_pstate: Failed to initialize CPU 7: -22
mar 15 14:45:54 archlinux kernel: amd_pstate: min_freq(0) or max_freq(0) or nominal_freq(0) value is incorrect
mar 15 14:45:54 archlinux kernel: amd_pstate: Failed to initialize CPU 8: -22
mar 15 14:45:54 archlinux kernel: amd_pstate: min_freq(0) or max_freq(0) or nominal_freq(0) value is incorrect
mar 15 14:45:54 archlinux kernel: amd_pstate: Failed to initialize CPU 9: -22
mar 15 14:45:54 archlinux kernel: amd_pstate: min_freq(0) or max_freq(0) or nominal_freq(0) value is incorrect
mar 15 14:45:54 archlinux kernel: amd_pstate: Failed to initialize CPU 10: -22
mar 15 14:45:54 archlinux kernel: amd_pstate: min_freq(0) or max_freq(0) or nominal_freq(0) value is incorrect
mar 15 14:45:54 archlinux kernel: amd_pstate: Failed to initialize CPU 11: -22
mar 15 14:45:54 archlinux kernel: amd_pstate: failed to register with return -19
mar 15 14:45:54 archlinux kernel: simple-framebuffer simple-framebuffer.0: [drm] Registered 1 planes with drm panic
mar 15 14:45:54 archlinux kernel: [drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0
mar 15 14:45:54 archlinux kernel: Console: switching to colour frame buffer device 215x45
mar 15 14:45:54 archlinux kernel: simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
mar 15 14:45:54 archlinux kernel: hid: raw HID events driver (C) Jiri Kosina
mar 15 14:45:54 archlinux kernel: usbcore: registered new interface driver usbhid
mar 15 14:45:54 archlinux kernel: usbhid: USB HID core driver
mar 15 14:45:54 archlinux kernel: rust_binder: Loaded Rust Binder.
mar 15 14:45:54 archlinux kernel: drop_monitor: Initializing network drop monitor service
mar 15 14:45:54 archlinux kernel: NET: Registered PF_INET6 protocol family
mar 15 14:45:54 archlinux kernel: Segment Routing with IPv6
mar 15 14:45:54 archlinux kernel: RPL Segment Routing with IPv6
mar 15 14:45:54 archlinux kernel: In-situ OAM (IOAM) with IPv6
mar 15 14:45:54 archlinux kernel: NET: Registered PF_PACKET protocol family
mar 15 14:45:54 archlinux kernel: x86/amd: Previous system reset reason [0x00080800]: software wrote 0x6 to reset control register 0xCF9
mar 15 14:45:54 archlinux kernel: microcode: Current revision: 0x08701034
mar 15 14:45:54 archlinux kernel: microcode: Updated early from: 0x08701013
mar 15 14:45:54 archlinux kernel: resctrl: L3 allocation detected
mar 15 14:45:54 archlinux kernel: resctrl: MB allocation detected
mar 15 14:45:54 archlinux kernel: resctrl: L3 monitoring detected
mar 15 14:45:54 archlinux kernel: IPI shorthand broadcast: enabled
mar 15 14:45:54 archlinux kernel: sched_clock: Marking stable (507135582, -6995910)->(627887777, -127748105)
mar 15 14:45:54 archlinux kernel: registered taskstats version 1
mar 15 14:45:54 archlinux kernel: Loading compiled-in X.509 certificates
mar 15 14:45:54 archlinux kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 301450d4a997a913c46cd9e6d6339afb59970251'
mar 15 14:45:54 archlinux kernel: Demotion targets for Node 0: null
mar 15 14:45:54 archlinux kernel: Key type .fscrypt registered
mar 15 14:45:54 archlinux kernel: Key type fscrypt-provisioning registered
mar 15 14:45:54 archlinux kernel: Btrfs loaded, zoned=yes, fsverity=yes
mar 15 14:45:54 archlinux kernel: Key type big_key registered
mar 15 14:45:54 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
mar 15 14:45:54 archlinux kernel: integrity: Loaded X.509 cert 'Database Key: 00f3517973fb01cf7fa66f98e57dfa4fc8'
mar 15 14:45:54 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
mar 15 14:45:54 archlinux kernel: integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
mar 15 14:45:54 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
mar 15 14:45:54 archlinux kernel: integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
mar 15 14:45:54 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
mar 15 14:45:54 archlinux kernel: integrity: Loaded X.509 cert 'Microsoft Option ROM UEFI CA 2023: 514fbf937fa46fb57bf07af8bed84b3b864b1711'
mar 15 14:45:54 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
mar 15 14:45:54 archlinux kernel: integrity: Loaded X.509 cert 'Microsoft UEFI CA 2023: 81aa6b3244c935bce0d6628af39827421e32497d'
mar 15 14:45:54 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
mar 15 14:45:54 archlinux kernel: integrity: Loaded X.509 cert 'Microsoft Corporation: Windows UEFI CA 2023: aefc5fbbbe055d8f8daa585473499417ab5a5272'
mar 15 14:45:54 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
mar 15 14:45:54 archlinux kernel: integrity: Loaded X.509 cert 'ASUSTeK MotherBoard SW Key Certificate: da83b990422ebc8c441f8d8b039a65a2'
mar 15 14:45:54 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
mar 15 14:45:54 archlinux kernel: integrity: Loaded X.509 cert 'ASUSTeK Notebook SW Key Certificate: b8e581e4df77a5bb4282d5ccfc00c071'
mar 15 14:45:54 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
mar 15 14:45:54 archlinux kernel: integrity: Loaded X.509 cert 'Canonical Ltd. Master Certificate Authority: ad91990bc22ab1f517048c23b6655a268e345a63'
mar 15 14:45:54 archlinux kernel: PM:   Magic number: 2:722:786
mar 15 14:45:54 archlinux kernel: RAS: Correctable Errors collector initialized.
mar 15 14:45:54 archlinux kernel: ata10: SATA link down (SStatus 0 SControl 300)
mar 15 14:45:54 archlinux kernel: ata9: SATA link down (SStatus 0 SControl 300)
mar 15 14:45:54 archlinux kernel: usb 1-6: new full-speed USB device number 2 using xhci_hcd
mar 15 14:45:54 archlinux kernel: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
mar 15 14:45:54 archlinux kernel: ata1.00: ATA-9: ST1000DX001-1CM162, CC43, max UDMA/133
mar 15 14:45:54 archlinux kernel: ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 32), AA
mar 15 14:45:54 archlinux kernel: ata1.00: Features: DIPM
mar 15 14:45:54 archlinux kernel: ata1.00: configured for UDMA/133
mar 15 14:45:54 archlinux kernel: scsi 0:0:0:0: Direct-Access     ATA      ST1000DX001-1CM1 CC43 PQ: 0 ANSI: 5
mar 15 14:45:54 archlinux kernel: sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
mar 15 14:45:54 archlinux kernel: sd 0:0:0:0: [sda] 4096-byte physical blocks
mar 15 14:45:54 archlinux kernel: sd 0:0:0:0: [sda] Write Protect is off
mar 15 14:45:54 archlinux kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
mar 15 14:45:54 archlinux kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
mar 15 14:45:54 archlinux kernel: sd 0:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
mar 15 14:45:54 archlinux kernel:  sda: sda1
mar 15 14:45:54 archlinux kernel: sd 0:0:0:0: [sda] Attached SCSI disk
mar 15 14:45:54 archlinux kernel: usb 1-6: New USB device found, idVendor=046d, idProduct=c548, bcdDevice= 5.03
mar 15 14:45:54 archlinux kernel: usb 1-6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
mar 15 14:45:54 archlinux kernel: usb 1-6: Product: USB Receiver
mar 15 14:45:54 archlinux kernel: usb 1-6: Manufacturer: Logitech
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO10._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO10._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO10._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: input: Logitech USB Receiver as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-6/1-6:1.0/0003:046D:C548.0001/input/input2
mar 15 14:45:54 archlinux kernel: hid-generic 0003:046D:C548.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:02:00.0-6/input0
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO10._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO10._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-6/1-6:1.1/0003:046D:C548.0002/input/input3
mar 15 14:45:54 archlinux kernel: input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-6/1-6:1.1/0003:046D:C548.0002/input/input4
mar 15 14:45:54 archlinux kernel: input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-6/1-6:1.1/0003:046D:C548.0002/input/input5
mar 15 14:45:54 archlinux kernel: input: Logitech USB Receiver as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-6/1-6:1.1/0003:046D:C548.0002/input/input6
mar 15 14:45:54 archlinux kernel: hid-generic 0003:046D:C548.0002: input,hiddev96,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:02:00.0-6/input1
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO10._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO10._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: hid-generic 0003:046D:C548.0003: hiddev97,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:02:00.0-6/input2
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO10._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO10._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: input: Logitech USB Receiver as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-6/1-6:1.3/0003:046D:C548.0004/input/input7
mar 15 14:45:54 archlinux kernel: hid-generic 0003:046D:C548.0004: input,hidraw3: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:02:00.0-6/input3
mar 15 14:45:54 archlinux kernel: tsc: Refined TSC clocksource calibration: 3599.997 MHz
mar 15 14:45:54 archlinux kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x33e4505a81e, max_idle_ns: 440795320847 ns
mar 15 14:45:54 archlinux kernel: clocksource: Switched to clocksource tsc
mar 15 14:45:54 archlinux kernel: usb 1-8: new full-speed USB device number 3 using xhci_hcd
mar 15 14:45:54 archlinux kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
mar 15 14:45:54 archlinux kernel: ata2.00: ATAPI: DRW-24D5MT, 1.00, max UDMA/133
mar 15 14:45:54 archlinux kernel: ata2.00: configured for UDMA/133
mar 15 14:45:54 archlinux kernel: scsi 1:0:0:0: CD-ROM            ASUS     DRW-24D5MT       1.00 PQ: 0 ANSI: 5
mar 15 14:45:54 archlinux kernel: usb 1-8: New USB device found, idVendor=0b05, idProduct=190e, bcdDevice= 2.00
mar 15 14:45:54 archlinux kernel: usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=3
mar 15 14:45:54 archlinux kernel: usb 1-8: Product: ASUS USB-BT500
mar 15 14:45:54 archlinux kernel: usb 1-8: Manufacturer: Realtek
mar 15 14:45:54 archlinux kernel: usb 1-8: SerialNumber: 00E04C239987
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO12._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO12._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO12._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 14:45:54 archlinux kernel: ata5: SATA link down (SStatus 0 SControl 330)
mar 15 14:45:54 archlinux kernel: ata6: SATA link down (SStatus 0 SControl 330)
mar 15 14:45:54 archlinux kernel: clk: Disabling unused clocks
mar 15 14:45:54 archlinux kernel: PM: genpd: Disabling unused power domains
mar 15 14:45:54 archlinux kernel: Freeing unused decrypted memory: 2028K
mar 15 14:45:54 archlinux kernel: Freeing unused kernel image (initmem) memory: 4776K
mar 15 14:45:54 archlinux kernel: Write protecting the kernel read-only data: 40960k
mar 15 14:45:54 archlinux kernel: Freeing unused kernel image (text/rodata gap) memory: 1960K
mar 15 14:45:54 archlinux kernel: Freeing unused kernel image (rodata/data gap) memory: 1684K
mar 15 14:45:54 archlinux kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
mar 15 14:45:54 archlinux kernel: rodata_test: all tests were successful
mar 15 14:45:54 archlinux kernel: Run /init as init process
mar 15 14:45:54 archlinux kernel:   with arguments:
mar 15 14:45:54 archlinux kernel:     /init
mar 15 14:45:54 archlinux kernel:   with environment:
mar 15 14:45:54 archlinux kernel:     HOME=/
mar 15 14:45:54 archlinux kernel:     TERM=linux
mar 15 14:45:54 archlinux systemd[1]: Successfully made /usr/ read-only.
mar 15 14:45:54 archlinux systemd[1]: systemd 259.5-1-arch running in system mode (+PAM +AUDIT -SELINUX +APPARMOR -IMA +IPE +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF +XKBCOMMON +UTMP -SYSVINIT +LIBARCHIVE)
mar 15 14:45:54 archlinux systemd[1]: Detected architecture x86-64.
mar 15 14:45:54 archlinux systemd[1]: Running in initrd.
mar 15 14:45:54 archlinux systemd[1]: Initializing machine ID from random generator.
mar 15 14:45:54 archlinux systemd[1]: Queued start job for default target Initrd Default Target.
mar 15 14:45:54 archlinux systemd[1]: Created slice Slice /system/systemd-cryptsetup.
mar 15 14:45:54 archlinux systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
mar 15 14:45:54 archlinux systemd[1]: Expecting device /dev/disk/by-uuid/052323e9-525e-418e-ae58-09a080bd517b...
mar 15 14:45:54 archlinux systemd[1]: Expecting device /dev/disk/by-uuid/71de9387-74cc-4cd6-b4e3-190964bd0e41...
mar 15 14:45:54 archlinux systemd[1]: Expecting device /dev/mapper/root...
mar 15 14:45:54 archlinux systemd[1]: Expecting device /dev/mapper/swap...
mar 15 14:45:54 archlinux systemd[1]: Reached target Path Units.
mar 15 14:45:54 archlinux systemd[1]: Reached target Slice Units.
mar 15 14:45:54 archlinux systemd[1]: Reached target Swaps.
mar 15 14:45:54 archlinux systemd[1]: Reached target Timer Units.
mar 15 14:45:54 archlinux systemd[1]: Listening on Journal Socket (/dev/log).
mar 15 14:45:54 archlinux systemd[1]: Listening on Journal Sockets.
mar 15 14:45:54 archlinux systemd[1]: Listening on udev Control Socket.
mar 15 14:45:54 archlinux systemd[1]: Listening on udev Kernel Socket.
mar 15 14:45:54 archlinux systemd[1]: Reached target Socket Units.
mar 15 14:45:54 archlinux systemd[1]: Starting Create List of Static Device Nodes...
mar 15 14:45:54 archlinux systemd[1]: Early Battery Level Check skipped, unmet condition check ConditionDirectoryNotEmpty=/sys/class/power_supply
mar 15 14:45:54 archlinux systemd[1]: Started Display Boot-Time Emergency Messages In Full Screen.
mar 15 14:45:54 archlinux systemd[1]: Starting Journal Service...
mar 15 14:45:54 archlinux systemd[1]: Starting Load Kernel Modules...
mar 15 14:45:54 archlinux systemd[1]: Starting TPM PCR Barrier (initrd)...
mar 15 14:45:54 archlinux systemd[1]: Starting Create Static Device Nodes in /dev...
mar 15 14:45:54 archlinux systemd[1]: Starting Coldplug All udev Devices...
mar 15 14:45:54 archlinux systemd-journald[240]: Collecting audit messages is disabled.
mar 15 14:45:54 archlinux systemd[1]: Finished Create List of Static Device Nodes.
mar 15 14:45:54 archlinux systemd[1]: Finished Load Kernel Modules.
mar 15 14:45:54 archlinux systemd[1]: Finished Create Static Device Nodes in /dev.
mar 15 14:45:54 archlinux systemd[1]: Starting Rule-based Manager for Device Events and Files...
mar 15 14:45:54 archlinux systemd[1]: Finished TPM PCR Barrier (initrd).
mar 15 14:45:54 archlinux systemd[1]: Started Rule-based Manager for Device Events and Files.
mar 15 14:45:54 archlinux systemd-journald[240]: Journal started
mar 15 14:45:54 archlinux systemd-journald[240]: Runtime Journal (/run/log/journal/15fadbb9fbea48259669e125bedd4b73) is 8M, max 318.1M, 310.1M free.
mar 15 14:45:54 archlinux systemd-modules-load[242]: Using 3 probe threads
mar 15 14:45:54 archlinux systemd-modules-load[242]: Failed to find module 'keyboard'
mar 15 14:45:54 archlinux systemd[1]: Started Journal Service.
mar 15 14:45:54 archlinux systemd-modules-load[242]: Module 'xhci_hcd' is built in
mar 15 14:45:54 archlinux systemd-modules-load[242]: Module 'usbhid' is built in
mar 15 14:45:54 archlinux systemd-pcrextend[245]: Extended PCR index 11 with 'enter-initrd' (banks sha1, sha256).
mar 15 14:45:54 archlinux systemd-udevd[261]: Using default interface naming scheme 'v259'.
mar 15 14:45:54 archlinux systemd[1]: Finished Coldplug All udev Devices.
mar 15 14:45:54 archlinux kernel: ccp 0000:0b:00.1: enabling device (0000 -> 0002)
mar 15 14:45:54 archlinux kernel: ccp 0000:0b:00.1: ccp: unable to access the device: you might be running a broken BIOS.
mar 15 14:45:54 archlinux kernel: ccp 0000:0b:00.1: psp: unable to access the device: you might be running a broken BIOS.
mar 15 14:45:54 archlinux kernel: input: Logitech USB Receiver as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-6/1-6:1.3/0003:046D:C548.0004/input/input8
mar 15 14:45:54 archlinux kernel: hid-multitouch 0003:046D:C548.0004: input,hidraw3: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:02:00.0-6/input3
mar 15 14:45:54 archlinux kernel: Key type psk registered
mar 15 14:45:54 archlinux systemd[1]: Starting Virtual Console Setup...
mar 15 14:45:54 archlinux kernel: sr 1:0:0:0: [sr0] scsi3-mmc drive: 48x/12x writer dvd-ram cd/rw xa/form2 cdda tray
mar 15 14:45:54 archlinux kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
mar 15 14:45:54 archlinux kernel: nvme nvme0: pci function 0000:01:00.0
mar 15 14:45:54 archlinux kernel: nvme nvme0: D3 entry latency set to 10 seconds
mar 15 14:45:54 archlinux kernel: nvme nvme0: 12/0/0 default/read/poll queues
mar 15 14:45:54 archlinux kernel:  nvme0n1: p1 p2 p3 p4
mar 15 14:45:54 archlinux systemd[1]: Finished Virtual Console Setup.
mar 15 14:45:54 archlinux kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
mar 15 14:45:54 archlinux systemd[1]: Found device KINGSTON SKC3000S1024G Linux\x20swap.
mar 15 14:45:54 archlinux systemd[1]: Found device KINGSTON SKC3000S1024G Linux\x20x86-64\x20root\x20\x28\x2f\x29.
mar 15 14:45:54 archlinux systemd[1]: Starting Cryptography Setup for root...
mar 15 14:45:54 archlinux systemd[1]: Starting Cryptography Setup for swap...
mar 15 14:45:54 archlinux kernel: device-mapper: uevent: version 1.0.3
mar 15 14:45:54 archlinux kernel: device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists.linux.dev
mar 15 14:45:58 archlinux kernel: Key type trusted registered
mar 15 14:45:58 archlinux kernel: amdgpu: Virtual CRAT table created for CPU
mar 15 14:45:58 archlinux kernel: amdgpu: Topology: Add CPU node
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: initializing kernel modesetting (POLARIS10 0x1002:0x67DF 0x1043:0x0525 0xE7).
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: register mmio base: 0xFCE00000
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: register mmio size: 262144
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: detected ip block number 0 <common_v1_0_0> (vi_common)
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: detected ip block number 1 <gmc_v8_1_0> (gmc_v8_0)
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: detected ip block number 2 <ih_v3_0_0> (tonga_ih)
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: detected ip block number 3 <gfx_v8_0_0> (gfx_v8_0)
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: detected ip block number 4 <sdma_v3_1_0> (sdma_v3_0)
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: detected ip block number 5 <smu_v1_0_0> (powerplay)
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: detected ip block number 6 <dce_v1_0_0> (dm)
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: detected ip block number 7 <uvd_v6_3_0> (uvd_v6_0)
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: detected ip block number 8 <vce_v3_4_0> (vce_v3_0)
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: No more image in the PCI ROM
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: Fetched VBIOS from ROM BAR
mar 15 14:45:58 archlinux kernel: amdgpu: ATOM BIOS: 115-D009PI2-101
mar 15 14:45:58 archlinux kernel: [drm] UVD is enabled in VM mode
mar 15 14:45:58 archlinux kernel: [drm] UVD ENC is enabled in VM mode
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: Found VCE firmware Version: 53.26 Binary ID: 3
mar 15 14:45:58 archlinux kernel: [drm] VCE enabled in VM mode
mar 15 14:45:58 archlinux kernel: Key type encrypted registered
mar 15 14:45:58 archlinux systemd[1]: Found device /dev/mapper/swap.
mar 15 14:45:58 archlinux systemd[1]: Finished Cryptography Setup for swap.
mar 15 14:45:58 archlinux kernel: Console: switching to colour dummy device 80x25
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: vgaarb: deactivate vga console
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: Trusted Memory Zone (TMZ) feature not supported
mar 15 14:45:58 archlinux systemd[1]: Finished Cryptography Setup for root.
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: vm size is 64 GB, 2 levels, block size is 10-bit, fragment size is 9-bit
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: VRAM: 4096M 0x000000F400000000 - 0x000000F4FFFFFFFF (4096M used)
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: GART: 256M 0x000000FF00000000 - 0x000000FF0FFFFFFF
mar 15 14:45:58 archlinux kernel: [drm] Detected VRAM RAM=4096M, BAR=256M
mar 15 14:45:58 archlinux kernel: [drm] RAM width 256bits GDDR5
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: amdgpu: 4096M of VRAM memory ready
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: amdgpu: 7953M of GTT memory ready.
mar 15 14:45:58 archlinux kernel: [drm] GART: num cpu pages 65536, num gpu pages 65536
mar 15 14:45:58 archlinux kernel: [drm] PCIE GART of 256M enabled (table at 0x000000F401300000).
mar 15 14:45:58 archlinux kernel: [drm] Chained IB support enabled!
mar 15 14:45:58 archlinux kernel: amdgpu: hwmgr_sw_init smu backed is polaris10_smu
mar 15 14:45:58 archlinux systemd[1]: Found device /dev/mapper/root.
mar 15 14:45:58 archlinux systemd[1]: Reached target Local Encrypted Volumes.
mar 15 14:45:58 archlinux systemd[1]: Reached target Initrd Root Device.
mar 15 14:45:58 archlinux kernel: [drm] Found UVD firmware Version: 1.130 Family ID: 16
mar 15 14:45:58 archlinux systemd[1]: Starting Resume from hibernation...
mar 15 14:45:58 archlinux systemd-hibernate-resume[366]: Unable to resume from device '/dev/mapper/swap' (253:0) offset 0, continuing boot process.
mar 15 14:45:58 archlinux kernel: PM: Image not found (code -22)
mar 15 14:45:58 archlinux systemd[1]: systemd-hibernate-resume.service: Deactivated successfully.
mar 15 14:45:58 archlinux systemd[1]: Finished Resume from hibernation.
mar 15 14:45:58 archlinux systemd[1]: Reached target Preparation for Local File Systems.
mar 15 14:45:58 archlinux systemd[1]: Reached target Local File Systems.
mar 15 14:45:58 archlinux systemd[1]: Starting File System Check on /dev/mapper/root...
mar 15 14:45:58 archlinux systemd[1]: Starting Create System Files and Directories...
mar 15 14:45:58 archlinux systemd[1]: Finished File System Check on /dev/mapper/root.
mar 15 14:45:58 archlinux systemd[1]: Finished Create System Files and Directories.
mar 15 14:45:58 archlinux systemd[1]: Reached target System Initialization.
mar 15 14:45:58 archlinux systemd[1]: Reached target Basic System.
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: [drm] Display Core v3.2.359 initialized on DCE 11.2
mar 15 14:45:58 archlinux kernel: [drm] UVD and UVD ENC initialized successfully.
mar 15 14:45:58 archlinux kernel: [drm] VCE initialized successfully.
mar 15 14:45:58 archlinux kernel: kfd kfd: amdgpu: Allocated 3969056 bytes on gart
mar 15 14:45:58 archlinux kernel: kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
mar 15 14:45:58 archlinux kernel: amdgpu: Virtual CRAT table created for GPU
mar 15 14:45:58 archlinux kernel: amdgpu: Topology: Add dGPU node [0x67df:0x1002]
mar 15 14:45:58 archlinux kernel: kfd kfd: amdgpu: added device 1002:67df
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: SE 4, SH per SE 1, CU per SH 9, active_cu_number 36
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: Using BACO for runtime pm
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: [drm] Registered 6 planes with drm panic
mar 15 14:45:58 archlinux kernel: [drm] Initialized amdgpu 3.64.0 for 0000:09:00.0 on minor 1
mar 15 14:45:58 archlinux kernel: fbcon: amdgpudrmfb (fb0) is primary device
mar 15 14:45:58 archlinux systemd[1]: systemd-vconsole-setup.service: Deactivated successfully.
mar 15 14:45:58 archlinux systemd[1]: Stopped Virtual Console Setup.
mar 15 14:45:58 archlinux kernel: Console: switching to colour frame buffer device 215x45
mar 15 14:45:58 archlinux kernel: amdgpu 0000:09:00.0: [drm] fb0: amdgpudrmfb frame buffer device
mar 15 14:45:58 archlinux systemd[1]: Stopping Virtual Console Setup...
mar 15 14:45:58 archlinux systemd[1]: Starting Virtual Console Setup...
mar 15 14:45:58 archlinux systemd[1]: Finished Virtual Console Setup.
mar 15 14:45:59 archlinux systemd[1]: Mounting /sysroot...
mar 15 14:45:59 archlinux kernel: BTRFS: device label root devid 1 transid 94653 /dev/mapper/root (253:1) scanned by mount (421)
mar 15 14:45:59 archlinux kernel: BTRFS info (device dm-1): first mount of filesystem 4a7a5eb7-fa78-4b85-b393-ba1b1fbd0d25
mar 15 14:45:59 archlinux kernel: BTRFS info (device dm-1): using crc32c (crc32c-lib) checksum algorithm
mar 15 14:45:59 archlinux kernel: BTRFS info (device dm-1): enabling ssd optimizations
mar 15 14:45:59 archlinux kernel: BTRFS info (device dm-1): turning on async discard
mar 15 14:45:59 archlinux kernel: BTRFS info (device dm-1): enabling free space tree
mar 15 14:45:59 archlinux systemd[1]: Mounted /sysroot.
mar 15 14:45:59 archlinux systemd[1]: Reached target Initrd Root File System.
mar 15 14:45:59 archlinux systemd[1]: Starting Mountpoints Configured in the Real Root...
mar 15 14:45:59 archlinux systemd[1]: initrd-parse-etc.service: Deactivated successfully.
mar 15 14:45:59 archlinux systemd[1]: Finished Mountpoints Configured in the Real Root.
mar 15 14:45:59 archlinux systemd[1]: initrd-parse-etc.service: Triggering OnSuccess= dependencies.
mar 15 14:45:59 archlinux systemd[1]: Reached target Initrd File Systems.
mar 15 14:45:59 archlinux systemd[1]: Reached target Initrd Default Target.
mar 15 14:45:59 archlinux systemd[1]: Starting Cleaning Up and Shutting Down Daemons...
mar 15 14:45:59 archlinux systemd[1]: Stopped target Initrd Default Target.
mar 15 14:45:59 archlinux systemd[1]: Stopped target Basic System.
mar 15 14:45:59 archlinux systemd[1]: Stopped target Initrd Root Device.
mar 15 14:45:59 archlinux systemd[1]: Stopped target Path Units.
mar 15 14:45:59 archlinux systemd[1]: Stopped target Slice Units.
mar 15 14:45:59 archlinux systemd[1]: Stopped target Socket Units.
mar 15 14:45:59 archlinux systemd[1]: Stopped target System Initialization.
mar 15 14:45:59 archlinux systemd[1]: Stopped target Local Encrypted Volumes.
mar 15 14:45:59 archlinux systemd[1]: systemd-ask-password-console.path: Deactivated successfully.
mar 15 14:45:59 archlinux systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
mar 15 14:45:59 archlinux systemd[1]: Stopped target Swaps.
mar 15 14:45:59 archlinux systemd[1]: Stopped target Timer Units.
mar 15 14:45:59 archlinux systemd[1]: kmod-static-nodes.service: Deactivated successfully.
mar 15 14:45:59 archlinux systemd[1]: Stopped Create List of Static Device Nodes.
mar 15 14:45:59 archlinux systemd[1]: Stopping Display Boot-Time Emergency Messages In Full Screen...
mar 15 14:45:59 archlinux systemd[1]: systemd-modules-load.service: Deactivated successfully.
mar 15 14:45:59 archlinux systemd[1]: Stopped Load Kernel Modules.
mar 15 14:45:59 archlinux systemd[1]: Stopping TPM PCR Barrier (initrd)...
mar 15 14:45:59 archlinux systemd[1]: systemd-tmpfiles-setup.service: Deactivated successfully.
mar 15 14:45:59 archlinux systemd[1]: Stopped Create System Files and Directories.
mar 15 14:45:59 archlinux systemd[1]: Stopped target Local File Systems.
mar 15 14:45:59 archlinux systemd[1]: Stopped target Preparation for Local File Systems.
mar 15 14:45:59 archlinux systemd[1]: systemd-udev-trigger.service: Deactivated successfully.
mar 15 14:45:59 archlinux systemd[1]: Stopped Coldplug All udev Devices.
mar 15 14:45:59 archlinux systemd[1]: Stopping Rule-based Manager for Device Events and Files...
mar 15 14:45:59 archlinux systemd[1]: systemd-vconsole-setup.service: Deactivated successfully.
mar 15 14:45:59 archlinux systemd[1]: Stopped Virtual Console Setup.
mar 15 14:45:59 archlinux systemd[1]: systemd-bsod.service: Deactivated successfully.
mar 15 14:45:59 archlinux systemd[1]: Stopped Display Boot-Time Emergency Messages In Full Screen.
mar 15 14:45:59 archlinux systemd[1]: systemd-udevd.service: Deactivated successfully.
mar 15 14:45:59 archlinux systemd-pcrextend[452]: Extended PCR index 11 with 'leave-initrd' (banks sha1, sha256).
mar 15 14:45:59 archlinux systemd[1]: Stopped Rule-based Manager for Device Events and Files.
mar 15 14:45:59 archlinux systemd[1]: systemd-udevd.service: Consumed 4.240s CPU time over 4.803s wall clock time, 30M memory peak.
mar 15 14:45:59 archlinux systemd[1]: systemd-pcrphase-initrd.service: Deactivated successfully.
mar 15 14:45:59 archlinux systemd[1]: Stopped TPM PCR Barrier (initrd).
mar 15 14:45:59 archlinux systemd[1]: initrd-cleanup.service: Deactivated successfully.
mar 15 14:45:59 archlinux systemd[1]: Finished Cleaning Up and Shutting Down Daemons.
mar 15 14:45:59 archlinux systemd[1]: systemd-udevd-control.socket: Deactivated successfully.
mar 15 14:45:59 archlinux systemd[1]: Closed udev Control Socket.
mar 15 14:45:59 archlinux systemd[1]: Starting Cleanup udev Database...
mar 15 14:45:59 archlinux systemd[1]: systemd-tmpfiles-setup-dev.service: Deactivated successfully.
mar 15 14:45:59 archlinux systemd[1]: Stopped Create Static Device Nodes in /dev.
mar 15 14:45:59 archlinux systemd[1]: initrd-udevadm-cleanup-db.service: Deactivated successfully.
mar 15 14:45:59 archlinux systemd[1]: Finished Cleanup udev Database.
mar 15 14:45:59 archlinux systemd[1]: Reached target Switch Root.
mar 15 14:45:59 archlinux systemd[1]: Starting Switch Root...
mar 15 14:45:59 archlinux systemd[1]: Switching root.
mar 15 14:45:59 archlinux systemd-journald[240]: Journal stopped
mar 15 14:45:59 stationara systemd-journald[240]: Received SIGTERM from PID 1 (systemd).
mar 15 14:45:59 stationara systemd[1]: systemd 259.5-1-arch running in system mode (+PAM +AUDIT -SELINUX +APPARMOR -IMA +IPE +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF +XKBCOMMON +UTMP -SYSVINIT +LIBARCHIVE)
mar 15 14:45:59 stationara systemd[1]: Detected architecture x86-64.
mar 15 14:45:59 stationara systemd[1]: Hostname set to <stationara>.
mar 15 14:45:59 stationara systemd[1]: bpf-restrict-fs: LSM BPF program attached
mar 15 14:45:59 stationara kernel: zram: Added device: zram0
mar 15 14:45:59 stationara systemd[1]: /etc/systemd/system/systemd-logind.service.d/override.conf:1: Unknown section 'Login'. Ignoring.
mar 15 14:45:59 stationara systemd[1]: initrd-switch-root.service: Deactivated successfully.
mar 15 14:45:59 stationara systemd[1]: Stopped Switch Root.
mar 15 14:45:59 stationara systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
mar 15 14:45:59 stationara systemd[1]: Created slice Slice /system/dirmngr.
mar 15 14:45:59 stationara systemd[1]: Created slice Slice /system/getty.
mar 15 14:45:59 stationara systemd[1]: Created slice Slice /system/gpg-agent.
mar 15 14:45:59 stationara systemd[1]: Created slice Slice /system/gpg-agent-browser.
mar 15 14:45:59 stationara systemd[1]: Created slice Slice /system/gpg-agent-extra.
mar 15 14:45:59 stationara systemd[1]: Created slice Slice /system/gpg-agent-ssh.
mar 15 14:45:59 stationara systemd[1]: Created slice Slice /system/keyboxd.
mar 15 14:45:59 stationara systemd[1]: Created slice Slice /system/modprobe.
mar 15 14:45:59 stationara systemd[1]: Created slice Slice /system/systemd-fsck.
mar 15 14:45:59 stationara systemd[1]: Created slice Slice /system/systemd-zram-setup.
mar 15 14:45:59 stationara systemd[1]: Created slice User and Session Slice.
mar 15 14:45:59 stationara systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
mar 15 14:45:59 stationara systemd[1]: Started Forward Password Requests to Wall Directory Watch.
mar 15 14:45:59 stationara systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
mar 15 14:45:59 stationara systemd[1]: Expecting device /dev/disk/by-uuid/18F2-DA6C...
mar 15 14:45:59 stationara systemd[1]: Expecting device /dev/disk/by-uuid/605e92cf-0eb8-417e-b202-8a1a9c778498...
mar 15 14:45:59 stationara systemd[1]: Expecting device /dev/zram0...
mar 15 14:45:59 stationara systemd[1]: Reached target Local Encrypted Volumes.
mar 15 14:45:59 stationara systemd[1]: Reached target Login Prompts.
mar 15 14:45:59 stationara systemd[1]: Reached target Image Downloads.
mar 15 14:45:59 stationara systemd[1]: Stopped target Switch Root.
mar 15 14:45:59 stationara systemd[1]: Stopped target Initrd File Systems.
mar 15 14:45:59 stationara systemd[1]: Stopped target Initrd Root File System.
mar 15 14:45:59 stationara systemd[1]: Reached target Local Integrity Protected Volumes.
mar 15 14:45:59 stationara systemd[1]: Reached target Path Units.
mar 15 14:45:59 stationara systemd[1]: Reached target Remote File Systems.
mar 15 14:45:59 stationara systemd[1]: Reached target Slice Units.
mar 15 14:45:59 stationara systemd[1]: Reached target Local Verity Protected Volumes.
mar 15 14:45:59 stationara systemd[1]: Listening on Device-mapper event daemon FIFOs.
mar 15 14:45:59 stationara systemd[1]: Listening on RPCbind Server Activation Socket.
mar 15 14:45:59 stationara systemd[1]: Reached target RPC Port Mapper.
mar 15 14:45:59 stationara systemd[1]: Listening on Query the User Interactively for a Password.
mar 15 14:45:59 stationara systemd[1]: Listening on Process Core Dump Socket.
mar 15 14:45:59 stationara systemd[1]: Listening on Credential Encryption/Decryption.
mar 15 14:45:59 stationara systemd[1]: Listening on Factory Reset Management.
mar 15 14:45:59 stationara systemd[1]: Listening on Console Output Muting Service Socket.
mar 15 14:45:59 stationara systemd[1]: Listening on TPM PCR Measurements.
mar 15 14:45:59 stationara systemd[1]: Listening on Make TPM PCR Policy.
mar 15 14:45:59 stationara systemd[1]: Listening on Disk Repartitioning Service Socket.
mar 15 14:45:59 stationara systemd[1]: Listening on Resolve Monitor Varlink Socket.
mar 15 14:45:59 stationara systemd[1]: Listening on Resolve Service Varlink Socket.
mar 15 14:45:59 stationara systemd[1]: Listening on udev Control Socket.
mar 15 14:45:59 stationara systemd[1]: Listening on udev Varlink Socket.
mar 15 14:45:59 stationara systemd[1]: Listening on User Database Manager Socket.
mar 15 14:45:59 stationara systemd[1]: Activating swap /dev/disk/by-uuid/e8316da7-3af3-40e3-a94a-bc20a4f4ee97...
mar 15 14:45:59 stationara systemd[1]: Mounting Huge Pages File System...
mar 15 14:45:59 stationara systemd[1]: Mounting POSIX Message Queue File System...
mar 15 14:45:59 stationara systemd[1]: Mounting Kernel Debug File System...
mar 15 14:45:59 stationara systemd[1]: Mounting Kernel Trace File System...
mar 15 14:45:59 stationara systemd[1]: Starting Create List of Static Device Nodes...
mar 15 14:45:59 stationara systemd[1]: Load Kernel Module configfs skipped, unmet condition check ConditionKernelModuleLoaded=!configfs
mar 15 14:45:59 stationara systemd[1]: Mounting Kernel Configuration File System...
mar 15 14:45:59 stationara systemd[1]: Load Kernel Module drm skipped, unmet condition check ConditionKernelModuleLoaded=!drm
mar 15 14:45:59 stationara systemd[1]: Load Kernel Module fuse skipped, unmet condition check ConditionKernelModuleLoaded=!fuse
mar 15 14:45:59 stationara systemd[1]: Mounting FUSE Control File System...
mar 15 14:45:59 stationara systemd[1]: systemd-cryptsetup@root.service: Deactivated successfully.
mar 15 14:45:59 stationara systemd[1]: Stopped systemd-cryptsetup@root.service.
mar 15 14:45:59 stationara systemd[1]: systemd-cryptsetup@swap.service: Deactivated successfully.
mar 15 14:45:59 stationara systemd[1]: Stopped systemd-cryptsetup@swap.service.
mar 15 14:45:59 stationara kernel: Adding 20955132k swap on /dev/mapper/swap.  Priority:-1 extents:1 across:20955132k SS
mar 15 14:45:59 stationara systemd[1]: systemd-fsck-root.service: Deactivated successfully.
mar 15 14:45:59 stationara systemd[1]: Stopped File System Check on Root Device.
mar 15 14:45:59 stationara systemd[1]: Clear Stale Hibernate Storage Info skipped, unmet condition check ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67
mar 15 14:45:59 stationara systemd[1]: Starting Journal Service...
mar 15 14:45:59 stationara systemd[1]: Starting Load Kernel Modules...
mar 15 14:45:59 stationara systemd[1]: Starting TPM PCR Machine ID Measurement...
mar 15 14:45:59 stationara systemd[1]: Starting TPM NvPCR Product ID Measurement...
mar 15 14:45:59 stationara systemd[1]: Starting Remount Root and Kernel File Systems...
mar 15 14:45:59 stationara systemd[1]: Starting Early TPM SRK Setup...
mar 15 14:45:59 stationara systemd[1]: Starting Load udev Rules from Credentials...
mar 15 14:45:59 stationara systemd[1]: Starting Coldplug All udev Devices...
mar 15 14:45:59 stationara systemd-journald[632]: Collecting audit messages is disabled.
mar 15 14:45:59 stationara systemd[1]: Activated swap /dev/disk/by-uuid/e8316da7-3af3-40e3-a94a-bc20a4f4ee97.
mar 15 14:45:59 stationara systemd-journald[632]: Journal started
mar 15 14:45:59 stationara systemd-journald[632]: Runtime Journal (/run/log/journal/4579bcf2fe044d4083ff5a0d9052505d) is 8M, max 318.1M, 310.1M free.
mar 15 14:45:59 stationara systemd[1]: Queued start job for default target Graphical Interface.
mar 15 14:45:59 stationara systemd[1]: systemd-journald.service: Deactivated successfully.
mar 15 14:45:59 stationara systemd-modules-load[633]: Using 7 probe threads
mar 15 14:45:59 stationara kernel: i2c_dev: i2c /dev entries driver
mar 15 14:45:59 stationara systemd-modules-load[633]: Inserted module 'uinput'
mar 15 14:45:59 stationara systemd-modules-load[633]: Inserted module 'ntsync'
mar 15 14:45:59 stationara systemd-modules-load[633]: Inserted module 'i2c_dev'
mar 15 14:45:59 stationara systemd-modules-load[633]: Inserted module 'crypto_user'
mar 15 14:45:59 stationara systemd[1]: Started Journal Service.
mar 15 14:45:59 stationara systemd[1]: Mounted Huge Pages File System.
mar 15 14:45:59 stationara systemd[1]: Mounted POSIX Message Queue File System.
mar 15 14:45:59 stationara systemd[1]: Mounted Kernel Debug File System.
mar 15 14:45:59 stationara systemd[1]: Mounted Kernel Trace File System.
mar 15 14:45:59 stationara systemd[1]: Finished Create List of Static Device Nodes.
mar 15 14:45:59 stationara systemd[1]: Mounted Kernel Configuration File System.
mar 15 14:45:59 stationara systemd[1]: Mounted FUSE Control File System.
mar 15 14:45:59 stationara systemd[1]: Finished Load udev Rules from Credentials.
mar 15 14:46:00 stationara systemd-pcrextend[634]: Extended PCR index 15 with 'machine-id:4579bcf2fe044d4083ff5a0d9052505d' (banks sha1, sha256).
mar 15 14:46:00 stationara systemd[1]: Finished TPM PCR Machine ID Measurement.
mar 15 14:46:00 stationara systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
mar 15 14:46:00 stationara systemd-tpm2-setup[638]: SRK already stored in the TPM.
mar 15 14:46:00 stationara systemd-tpm2-setup[638]: SRK fingerprint is fa1879b2fe17053303791419c28ae16907bd6af4312c435b5336cb28f6ad38b7.
mar 15 14:46:00 stationara systemd-tpm2-setup[638]: SRK public key saved to '/run/systemd/tpm2-srk-public-key.pem' in PEM format.
mar 15 14:46:00 stationara systemd-tpm2-setup[638]: SRK public key saved to '/run/systemd/tpm2-srk-public-key.tpm2b_public' in TPM2B_PUBLIC format.
mar 15 14:46:00 stationara systemd[1]: Starting User Database Manager...
mar 15 14:46:00 stationara kernel: kvm_intel: VMX not supported by CPU 0
mar 15 14:46:00 stationara kernel: BTRFS info (device dm-1 state M): enabling auto defrag
mar 15 14:46:00 stationara systemd[1]: Finished Remount Root and Kernel File Systems.
mar 15 14:46:00 stationara systemd[1]: Rebuild Hardware Database skipped, no trigger condition checks were met.
mar 15 14:46:00 stationara systemd[1]: Starting Load/Save OS Random Seed...
mar 15 14:46:00 stationara systemd[1]: Started User Database Manager.
mar 15 14:46:00 stationara systemd[1]: Finished Load/Save OS Random Seed.
mar 15 14:46:00 stationara systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
mar 15 14:46:00 stationara systemd[1]: Starting Create System Users...
mar 15 14:46:00 stationara kernel: kvm_amd: TSC scaling supported
mar 15 14:46:00 stationara kernel: kvm_amd: Nested Virtualization enabled
mar 15 14:46:00 stationara kernel: kvm_amd: Nested Paging enabled
mar 15 14:46:00 stationara kernel: kvm_amd: LBR virtualization supported
mar 15 14:46:00 stationara kernel: kvm_amd: SEV disabled (ASIDs 1 - 509)
mar 15 14:46:00 stationara kernel: kvm_amd: SEV-ES disabled (ASIDs 0 - 0)
mar 15 14:46:00 stationara kernel: kvm_amd: Virtual VMLOAD VMSAVE supported
mar 15 14:46:00 stationara kernel: kvm_amd: Virtual GIF supported
mar 15 14:46:00 stationara kernel: vboxdrv: loading out-of-tree module taints kernel.
mar 15 14:46:00 stationara kernel: vboxdrv: module verification failed: signature and/or required key missing - tainting kernel
mar 15 14:46:00 stationara kernel: vboxdrv: module uses symbol (cr4_read_shadow) from namespace module:kvm,kvm-amd,kvm-intel, but does not import it.
mar 15 14:46:00 stationara kernel: vboxdrv: module uses symbol (__flush_tlb_all) from namespace module:kvm,kvm-amd,kvm-intel, but does not import it.
mar 15 14:46:00 stationara kernel: vboxdrv: module uses symbol (cr4_update_irqsoff) from namespace module:kvm,kvm-amd,kvm-intel, but does not import it.
mar 15 14:46:00 stationara systemd[1]: Finished Create System Users.
mar 15 14:46:00 stationara systemd[1]: Starting Create Static Device Nodes in /dev...
mar 15 14:46:00 stationara kernel: vboxdrv: Found 12 processor cores/threads
mar 15 14:46:00 stationara systemd[1]: Finished Create Static Device Nodes in /dev.
mar 15 14:46:00 stationara systemd[1]: Reached target Preparation for Local File Systems.
mar 15 14:46:00 stationara systemd[1]: Starting Rule-based Manager for Device Events and Files...
mar 15 14:46:00 stationara systemd-udevd[674]: Using default interface naming scheme 'v259'.
mar 15 14:46:00 stationara systemd[1]: Started Rule-based Manager for Device Events and Files.
mar 15 14:46:00 stationara kernel: rtR0InitNative: g_pLnxInitMm=000000000011b518
mar 15 14:46:00 stationara systemd[1]: Finished Coldplug All udev Devices.
mar 15 14:46:00 stationara systemd-modules-load[633]: Inserted module 'vboxdrv'
mar 15 14:46:00 stationara kernel: vboxdrv: Found KVM hardware-virtualization symbols
mar 15 14:46:00 stationara kernel: vboxdrv: TSC mode is Invariant, tentative frequency 3599999286 Hz
mar 15 14:46:00 stationara kernel: vboxdrv: Successfully loaded version 7.2.6 r172322 (interface 0x00340002)
mar 15 14:46:00 stationara systemd-modules-load[633]: Inserted module 'vboxnetadp'
mar 15 14:46:00 stationara kernel: VBoxNetAdp: Successfully started.
mar 15 14:46:00 stationara systemd-modules-load[633]: Inserted module 'vboxnetflt'
mar 15 14:46:00 stationara kernel: VBoxNetFlt: Successfully started.
mar 15 14:46:00 stationara systemd[1]: Finished Load Kernel Modules.
mar 15 14:46:00 stationara systemd[1]: Starting Apply Kernel Variables...
mar 15 14:46:00 stationara nfsrahead[692]: skipping non-NFS device 252:0
mar 15 14:46:00 stationara systemd[1]: Finished Apply Kernel Variables.
mar 15 14:46:00 stationara systemd[1]: Starting Network Name Resolution...
mar 15 14:46:00 stationara systemd[1]: Starting CLI Netfilter Manager...
mar 15 14:46:00 stationara systemd[1]: Found device /dev/zram0.
mar 15 14:46:00 stationara systemd[1]: Load Kernel Module configfs skipped, unmet condition check ConditionKernelModuleLoaded=!configfs
mar 15 14:46:00 stationara systemd[1]: Load Kernel Module fuse skipped, unmet condition check ConditionKernelModuleLoaded=!fuse
mar 15 14:46:00 stationara systemd-pcrextend[636]: Anchor secret file '/var/lib/systemd/nvpcr/nvpcr-anchor.cred' different from current anchor secret, updating.
mar 15 14:46:00 stationara systemd-pcrextend[636]: Successfully written anchor secret to '/var/lib/systemd/nvpcr/nvpcr-anchor.cred'.
mar 15 14:46:00 stationara systemd-pcrextend[636]: WARNING:esys:src/tss2-esys/api/Esys_NV_DefineSpace.c:345:Esys_NV_DefineSpace_Finish() Received TPM Error
mar 15 14:46:00 stationara systemd-pcrextend[636]: ERROR:esys:src/tss2-esys/api/Esys_NV_DefineSpace.c:121:Esys_NV_DefineSpace() Esys Finish ErrorCode (0x0000014c)
mar 15 14:46:00 stationara systemd[1]: Starting Create swap on /dev/zram0...
mar 15 14:46:00 stationara kernel: zram0: detected capacity change from 0 to 8388608
mar 15 14:46:00 stationara systemd[1]: Condition check resulted in /dev/tpmrm0 being skipped.
mar 15 14:46:00 stationara systemd[1]: Expecting device /dev/tpm0...
mar 15 14:46:00 stationara systemd-pcrextend[636]: Extended NvPCR index 'hardware' with 'product-id:b4d3dfbe87a9eb1fdb1c04d9f5f85744'.
mar 15 14:46:00 stationara systemd-makefs[737]: /dev/zram0 successfully formatted as swap (label "zram0", uuid d4a3eebc-6735-4830-8f72-7cf006b0e9f3)
mar 15 14:46:00 stationara systemd[1]: Finished Create swap on /dev/zram0.
mar 15 14:46:00 stationara systemd[1]: Activating swap Compressed Swap on /dev/zram0...
mar 15 14:46:00 stationara mtp-probe[747]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-6"
mar 15 14:46:00 stationara mtp-probe[747]: bus: 1, device: 2 was not an MTP device
mar 15 14:46:00 stationara systemd-resolved[724]: Positive Trust Anchors:
mar 15 14:46:00 stationara systemd-resolved[724]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d
mar 15 14:46:00 stationara systemd-resolved[724]: . IN DS 38696 8 2 683d2d0acb8c9b712a1948b27f741219298d0a450d612c483af444a4c0fb2b16
mar 15 14:46:00 stationara systemd-resolved[724]: 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 resolver.arpa corp home internal intranet lan local private test
mar 15 14:46:00 stationara systemd-resolved[724]: Using system hostname 'stationara'.
mar 15 14:46:00 stationara systemd[1]: Started Network Name Resolution.
mar 15 14:46:00 stationara kernel: Adding 4194300k swap on /dev/zram0.  Priority:100 extents:1 across:4194300k SSDsc
mar 15 14:46:00 stationara systemd[1]: Activated swap Compressed Swap on /dev/zram0.
mar 15 14:46:00 stationara systemd[1]: Finished TPM NvPCR Product ID Measurement.
mar 15 14:46:00 stationara systemd[1]: Condition check resulted in KINGSTON SKC3000S1024G EFI\x20system\x20partition being skipped.
mar 15 14:46:00 stationara kernel: dca service started, version 1.12.1
mar 15 14:46:00 stationara systemd[1]: Condition check resulted in /dev/tpm0 being skipped.
mar 15 14:46:00 stationara systemd[1]: Reached target Host and Network Name Lookups.
mar 15 14:46:00 stationara systemd[1]: Reached target Swaps.
mar 15 14:46:00 stationara systemd[1]: Reached target Trusted Platform Module.
mar 15 14:46:00 stationara kernel: pps_core: LinuxPPS API ver. 1 registered
mar 15 14:46:00 stationara kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
mar 15 14:46:00 stationara kernel: piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
mar 15 14:46:00 stationara kernel: piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
mar 15 14:46:00 stationara kernel: i2c i2c-8: Successfully instantiated SPD at 0x52
mar 15 14:46:00 stationara kernel: i2c i2c-8: Successfully instantiated SPD at 0x53
mar 15 14:46:00 stationara kernel: piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
mar 15 14:46:00 stationara kernel: PTP clock support registered
mar 15 14:46:00 stationara kernel: acpi_cpufreq: overriding BIOS provided _PSD data
mar 15 14:46:00 stationara kernel: sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
mar 15 14:46:00 stationara kernel: input: PC Speaker as /devices/platform/pcspkr/input/input9
mar 15 14:46:00 stationara kernel: sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
mar 15 14:46:00 stationara kernel: igb: Intel(R) Gigabit Ethernet Network Driver
mar 15 14:46:00 stationara kernel: igb: Copyright (c) 2007-2014 Intel Corporation.
mar 15 14:46:00 stationara kernel: sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
mar 15 14:46:00 stationara kernel: mousedev: PS/2 mouse device common for all mice
mar 15 14:46:00 stationara kernel: RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
mar 15 14:46:00 stationara kernel: RAPL PMU: hw unit of domain package 2^-16 Joules
mar 15 14:46:00 stationara kernel: RAPL PMU: hw unit of domain core 2^-16 Joules
mar 15 14:46:00 stationara systemd[1]: Condition check resulted in ST1000DX001-1CM162 1 being skipped.
mar 15 14:46:00 stationara systemd[1]: Starting File System Check on /dev/disk/by-uuid/605e92cf-0eb8-417e-b202-8a1a9c778498...
mar 15 14:46:00 stationara nfsrahead[818]: skipping non-NFS device 253:0
mar 15 14:46:00 stationara nfsrahead[820]: skipping non-NFS device 252:0
mar 15 14:46:00 stationara nfsrahead[821]: skipping non-NFS device 259:0
mar 15 14:46:00 stationara nfsrahead[822]: skipping non-NFS device 11:0
mar 15 14:46:00 stationara nfsrahead[823]: skipping non-NFS device 253:1
mar 15 14:46:00 stationara nfsrahead[824]: skipping non-NFS device 8:0
mar 15 14:46:00 stationara nfsrahead[825]: skipping non-NFS device btrfs-1
mar 15 14:46:00 stationara kernel: Bluetooth: Core ver 2.22
mar 15 14:46:00 stationara kernel: NET: Registered PF_BLUETOOTH protocol family
mar 15 14:46:00 stationara kernel: Bluetooth: HCI device and connection manager initialized
mar 15 14:46:00 stationara kernel: Bluetooth: HCI socket layer initialized
mar 15 14:46:00 stationara kernel: Bluetooth: L2CAP socket layer initialized
mar 15 14:46:00 stationara kernel: Bluetooth: SCO socket layer initialized
mar 15 14:46:00 stationara kernel: asus_wmi: ASUS WMI generic driver loaded
mar 15 14:46:00 stationara kernel: igb 0000:04:00.0: added PHC on eth0
mar 15 14:46:00 stationara kernel: igb 0000:04:00.0: Intel(R) Gigabit Ethernet Network Connection
mar 15 14:46:00 stationara kernel: igb 0000:04:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 04:d9:f5:f8:57:44
mar 15 14:46:00 stationara kernel: igb 0000:04:00.0: eth0: PBA No: FFFFFF-0FF
mar 15 14:46:00 stationara kernel: igb 0000:04:00.0: Using MSI-X interrupts. 2 rx queue(s), 2 tx queue(s)
mar 15 14:46:00 stationara systemd[1]: Starting Virtual Console Setup...
mar 15 14:46:00 stationara kernel: asus_wmi: failed to register LPS0 sleep handler in asus-wmi
mar 15 14:46:00 stationara kernel: asus_wmi: Initialization: 0x0
mar 15 14:46:00 stationara kernel: asus_wmi: BIOS WMI version: 0.9
mar 15 14:46:00 stationara kernel: asus_wmi: SFUN value: 0x0
mar 15 14:46:00 stationara kernel: eeepc-wmi eeepc-wmi: Detected ASUSWMI, use DCTS
mar 15 14:46:00 stationara systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
mar 15 14:46:00 stationara kernel: igb 0000:04:00.0 enp4s0: renamed from eth0
mar 15 14:46:00 stationara systemd[1]: Finished Virtual Console Setup.
mar 15 14:46:00 stationara kernel: ee1004 8-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
mar 15 14:46:00 stationara kernel: ee1004 8-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
mar 15 14:46:00 stationara kernel: amd_atl: AMD Address Translation Library initialized
mar 15 14:46:00 stationara kernel: intel_rapl_common: Found RAPL domain package
mar 15 14:46:00 stationara kernel: intel_rapl_common: Found RAPL domain core
mar 15 14:46:00 stationara kernel: input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input10
mar 15 14:46:00 stationara kernel: usbcore: registered new interface driver btusb
mar 15 14:46:00 stationara systemd[1]: Starting Load/Save RF Kill Switch Status...
mar 15 14:46:00 stationara kernel: snd_hda_intel 0000:09:00.1: Force to non-snoop mode
mar 15 14:46:00 stationara kernel: snd_hda_intel 0000:0b:00.4: enabling device (0000 -> 0002)
mar 15 14:46:00 stationara kernel: Bluetooth: hci0: RTL: examining hci_ver=0a hci_rev=000b lmp_ver=0a lmp_subver=8761
mar 15 14:46:00 stationara systemd[1]: Clear Stale Hibernate Storage Info skipped, unmet condition check ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67
mar 15 14:46:00 stationara systemd[1]: Rebuild Hardware Database skipped, no trigger condition checks were met.
mar 15 14:46:00 stationara kernel: Bluetooth: hci0: RTL: rom_version status=0 version=1
mar 15 14:46:00 stationara kernel: Bluetooth: hci0: RTL: btrtl_initialize: key id 0
mar 15 14:46:00 stationara kernel: Bluetooth: hci0: RTL: loading rtl_bt/rtl8761bu_fw.bin
mar 15 14:46:00 stationara kernel: Bluetooth: hci0: RTL: loading rtl_bt/rtl8761bu_config.bin
mar 15 14:46:00 stationara kernel: Bluetooth: hci0: RTL: cfg_sz 6, total sz 30210
mar 15 14:46:00 stationara systemd[1]: Started Load/Save RF Kill Switch Status.
mar 15 14:46:00 stationara kernel: snd_hda_intel 0000:09:00.1: bound 0000:09:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
mar 15 14:46:00 stationara kernel: input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.1/0000:09:00.1/sound/card0/input11
mar 15 14:46:00 stationara kernel: input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.1/0000:09:00.1/sound/card0/input12
mar 15 14:46:00 stationara kernel: input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.1/0000:09:00.1/sound/card0/input13
mar 15 14:46:00 stationara kernel: input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.1/0000:09:00.1/sound/card0/input14
mar 15 14:46:00 stationara kernel: input: HDA ATI HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.1/0000:09:00.1/sound/card0/input15
mar 15 14:46:00 stationara kernel: input: HDA ATI HDMI HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:03.1/0000:09:00.1/sound/card0/input16
mar 15 14:46:00 stationara systemd[1]: Reached target Sound Card.
mar 15 14:46:00 stationara kernel: snd_hda_codec_alc882 hdaudioC1D0: autoconfig for ALC1220: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line
mar 15 14:46:00 stationara kernel: snd_hda_codec_alc882 hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
mar 15 14:46:00 stationara kernel: snd_hda_codec_alc882 hdaudioC1D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
mar 15 14:46:00 stationara kernel: snd_hda_codec_alc882 hdaudioC1D0:    mono: mono_out=0x0
mar 15 14:46:00 stationara kernel: snd_hda_codec_alc882 hdaudioC1D0:    dig-out=0x1e/0x0
mar 15 14:46:00 stationara kernel: snd_hda_codec_alc882 hdaudioC1D0:    inputs:
mar 15 14:46:00 stationara kernel: snd_hda_codec_alc882 hdaudioC1D0:      Rear Mic=0x18
mar 15 14:46:00 stationara kernel: snd_hda_codec_alc882 hdaudioC1D0:      Front Mic=0x19
mar 15 14:46:00 stationara kernel: snd_hda_codec_alc882 hdaudioC1D0:      Line=0x1a
mar 15 14:46:00 stationara kernel: input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:0b:00.4/sound/card1/input17
mar 15 14:46:00 stationara kernel: input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:0b:00.4/sound/card1/input18
mar 15 14:46:00 stationara kernel: input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:0b:00.4/sound/card1/input19
mar 15 14:46:00 stationara kernel: input: HD-Audio Generic Line Out Front as /devices/pci0000:00/0000:00:08.1/0000:0b:00.4/sound/card1/input20
mar 15 14:46:00 stationara kernel: input: HD-Audio Generic Line Out Surround as /devices/pci0000:00/0000:00:08.1/0000:0b:00.4/sound/card1/input21
mar 15 14:46:00 stationara kernel: input: HD-Audio Generic Line Out CLFE as /devices/pci0000:00/0000:00:08.1/0000:0b:00.4/sound/card1/input22
mar 15 14:46:00 stationara kernel: input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:0b:00.4/sound/card1/input23
mar 15 14:46:00 stationara systemd[1]: Finished CLI Netfilter Manager.
mar 15 14:46:00 stationara systemd-fsck[862]: /dev/sda1: rent, 13456/61054976 filer, 8811938/244190385 block
mar 15 14:46:00 stationara systemd[1]: Finished File System Check on /dev/disk/by-uuid/605e92cf-0eb8-417e-b202-8a1a9c778498.
mar 15 14:46:00 stationara systemd[1]: Mounting /.snapshots...
mar 15 14:46:00 stationara systemd[1]: Mounting /data...
mar 15 14:46:00 stationara systemd[1]: Mounting /efi...
mar 15 14:46:00 stationara systemd[1]: Mounting /home...
mar 15 14:46:00 stationara systemd[1]: Mounting /tmp...
mar 15 14:46:00 stationara systemd[1]: Mounting /var/cache...
mar 15 14:46:00 stationara systemd[1]: Virtual Machine and Container Storage (Compatibility) skipped, unmet condition check ConditionPathExists=/var/lib/machines.raw
mar 15 14:46:00 stationara systemd[1]: Listening on Disk Image Download Service Socket.
mar 15 14:46:00 stationara systemd[1]: Mounting /var/log...
mar 15 14:46:00 stationara systemd[1]: Mounting /var/spool...
mar 15 14:46:00 stationara systemd[1]: Mounting /var/tmp...
mar 15 14:46:00 stationara systemd[1]: Mounted /.snapshots.
mar 15 14:46:00 stationara systemd[1]: Mounted /home.
mar 15 14:46:00 stationara kernel: FAT-fs (nvme0n1p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
mar 15 14:46:00 stationara systemd[1]: Mounted /efi.
mar 15 14:46:00 stationara systemd[1]: Mounted /tmp.
mar 15 14:46:00 stationara systemd[1]: Mounted /var/cache.
mar 15 14:46:00 stationara systemd[1]: Mounted /var/log.
mar 15 14:46:00 stationara systemd[1]: Mounted /var/spool.
mar 15 14:46:00 stationara systemd[1]: Mounted /var/tmp.
mar 15 14:46:00 stationara systemd[1]: Mounting /var/cache/pacman/pkg...
mar 15 14:46:00 stationara systemd[1]: Starting Flush Journal to Persistent Storage...
mar 15 14:46:00 stationara systemd[1]: Mounted /var/cache/pacman/pkg.
mar 15 14:46:00 stationara systemd-journald[632]: Time spent on flushing to /var/log/journal/4579bcf2fe044d4083ff5a0d9052505d is 15.311ms for 1531 entries.
mar 15 14:46:00 stationara systemd-journald[632]: System Journal (/var/log/journal/4579bcf2fe044d4083ff5a0d9052505d) is 1.8G, max 4G, 2.1G free.
mar 15 14:46:00 stationara systemd-journald[632]: Received client request to flush runtime journal.
mar 15 14:46:00 stationara systemd[1]: Finished Flush Journal to Persistent Storage.
mar 15 14:46:01 stationara systemd-tpm2-setup[638]: WARNING:esys:src/tss2-esys/api/Esys_NV_DefineSpace.c:345:Esys_NV_DefineSpace_Finish() Received TPM Error
mar 15 14:46:01 stationara systemd-tpm2-setup[638]: ERROR:esys:src/tss2-esys/api/Esys_NV_DefineSpace.c:121:Esys_NV_DefineSpace() Esys Finish ErrorCode (0x0000014c)
mar 15 14:46:01 stationara systemd-tpm2-setup[638]: 1 NvPCRs initialized. (1 NvPCRs were already initialized.)
mar 15 14:46:01 stationara systemd[1]: Finished Early TPM SRK Setup.
mar 15 14:46:01 stationara systemd[1]: Repartition Root Disk skipped, no trigger condition checks were met.
mar 15 14:46:01 stationara systemd[1]: Starting TPM SRK Setup...
mar 15 14:46:01 stationara kernel: Bluetooth: hci0: RTL: fw version 0xdfc6d922
mar 15 14:46:01 stationara systemd-tpm2-setup[932]: SRK already stored in the TPM.
mar 15 14:46:01 stationara systemd-tpm2-setup[932]: SRK fingerprint is fa1879b2fe17053303791419c28ae16907bd6af4312c435b5336cb28f6ad38b7.
mar 15 14:46:01 stationara systemd-tpm2-setup[932]: SRK saved in '/var/lib/systemd/tpm2-srk-public-key.pem' matches SRK in TPM2.
mar 15 14:46:02 stationara kernel: EXT4-fs (sda1): mounted filesystem 605e92cf-0eb8-417e-b202-8a1a9c778498 r/w with ordered data mode. Quota mode: none.
mar 15 14:46:02 stationara systemd[1]: Mounted /data.
mar 15 14:46:02 stationara systemd[1]: Reached target Local File Systems.
mar 15 14:46:02 stationara systemd[1]: Listening on Boot Entries Service Socket.
mar 15 14:46:02 stationara systemd[1]: Listening on System Extension Image Management.
mar 15 14:46:02 stationara systemd[1]: Starting Set Up Additional Binary Formats...
mar 15 14:46:02 stationara systemd[1]: Starting Update Boot Loader Random Seed...
mar 15 14:46:02 stationara systemd[1]: Starting Create System Files and Directories...
mar 15 14:46:02 stationara systemd[1]: Starting Load JSON user/group Records from Credentials...
mar 15 14:46:02 stationara systemd-tpm2-setup[932]: Anchor secret file '/efi/loader/credentials/nvpcr-anchor.4579bcf2fe044d4083ff5a0d9052505d.cred' different from current anchor secret, updating.
mar 15 14:46:02 stationara systemd-tpm2-setup[932]: Successfully written anchor secret to '/efi/loader/credentials/nvpcr-anchor.4579bcf2fe044d4083ff5a0d9052505d.cred'.
mar 15 14:46:02 stationara systemd-tpm2-setup[932]: 2 NvPCRs already initialized.
mar 15 14:46:02 stationara systemd[1]: Finished TPM SRK Setup.
mar 15 14:46:02 stationara systemd[1]: Finished Load JSON user/group Records from Credentials.
mar 15 14:46:02 stationara bootctl[936]: Random seed file /efi/loader/random-seed successfully refreshed (32 bytes).
mar 15 14:46:02 stationara systemd[1]: Finished Update Boot Loader Random Seed.
mar 15 14:46:02 stationara systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 935 (systemd-binfmt)
mar 15 14:46:02 stationara systemd[1]: Mounting Arbitrary Executable File Formats File System...
mar 15 14:46:02 stationara systemd[1]: Starting TPM PCR NvPCR Initialization Separator...
mar 15 14:46:02 stationara systemd[1]: Mounted Arbitrary Executable File Formats File System.
mar 15 14:46:02 stationara systemd[1]: Finished Set Up Additional Binary Formats.
mar 15 14:46:02 stationara systemd-pcrextend[943]: Extended PCR index 9 with 'nvpcr-separator' (banks sha1, sha256).
mar 15 14:46:02 stationara systemd[1]: Finished TPM PCR NvPCR Initialization Separator.
mar 15 14:46:02 stationara systemd[1]: Finished Create System Files and Directories.
mar 15 14:46:02 stationara systemd[1]: Starting Rebuild Dynamic Linker Cache...
mar 15 14:46:02 stationara systemd[1]: Starting RPC Bind...
mar 15 14:46:02 stationara systemd[1]: Initial Setup skipped, unmet condition check ConditionFirstBoot=yes
mar 15 14:46:02 stationara systemd[1]: First Boot Complete skipped, unmet condition check ConditionFirstBoot=yes
mar 15 14:46:02 stationara systemd[1]: Starting Rebuild Journal Catalog...
mar 15 14:46:02 stationara systemd[1]: Save Transient machine-id to Disk skipped, unmet condition check ConditionPathIsMountPoint=/etc/machine-id
mar 15 14:46:02 stationara systemd[1]: Starting Record System Boot/Shutdown in UTMP...
mar 15 14:46:02 stationara systemd[1]: Finished Record System Boot/Shutdown in UTMP.
mar 15 14:46:02 stationara systemd[1]: Finished Rebuild Journal Catalog.
mar 15 14:46:02 stationara systemd[1]: Started RPC Bind.
mar 15 14:46:02 stationara systemd[1]: Finished Rebuild Dynamic Linker Cache.
mar 15 14:46:02 stationara systemd[1]: Starting Update is Completed...
mar 15 14:46:02 stationara systemd[1]: Finished Update is Completed.
mar 15 14:46:02 stationara systemd[1]: Reached target System Initialization.
mar 15 14:46:02 stationara systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
mar 15 14:46:02 stationara systemd[1]: Started Discard unused filesystem blocks once a week.
mar 15 14:46:02 stationara systemd[1]: Started Daily man-db regeneration.
mar 15 14:46:02 stationara systemd[1]: Started Discard unused packages weekly.
mar 15 14:46:02 stationara systemd[1]: Started Refresh Pacman mirrorlist weekly with Reflector..
mar 15 14:46:02 stationara systemd[1]: Started Daily verification of password and group files.
mar 15 14:46:02 stationara systemd[1]: Started Hourly Cleanup of Snapper Snapshots.
mar 15 14:46:02 stationara systemd[1]: Started Timeline of Snapper Snapshots.
mar 15 14:46:02 stationara systemd[1]: Started Daily Cleanup of Temporary Directories.
mar 15 14:46:02 stationara systemd[1]: Reached target Timer Units.
mar 15 14:46:02 stationara systemd[1]: Listening on D-Bus System Message Bus Socket.
mar 15 14:46:02 stationara systemd[1]: Listening on GnuPG network certificate management daemon for /etc/pacman.d/gnupg.
mar 15 14:46:02 stationara systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers) for /etc/pacman.d/gnupg.
mar 15 14:46:02 stationara systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (restricted) for /etc/pacman.d/gnupg.
mar 15 14:46:02 stationara systemd[1]: Listening on GnuPG cryptographic agent (ssh-agent emulation) for /etc/pacman.d/gnupg.
mar 15 14:46:02 stationara systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache for /etc/pacman.d/gnupg.
mar 15 14:46:02 stationara systemd[1]: Listening on GnuPG public key management service for /etc/pacman.d/gnupg.
mar 15 14:46:02 stationara systemd[1]: Listening on Authorization Manager Agent Helper.
mar 15 14:46:02 stationara systemd[1]: Listening on OpenSSH Server Socket (systemd-ssh-generator, AF_UNIX Local).
mar 15 14:46:02 stationara systemd[1]: Listening on Hostname Service Socket.
mar 15 14:46:02 stationara systemd[1]: Listening on User Login Management Varlink Socket.
mar 15 14:46:02 stationara systemd[1]: Listening on Virtual Machine and Container Registration Service Socket.
mar 15 14:46:02 stationara systemd[1]: Reached target Socket Units.
mar 15 14:46:02 stationara systemd[1]: Starting D-Bus System Message Bus...
mar 15 14:46:02 stationara systemd[1]: Starting TPM PCR Barrier (Initialization)...
mar 15 14:46:02 stationara systemd[1]: Started D-Bus System Message Bus.
mar 15 14:46:02 stationara systemd-pcrextend[961]: Extended PCR index 11 with 'sysinit' (banks sha1, sha256).
mar 15 14:46:02 stationara dbus-broker-launch[960]: Ready
mar 15 14:46:02 stationara systemd[1]: Finished TPM PCR Barrier (Initialization).
mar 15 14:46:02 stationara systemd[1]: Reached target Basic System.
mar 15 14:46:02 stationara systemd[1]: Starting Network Manager...
mar 15 14:46:02 stationara systemd[1]: Starting Bluetooth service...
mar 15 14:46:02 stationara systemd[1]: Starting User Login Management...
mar 15 14:46:02 stationara systemd[1]: Starting TPM PCR Barrier (User)...
mar 15 14:46:02 stationara systemd-pcrextend[969]: Extended PCR index 11 with 'ready' (banks sha1, sha256).
mar 15 14:46:02 stationara systemd[1]: Finished TPM PCR Barrier (User).
mar 15 14:46:02 stationara bluetoothd[965]: Bluetooth daemon 5.86
mar 15 14:46:02 stationara systemd[1]: Started Bluetooth service.
mar 15 14:46:02 stationara bluetoothd[965]: Starting SDP server
mar 15 14:46:02 stationara systemd[1]: Reached target Bluetooth Support.
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.7901] NetworkManager (version 1.56.0-1) is starting... (boot:3b35b640-9412-4f5d-89f7-4a4b8e05f9ed)
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.7901] Read config: /etc/NetworkManager/NetworkManager.conf, /usr/lib/NetworkManager/conf.d/20-connectivity.conf
mar 15 14:46:02 stationara kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
mar 15 14:46:02 stationara kernel: Bluetooth: BNEP filters: protocol multicast
mar 15 14:46:02 stationara kernel: Bluetooth: BNEP socket layer initialized
mar 15 14:46:02 stationara bluetoothd[965]: Bluetooth management interface 1.23 initialized
mar 15 14:46:02 stationara bluetoothd[965]: Battery Provider Manager created
mar 15 14:46:02 stationara kernel: Bluetooth: MGMT ver 1.23
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.7930] manager[0x565413919960]: monitoring kernel firmware directory '/lib/firmware'.
mar 15 14:46:02 stationara systemd[1]: Starting Hostname Service...
mar 15 14:46:02 stationara kernel: NET: Registered PF_ALG protocol family
mar 15 14:46:02 stationara systemd-logind[968]: New seat seat0.
mar 15 14:46:02 stationara systemd-logind[968]: Watching system buttons on /dev/input/event1 (Power Button)
mar 15 14:46:02 stationara systemd-logind[968]: Watching system buttons on /dev/input/event0 (Power Button)
mar 15 14:46:02 stationara systemd-logind[968]: Watching system buttons on /dev/input/event2 (Logitech USB Receiver)
mar 15 14:46:02 stationara systemd-logind[968]: Watching system buttons on /dev/input/event4 (Logitech USB Receiver Consumer Control)
mar 15 14:46:02 stationara systemd-logind[968]: Watching system buttons on /dev/input/event5 (Logitech USB Receiver System Control)
mar 15 14:46:02 stationara systemd[1]: Started User Login Management.
mar 15 14:46:02 stationara bluetoothd[965]: Failed to set default system config for hci0
mar 15 14:46:02 stationara systemd[1]: Started Hostname Service.
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.8520] hostname: hostname: using hostnamed
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.8520] hostname: static hostname changed from (none) to "stationara"
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.8522] dns-mgr: init: dns=default,systemd-resolved rc-manager=symlink
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.8534] manager[0x565413919960]: rfkill: Wi-Fi hardware radio set enabled
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.8534] manager[0x565413919960]: rfkill: WWAN hardware radio set enabled
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.8562] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.56.0-1/libnm-device-plugin-adsl.so)
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.8597] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.56.0-1/libnm-device-plugin-bluetooth.so)
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.8609] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.56.0-1/libnm-device-plugin-ovs.so)
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.8822] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.56.0-1/libnm-device-plugin-team.so)
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.8830] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.56.0-1/libnm-device-plugin-wifi.so)
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.8835] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.56.0-1/libnm-device-plugin-wwan.so)
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.8836] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.8837] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.8837] manager: Networking is enabled by state file
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.8839] settings: Loaded settings plugin: keyfile (internal)
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.8847] dhcp: init: Using DHCP client 'internal'
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.8848] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1)
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.8853] device (lo): state change: unmanaged -> unavailable (reason 'connection-assumed', managed-type: 'external')
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.8855] device (lo): state change: unavailable -> disconnected (reason 'connection-assumed', managed-type: 'external')
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.8858] device (lo): Activation: starting connection 'lo' (5c6355b6-d1ad-4f87-bcee-9d14bf86aee2)
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.8864] manager: (enp4s0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.8869] settings: (enp4s0): created default wired connection 'Trådbunden anslutning 1'
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.8869] device (enp4s0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
mar 15 14:46:02 stationara systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9147] manager: (wg0): new WireGuard device (/org/freedesktop/NetworkManager/Devices/3)
mar 15 14:46:02 stationara systemd[1]: Started Network Manager Script Dispatcher Service.
mar 15 14:46:02 stationara kernel: wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.
mar 15 14:46:02 stationara kernel: wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9357] device (wg0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
mar 15 14:46:02 stationara NetworkManager[964]: <warn>  [1773582362.9367] device (wg0): connectivity: "/proc/sys/net/ipv4/conf/wg0/rp_filter" is set to "1". This might break connectivity checking for IPv4 on this device
mar 15 14:46:02 stationara systemd[1]: Started Network Manager.
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9370] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9379] ovsdb: disconnected from ovsdb
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9379] device (lo): state change: disconnected -> prepare (reason 'none', managed-type: 'external')
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9380] device (lo): state change: prepare -> config (reason 'none', managed-type: 'external')
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9381] device (lo): state change: config -> ip-config (reason 'none', managed-type: 'external')
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9384] device (lo): state change: ip-config -> ip-check (reason 'none', managed-type: 'external')
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9388] device (wg0): state change: unavailable -> disconnected (reason 'none', managed-type: 'full')
mar 15 14:46:02 stationara systemd[1]: Reached target Network.
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9391] policy: auto-activating connection 'Personligt Nätverk' (70e92610-7271-4387-bc4c-59716f04463c)
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9392] device (lo): state change: ip-check -> secondaries (reason 'none', managed-type: 'external')
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9394] device (wg0): Activation: starting connection 'Personligt Nätverk' (70e92610-7271-4387-bc4c-59716f04463c)
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9394] device (lo): state change: secondaries -> activated (reason 'none', managed-type: 'external')
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9396] device (lo): Activation: successful, device activated.
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9398] device (wg0): state change: disconnected -> prepare (reason 'none', managed-type: 'full')
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9399] manager: NetworkManager state is now CONNECTING
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9400] device (wg0): state change: prepare -> config (reason 'none', managed-type: 'full')
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9401] device (wg0): state change: config -> need-auth (reason 'none', managed-type: 'full')
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9406] device (wg0): state change: need-auth -> prepare (reason 'none', managed-type: 'full')
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9407] device (wg0): state change: prepare -> config (reason 'none', managed-type: 'full')
mar 15 14:46:02 stationara systemd[1]: Starting Network Manager Wait Online...
mar 15 14:46:02 stationara systemd[1]: Starting Network Time Service...
mar 15 14:46:02 stationara systemd[1]: Starting Permit User Sessions...
mar 15 14:46:02 stationara systemd[1]: Finished Permit User Sessions.
mar 15 14:46:02 stationara ntpd[1028]: ntpd 4.2.8p18@1.4062-o Thu Oct 23 00:08:33 UTC 2025 (1): Starting
mar 15 14:46:02 stationara ntpd[1028]: Command line: /usr/bin/ntpd -g -u ntp:ntp
mar 15 14:46:02 stationara ntpd[1028]: ----------------------------------------------------
mar 15 14:46:02 stationara ntpd[1028]: ntp-4 is maintained by Network Time Foundation,
mar 15 14:46:02 stationara ntpd[1028]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
mar 15 14:46:02 stationara ntpd[1028]: corporation.  Support and training for ntp-4 are
mar 15 14:46:02 stationara ntpd[1028]: available at https://www.nwtime.org/support
mar 15 14:46:02 stationara ntpd[1028]: ----------------------------------------------------
mar 15 14:46:02 stationara ntpd[1028]: DEBUG behavior is enabled - a violation of any diagnostic assertion will cause ntpd to abort
mar 15 14:46:02 stationara systemd-resolved[724]: /etc/hosts:5: hostname "$HOSTNAME.localdomain" is not valid, ignoring.
mar 15 14:46:02 stationara systemd-resolved[724]: /etc/hosts:5: hostname "$HOSTNAME" is not valid, ignoring.
mar 15 14:46:02 stationara systemd-resolved[724]: /etc/hosts:5: line is missing any valid hostnames
mar 15 14:46:02 stationara systemd[1]: Started Greeter daemon.
mar 15 14:46:02 stationara ntpd[1036]: proto: precision = 0.040 usec (-24)
mar 15 14:46:02 stationara ntpd[1036]: basedate set to 2025-10-11
mar 15 14:46:02 stationara ntpd[1036]: gps base set to 2025-10-12 (week 2388)
mar 15 14:46:02 stationara ntpd[1036]: initial drift restored to -17.718506
mar 15 14:46:02 stationara ntpd[1036]: Listen and drop on 0 v6wildcard [::]:123
mar 15 14:46:02 stationara ntpd[1036]: Listen and drop on 1 v4wildcard 0.0.0.0:123
mar 15 14:46:02 stationara ntpd[1036]: Listen normally on 2 lo 127.0.0.1:123
mar 15 14:46:02 stationara ntpd[1036]: Listen normally on 3 lo [::1]:123
mar 15 14:46:02 stationara ntpd[1036]: Listening on routing socket on fd #20 for interface updates
mar 15 14:46:02 stationara ntpd[1036]: kernel reports TIME_ERROR: 0x41: Clock Unsynchronized
mar 15 14:46:02 stationara ntpd[1036]: kernel reports TIME_ERROR: 0x41: Clock Unsynchronized
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9710] device (wg0): state change: config -> ip-config (reason 'none', managed-type: 'full')
mar 15 14:46:02 stationara systemd-resolved[724]: wg0: Bus client set default route setting: yes
mar 15 14:46:02 stationara systemd-resolved[724]: wg0: Bus client set DNS server list to: 10.208.220.1
mar 15 14:46:02 stationara systemd[1]: Started Network Time Service.
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9747] device (wg0): state change: ip-config -> ip-check (reason 'none', managed-type: 'full')
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9768] device (wg0): state change: ip-check -> secondaries (reason 'none', managed-type: 'full')
mar 15 14:46:02 stationara greetd[1037]: config: Config { file: ConfigFile { terminal: ConfigTerminal { vt: Specific(1), switch: true }, general: ConfigGeneral { source_profile: true, runfile: "/run/greetd.run", service: "greetd" }, default_session: ConfigSession { command: "dbus-run-session cage -sd -- startgreeter.sh", user: "greeter", service: "greetd-greeter" }, initial_session: None }, internal: ConfigInternal { session_worker: 0 } }
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9768] device (wg0): state change: secondaries -> activated (reason 'none', managed-type: 'full')
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9769] manager: NetworkManager state is now CONNECTED_LOCAL
mar 15 14:46:02 stationara NetworkManager[964]: <info>  [1773582362.9770] device (wg0): Activation: successful, device activated.
mar 15 14:46:02 stationara greetd[1041]: config: Config { file: ConfigFile { terminal: ConfigTerminal { vt: None, switch: false }, general: ConfigGeneral { source_profile: true, runfile: "/run/greetd.run", service: "greetd" }, default_session: ConfigSession { command: "", user: "", service: "" }, initial_session: None }, internal: ConfigInternal { session_worker: 11 } }
mar 15 14:46:02 stationara dbus-broker-launch[960]: Activation request for 'org.freedesktop.home1' failed: The systemd unit 'dbus-org.freedesktop.home1.service' could not be found.
mar 15 14:46:02 stationara greetd[1041]: pam_unix(greetd:session): session opened for user greeter(uid=965) by greeter(uid=0)
mar 15 14:46:03 stationara systemd-logind[968]: New session '1' of user 'greeter' with class 'greeter' and type 'tty'.
mar 15 14:46:03 stationara systemd[1]: Created slice User Slice of UID 965.
mar 15 14:46:03 stationara systemd[1]: Starting User Runtime Directory /run/user/965...
mar 15 14:46:03 stationara systemd[1]: Finished User Runtime Directory /run/user/965.
mar 15 14:46:03 stationara systemd[1]: Starting User Manager for UID 965...
mar 15 14:46:03 stationara (systemd)[1051]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[greeter] ruser=[<unknown>] rhost=[<unknown>]
mar 15 14:46:03 stationara (systemd)[1051]: pam_unix(systemd-user:session): session opened for user greeter(uid=965) by greeter(uid=0)
mar 15 14:46:03 stationara systemd-logind[968]: New session '2' of user 'greeter' with class 'manager-early' and type 'unspecified'.
mar 15 14:46:03 stationara systemd[1051]: Queued start job for default target Main User Target.
mar 15 14:46:03 stationara systemd[1051]: Created slice User Application Slice.
mar 15 14:46:03 stationara systemd[1051]: Reached target Paths.
mar 15 14:46:03 stationara systemd[1051]: Reached target Timers.
mar 15 14:46:03 stationara systemd[1051]: Starting D-Bus User Message Bus Socket...
mar 15 14:46:03 stationara systemd[1051]: Listening on GnuPG network certificate management daemon.
mar 15 14:46:03 stationara systemd[1051]: Listening on GNOME Keyring daemon.
mar 15 14:46:03 stationara systemd[1051]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
mar 15 14:46:03 stationara systemd[1051]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
mar 15 14:46:03 stationara systemd[1051]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
mar 15 14:46:03 stationara systemd[1051]: Listening on GnuPG cryptographic agent and passphrase cache.
mar 15 14:46:03 stationara systemd[1051]: Listening on GnuPG public key management service.
mar 15 14:46:03 stationara systemd[1051]: Listening on p11-kit server.
mar 15 14:46:03 stationara systemd[1051]: Listening on PipeWire PulseAudio.
mar 15 14:46:03 stationara systemd[1051]: Listening on PipeWire Multimedia System Sockets.
mar 15 14:46:03 stationara systemd[1051]: Listening on Query the User Interactively for a Password.
mar 15 14:46:03 stationara systemd[1051]: Listening on Disk Image Download Service Socket.
mar 15 14:46:03 stationara systemd[1051]: Listening on Virtual Machine and Container Registration Service Socket.
mar 15 14:46:03 stationara systemd[1051]: Listening on D-Bus User Message Bus Socket.
mar 15 14:46:03 stationara systemd[1051]: Reached target Sockets.
mar 15 14:46:03 stationara systemd[1051]: Reached target Basic System.
mar 15 14:46:03 stationara systemd[1051]: Reached target Main User Target.
mar 15 14:46:03 stationara systemd[1051]: Startup finished in 147ms.
mar 15 14:46:03 stationara systemd[1]: Started User Manager for UID 965.
mar 15 14:46:03 stationara systemd[1]: Started Session 1 of User greeter.
mar 15 14:46:03 stationara systemd[1]: Starting RealtimeKit Scheduling Policy Service...
mar 15 14:46:03 stationara systemd[1]: Started RealtimeKit Scheduling Policy Service.
mar 15 14:46:03 stationara rtkit-daemon[1184]: Handling system-suspend using logind.
mar 15 14:46:03 stationara systemd[1051]: Created slice User Core Session Slice.
mar 15 14:46:03 stationara systemd[1051]: Starting D-Bus User Message Bus...
mar 15 14:46:03 stationara systemd[1051]: Started PipeWire Multimedia Service.
mar 15 14:46:03 stationara dbus-broker-launch[1188]: Service file '/usr/share/dbus-1/services/org.erikreider.swaync.service' is not named after the D-Bus name 'org.freedesktop.Notifications'.
mar 15 14:46:03 stationara dbus-broker-launch[1188]: Service file '/usr/share/dbus-1/services/org.xfce.Thunar.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
mar 15 14:46:03 stationara dbus-broker-launch[1188]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
mar 15 14:46:03 stationara dbus-broker-launch[1188]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
mar 15 14:46:03 stationara dbus-broker-launch[1188]: Service file '/usr/share/dbus-1/services/org.xfce.Tumbler.Cache1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Cache1'.
mar 15 14:46:03 stationara dbus-broker-launch[1188]: Service file '/usr/share/dbus-1/services/org.xfce.Tumbler.Manager1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Manager1'.
mar 15 14:46:03 stationara dbus-broker-launch[1188]: Service file '/usr/share/dbus-1/services/org.xfce.Tumbler.Thumbnailer1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Thumbnailer1'.
mar 15 14:46:03 stationara systemd[1051]: Started D-Bus User Message Bus.
mar 15 14:46:03 stationara dbus-broker-launch[1188]: Ready
mar 15 14:46:03 stationara systemd[1051]: Started Multimedia Service Session Manager.
mar 15 14:46:03 stationara systemd[1]: Starting Authorization Manager...
mar 15 14:46:03 stationara wireplumber[1192]: wp-state: failed to create directory /.local/state/wireplumber: Åtkomst nekas
mar 15 14:46:03 stationara wireplumber[1192]: wp-state: failed to create directory /.local/state/wireplumber: Åtkomst nekas
mar 15 14:46:03 stationara wireplumber[1192]: wp-state: failed to create directory /.local/state/wireplumber: Åtkomst nekas
mar 15 14:46:03 stationara wireplumber[1192]: wp-state: failed to create directory /.local/state/wireplumber: Åtkomst nekas
mar 15 14:46:03 stationara wireplumber[1192]: wp-state: failed to create directory /.local/state/wireplumber: Åtkomst nekas
mar 15 14:46:03 stationara wireplumber[1192]: wp-state: failed to create directory /.local/state/wireplumber: Åtkomst nekas
mar 15 14:46:03 stationara polkitd[1194]: Started polkitd version 127
mar 15 14:46:03 stationara systemd[1]: Started Authorization Manager.
mar 15 14:46:04 stationara rtkit-daemon[1184]: Successfully made thread 1189 of process 1189 owned by '965' high priority at nice level -11.
mar 15 14:46:04 stationara rtkit-daemon[1184]: Successfully made thread 1193 of process 1189 owned by '965' RT at priority 20.
mar 15 14:46:04 stationara rtkit-daemon[1184]: Successfully made thread 1192 of process 1192 owned by '965' high priority at nice level -11.
mar 15 14:46:04 stationara rtkit-daemon[1184]: Successfully made thread 1200 of process 1192 owned by '965' RT at priority 20.
mar 15 14:46:04 stationara wireplumber[1192]: default: Failed to get percentage from UPower: org.freedesktop.DBus.Error.NameHasNoOwner
mar 15 14:46:04 stationara wireplumber[1192]: wp-device: SPA handle 'api.libcamera.enum.manager' could not be loaded; is it installed?
mar 15 14:46:04 stationara wireplumber[1192]: s-monitors-libcamera: PipeWire's libcamera SPA plugin is missing or broken. Some camera types may not be supported.
mar 15 14:46:04 stationara kernel: Bluetooth: RFCOMM TTY layer initialized
mar 15 14:46:04 stationara kernel: Bluetooth: RFCOMM socket layer initialized
mar 15 14:46:04 stationara kernel: Bluetooth: RFCOMM ver 1.11
mar 15 14:46:04 stationara bluetoothd[965]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/ldac
mar 15 14:46:04 stationara bluetoothd[965]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSink/aptx_hd
mar 15 14:46:04 stationara bluetoothd[965]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aptx_hd
mar 15 14:46:04 stationara bluetoothd[965]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSink/aptx
mar 15 14:46:04 stationara bluetoothd[965]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aptx
mar 15 14:46:04 stationara bluetoothd[965]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSink/aac
mar 15 14:46:04 stationara bluetoothd[965]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aac
mar 15 14:46:04 stationara bluetoothd[965]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSink/opus_g
mar 15 14:46:04 stationara bluetoothd[965]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/opus_g
mar 15 14:46:04 stationara bluetoothd[965]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSink/sbc
mar 15 14:46:04 stationara bluetoothd[965]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/sbc
mar 15 14:46:04 stationara bluetoothd[965]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aptx_ll_1
mar 15 14:46:04 stationara bluetoothd[965]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aptx_ll_0
mar 15 14:46:04 stationara bluetoothd[965]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_1
mar 15 14:46:04 stationara bluetoothd[965]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_0
mar 15 14:46:04 stationara bluetoothd[965]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/faststream
mar 15 14:46:04 stationara bluetoothd[965]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/faststream_duplex
mar 15 14:46:04 stationara bluetoothd[965]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSink/opus_05
mar 15 14:46:04 stationara bluetoothd[965]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/opus_05
mar 15 14:46:04 stationara bluetoothd[965]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSink/opus_05_duplex
mar 15 14:46:04 stationara bluetoothd[965]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/opus_05_duplex
mar 15 14:46:05 stationara systemd[1]: systemd-rfkill.service: Deactivated successfully.
mar 15 14:46:05 stationara kernel: igb 0000:04:00.0 enp4s0: igb: enp4s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
mar 15 14:46:05 stationara NetworkManager[964]: <info>  [1773582365.9387] device (enp4s0): carrier: link connected
mar 15 14:46:05 stationara NetworkManager[964]: <info>  [1773582365.9389] device (enp4s0): state change: unavailable -> disconnected (reason 'carrier-changed', managed-type: 'full')
mar 15 14:46:05 stationara NetworkManager[964]: <info>  [1773582365.9404] policy: auto-activating connection 'Trådbunden anslutning 1' (1bdf034a-1369-30bd-9875-c30f6e7d3c19)
mar 15 14:46:05 stationara NetworkManager[964]: <info>  [1773582365.9407] device (enp4s0): Activation: starting connection 'Trådbunden anslutning 1' (1bdf034a-1369-30bd-9875-c30f6e7d3c19)
mar 15 14:46:05 stationara NetworkManager[964]: <info>  [1773582365.9408] device (enp4s0): state change: disconnected -> prepare (reason 'none', managed-type: 'full')
mar 15 14:46:05 stationara NetworkManager[964]: <info>  [1773582365.9409] manager: NetworkManager state is now CONNECTING
mar 15 14:46:05 stationara NetworkManager[964]: <info>  [1773582365.9410] device (enp4s0): state change: prepare -> config (reason 'none', managed-type: 'full')
mar 15 14:46:05 stationara NetworkManager[964]: <info>  [1773582365.9421] device (enp4s0): state change: config -> ip-config (reason 'none', managed-type: 'full')
mar 15 14:46:05 stationara NetworkManager[964]: <info>  [1773582365.9433] dhcp4 (enp4s0): activation: beginning transaction (timeout in 45 seconds)
mar 15 14:46:05 stationara NetworkManager[964]: <info>  [1773582365.9511] dhcp4 (enp4s0): state changed new lease, address=192.168.20.124, acd pending
mar 15 14:46:06 stationara NetworkManager[964]: <info>  [1773582366.0811] dhcp4 (enp4s0): state changed new lease, address=192.168.20.124
mar 15 14:46:06 stationara NetworkManager[964]: <info>  [1773582366.0819] policy: set 'Trådbunden anslutning 1' (enp4s0) as default for IPv4 routing and DNS
mar 15 14:46:06 stationara systemd-resolved[724]: enp4s0: Bus client set search domain list to: lan
mar 15 14:46:06 stationara systemd-resolved[724]: enp4s0: Bus client set default route setting: no
mar 15 14:46:06 stationara systemd-resolved[724]: enp4s0: Bus client set DNS server list to: 192.168.20.205
mar 15 14:46:06 stationara NetworkManager[964]: <info>  [1773582366.0994] device (enp4s0): state change: ip-config -> ip-check (reason 'none', managed-type: 'full')
mar 15 14:46:06 stationara NetworkManager[964]: <info>  [1773582366.1005] device (enp4s0): state change: ip-check -> secondaries (reason 'none', managed-type: 'full')
mar 15 14:46:06 stationara NetworkManager[964]: <info>  [1773582366.1006] device (enp4s0): state change: secondaries -> activated (reason 'none', managed-type: 'full')
mar 15 14:46:06 stationara NetworkManager[964]: <info>  [1773582366.1009] manager: NetworkManager state is now CONNECTED_SITE
mar 15 14:46:06 stationara NetworkManager[964]: <info>  [1773582366.1012] device (enp4s0): Activation: successful, device activated.
mar 15 14:46:06 stationara NetworkManager[964]: <info>  [1773582366.1016] manager: startup complete
mar 15 14:46:06 stationara systemd[1]: Finished Network Manager Wait Online.
mar 15 14:46:06 stationara systemd[1]: Reached target Network is Online.
mar 15 14:46:06 stationara systemd[1]: Starting Notify NFS peers of a restart...
mar 15 14:46:06 stationara systemd[1]: Starting NFS status monitor for NFSv2/3 locking....
mar 15 14:46:06 stationara sm-notify[1282]: Version 2.8.7 starting
mar 15 14:46:06 stationara systemd[1]: Started Notify NFS peers of a restart.
mar 15 14:46:06 stationara rpc.statd[1285]: Version 2.8.7 starting
mar 15 14:46:06 stationara rpc.statd[1285]: Flags: TI-RPC
mar 15 14:46:06 stationara systemd[1]: Started NFS status monitor for NFSv2/3 locking..
mar 15 14:46:06 stationara systemd[1]: Starting Automounts filesystems on demand...
mar 15 14:46:06 stationara (automount)[1287]: autofs.service: Referenced but unset environment variable evaluates to an empty string: OPTIONS
mar 15 14:46:06 stationara systemd[1]: tmp-autoSCcLBp.mount: Deactivated successfully.
mar 15 14:46:06 stationara systemd[1]: Started Automounts filesystems on demand.
mar 15 14:46:06 stationara systemd[1]: Reached target Multi-User System.
mar 15 14:46:06 stationara systemd[1]: Reached target Graphical Interface.
mar 15 14:46:06 stationara systemd[1]: Startup finished in 21.987s (firmware) + 911ms (loader) + 2.239s (kernel) + 5.265s (initrd) + 6.619s (userspace) = 37.023s.
mar 15 14:46:06 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC= SRC=192.168.20.124 DST=224.0.0.252 LEN=56 TOS=0x00 PREC=0x00 TTL=255 ID=7107 PROTO=UDP SPT=5355 DPT=5355 LEN=36 
mar 15 14:46:06 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC= SRC=192.168.20.124 DST=224.0.0.252 LEN=56 TOS=0x00 PREC=0x00 TTL=255 ID=7226 PROTO=UDP SPT=5355 DPT=5355 LEN=36 
mar 15 14:46:07 stationara systemd[1]: tmp-autoQpxlxO.mount: Deactivated successfully.
mar 15 14:46:07 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC= SRC=192.168.20.124 DST=224.0.0.252 LEN=56 TOS=0x00 PREC=0x00 TTL=255 ID=7398 PROTO=UDP SPT=5355 DPT=5355 LEN=36 
mar 15 14:46:07 stationara NetworkManager[964]: <info>  [1773582367.5424] dhcp6 (enp4s0): activation: beginning transaction (timeout in 45 seconds)
mar 15 14:46:07 stationara NetworkManager[964]: <info>  [1773582367.5438] policy: set 'Trådbunden anslutning 1' (enp4s0) as default for IPv6 routing and DNS
mar 15 14:46:07 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC= SRC=fe80:0000:0000:0000:9099:517a:e4db:e689 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=76 TC=0 HOPLIMIT=255 FLOWLBL=552619 PROTO=UDP SPT=5355 DPT=5355 LEN=36 
mar 15 14:46:07 stationara NetworkManager[964]: <info>  [1773582367.5570] dhcp6 (enp4s0): state changed new lease, address=fd92:b956:263b::96f 2001:2043:7b4d:2d00::96f
mar 15 14:46:07 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC= SRC=fe80:0000:0000:0000:9099:517a:e4db:e689 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=76 TC=0 HOPLIMIT=255 FLOWLBL=552619 PROTO=UDP SPT=5355 DPT=5355 LEN=36 
mar 15 14:46:08 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC= SRC=fe80:0000:0000:0000:9099:517a:e4db:e689 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=76 TC=0 HOPLIMIT=255 FLOWLBL=552619 PROTO=UDP SPT=5355 DPT=5355 LEN=36 
mar 15 14:46:10 stationara greetd[1299]: config: Config { file: ConfigFile { terminal: ConfigTerminal { vt: None, switch: false }, general: ConfigGeneral { source_profile: true, runfile: "/run/greetd.run", service: "greetd" }, default_session: ConfigSession { command: "", user: "", service: "" }, initial_session: None }, internal: ConfigInternal { session_worker: 12 } }
mar 15 14:46:11 stationara ntpd[1036]: Listen normally on 4 enp4s0 192.168.20.124:123
mar 15 14:46:11 stationara ntpd[1036]: Listen normally on 5 wg0 10.208.220.2:123
mar 15 14:46:11 stationara ntpd[1036]: Listen normally on 6 enp4s0 [fd92:b956:263b::96f]:123
mar 15 14:46:11 stationara ntpd[1036]: Listen normally on 7 enp4s0 [2001:2043:7b4d:2d00::96f]:123
mar 15 14:46:11 stationara ntpd[1036]: Listen normally on 8 enp4s0 [2001:2043:7b4d:2d00:4d60:daa3:6681:78e8]:123
mar 15 14:46:11 stationara ntpd[1036]: Listen normally on 9 enp4s0 [fd92:b956:263b:0:294b:7d16:e5ef:7752]:123
mar 15 14:46:11 stationara ntpd[1036]: Listen normally on 10 enp4s0 [fe80::9099:517a:e4db:e689%2]:123
mar 15 14:46:11 stationara ntpd[1036]: Listen normally on 11 wg0 [fe80::9995:1481:3ac0:88ab%3]:123
mar 15 14:46:11 stationara ntpd[1036]: 155.4.55.243 local addr <null> -> 192.168.20.124
mar 15 14:46:11 stationara ntpd[1036]: 98.128.175.45 local addr <null> -> 192.168.20.124
mar 15 14:46:11 stationara ntpd[1036]: 193.182.111.12 local addr <null> -> 192.168.20.124
mar 15 14:46:11 stationara ntpd[1036]: 162.159.200.1 local addr <null> -> 192.168.20.124
mar 15 14:46:11 stationara ntpd[1036]: new interface(s) found: waking up resolver
mar 15 14:46:12 stationara systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 15 14:46:19 stationara nfsrahead[1458]: skipping non-NFS device 253:2
mar 15 14:46:19 stationara systemd[1]: Condition check resulted in /dev/disk/by-id/dm-name-shellback being skipped.
mar 15 14:46:19 stationara systemd[1]: Condition check resulted in /dev/dm-2 being skipped.
mar 15 14:46:19 stationara systemd[1]: Condition check resulted in /sys/devices/virtual/block/dm-2 being skipped.
mar 15 14:46:19 stationara systemd[1]: Condition check resulted in /dev/disk/by-id/dm-uuid-CRYPT-LUKS2-678d19af05c2412c93d650cea5aa8793-shellback being skipped.
mar 15 14:46:19 stationara systemd[1]: Condition check resulted in /dev/disk/by-diskseq/8 being skipped.
mar 15 14:46:19 stationara systemd[1]: Created slice User Slice of UID 1000.
mar 15 14:46:19 stationara systemd[1]: Finished cryptsetup-shellback.service.
mar 15 14:46:19 stationara systemd[1]: Mounting /home/shellback...
mar 15 14:46:19 stationara systemd[1]: Starting User Runtime Directory /run/user/1000...
mar 15 14:46:19 stationara systemd-user-runtime-dir[1463]: Successfully configured disk quota for UID 1000 on /dev/shm to 6.2G
mar 15 14:46:19 stationara systemd[1]: Finished User Runtime Directory /run/user/1000.
mar 15 14:46:19 stationara systemd[1]: run-user-965-doc.mount: Deactivated successfully.
mar 15 14:46:19 stationara systemd[1]: run-user-965-gvfs.mount: Deactivated successfully.
mar 15 14:46:19 stationara greetd[1041]: pam_unix(greetd:session): session closed for user greeter
mar 15 14:46:19 stationara systemd[1]: session-1.scope: Deactivated successfully.
mar 15 14:46:19 stationara systemd[1]: session-1.scope: Consumed 745ms CPU time over 15.983s wall clock time, 288.3M memory peak.
mar 15 14:46:19 stationara systemd-logind[968]: Session 1 logged out. Waiting for processes to exit.
mar 15 14:46:19 stationara systemd-logind[968]: Removed session 1.
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/ldac
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSink/aptx_hd
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aptx_hd
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSink/aptx
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aptx
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSink/aac
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aac
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSink/opus_g
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/opus_g
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSink/sbc
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/sbc
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aptx_ll_1
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aptx_ll_0
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_1
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_0
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/faststream
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/faststream_duplex
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSink/opus_05
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/opus_05
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSink/opus_05_duplex
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/opus_05_duplex
mar 15 14:46:19 stationara greetd[1299]: pam_unix(greetd:session): session opened for user shellback(uid=1000) by shellback(uid=0)
mar 15 14:46:19 stationara kernel: EXT4-fs (dm-2): mounting with "discard" option, but the device does not support discard
mar 15 14:46:19 stationara kernel: EXT4-fs (dm-2): mounted filesystem 2f7d7512-74a7-44cc-851e-3396353082a0 r/w with ordered data mode. Quota mode: none.
mar 15 14:46:19 stationara systemd[1]: Mounted /home/shellback.
mar 15 14:46:19 stationara systemd[1]: Starting User Manager for UID 1000...
mar 15 14:46:19 stationara systemd[1051]: Reached target Sound Card.
mar 15 14:46:19 stationara systemd-logind[968]: New session '3' of user 'shellback' with class 'user' and type 'tty'.
mar 15 14:46:19 stationara (systemd)[1512]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[shellback] ruser=[<unknown>] rhost=[<unknown>]
mar 15 14:46:19 stationara (systemd)[1512]: pam_unix(systemd-user:session): session opened for user shellback(uid=1000) by shellback(uid=0)
mar 15 14:46:19 stationara systemd-logind[968]: New session '4' of user 'shellback' with class 'manager' and type 'unspecified'.
mar 15 14:46:19 stationara systemd-xdg-autostart-generator[1535]: Exec binary '/opt/localsend/localsend' does not exist: No such file or directory
mar 15 14:46:19 stationara systemd-xdg-autostart-generator[1535]: /home/shellback/.config/autostart/localsend_app.desktop: not generating unit, executable specified in Exec= does not exist.
mar 15 14:46:19 stationara systemd-xdg-autostart-generator[1535]: Exec binary '/usr/bin/nextcloud' does not exist: No such file or directory
mar 15 14:46:19 stationara systemd-xdg-autostart-generator[1535]: /home/shellback/.config/autostart/Nextcloud.desktop: not generating unit, executable specified in Exec= does not exist.
mar 15 14:46:19 stationara systemd-xdg-autostart-generator[1535]: Exec binary 'audio-recorder' does not exist: No such file or directory
mar 15 14:46:19 stationara systemd-xdg-autostart-generator[1535]: /home/shellback/.config/autostart/audio-recorder.desktop: not generating unit, executable specified in Exec= does not exist.
mar 15 14:46:19 stationara systemd-xdg-autostart-generator[1535]: Exec binary '/usr/bin/nextcloud' does not exist: No such file or directory
mar 15 14:46:19 stationara systemd-xdg-autostart-generator[1535]: /home/shellback/.config/autostart/com.nextcloud.desktopclient.nextcloud.desktop: not generating unit, executable specified in Exec= does not exist.
mar 15 14:46:19 stationara systemd[1512]: Queued start job for default target Main User Target.
mar 15 14:46:19 stationara systemd[1512]: Created slice User Application Slice.
mar 15 14:46:19 stationara systemd[1512]: Created slice User Core Session Slice.
mar 15 14:46:19 stationara systemd[1512]: Reached target Paths.
mar 15 14:46:19 stationara systemd[1512]: Reached target Timers.
mar 15 14:46:19 stationara systemd[1512]: Starting D-Bus User Message Bus Socket...
mar 15 14:46:19 stationara systemd[1512]: Listening on GnuPG network certificate management daemon.
mar 15 14:46:19 stationara systemd[1512]: Listening on GNOME Keyring daemon.
mar 15 14:46:19 stationara systemd[1512]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
mar 15 14:46:19 stationara systemd[1512]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
mar 15 14:46:19 stationara systemd[1512]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
mar 15 14:46:19 stationara systemd[1512]: Listening on GnuPG cryptographic agent and passphrase cache.
mar 15 14:46:19 stationara systemd[1512]: Listening on GnuPG public key management service.
mar 15 14:46:19 stationara systemd[1512]: Listening on p11-kit server.
mar 15 14:46:19 stationara systemd[1512]: Listening on PipeWire PulseAudio.
mar 15 14:46:19 stationara systemd[1512]: Listening on PipeWire Multimedia System Sockets.
mar 15 14:46:19 stationara systemd[1512]: Listening on Query the User Interactively for a Password.
mar 15 14:46:19 stationara systemd[1512]: Listening on Disk Image Download Service Socket.
mar 15 14:46:19 stationara systemd[1512]: Listening on Virtual Machine and Container Registration Service Socket.
mar 15 14:46:19 stationara systemd[1512]: Listening on D-Bus User Message Bus Socket.
mar 15 14:46:19 stationara systemd[1512]: Reached target Sockets.
mar 15 14:46:19 stationara systemd[1512]: Starting D-Bus User Message Bus...
mar 15 14:46:19 stationara dbus-broker-launch[1540]: Service file '/usr/share/dbus-1/services/org.erikreider.swaync.service' is not named after the D-Bus name 'org.freedesktop.Notifications'.
mar 15 14:46:19 stationara dbus-broker-launch[1540]: Service file '/usr/share/dbus-1/services/org.xfce.Thunar.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
mar 15 14:46:19 stationara dbus-broker-launch[1540]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
mar 15 14:46:19 stationara dbus-broker-launch[1540]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
mar 15 14:46:19 stationara dbus-broker-launch[1540]: Service file '/usr/share/dbus-1/services/org.xfce.Tumbler.Cache1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Cache1'.
mar 15 14:46:19 stationara dbus-broker-launch[1540]: Service file '/usr/share/dbus-1/services/org.xfce.Tumbler.Manager1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Manager1'.
mar 15 14:46:19 stationara dbus-broker-launch[1540]: Service file '/usr/share/dbus-1/services/org.xfce.Tumbler.Thumbnailer1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Thumbnailer1'.
mar 15 14:46:19 stationara systemd[1512]: Started D-Bus User Message Bus.
mar 15 14:46:19 stationara dbus-broker-launch[1540]: Ready
mar 15 14:46:19 stationara systemd[1512]: Reached target Basic System.
mar 15 14:46:19 stationara systemd[1512]: Reached target Current graphical user session.
mar 15 14:46:19 stationara systemd[1]: Started User Manager for UID 1000.
mar 15 14:46:19 stationara systemd[1512]: Started PipeWire Multimedia Service.
mar 15 14:46:19 stationara systemd[1]: Started Session 3 of User shellback.
mar 15 14:46:19 stationara systemd[1512]: Started Soteria Polkit Authentication Agent.
mar 15 14:46:19 stationara systemd[1512]: Started Multimedia Service Session Manager.
mar 15 14:46:19 stationara systemd[1512]: Started PipeWire PulseAudio.
mar 15 14:46:19 stationara systemd[1512]: Reached target Main User Target.
mar 15 14:46:19 stationara systemd[1512]: Startup finished in 173ms.
mar 15 14:46:19 stationara rtkit-daemon[1184]: Successfully made thread 1542 of process 1542 owned by '1000' high priority at nice level -11.
mar 15 14:46:19 stationara rtkit-daemon[1184]: Successfully made thread 1562 of process 1542 owned by '1000' RT at priority 20.
mar 15 14:46:19 stationara rtkit-daemon[1184]: Successfully made thread 1546 of process 1546 owned by '1000' high priority at nice level -11.
mar 15 14:46:19 stationara rtkit-daemon[1184]: Successfully made thread 1568 of process 1546 owned by '1000' RT at priority 20.
mar 15 14:46:19 stationara rtkit-daemon[1184]: Successfully made thread 1545 of process 1545 owned by '1000' high priority at nice level -11.
mar 15 14:46:19 stationara rtkit-daemon[1184]: Successfully made thread 1574 of process 1545 owned by '1000' RT at priority 20.
mar 15 14:46:19 stationara systemd[1512]: Starting AT-SPI D-Bus Bus...
mar 15 14:46:19 stationara soteria[1543]: 2026-03-15T13:46:19.455032Z  INFO no configuration file found, using default configuration instead
mar 15 14:46:19 stationara soteria[1543]: 2026-03-15T13:46:19.455069Z  INFO using agent socket at /run/polkit/agent-helper.socket
mar 15 14:46:19 stationara soteria[1543]: 2026-03-15T13:46:19.455119Z  INFO Registering authentication agent with locale: sv_SE.utf-8
mar 15 14:46:19 stationara soteria[1543]: Error: Could not get XDG session id, make sure that it is set and try again.
mar 15 14:46:19 stationara soteria[1543]: Caused by:
mar 15 14:46:19 stationara soteria[1543]:     environment variable not found
mar 15 14:46:19 stationara soteria[1543]: Location:
mar 15 14:46:19 stationara soteria[1543]:     src/main.rs:88:18
mar 15 14:46:19 stationara systemd[1512]: Starting Blueman Applet...
mar 15 14:46:19 stationara systemd[1512]: Starting Certificate and Key Storage...
mar 15 14:46:19 stationara systemd[1512]: Starting Secret Storage Service...
mar 15 14:46:19 stationara systemd[1512]: Started blueman-applet.service.
mar 15 14:46:19 stationara systemd[1512]: Started bnk2pta.service.
mar 15 14:46:19 stationara systemd[1512]: Started clapboard.service.
mar 15 14:46:19 stationara systemd[1512]: Started swaync.service.
mar 15 14:46:19 stationara systemd[1512]: Started wljoywake.service.
mar 15 14:46:19 stationara (clapboard)[1602]: clapboard.service: Unable to locate executable '/usr/bin/clapboard': No such file or directory
mar 15 14:46:19 stationara (clapboard)[1602]: clapboard.service: Failed at step EXEC spawning /usr/bin/clapboard: No such file or directory
mar 15 14:46:19 stationara systemd[1512]: Started wpaperd.service.
mar 15 14:46:19 stationara systemd[1512]: Starting User folders update...
mar 15 14:46:19 stationara systemd[1512]: Started Blueman Applet.
mar 15 14:46:19 stationara systemd[1512]: soteria.service: Main process exited, code=exited, status=1/FAILURE
mar 15 14:46:19 stationara systemd[1512]: soteria.service: Failed with result 'exit-code'.
mar 15 14:46:19 stationara (wljoywake)[1604]: wljoywake.service: Unable to locate executable '/usr/bin/wljoywake': No such file or directory
mar 15 14:46:19 stationara (wljoywake)[1604]: wljoywake.service: Failed at step EXEC spawning /usr/bin/wljoywake: No such file or directory
mar 15 14:46:19 stationara systemd[1512]: app-at\x2dspi\x2ddbus\x2dbus@autostart.service: Skipped due to 'exec-condition'.
mar 15 14:46:19 stationara systemd[1512]: Condition check resulted in AT-SPI D-Bus Bus being skipped.
mar 15 14:46:19 stationara systemd[1512]: app-gnome\x2dkeyring\x2dpkcs11@autostart.service: Skipped due to 'exec-condition'.
mar 15 14:46:19 stationara systemd[1512]: Condition check resulted in Certificate and Key Storage being skipped.
mar 15 14:46:19 stationara systemd[1512]: app-gnome\x2dkeyring\x2dsecrets@autostart.service: Skipped due to 'exec-condition'.
mar 15 14:46:19 stationara systemd[1512]: Condition check resulted in Secret Storage Service being skipped.
mar 15 14:46:19 stationara systemd[1512]: clapboard.service: Main process exited, code=exited, status=203/EXEC
mar 15 14:46:19 stationara systemd[1512]: clapboard.service: Failed with result 'exit-code'.
mar 15 14:46:19 stationara systemd[1512]: wljoywake.service: Main process exited, code=exited, status=203/EXEC
mar 15 14:46:19 stationara systemd[1512]: wljoywake.service: Failed with result 'exit-code'.
mar 15 14:46:19 stationara systemd[1512]: Finished User folders update.
mar 15 14:46:19 stationara systemd[1512]: Reached target Session services which should run early before the graphical session is brought up.
mar 15 14:46:19 stationara systemd[1512]: Starting A scrollable-tiling Wayland compositor...
mar 15 14:46:19 stationara wpaperd[1608]: ERROR [wpaperd]
mar 15 14:46:19 stationara wpaperd[1608]:    0: Failed to connect to the Wayland server
mar 15 14:46:19 stationara wpaperd[1608]:    1: Could not find wayland compositor
mar 15 14:46:19 stationara wpaperd[1608]: Suggestion: Are you running a wayland compositor?
mar 15 14:46:19 stationara wpaperd[1608]: Backtrace omitted. Run with RUST_BACKTRACE=1 environment variable to display it.
mar 15 14:46:19 stationara wpaperd[1608]: Run with RUST_BACKTRACE=full to include source snippets.
mar 15 14:46:19 stationara wpaperd[1608]: Error:
mar 15 14:46:19 stationara wpaperd[1608]:    0: Failed to connect to the Wayland server
mar 15 14:46:19 stationara wpaperd[1608]:    1: Could not find wayland compositor
mar 15 14:46:19 stationara wpaperd[1608]: Suggestion: Are you running a wayland compositor?
mar 15 14:46:19 stationara wpaperd[1608]: Backtrace omitted. Run with RUST_BACKTRACE=1 environment variable to display it.
mar 15 14:46:19 stationara wpaperd[1608]: Run with RUST_BACKTRACE=full to include source snippets.
mar 15 14:46:19 stationara systemd[1512]: wpaperd.service: Main process exited, code=exited, status=1/FAILURE
mar 15 14:46:19 stationara systemd[1512]: wpaperd.service: Failed with result 'exit-code'.
mar 15 14:46:19 stationara niri[1613]: 2026-03-15T13:46:19.519376Z  INFO niri: starting version 25.11 (b35bcae)
mar 15 14:46:19 stationara swaync[1603]: Starting SwayNotificationCenter version swaync 0.12.4
mar 15 14:46:19 stationara systemd[1512]: Starting Virtual filesystem service...
mar 15 14:46:19 stationara niri[1613]: 2026-03-15T13:46:19.546818Z DEBUG niri_config: loaded config from "/home/shellback/.config/niri/config.kdl"
mar 15 14:46:19 stationara systemd[1512]: Started Virtual filesystem service.
mar 15 14:46:19 stationara swaync[1603]: Failed to open display
mar 15 14:46:19 stationara systemd[1512]: swaync.service: Main process exited, code=exited, status=1/FAILURE
mar 15 14:46:19 stationara systemd[1512]: swaync.service: Failed with result 'exit-code'.
mar 15 14:46:19 stationara niri[1613]: 2026-03-15T13:46:19.668804Z  INFO niri::backend::tty: using as the render node: "/dev/dri/renderD128"
mar 15 14:46:19 stationara niri[1613]: 2026-03-15T13:46:19.685748Z DEBUG niri::backend::tty: adding device: 57857 "/dev/dri/card1"
mar 15 14:46:19 stationara niri[1613]: 2026-03-15T13:46:19.685772Z DEBUG niri::backend::tty: this is the primary node
mar 15 14:46:19 stationara blueman-applet[1595]: gtk_icon_theme_get_for_screen: assertion 'GDK_IS_SCREEN (screen)' failed
mar 15 14:46:19 stationara blueman-applet[1599]: gtk_icon_theme_get_for_screen: assertion 'GDK_IS_SCREEN (screen)' failed
mar 15 14:46:19 stationara blueman-applet[1599]: Traceback (most recent call last):
mar 15 14:46:19 stationara blueman-applet[1595]: Traceback (most recent call last):
mar 15 14:46:19 stationara blueman-applet[1599]:   File "/usr/bin/blueman-applet", line 39, in <module>
mar 15 14:46:19 stationara blueman-applet[1599]:     app = BluemanApplet()
mar 15 14:46:19 stationara blueman-applet[1599]:   File "/usr/lib/python3.14/site-packages/blueman/main/Applet.py", line 28, in __init__
mar 15 14:46:19 stationara blueman-applet[1599]:     setup_icon_path()
mar 15 14:46:19 stationara blueman-applet[1599]:     ~~~~~~~~~~~~~~~^^
mar 15 14:46:19 stationara blueman-applet[1595]:   File "/usr/bin/blueman-applet", line 39, in <module>
mar 15 14:46:19 stationara blueman-applet[1595]:     app = BluemanApplet()
mar 15 14:46:19 stationara blueman-applet[1595]:   File "/usr/lib/python3.14/site-packages/blueman/main/Applet.py", line 28, in __init__
mar 15 14:46:19 stationara blueman-applet[1595]:     setup_icon_path()
mar 15 14:46:19 stationara blueman-applet[1595]:     ~~~~~~~~~~~~~~~^^
mar 15 14:46:19 stationara blueman-applet[1595]:   File "/usr/lib/python3.14/site-packages/blueman/Functions.py", line 140, in setup_icon_path
mar 15 14:46:19 stationara blueman-applet[1595]:     ic.prepend_search_path(ICON_PATH)
mar 15 14:46:19 stationara blueman-applet[1595]:     ^^^^^^^^^^^^^^^^^^^^^^
mar 15 14:46:19 stationara blueman-applet[1595]: AttributeError: 'NoneType' object has no attribute 'prepend_search_path'
mar 15 14:46:19 stationara blueman-applet[1599]:   File "/usr/lib/python3.14/site-packages/blueman/Functions.py", line 140, in setup_icon_path
mar 15 14:46:19 stationara blueman-applet[1599]:     ic.prepend_search_path(ICON_PATH)
mar 15 14:46:19 stationara blueman-applet[1599]:     ^^^^^^^^^^^^^^^^^^^^^^
mar 15 14:46:19 stationara blueman-applet[1599]: AttributeError: 'NoneType' object has no attribute 'prepend_search_path'
mar 15 14:46:19 stationara niri[1613]: 2026-03-15T13:46:19.716004Z DEBUG niri::backend::tty: got render node: renderD128
mar 15 14:46:19 stationara niri[1613]: 2026-03-15T13:46:19.716021Z DEBUG niri::backend::tty: initializing the primary renderer
mar 15 14:46:19 stationara niri[1613]: 2026-03-15T13:46:19.729778Z  WARN niri::backend::tty: error binding wl-display in EGL: EglExtensionNotSupported(["EGL_WL_bind_wayland_display"])
mar 15 14:46:19 stationara systemd[1512]: app-blueman@autostart.service: Main process exited, code=exited, status=1/FAILURE
mar 15 14:46:19 stationara systemd[1512]: app-blueman@autostart.service: Failed with result 'exit-code'.
mar 15 14:46:19 stationara systemd[1512]: blueman-applet.service: Main process exited, code=exited, status=1/FAILURE
mar 15 14:46:19 stationara systemd[1512]: blueman-applet.service: Failed with result 'exit-code'.
mar 15 14:46:19 stationara systemd[1512]: wpaperd.service: Scheduled restart job, restart counter is at 1.
mar 15 14:46:19 stationara systemd[1512]: Started wpaperd.service.
mar 15 14:46:19 stationara niri[1613]: 2026-03-15T13:46:19.739103Z DEBUG niri::backend::tty: device changed: 57857
mar 15 14:46:19 stationara niri[1613]: 2026-03-15T13:46:19.749695Z DEBUG niri::backend::tty: new connector: DP-1 "Samsung Electric Company LC34G55T HNTY105709"
mar 15 14:46:19 stationara niri[1613]: 2026-03-15T13:46:19.749875Z DEBUG niri::backend::tty: connecting connector: DP-1
mar 15 14:46:19 stationara niri[1613]: 2026-03-15T13:46:19.749892Z DEBUG niri::backend::tty: picking mode: Mode { name: "3440x1440", clock: 879710, size: (3440, 1440), hsync: (3488, 3520, 3600), vsync: (1467, 1475, 1481), hskew: 0, vscan: 0, vrefresh: 165, mode_type: ModeTypeFlags(PREFERRED | DRIVER) }
mar 15 14:46:19 stationara niri[1613]: 2026-03-15T13:46:19.750341Z  WARN niri::backend::tty: cannot enable VRR because connector does not support it
mar 15 14:46:19 stationara niri[1613]: 2026-03-15T13:46:19.751212Z DEBUG niri::niri: putting output DP-1 at x=0 y=0
mar 15 14:46:19 stationara niri[1613]: 2026-03-15T13:46:19.751282Z  INFO niri: listening on Wayland socket: wayland-1
mar 15 14:46:19 stationara niri[1613]: 2026-03-15T13:46:19.751287Z  INFO niri: IPC listening on: /run/user/1000/niri.wayland-1.1613.sock
mar 15 14:46:19 stationara wpaperd[1666]: ERROR [wpaperd]
mar 15 14:46:19 stationara wpaperd[1666]:    0: Failed to connect to the Wayland server
mar 15 14:46:19 stationara wpaperd[1666]:    1: Could not find wayland compositor
mar 15 14:46:19 stationara wpaperd[1666]: Suggestion: Are you running a wayland compositor?
mar 15 14:46:19 stationara wpaperd[1666]: Backtrace omitted. Run with RUST_BACKTRACE=1 environment variable to display it.
mar 15 14:46:19 stationara wpaperd[1666]: Run with RUST_BACKTRACE=full to include source snippets.
mar 15 14:46:19 stationara wpaperd[1666]: Error:
mar 15 14:46:19 stationara wpaperd[1666]:    0: Failed to connect to the Wayland server
mar 15 14:46:19 stationara wpaperd[1666]:    1: Could not find wayland compositor
mar 15 14:46:19 stationara wpaperd[1666]: Suggestion: Are you running a wayland compositor?
mar 15 14:46:19 stationara wpaperd[1666]: Backtrace omitted. Run with RUST_BACKTRACE=1 environment variable to display it.
mar 15 14:46:19 stationara wpaperd[1666]: Run with RUST_BACKTRACE=full to include source snippets.
mar 15 14:46:19 stationara systemd[1512]: wpaperd.service: Main process exited, code=exited, status=1/FAILURE
mar 15 14:46:19 stationara systemd[1512]: wpaperd.service: Failed with result 'exit-code'.
mar 15 14:46:19 stationara niri[1613]: 2026-03-15T13:46:19.758943Z  INFO niri: listening on X11 socket: :0
mar 15 14:46:19 stationara systemd[1512]: Started A scrollable-tiling Wayland compositor.
mar 15 14:46:19 stationara systemd[1512]: Reached target Startup of XDG autostart applications.
mar 15 14:46:19 stationara systemd[1512]: Started ashell.service.
mar 15 14:46:19 stationara systemd[1512]: Started nwg-drawer.service.
mar 15 14:46:19 stationara systemd[1512]: Started swayidle.service.
mar 15 14:46:19 stationara systemd[1]: Starting Locale Service...
mar 15 14:46:19 stationara systemd[1512]: Started app-niri-dbus\x2dupdate\x2dactivation\x2denvironment-1702.scope.
mar 15 14:46:19 stationara systemd[1512]: Started app-niri-gnome\x2dkeyring\x2ddaemon-1697.scope.
mar 15 14:46:19 stationara systemd[1512]: Started app-niri-setWaylandTheme.sh-1706.scope.
mar 15 14:46:19 stationara systemd[1512]: Started app-niri-xwayland\x2dsatellite-1700.scope.
mar 15 14:46:19 stationara systemd[1512]: Starting Accessibility services bus...
mar 15 14:46:19 stationara systemd[1512]: Started GNOME Keyring daemon.
mar 15 14:46:19 stationara swayidle[1696]: 2026-03-15 14:46:19 - [Line 277] Failed to parse get BlockInhibited property: Invalid argument
mar 15 14:46:19 stationara gnome-keyring-daemon[1718]: gnome-keyring-daemon: no process capabilities, insecure memory might get used
mar 15 14:46:19 stationara systemd[1512]: Started Accessibility services bus.
mar 15 14:46:19 stationara gnome-keyring-daemon[1718]: GNOME_KEYRING_CONTROL=/run/user/1000/keyring
mar 15 14:46:19 stationara systemd[1512]: Starting User preferences database...
mar 15 14:46:19 stationara gnome-keyring-daemon[1718]: The Secret Service was already initialized
mar 15 14:46:19 stationara gnome-keyring-daemon[1718]: The Secret Service was already initialized
mar 15 14:46:19 stationara gnome-keyring-daemon[1712]: discover_other_daemon: 1
mar 15 14:46:19 stationara systemd[1512]: Started User preferences database.
mar 15 14:46:19 stationara ashell[1693]: INFO [ashell::config] Decoding config file "/home/shellback/.config/ashell/config.toml"
mar 15 14:46:19 stationara ashell[1693]: INFO [ashell::config] Config file loaded successfully
mar 15 14:46:19 stationara wireplumber[1545]: default: Failed to get percentage from UPower: org.freedesktop.DBus.Error.NameHasNoOwner
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/ldac
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSink/aptx_hd
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/aptx_hd
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSink/aptx
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/aptx
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSink/aac
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/aac
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSink/opus_g
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/opus_g
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSink/sbc
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/sbc
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/aptx_ll_1
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/aptx_ll_0
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_1
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_0
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/faststream
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/faststream_duplex
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSink/opus_05
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/opus_05
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSink/opus_05_duplex
mar 15 14:46:19 stationara bluetoothd[965]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/opus_05_duplex
mar 15 14:46:19 stationara wireplumber[1545]: wp-device: SPA handle 'api.libcamera.enum.manager' could not be loaded; is it installed?
mar 15 14:46:19 stationara wireplumber[1545]: s-monitors-libcamera: PipeWire's libcamera SPA plugin is missing or broken. Some camera types may not be supported.
mar 15 14:46:19 stationara nwg-drawer[1695]: time="2026-03-15T14:46:19+01:00" level=info msg="term: alacritty"
mar 15 14:46:19 stationara nwg-drawer[1695]: time="2026-03-15T14:46:19+01:00" level=info msg="lang: sv_SE"
mar 15 14:46:19 stationara nwg-drawer[1695]: time="2026-03-15T14:46:19+01:00" level=info msg="Config dir: /home/shellback/.config/nwg-drawer"
mar 15 14:46:19 stationara nwg-drawer[1695]: time="2026-03-15T14:46:19+01:00" level=info msg="Data dir: /usr/share/nwg-drawer"
mar 15 14:46:19 stationara nwg-drawer[1695]: time="2026-03-15T14:46:19+01:00" level=info msg="Found 0 pinned items"
mar 15 14:46:19 stationara nwg-drawer[1695]: time="2026-03-15T14:46:19+01:00" level=info msg="Data dir: /usr/share/nwg-drawer"
mar 15 14:46:19 stationara nwg-drawer[1695]: time="2026-03-15T14:46:19+01:00" level=info msg="Found 98 desktop files"
mar 15 14:46:19 stationara systemd[1]: Started Locale Service.
mar 15 14:46:19 stationara nwg-drawer[1695]: time="2026-03-15T14:46:19+01:00" level=info msg="Skipped 6 duplicates; 44 .desktop entries hidden by \"NoDisplay=true\""
mar 15 14:46:19 stationara nwg-drawer[1695]: time="2026-03-15T14:46:19+01:00" level=info msg="/home/shellback/.config/nwg-drawer/preferred-apps.json file not found"
mar 15 14:46:19 stationara nwg-drawer[1695]: time="2026-03-15T14:46:19+01:00" level=info msg="/home/shellback/.config/nwg-drawer/excluded-dirs file not found"
mar 15 14:46:19 stationara dbus-broker-launch[1810]: Ready
mar 15 14:46:19 stationara systemd[1512]: wpaperd.service: Scheduled restart job, restart counter is at 2.
mar 15 14:46:19 stationara systemd[1512]: Started wpaperd.service.
mar 15 14:46:19 stationara nwg-drawer[1695]: time="2026-03-15T14:46:19+01:00" level=info msg="Preferring dark theme variants"
mar 15 14:46:19 stationara nwg-drawer[1695]: time="2026-03-15T14:46:19+01:00" level=info msg="Using style from /home/shellback/.config/nwg-drawer/drawer.css"
mar 15 14:46:19 stationara nwg-drawer[1695]: time="2026-03-15T14:46:19+01:00" level=info msg="Setting GTK layer shell keyboard mode to default: exclusive"
mar 15 14:46:19 stationara ashell[1693]: WARN [ashell::services::brightness] No backlight devices found
mar 15 14:46:19 stationara ashell[1693]: ERROR [ashell::services::brightness] Failed to access to brightness files: No backlight devices found
mar 15 14:46:19 stationara ashell[1693]: ERROR [ashell::services::brightness] Brightness service error
mar 15 14:46:19 stationara ashell[1693]: WARN [ashell::services::privacy] Failed to connect to webcam: No such file or directory (os error 2)
mar 15 14:46:19 stationara systemd[1]: Starting Daemon for power management...
mar 15 14:46:19 stationara systemd[1512]: Started swaync.service.
mar 15 14:46:19 stationara niri[1613]: 2026-03-15T13:46:19.983320Z DEBUG niri::utils::xwayland::satellite: connection to X11 abstract socket; spawning xwayland-satellite
mar 15 14:46:19 stationara upowerd[1856]: The "Ignore" CriticalPowerAction setting is considered risky: abrupt power loss due to battery exhaustion may lead to data corruption. Use AllowRiskyCriticalPowerAction=false to disable support for risky settings.
mar 15 14:46:19 stationara swaync[1855]: Starting SwayNotificationCenter version swaync 0.12.4
mar 15 14:46:20 stationara systemd[1512]: Starting Portal service...
mar 15 14:46:20 stationara kernel: netfs: FS-Cache loaded
mar 15 14:46:20 stationara systemd[1512]: Starting sandboxed app permission store...
mar 15 14:46:20 stationara systemd[1512]: Started sandboxed app permission store.
mar 15 14:46:20 stationara systemd[1512]: Starting flatpak document portal service...
mar 15 14:46:20 stationara systemd[1512]: Started flatpak document portal service.
mar 15 14:46:20 stationara systemd[1512]: Starting Virtual filesystem metadata service...
mar 15 14:46:20 stationara systemd[1512]: Starting Portal service (GTK/GNOME implementation)...
mar 15 14:46:20 stationara systemd[1512]: Started Virtual filesystem metadata service.
mar 15 14:46:20 stationara kernel: RPC: Registered named UNIX socket transport module.
mar 15 14:46:20 stationara kernel: RPC: Registered udp transport module.
mar 15 14:46:20 stationara kernel: RPC: Registered tcp transport module.
mar 15 14:46:20 stationara kernel: RPC: Registered tcp-with-tls transport module.
mar 15 14:46:20 stationara kernel: RPC: Registered tcp NFSv4.1 backchannel transport module.
mar 15 14:46:20 stationara systemd[1]: Started Daemon for power management.
mar 15 14:46:20 stationara ashell[1693]: WARN [ashell::services::upower] Failed to get power profile: org.freedesktop.DBus.Error.ServiceUnknown: The name is not activatable
mar 15 14:46:20 stationara ashell[1693]: WARN [wgpu_hal::gles::egl] Re-initializing Gles context due to Wayland window
mar 15 14:46:20 stationara systemd[1512]: Created slice Slice /app/dbus-:1.34-org.a11y.atspi.Registry.
mar 15 14:46:20 stationara systemd[1512]: Started dbus-:1.34-org.a11y.atspi.Registry@0.service.
mar 15 14:46:20 stationara systemd[1512]: Started Portal service (GTK/GNOME implementation).
mar 15 14:46:20 stationara at-spi2-registryd[2057]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
mar 15 14:46:20 stationara systemd[1512]: Started Portal service.
mar 15 14:46:20 stationara swaync[1855]: configModel.vala:513: Loading Config: "/home/shellback/.config/swaync/config.json"
mar 15 14:46:20 stationara kernel: nfs: Deprecated parameter 'intr'
mar 15 14:46:20 stationara kernel: Key type dns_resolver registered
mar 15 14:46:20 stationara nwg-drawer[1695]: time="2026-03-15T14:46:20+01:00" level=warning msg="Cannot load icon \"com.github.mtkennerly.ludusavi\" for \"Ludusavi\": Ikonen ”com.github.mtkennerly.ludusavi” finns inte i temat Nordzy-dark"
mar 15 14:46:20 stationara nwg-drawer[1695]: time="2026-03-15T14:46:20+01:00" level=warning msg="Cannot load icon \"lutris_project-diablo-2\" for \"Project Diablo 2\": Ikonen ”lutris_project-diablo-2” finns inte i temat Nordzy-dark"
mar 15 14:46:20 stationara nwg-drawer[1695]: time="2026-03-15T14:46:20+01:00" level=info msg="Using XDG user dirs from /home/shellback/.config/user-dirs.dirs"
mar 15 14:46:20 stationara kernel: NFS: Registering the id_resolver key type
mar 15 14:46:20 stationara kernel: Key type id_resolver registered
mar 15 14:46:20 stationara kernel: Key type id_legacy registered
mar 15 14:46:20 stationara swaync[1855]: functions.vala:104: Loading CSS: "/etc/xdg/swaync/style.css"
mar 15 14:46:20 stationara swaync[1855]: functions.vala:117: Loading CSS: "/home/shellback/.config/swaync/style.css"
mar 15 14:46:20 stationara swaync[1855]: Theme parser error: style.css:80:3-19: No property named "-gtk-icon-effect"
mar 15 14:46:20 stationara swaync[1855]: Theme parser error: style.css:103:3-19: No property named "-gtk-icon-effect"
mar 15 14:46:20 stationara swaync[1855]: Theme parser error: style.css:111:3-19: No property named "-gtk-icon-effect"
mar 15 14:46:20 stationara swaync[1855]: Theme parser error: style.css:154:3-19: No property named "-gtk-icon-effect"
mar 15 14:46:20 stationara swaync[1855]: baseWidget.vala:47: notifications: Config not found! Using default config...
mar 15 14:46:20 stationara swaync[1855]: factory.vala:55: Loading widget: mpris
mar 15 14:46:20 stationara swaync[1855]: baseWidget.vala:47: volume: Config not found! Using default config...
mar 15 14:46:20 stationara swaync[1855]: factory.vala:55: Loading widget: volume
mar 15 14:46:20 stationara swaync[1855]: factory.vala:55: Loading widget: title
mar 15 14:46:20 stationara swaync[1855]: factory.vala:55: Loading widget: dnd
mar 15 14:46:20 stationara swaync[1855]: factory.vala:55: Loading widget: inhibitors
mar 15 14:46:20 stationara swaync[1855]: factory.vala:17: Loading widget: widget-notifications
mar 15 14:46:20 stationara swaync[1855]: baseWidget.vala:47: notifications: Config not found! Using default config...
mar 15 14:46:20 stationara nwg-drawer[1695]: time="2026-03-15T14:46:20+01:00" level=info msg="UI created in 478 ms. Thank you for your patience."
mar 15 14:46:20 stationara nfsrahead[2613]: setting /mnt/MediaServer readahead to 128
mar 15 14:46:21 stationara systemd[1512]: soteria.service: Scheduled restart job, restart counter is at 1.
mar 15 14:46:21 stationara systemd[1512]: Started Soteria Polkit Authentication Agent.
mar 15 14:46:21 stationara soteria[2655]: 2026-03-15T13:46:21.764135Z  INFO no configuration file found, using default configuration instead
mar 15 14:46:21 stationara soteria[2655]: 2026-03-15T13:46:21.764163Z  INFO using agent socket at /run/polkit/agent-helper.socket
mar 15 14:46:21 stationara soteria[2655]: 2026-03-15T13:46:21.764200Z  INFO Registering authentication agent with locale: sv_SE.utf8
mar 15 14:46:21 stationara soteria[2655]: 2026-03-15T13:46:21.765728Z  INFO Registered as authentication provider.
mar 15 14:46:21 stationara soteria[2655]: 2026-03-15T13:46:21.772148Z  INFO loading css stylesheet from /home/shellback/.config/soteria/style.css
mar 15 14:46:26 stationara systemd[1512]: Started app-niri-alacritty-2758.scope.
mar 15 14:46:29 stationara systemd[1]: Stopping User Manager for UID 965...
mar 15 14:46:29 stationara systemd[1051]: Activating special unit Exit the Session...
mar 15 14:46:29 stationara systemd[1051]: Stopped target Main User Target.
mar 15 14:46:29 stationara systemd[1051]: Stopped target Sound Card.
mar 15 14:46:29 stationara systemd[1051]: Stopping Multimedia Service Session Manager...
mar 15 14:46:29 stationara systemd[1051]: Stopped Multimedia Service Session Manager.
mar 15 14:46:29 stationara systemd[1051]: wireplumber.service: Consumed 229ms CPU time over 25.484s wall clock time, 99.2M memory peak.
mar 15 14:46:29 stationara systemd[1051]: Stopping PipeWire Multimedia Service...
mar 15 14:46:29 stationara systemd[1051]: Stopped PipeWire Multimedia Service.
mar 15 14:46:29 stationara systemd[1051]: Stopped target Basic System.
mar 15 14:46:29 stationara systemd[1051]: Stopped target Paths.
mar 15 14:46:29 stationara systemd[1051]: Stopped target Sockets.
mar 15 14:46:29 stationara systemd[1051]: Stopped target Timers.
mar 15 14:46:29 stationara systemd[1051]: Closed GnuPG network certificate management daemon.
mar 15 14:46:29 stationara systemd[1051]: Closed GNOME Keyring daemon.
mar 15 14:46:29 stationara systemd[1051]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
mar 15 14:46:29 stationara systemd[1051]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
mar 15 14:46:29 stationara systemd[1051]: Closed GnuPG cryptographic agent (ssh-agent emulation).
mar 15 14:46:29 stationara systemd[1051]: Closed GnuPG cryptographic agent and passphrase cache.
mar 15 14:46:29 stationara systemd[1051]: Closed GnuPG public key management service.
mar 15 14:46:29 stationara systemd[1051]: Closed p11-kit server.
mar 15 14:46:29 stationara systemd[1051]: Closed PipeWire PulseAudio.
mar 15 14:46:29 stationara systemd[1051]: Closed PipeWire Multimedia System Sockets.
mar 15 14:46:29 stationara systemd[1051]: Closed Query the User Interactively for a Password.
mar 15 14:46:29 stationara systemd[1051]: Closed Disk Image Download Service Socket.
mar 15 14:46:29 stationara systemd[1051]: Closed Virtual Machine and Container Registration Service Socket.
mar 15 14:46:29 stationara dbus-broker[1190]: Dispatched 338 messages @ 1(±3)μs / message.
mar 15 14:46:29 stationara systemd[1051]: Stopping D-Bus User Message Bus...
mar 15 14:46:29 stationara systemd[1051]: Stopped D-Bus User Message Bus.
mar 15 14:46:29 stationara systemd[1051]: Removed slice User Core Session Slice.
mar 15 14:46:29 stationara systemd[1051]: session.slice: Consumed 274ms CPU time over 25.509s wall clock time, 106.9M memory peak.
mar 15 14:46:29 stationara systemd[1051]: Closed D-Bus User Message Bus Socket.
mar 15 14:46:29 stationara systemd[1051]: Removed slice User Application Slice.
mar 15 14:46:29 stationara systemd[1051]: Reached target Shutdown.
mar 15 14:46:29 stationara systemd[1051]: Finished Exit the Session.
mar 15 14:46:29 stationara systemd[1051]: Reached target Exit the Session.
mar 15 14:46:29 stationara systemd-logind[968]: Removed session 2.
mar 15 14:46:29 stationara (sd-pam)[1054]: pam_unix(systemd-user:session): session closed for user greeter
mar 15 14:46:29 stationara systemd[1]: user@965.service: Deactivated successfully.
mar 15 14:46:29 stationara systemd[1]: Stopped User Manager for UID 965.
mar 15 14:46:29 stationara systemd[1]: user@965.service: Consumed 477ms CPU time over 26.393s wall clock time, 113.7M memory peak.
mar 15 14:46:29 stationara systemd[1]: Stopping User Runtime Directory /run/user/965...
mar 15 14:46:29 stationara systemd[1]: run-user-965.mount: Deactivated successfully.
mar 15 14:46:29 stationara systemd[1]: user-runtime-dir@965.service: Deactivated successfully.
mar 15 14:46:29 stationara systemd[1]: Stopped User Runtime Directory /run/user/965.
mar 15 14:46:29 stationara systemd[1]: Removed slice User Slice of UID 965.
mar 15 14:46:29 stationara systemd[1]: user-965.slice: Consumed 1.236s CPU time over 26.433s wall clock time, 401.2M memory peak.
mar 15 14:46:32 stationara systemd[1]: systemd-hostnamed.service: Deactivated successfully.
mar 15 14:46:49 stationara systemd[1]: systemd-localed.service: Deactivated successfully.
mar 15 14:46:54 stationara systemd[1512]: Started app-niri-nwg\x2ddrawer-2881.scope.
mar 15 14:46:58 stationara nwg-drawer[1695]: time="2026-03-15T14:46:58+01:00" level=info msg="Executing command: \"/usr/bin/env\"; args: [\"-S\" \"code-oss --enable-features=WebRTCPipeWireCapturer --ozone-platform-hint=auto --gtk-version=4\"]\n"
mar 15 14:46:58 stationara nwg-drawer[1695]: time="2026-03-15T14:46:58+01:00" level=warning msg="Cannot load icon \"com.github.mtkennerly.ludusavi\" for \"Ludusavi\": Ikonen ”com.github.mtkennerly.ludusavi” finns inte i temat Nordzy-dark"
mar 15 14:46:58 stationara nwg-drawer[1695]: time="2026-03-15T14:46:58+01:00" level=warning msg="Cannot load icon \"lutris_project-diablo-2\" for \"Project Diablo 2\": Ikonen ”lutris_project-diablo-2” finns inte i temat Nordzy-dark"
mar 15 14:46:59 stationara systemd[1512]: Started app-org.chromium.Chromium-2964.scope.
mar 15 14:47:04 stationara systemd[1512]: Started app-niri-nwg\x2ddrawer-3820.scope.
mar 15 14:47:06 stationara nwg-drawer[1695]: time="2026-03-15T14:47:06+01:00" level=info msg="Executing command: \"/usr/bin/env\"; args: [\"-S\" \"/usr/bin/steam\"]\n"
mar 15 14:47:06 stationara nwg-drawer[1695]: time="2026-03-15T14:47:06+01:00" level=warning msg="Cannot load icon \"com.github.mtkennerly.ludusavi\" for \"Ludusavi\": Ikonen ”com.github.mtkennerly.ludusavi” finns inte i temat Nordzy-dark"
mar 15 14:47:06 stationara nwg-drawer[1695]: time="2026-03-15T14:47:06+01:00" level=warning msg="Cannot load icon \"lutris_project-diablo-2\" for \"Project Diablo 2\": Ikonen ”lutris_project-diablo-2” finns inte i temat Nordzy-dark"
mar 15 14:47:06 stationara steam-runtime-steam-remote[3843]: steam-runtime-steam-remote: Steam is not running: No such device or address
mar 15 14:47:06 stationara steam[3854]: steam.sh[3833]: Running Steam on arch rolling 64-bit
mar 15 14:47:06 stationara steam[3854]: steam.sh[3833]: STEAM_RUNTIME is enabled automatically
mar 15 14:47:07 stationara steam[3854]: setup.sh[3890]: Steam runtime environment up-to-date!
mar 15 14:47:07 stationara steam[3854]: steam.sh[3833]: Log already open
mar 15 14:47:07 stationara steam[3854]: steam.sh[3833]: Steam client's requirements are satisfied
mar 15 14:47:07 stationara steam[3854]: CProcessEnvironmentManager is ready, 6 preallocated environment variables.
mar 15 14:47:07 stationara steam[3854]: [2026-03-15 14:47:07] Startup - updater built Mar 13 2026 01:52:12
mar 15 14:47:07 stationara steam[3854]: [2026-03-15 14:47:07] Startup - Steam Client launched with: '/home/shellback/.local/share/Steam/ubuntu12_32/steam' '-srt-logger-opened'
mar 15 14:47:07 stationara steam[3854]: 03/15 14:47:07 minidumps folder is set to /tmp/dumps
mar 15 14:47:07 stationara steam[3854]: 03/15 14:47:07 Init: Installing breakpad exception handler for appid(steam)/version(1773426488)/tid(3950)
mar 15 14:47:07 stationara steam[3854]: CProcessEnvironmentManager is ready, 6 preallocated environment variables.
mar 15 14:47:07 stationara steam[3854]: [2026-03-15 14:47:07] Process started with command-line: '/home/shellback/.local/share/Steam/ubuntu12_32/steam' '-child-update-ui' '-child-update-ui-socket' '8' '-srt-logger-opened'
mar 15 14:47:07 stationara steam[3854]: 03/15 14:47:07 minidumps folder is set to /tmp/dumps
mar 15 14:47:07 stationara steam[3854]: [2026-03-15 14:47:07] Using update UI: xwin
mar 15 14:47:07 stationara steam[3854]: 03/15 14:47:07 Init: Installing breakpad exception handler for appid(steam)/version(0)/tid(3951)
mar 15 14:47:07 stationara steam[3854]: [2026-03-15 14:47:07] Create window
mar 15 14:47:07 stationara steam[3854]: [2026-03-15 14:47:07] Loading cached metrics from disk (/home/shellback/.local/share/Steam/package/steam_client_metrics.bin)
mar 15 14:47:07 stationara steam[3854]: [2026-03-15 14:47:07] Using the following download hosts for Public, Realm steamglobal
mar 15 14:47:07 stationara steam[3854]: [2026-03-15 14:47:07] 1. https://client-update.fastly.steamstatic.com, /, Realm 'steamglobal', weight was 900, source = 'update_hosts_cached.vdf'
mar 15 14:47:07 stationara steam[3854]: [2026-03-15 14:47:07] 2. https://client-update.akamai.steamstatic.com, /, Realm 'steamglobal', weight was 400, source = 'update_hosts_cached.vdf'
mar 15 14:47:07 stationara steam[3854]: [2026-03-15 14:47:07] 3. https://client-update.steamstatic.com, /, Realm 'steamglobal', weight was 1, source = 'baked in'
mar 15 14:47:07 stationara steam[3854]: [2026-03-15 14:47:07] Verifying installation...
mar 15 14:47:07 stationara steam[3854]: [2026-03-15 14:47:07] Verifying file sizes only
mar 15 14:47:08 stationara steam[3854]: [2026-03-15 14:47:08] Set percent complete: 0
mar 15 14:47:08 stationara steam[3854]: [2026-03-15 14:47:08] Set percent complete: -1
mar 15 14:47:08 stationara steam[3854]: [2026-03-15 14:47:08] Set status message: Verifying installation...
mar 15 14:47:08 stationara steam[3854]: [2026-03-15 14:47:08] Verification complete
mar 15 14:47:08 stationara steam[3854]: UpdateUI: skip show logo
mar 15 14:47:08 stationara steam[3854]: [2026-03-15 14:47:08] Destroy window
mar 15 14:47:08 stationara steam[3854]: [2026-03-15 14:47:08] Shutdown
mar 15 14:47:08 stationara steam[3854]: Steam logging initialized: directory: /home/shellback/.local/share/Steam/logs
mar 15 14:47:08 stationara steam[3854]: XOpenIM() failed, LANG = sv_SE.utf8
mar 15 14:47:08 stationara steam[3854]: XOpenIM() failed, LANG = sv_SE.utf8XRRGetOutputInfo Workaround: initialized with override: 0 real: 0xf64f8370
mar 15 14:47:08 stationara steam[3854]: XRRGetCrtcInfo Workaround: initialized with override: 0 real: 0xf64f6cc0
mar 15 14:47:08 stationara steam[3854]: 03/15 14:47:08 minidumps folder is set to /tmp/dumps
mar 15 14:47:08 stationara steam[3854]: 03/15 14:47:08 Init: Installing breakpad exception handler for appid(steamsysinfo)/version(1773426488)/tid(3976)
mar 15 14:47:08 stationara steam[3854]: Running query: 1 - GpuTopology
mar 15 14:47:08 stationara steam[3854]: Response: gpu_topology {
mar 15 14:47:08 stationara steam[3854]:   gpus {
mar 15 14:47:08 stationara steam[3854]:     id: 1
mar 15 14:47:08 stationara steam[3854]:     name: "AMD Radeon RX 580 Series (RADV POLARIS10)"
mar 15 14:47:08 stationara steam[3854]:     vram_size_bytes: 4294967296
mar 15 14:47:08 stationara steam[3854]:     driver_id: k_EGpuDriverId_MesaRadv
mar 15 14:47:08 stationara steam[3854]:     driver_version_major: 26
mar 15 14:47:08 stationara steam[3854]:     driver_version_minor: 0
mar 15 14:47:08 stationara steam[3854]:     driver_version_patch: 2
mar 15 14:47:08 stationara steam[3854]:     luid: 0
mar 15 14:47:08 stationara steam[3854]:   }
mar 15 14:47:08 stationara steam[3854]:   default_gpu_id: 1
mar 15 14:47:08 stationara steam[3854]: }
mar 15 14:47:08 stationara steam[3854]: Exit code: 0
mar 15 14:47:08 stationara steam[3854]: Saving response to: /tmp/steamfIFIPl - 67 bytes
mar 15 14:47:08 stationara steamwebhelper[4007]: steamwebhelper.sh[3995]: Starting steamwebhelper under bootstrap steamrt steam runtime via: /home/shellback/.local/share/Steam/steamrt64/pv-runtime/steam-runtime-steamrt/_v2-entry-point
mar 15 14:47:08 stationara steamwebhelper[4007]: steamwebhelper.sh[3995]: Starting steamwebhelper with steamrt steam runtime at /home/shellback/.local/share/Steam/steamrt64/pv-runtime/steam-runtime-steamrt/_v2-entry-point
mar 15 14:47:08 stationara rtkit-daemon[1184]: Successfully made thread 4057 of process 3950 owned by '1000' high priority at nice level -10.
mar 15 14:47:08 stationara rtkit-daemon[1184]: Successfully made thread 4058 of process 3950 owned by '1000' high priority at nice level -10.
mar 15 14:47:09 stationara steam[3854]: Steam Runtime Launch Service: starting steam-runtime-launcher-service
mar 15 14:47:09 stationara steam[3854]: Steam Runtime Launch Service: steam-runtime-launcher-service is running pid 4131
mar 15 14:47:09 stationara steam[3854]: bus_name=com.steampowered.PressureVessel.LaunchAlongsideSteam
mar 15 14:47:09 stationara steamwebhelper[4007]: exec ./steamwebhelper -nocrashdialog -lang=en_US -cachedir=/home/shellback/.local/share/Steam/config/htmlcache -steampid=3950 -buildid=1773426488 -steamid=0 -logdir=/home/shellback/.local/share/Steam/logs -uimode=7 -startcount=0 -steamuniverse=Public -realm=Global -clientui=/home/shellback/.local/share/Steam/clientui -steampath=/home/shellback/.local/share/Steam/ubuntu12_32/steam -launcher=0 --valve-enable-site-isolation --enable-smooth-scrolling --password-store=basic --log-file=/home/shellback/.local/share/Steam/logs/cef_log.txt --disable-quick-menu --disable-component-update --gaia-url=http://disabled.invalid --enable-features=PlatformHEVCDecoderSupport --disable-features=WinRetrieveSuggestionsOnlyOnDemand,SpareRendererForSitePerProcess,DcheckIsFatal,BlockPromptsIfIgnoredOften,ValveFFmpegAllowLowDelayHEVC
mar 15 14:47:10 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=50589 DF PROTO=UDP SPT=44984 DPT=55487 LEN=536 
mar 15 14:47:11 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=50699 DF PROTO=UDP SPT=59008 DPT=55487 LEN=536 
mar 15 14:47:11 stationara systemd[1]: Starting Disk Manager...
mar 15 14:47:11 stationara kernel: nvme nvme0: using unchecked data buffer
mar 15 14:47:11 stationara kernel: block nvme0n1: No UUID available providing old NGUID
mar 15 14:47:11 stationara systemd[1]: Started Disk Manager.
mar 15 14:47:11 stationara steam[3854]: /home/shellback/.themes/Nordic-standard-buttons/gtk-2.0/main.rc:729: error: unexpected identifier 'direction', expected character '}'
mar 15 14:47:11 stationara steam[3854]: /home/shellback/.themes/Nordic-standard-buttons/gtk-2.0/apps/chrome.rc:50: error: invalid string constant "button", expected valid string constant
mar 15 14:47:11 stationara steam[3854]: /home/shellback/.themes/Nordic-standard-buttons/gtk-2.0/apps/xfce.rc:78: error: invalid string constant "entry", expected valid string constant
mar 15 14:47:12 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=50808 DF PROTO=UDP SPT=58541 DPT=55487 LEN=536 
mar 15 14:47:13 stationara steam[3854]: Desktop state changed: desktop: { pos:    0,   0 size: 3440,1440 } primary: { pos:    0,   0 size: 3440,1440 }
mar 15 14:47:13 stationara steam[3854]: Caching cursor image for , size 10x16, serial 38, cache size = 0
mar 15 14:47:13 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=50973 DF PROTO=UDP SPT=58820 DPT=55487 LEN=536 
mar 15 14:47:14 stationara steam[3854]: fsync: up and running.
mar 15 14:47:16 stationara steam[3854]: Fossilize INFO: Overriding serialization path: "/home/shellback/.local/share/Steam/shader_cache_temp_dir_d3d11_64/fozpipelinesv6/steamapprun_pipeline_cache".
mar 15 14:47:16 stationara kernel: amdgpu 0000:09:00.0: amdgpu: Disabling VM faults because of PRT request!
mar 15 14:47:16 stationara steam[3854]: X Error of failed request:  BadWindow (invalid Window parameter)
mar 15 14:47:16 stationara steam[3854]:   Major opcode of failed request:  1 (X_CreateWindow)
mar 15 14:47:16 stationara steam[3854]:   Resource id in failed request:  0x2c00004
mar 15 14:47:16 stationara steam[3854]:   Serial number of failed request:  68
mar 15 14:47:16 stationara steam[3854]:   Current serial number in output stream:  73
mar 15 14:47:18 stationara steam[3854]: fsync: up and running.
mar 15 14:47:19 stationara steam[3854]: Fossilize INFO: Overriding serialization path: "/home/shellback/.local/share/Steam/shader_cache_temp_dir_d3d12_64/fozpipelinesv6/steamapprun_pipeline_cache".
mar 15 14:47:20 stationara steam[3854]: X Error of failed request:  BadWindow (invalid Window parameter)
mar 15 14:47:20 stationara steam[3854]:   Major opcode of failed request:  1 (X_CreateWindow)
mar 15 14:47:20 stationara steam[3854]:   Resource id in failed request:  0x2c00004
mar 15 14:47:20 stationara steam[3854]:   Serial number of failed request:  68
mar 15 14:47:20 stationara steam[3854]:   Current serial number in output stream:  73
mar 15 14:47:20 stationara steam[3854]: reaping pid: 3951 -- steam
mar 15 14:47:21 stationara steam[3854]: Proton: Upgrading prefix from GE-Proton9-27 to UMU-Proton-9.0-3.2 (/home/shellback/.local/share/Steam/steamapps/compatdata/0/)
mar 15 14:47:21 stationara steam[3854]: Proton: Prefix has an invalid version?! You may want to back up user files and delete this prefix.
mar 15 14:47:22 stationara systemd[1512]: Started app-niri-nwg\x2ddrawer-5065.scope.
mar 15 14:47:23 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:23 stationara steam[3854]: fsync: up and running.
mar 15 14:47:23 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:23 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:23 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:23 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:23 stationara nwg-drawer[1695]: time="2026-03-15T14:47:23+01:00" level=info msg="Executing command: \"/usr/bin/env\"; args: [\"-S\" \"/usr/bin/vivaldi-stable --gtk-version=4\"]\n"
mar 15 14:47:23 stationara nwg-drawer[1695]: time="2026-03-15T14:47:23+01:00" level=warning msg="Cannot load icon \"com.github.mtkennerly.ludusavi\" for \"Ludusavi\": Ikonen ”com.github.mtkennerly.ludusavi” finns inte i temat Nordzy-dark"
mar 15 14:47:23 stationara nwg-drawer[1695]: time="2026-03-15T14:47:23+01:00" level=warning msg="Cannot load icon \"lutris_project-diablo-2\" for \"Project Diablo 2\": Ikonen ”lutris_project-diablo-2” finns inte i temat Nordzy-dark"
mar 15 14:47:23 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:23 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:24 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:24 stationara systemd[1512]: Started app-com.vivaldi.Vivaldi-5103.scope.
mar 15 14:47:24 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:24 stationara systemd[1512]: Created slice Slice /app/dbus-:1.1-org.gnome.keyring.SystemPrompter.
mar 15 14:47:24 stationara systemd[1512]: Started dbus-:1.1-org.gnome.keyring.SystemPrompter@0.service.
mar 15 14:47:24 stationara gcr-prompter[5333]: Gcr: bus acquired: org.gnome.keyring.SystemPrompter
mar 15 14:47:24 stationara gcr-prompter[5333]: Gcr: registering prompter
mar 15 14:47:24 stationara gcr-prompter[5333]: Gcr: bus acquired: org.gnome.keyring.PrivatePrompter
mar 15 14:47:24 stationara gcr-prompter[5333]: Gcr: acquired name: org.gnome.keyring.SystemPrompter
mar 15 14:47:24 stationara gcr-prompter[5333]: Gcr: received BeginPrompting call from callback /org/gnome/keyring/Prompt/p2@:1.26
mar 15 14:47:24 stationara gcr-prompter[5333]: Gcr: preparing a prompt for callback /org/gnome/keyring/Prompt/p2@:1.26
mar 15 14:47:24 stationara gcr-prompter[5333]: Gcr: creating new GcrPromptDialog prompt
mar 15 14:47:24 stationara gcr-prompter[5333]: Gcr: automatically selecting secret exchange protocol
mar 15 14:47:24 stationara gcr-prompter[5333]: Gcr: generating public key
mar 15 14:47:24 stationara gcr-prompter[5333]: Gcr: beginning the secret exchange: [sx-aes-1]\npublic=F+OO4h2S1RMDe6VvAERv07NYCX11E0DRAPHo6TG6yvtHW7utA7zlWtKtlMEO/HBzdjAQJaGLRf6689Sz51Jtx7x8NIhKaFrMP9OPtnPHa1XlXstvveOq/r7kPEd2PKepa6dItgc7IQIoa7H2TFVRpzt0mniOc44HnGruTAMP+o+ENo1Ad1uYWMpSygeX3spzMbEKVfjX5blF38pVsbvoxB9wAFLz1+KD58KCxPPjLaU33YSnJmTL/O2MA+kvJ7xp\n
mar 15 14:47:24 stationara gcr-prompter[5333]: Gcr: calling the PromptReady method on /org/gnome/keyring/Prompt/p2@:1.26
mar 15 14:47:24 stationara gcr-prompter[5333]: Gcr: acquired name: org.gnome.keyring.PrivatePrompter
mar 15 14:47:24 stationara gcr-prompter[5333]: Gcr: returned from the PromptReady method on /org/gnome/keyring/Prompt/p2@:1.26
mar 15 14:47:24 stationara gcr-prompter[5333]: Gcr: received PerformPrompt call from callback /org/gnome/keyring/Prompt/p2@:1.26
mar 15 14:47:24 stationara gcr-prompter[5333]: Gcr: receiving secret exchange: [sx-aes-1]\npublic=HTwlJaVBQTvYIrPxzqonwHfzj9yy7FkZawcvn2Pv4uBEVWSqtRa4ap8O0HVzwI4fCiwqV8kLS+rWAXjrrP+v60zmQCnG/y3xepH4jEWXzY6VBarbPdpxX6VTpQ7zIavMKb1odi6AV+jgm85cwPrJyPrp7FsDGDHpRTuI3LmpSsMgJqKi/klsAEqu8KH0hwRdfBgtiv/sXmJPsicORQ2kdeBe6Rm0lRbvj9GzFq198hNqgg9/2RDONaWs7JOoqurS\n
mar 15 14:47:24 stationara gcr-prompter[5333]: Gcr: deriving shared transport key
mar 15 14:47:24 stationara gcr-prompter[5333]: Gcr: deriving transport key
mar 15 14:47:24 stationara gcr-prompter[5333]: Gcr: starting password prompt for callback /org/gnome/keyring/Prompt/p2@:1.26
mar 15 14:47:24 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:24 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:24 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:26 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:26 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:28 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:28 stationara steam[3854]: wine: configuration in L"/home/shellback/.local/share/Steam/steamapps/compatdata/0/pfx" has been updated.
mar 15 14:47:28 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:28 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:28 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:29 stationara steam[3854]: Fossilize INFO: Overriding serialization path: "/home/shellback/.local/share/Steam/shader_cache_temp_dir_d3d11_64/fozpipelinesv6/steamapprun_pipeline_cache".
mar 15 14:47:30 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:30 stationara steam[3854]: fsync: up and running.
mar 15 14:47:30 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:30 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:30 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:30 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:31 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:31 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:31 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:31 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:31 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:31 stationara steam[3854]: wine: using kernel write watches, use_kernel_writewatch 1.
mar 15 14:47:31 stationara steam[3854]: Fossilize INFO: Overriding serialization path: "/home/shellback/.local/share/Steam/shader_cache_temp_dir_d3d12_64/fozpipelinesv6/steamapprun_pipeline_cache".
mar 15 14:47:33 stationara gcr-prompter[5333]: Gcr: completed password prompt for callback :1.26@/org/gnome/keyring/Prompt/p2
mar 15 14:47:33 stationara gcr-prompter[5333]: Gcr: encrypting data
mar 15 14:47:33 stationara gcr-prompter[5333]: Gcr: sending the secret exchange: [sx-aes-1]\npublic=F+OO4h2S1RMDe6VvAERv07NYCX11E0DRAPHo6TG6yvtHW7utA7zlWtKtlMEO/HBzdjAQJaGLRf6689Sz51Jtx7x8NIhKaFrMP9OPtnPHa1XlXstvveOq/r7kPEd2PKepa6dItgc7IQIoa7H2TFVRpzt0mniOc44HnGruTAMP+o+ENo1Ad1uYWMpSygeX3spzMbEKVfjX5blF38pVsbvoxB9wAFLz1+KD58KCxPPjLaU33YSnJmTL/O2MA+kvJ7xp\nsecret=R+uyCsL5IQ8Oq08VwN6VbA==\niv=wY0KJAp7Obd4qKzEgUzttw==\n
mar 15 14:47:33 stationara gcr-prompter[5333]: Gcr: calling the PromptReady method on /org/gnome/keyring/Prompt/p2@:1.26
mar 15 14:47:33 stationara gcr-prompter[5333]: Gcr: returned from the PromptReady method on /org/gnome/keyring/Prompt/p2@:1.26
mar 15 14:47:33 stationara gcr-prompter[5333]: Gcr: received PerformPrompt call from callback /org/gnome/keyring/Prompt/p2@:1.26
mar 15 14:47:33 stationara gcr-prompter[5333]: Gcr: stopping prompting for operation /org/gnome/keyring/Prompt/p2@:1.26
mar 15 14:47:33 stationara gcr-prompter[5333]: Gcr: closing the prompt
mar 15 14:47:33 stationara gcr-prompter[5333]: Gcr: stopping prompting for operation /org/gnome/keyring/Prompt/p2@:1.26
mar 15 14:47:33 stationara gcr-prompter[5333]: Gcr: couldn't find the callback for prompting operation /org/gnome/keyring/Prompt/p2@:1.26
mar 15 14:47:33 stationara gcr-prompter[5333]: Gcr: stopping prompting for operation /org/gnome/keyring/Prompt/p2@:1.26
mar 15 14:47:33 stationara gcr-prompter[5333]: Gcr: couldn't find the callback for prompting operation /org/gnome/keyring/Prompt/p2@:1.26
mar 15 14:47:33 stationara gcr-prompter[5333]: Gcr: stopping prompting for operation /org/gnome/keyring/Prompt/p2@:1.26
mar 15 14:47:33 stationara gcr-prompter[5333]: Gcr: couldn't find the callback for prompting operation /org/gnome/keyring/Prompt/p2@:1.26
mar 15 14:47:33 stationara gcr-prompter[5333]: Gcr: calling the PromptDone method on /org/gnome/keyring/Prompt/p2@:1.26, and ignoring reply
mar 15 14:47:33 stationara steam[3854]: Proton: Upgrading prefix from UMU-Proton-9.0-3.2 to GE-Proton9-27 (/home/shellback/.local/share/Steam/steamapps/compatdata/0/)
mar 15 14:47:33 stationara steam[3854]: Proton: Prefix has an invalid version?! You may want to back up user files and delete this prefix.
mar 15 14:47:35 stationara steam[3854]: ProtonFixes[5974] WARN: [CONFIG]: Parent directory "/home/shellback/.config/protonfixes" does not exist. Abort.
mar 15 14:47:35 stationara steam[3854]: ProtonFixes[5974] WARN: Skipping fix execution. We are probably running an unit test.
mar 15 14:47:35 stationara steam[3854]: fsync: up and running.
mar 15 14:47:39 stationara steam[3854]: wine: configuration in L"/home/shellback/.local/share/Steam/steamapps/compatdata/0/pfx" has been updated.
mar 15 14:47:40 stationara steam[3854]: Fossilize INFO: Overriding serialization path: "/home/shellback/.local/share/Steam/shader_cache_temp_dir_d3d11_64/fozpipelinesv6/steamapprun_pipeline_cache".
mar 15 14:47:41 stationara steam[3854]: ProtonFixes[6266] WARN: [CONFIG]: Parent directory "/home/shellback/.config/protonfixes" does not exist. Abort.
mar 15 14:47:41 stationara steam[3854]: ProtonFixes[6266] WARN: Skipping fix execution. We are probably running an unit test.
mar 15 14:47:41 stationara steam[3854]: fsync: up and running.
mar 15 14:47:42 stationara gcr-prompter[5333]: Gcr: 10 second inactivity timeout, quitting
mar 15 14:47:42 stationara gcr-prompter[5333]: Gcr: unregistering prompter
mar 15 14:47:42 stationara gcr-prompter[5333]: Gcr: disposing prompter
mar 15 14:47:42 stationara gcr-prompter[5333]: Gcr: finalizing prompter
mar 15 14:47:42 stationara systemd[1512]: dbus-:1.1-org.gnome.keyring.SystemPrompter@0.service: Unit process 5725 (bwrap) remains running after unit stopped.
mar 15 14:47:42 stationara systemd[1512]: dbus-:1.1-org.gnome.keyring.SystemPrompter@0.service: Unit process 5727 (bwrap) remains running after unit stopped.
mar 15 14:47:42 stationara systemd[1512]: dbus-:1.1-org.gnome.keyring.SystemPrompter@0.service: Unit process 5729 (glycin-image-rs) remains running after unit stopped.
mar 15 14:47:43 stationara steam[3854]: Fossilize INFO: Overriding serialization path: "/home/shellback/.local/share/Steam/shader_cache_temp_dir_d3d12_64/fozpipelinesv6/steamapprun_pipeline_cache".
mar 15 14:47:54 stationara chrome[5103]: [5103:5149:0315/144754.019847:INFO:chromium/chrome/browser/extensions/extension_garbage_collector.cc:188] Garbage collection for extensions on file thread is complete.
mar 15 14:47:56 stationara NetworkManager[964]: <info>  [1773582476.3952] dhcp6 (enp4s0): state changed new lease, address=fd92:b956:263b::96f 2001:2043:7b4d:2d00::96f
mar 15 14:47:56 stationara systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 15 14:47:56 stationara systemd[1]: Started Network Manager Script Dispatcher Service.
mar 15 14:48:06 stationara systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 15 14:48:50 stationara systemd[1]: mnt-MediaServer.mount: Deactivated successfully.
mar 15 14:49:08 stationara steam[3854]: [2026-03-15 14:49:08] Background update loop checking for update. . .
mar 15 14:49:08 stationara steam[3854]: [2026-03-15 14:49:08] Checking for available updates...
mar 15 14:49:08 stationara steam[3854]: [2026-03-15 14:49:08] Downloading manifest: https://client-update.fastly.steamstatic.com/steam_client_ubuntu12
mar 15 14:49:08 stationara steam[3854]: [2026-03-15 14:49:08] Manifest download: send request
mar 15 14:49:08 stationara steam[3854]: [2026-03-15 14:49:08] Manifest download: waiting for download to finish
mar 15 14:49:09 stationara steam[3854]: [2026-03-15 14:49:09] Manifest download: finished
mar 15 14:49:09 stationara steam[3854]: [2026-03-15 14:49:09] Download skipped: /steam_client_ubuntu12 version 1773426488, installed version 1773426488, existing pending version 0
mar 15 14:49:09 stationara steam[3854]: [2026-03-15 14:49:09] Nothing to do
mar 15 14:49:10 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=14148 DF PROTO=UDP SPT=58507 DPT=57643 LEN=536 
mar 15 14:49:11 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=14211 DF PROTO=UDP SPT=54722 DPT=57643 LEN=536 
mar 15 14:49:12 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=14383 DF PROTO=UDP SPT=35549 DPT=57643 LEN=536 
mar 15 14:49:13 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=14510 DF PROTO=UDP SPT=59032 DPT=57643 LEN=536 
mar 15 14:49:42 stationara systemd-resolved[724]: Clock change detected. Flushing caches.
mar 15 14:51:10 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=23299 DF PROTO=UDP SPT=51078 DPT=48097 LEN=536 
mar 15 14:51:11 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=23474 DF PROTO=UDP SPT=54791 DPT=48097 LEN=536 
mar 15 14:51:12 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=23515 DF PROTO=UDP SPT=51028 DPT=48097 LEN=536 
mar 15 14:51:13 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=23531 DF PROTO=UDP SPT=35128 DPT=48097 LEN=536 
mar 15 14:53:10 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=48494 DF PROTO=UDP SPT=42521 DPT=45536 LEN=536 
mar 15 14:53:11 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=48645 DF PROTO=UDP SPT=36863 DPT=45536 LEN=536 
mar 15 14:53:12 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=48884 DF PROTO=UDP SPT=44412 DPT=45536 LEN=536 
mar 15 14:53:13 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=49135 DF PROTO=UDP SPT=55103 DPT=45536 LEN=536 
mar 15 14:55:10 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=6950 DF PROTO=UDP SPT=48601 DPT=33058 LEN=536 
mar 15 14:55:11 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=7145 DF PROTO=UDP SPT=50189 DPT=33058 LEN=536 
mar 15 14:55:12 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=7220 DF PROTO=UDP SPT=44315 DPT=33058 LEN=536 
mar 15 14:55:13 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=7425 DF PROTO=UDP SPT=43612 DPT=33058 LEN=536 
mar 15 14:56:11 stationara systemd[1]: Started Daily Cleanup of Snapper Snapshots.
mar 15 14:56:11 stationara systemd[1]: Starting DBus interface for snapper...
mar 15 14:56:11 stationara systemd[1]: Started DBus interface for snapper.
mar 15 14:56:11 stationara systemd-helper[6487]: Running cleanup for 'root'.
mar 15 14:56:12 stationara systemd-helper[6487]: Running number cleanup for 'root'.
mar 15 14:56:12 stationara systemd-helper[6487]: Running timeline cleanup for 'root'.
mar 15 14:56:12 stationara systemd-helper[6487]: Running empty-pre-post cleanup for 'root'.
mar 15 14:56:12 stationara systemd[1]: snapper-cleanup.service: Deactivated successfully.
mar 15 14:57:10 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=9175 DF PROTO=UDP SPT=56416 DPT=52215 LEN=536 
mar 15 14:57:11 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=9324 DF PROTO=UDP SPT=38791 DPT=52215 LEN=536 
mar 15 14:57:12 stationara systemd[1]: snapperd.service: Deactivated successfully.
mar 15 14:57:12 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=9394 DF PROTO=UDP SPT=49686 DPT=52215 LEN=536 
mar 15 14:57:12 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=9505 DF PROTO=UDP SPT=56999 DPT=52215 LEN=536 
mar 15 14:57:15 stationara NetworkManager[964]: <info>  [1773583035.4528] dhcp6 (enp4s0): state changed new lease, address=fd92:b956:263b::96f 2001:2043:7b4d:2d00::96f
mar 15 14:57:15 stationara systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 15 14:57:15 stationara systemd[1]: Started Network Manager Script Dispatcher Service.
mar 15 14:57:17 stationara (inhibit)[6515]: Failed to execute : No such file or directory
mar 15 14:57:17 stationara systemd-inhibit[6509]: xswaylock failed with exit status 1.
mar 15 14:57:25 stationara systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 15 14:59:10 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=38650 DF PROTO=UDP SPT=33708 DPT=54158 LEN=536 
mar 15 14:59:11 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=38831 DF PROTO=UDP SPT=55427 DPT=54158 LEN=536 
mar 15 14:59:11 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=38885 DF PROTO=UDP SPT=35321 DPT=54158 LEN=536 
mar 15 14:59:12 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=38974 DF PROTO=UDP SPT=49761 DPT=54158 LEN=536 
mar 15 15:00:03 stationara systemd[1]: Started Timeline of Snapper Snapshots.
mar 15 15:00:03 stationara systemd[1]: Starting DBus interface for snapper...
mar 15 15:00:03 stationara systemd[1]: Started DBus interface for snapper.
mar 15 15:00:03 stationara systemd-helper[6524]: Running timeline for 'root'.
mar 15 15:00:03 stationara systemd[1]: snapper-timeline.service: Deactivated successfully.
mar 15 15:01:03 stationara systemd[1]: snapperd.service: Deactivated successfully.
mar 15 15:01:03 stationara systemd[1]: Starting Cleanup of Temporary Directories...
mar 15 15:01:04 stationara systemd[1]: systemd-tmpfiles-clean.service: Deactivated successfully.
mar 15 15:01:04 stationara systemd[1]: Finished Cleanup of Temporary Directories.
mar 15 15:01:10 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=58163 DF PROTO=UDP SPT=55617 DPT=53997 LEN=536 
mar 15 15:01:11 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=58320 DF PROTO=UDP SPT=52536 DPT=53997 LEN=536 
mar 15 15:01:11 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=58419 DF PROTO=UDP SPT=34075 DPT=53997 LEN=536 
mar 15 15:01:12 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC=04:d9:f5:f8:57:44:40:d9:5a:25:f3:b4:08:00 SRC=192.168.20.145 DST=192.168.20.124 LEN=556 TOS=0x00 PREC=0x00 TTL=64 ID=58449 DF PROTO=UDP SPT=51872 DPT=53997 LEN=536 
mar 15 15:01:43 stationara niri[1613]: 2026-03-15T14:01:43.374335Z  WARN niri::utils::vblank_throttle: output DP-1 running faster than expected, throttling vblanks: expected refresh 6.060634ms, got vblank after 2.806609ms
mar 15 15:01:44 stationara niri[1613]: 2026-03-15T14:01:44.382588Z DEBUG niri::backend::tty: device changed: 57857
mar 15 15:01:44 stationara niri[1613]: 2026-03-15T14:01:44.382707Z DEBUG niri::backend::tty: disconnecting connector: "DP-1"
mar 15 15:01:44 stationara niri[1613]: 2026-03-15T14:01:44.456308Z  WARN niri::utils::xwayland::satellite: xwayland-satellite exited with: exit status: 101
mar 15 15:01:44 stationara niri[1613]: 2026-03-15T14:01:44.460178Z  WARN niri::handlers::layer_shell: no output for new layer surface, closing
mar 15 15:01:44 stationara niri[1613]: 2026-03-15T14:01:44.460241Z  WARN niri::handlers::layer_shell: no output for new layer surface, closing
mar 15 15:01:44 stationara systemd[1512]: app-org.chromium.Chromium-2964.scope: Consumed 12.070s CPU time over 14min 45.618s wall clock time, 1G memory peak.
mar 15 15:01:45 stationara niri[1613]: 2026-03-15T14:01:45.170138Z DEBUG niri::backend::tty: device changed: 57857
mar 15 15:01:45 stationara niri[1613]: 2026-03-15T14:01:45.190553Z DEBUG niri::backend::tty: new connector: DP-1 "Samsung Electric Company LC34G55T HNTY105709"
mar 15 15:01:45 stationara niri[1613]: 2026-03-15T14:01:45.190580Z DEBUG niri::backend::tty: connecting connector: DP-1
mar 15 15:01:45 stationara niri[1613]: 2026-03-15T14:01:45.190607Z DEBUG niri::backend::tty: picking mode: Mode { name: "3440x1440", clock: 879710, size: (3440, 1440), hsync: (3488, 3520, 3600), vsync: (1467, 1475, 1481), hskew: 0, vscan: 0, vrefresh: 165, mode_type: ModeTypeFlags(PREFERRED | DRIVER) }
mar 15 15:01:45 stationara niri[1613]: 2026-03-15T14:01:45.191329Z  WARN niri::backend::tty: cannot enable VRR because connector does not support it
mar 15 15:01:45 stationara niri[1613]: 2026-03-15T14:01:45.192676Z DEBUG niri::niri: putting output DP-1 at x=0 y=0
mar 15 15:01:48 stationara NetworkManager[964]: <info>  [1773583308.2679] dhcp6 (enp4s0): state changed new lease, address=fd92:b956:263b::96f 2001:2043:7b4d:2d00::96f
mar 15 15:01:48 stationara systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 15 15:01:48 stationara systemd[1]: Started Network Manager Script Dispatcher Service.
mar 15 15:01:58 stationara systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 15 15:04:11 stationara NetworkManager[964]: <info>  [1773583451.2797] dhcp6 (enp4s0): state changed new lease, address=fd92:b956:263b::96f 2001:2043:7b4d:2d00::96f
mar 15 15:04:11 stationara systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 15 15:04:11 stationara systemd[1]: Started Network Manager Script Dispatcher Service.
mar 15 15:04:21 stationara systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 15 15:12:56 stationara NetworkManager[964]: <info>  [1773583976.1775] dhcp6 (enp4s0): state changed new lease, address=fd92:b956:263b::96f 2001:2043:7b4d:2d00::96f
mar 15 15:12:56 stationara systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 15 15:12:56 stationara systemd[1]: Started Network Manager Script Dispatcher Service.
mar 15 15:13:06 stationara systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 15 15:18:06 stationara NetworkManager[964]: <info>  [1773584286.1776] dhcp6 (enp4s0): state changed new lease, address=fd92:b956:263b::96f 2001:2043:7b4d:2d00::96f
mar 15 15:18:06 stationara systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 15 15:18:06 stationara systemd[1]: Started Network Manager Script Dispatcher Service.
mar 15 15:18:16 stationara systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 15 15:20:34 stationara NetworkManager[964]: <info>  [1773584434.1755] dhcp6 (enp4s0): state changed new lease, address=fd92:b956:263b::96f 2001:2043:7b4d:2d00::96f
mar 15 15:20:34 stationara systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 15 15:20:34 stationara systemd[1]: Started Network Manager Script Dispatcher Service.
mar 15 15:20:44 stationara systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 15 15:24:35 stationara (inhibit)[7000]: Failed to execute : No such file or directory
mar 15 15:24:35 stationara systemd-inhibit[6996]: xswaylock failed with exit status 1.
mar 15 15:30:06 stationara NetworkManager[964]: <info>  [1773585006.1777] dhcp6 (enp4s0): state changed new lease, address=fd92:b956:263b::96f 2001:2043:7b4d:2d00::96f
mar 15 15:30:06 stationara systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 15 15:30:06 stationara systemd[1]: Started Network Manager Script Dispatcher Service.
mar 15 15:30:16 stationara systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 15 15:34:46 stationara NetworkManager[964]: <info>  [1773585286.1776] dhcp6 (enp4s0): state changed new lease, address=fd92:b956:263b::96f 2001:2043:7b4d:2d00::96f
mar 15 15:34:46 stationara systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 15 15:34:46 stationara systemd[1]: Started Network Manager Script Dispatcher Service.
mar 15 15:34:56 stationara systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 15 15:37:26 stationara NetworkManager[964]: <info>  [1773585446.1770] dhcp6 (enp4s0): state changed new lease, address=fd92:b956:263b::96f 2001:2043:7b4d:2d00::96f
mar 15 15:37:26 stationara systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 15 15:37:26 stationara systemd[1]: Started Network Manager Script Dispatcher Service.
mar 15 15:37:36 stationara systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 15 15:46:20 stationara kernel: nfs: Deprecated parameter 'intr'
mar 15 15:46:20 stationara nfsrahead[7087]: setting /mnt/MediaServer readahead to 128
mar 15 15:46:26 stationara NetworkManager[964]: <info>  [1773585986.1772] dhcp6 (enp4s0): state changed new lease, address=fd92:b956:263b::96f 2001:2043:7b4d:2d00::96f
mar 15 15:46:26 stationara systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 15 15:46:26 stationara systemd[1]: Started Network Manager Script Dispatcher Service.
mar 15 15:46:36 stationara systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 15 15:47:35 stationara systemd[1]: mnt-MediaServer.mount: Deactivated successfully.
mar 15 15:51:16 stationara NetworkManager[964]: <info>  [1773586276.1776] dhcp6 (enp4s0): state changed new lease, address=fd92:b956:263b::96f 2001:2043:7b4d:2d00::96f
mar 15 15:51:16 stationara systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 15 15:51:16 stationara systemd[1]: Started Network Manager Script Dispatcher Service.
mar 15 15:51:26 stationara systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 15 15:53:56 stationara NetworkManager[964]: <info>  [1773586436.1777] dhcp6 (enp4s0): state changed new lease, address=fd92:b956:263b::96f 2001:2043:7b4d:2d00::96f
mar 15 15:53:56 stationara systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 15 15:53:56 stationara systemd[1]: Started Network Manager Script Dispatcher Service.
mar 15 15:54:06 stationara systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 15 15:56:26 stationara systemd[1]: Started Daily Cleanup of Snapper Snapshots.
mar 15 15:56:26 stationara systemd[1]: Starting DBus interface for snapper...
mar 15 15:56:26 stationara systemd[1]: Started DBus interface for snapper.
mar 15 15:56:26 stationara systemd-helper[7141]: Running cleanup for 'root'.
mar 15 15:56:26 stationara systemd-helper[7141]: Running number cleanup for 'root'.
mar 15 15:56:26 stationara systemd-helper[7141]: Running timeline cleanup for 'root'.
mar 15 15:56:26 stationara systemd-helper[7141]: Raderar snapshot från root:
mar 15 15:56:26 stationara systemd-helper[7141]: 1111
mar 15 15:56:26 stationara systemd-helper[7141]: Running empty-pre-post cleanup for 'root'.
mar 15 15:56:26 stationara systemd[1]: snapper-cleanup.service: Deactivated successfully.
mar 15 15:57:26 stationara systemd[1]: snapperd.service: Deactivated successfully.
mar 15 16:00:06 stationara systemd[1]: Started Timeline of Snapper Snapshots.
mar 15 16:00:06 stationara systemd[1]: Starting DBus interface for snapper...
mar 15 16:00:06 stationara systemd[1]: Started DBus interface for snapper.
mar 15 16:00:06 stationara systemd-helper[7157]: Running timeline for 'root'.
mar 15 16:00:06 stationara systemd[1]: snapper-timeline.service: Deactivated successfully.
mar 15 16:01:06 stationara systemd[1]: snapperd.service: Deactivated successfully.
mar 15 16:03:46 stationara NetworkManager[964]: <info>  [1773587026.1771] dhcp6 (enp4s0): state changed new lease, address=fd92:b956:263b::96f 2001:2043:7b4d:2d00::96f
mar 15 16:03:46 stationara systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 15 16:03:46 stationara systemd[1]: Started Network Manager Script Dispatcher Service.
mar 15 16:03:56 stationara systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 15 16:08:16 stationara NetworkManager[964]: <info>  [1773587296.1775] dhcp6 (enp4s0): state changed new lease, address=fd92:b956:263b::96f 2001:2043:7b4d:2d00::96f
mar 15 16:08:16 stationara systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 15 16:08:16 stationara systemd[1]: Started Network Manager Script Dispatcher Service.
mar 15 16:08:26 stationara systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 15 16:10:46 stationara NetworkManager[964]: <info>  [1773587446.1777] dhcp6 (enp4s0): state changed new lease, address=fd92:b956:263b::96f 2001:2043:7b4d:2d00::96f
mar 15 16:10:46 stationara systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 15 16:10:46 stationara systemd[1]: Started Network Manager Script Dispatcher Service.
mar 15 16:10:56 stationara systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 15 16:11:55 stationara niri[1613]: 2026-03-15T15:11:55.577584Z  WARN niri::utils::vblank_throttle: output DP-1 running faster than expected, throttling vblanks: expected refresh 6.060634ms, got vblank after 1.838703ms
mar 15 16:11:56 stationara niri[1613]: 2026-03-15T15:11:56.590299Z DEBUG niri::backend::tty: device changed: 57857
mar 15 16:11:56 stationara niri[1613]: 2026-03-15T15:11:56.590412Z DEBUG niri::backend::tty: disconnecting connector: "DP-1"
mar 15 16:11:56 stationara niri[1613]: 2026-03-15T15:11:56.669641Z ERROR niri::backend::tty: missing surface in vblank callback for crtc crtc::Handle(62)
mar 15 16:11:56 stationara niri[1613]: 2026-03-15T15:11:56.672407Z  WARN niri::handlers::layer_shell: no output for new layer surface, closing
mar 15 16:11:56 stationara niri[1613]: 2026-03-15T15:11:56.672486Z  WARN niri::handlers::layer_shell: no output for new layer surface, closing
mar 15 16:11:56 stationara wpaperd[1812]: ERROR [wpaperd::surface]
mar 15 16:11:56 stationara wpaperd[1812]:    0: Surface for display DP-1 is not available in wpaperd registry
mar 15 16:11:56 stationara wpaperd[1812]: Backtrace omitted. Run with RUST_BACKTRACE=1 environment variable to display it.
mar 15 16:11:56 stationara wpaperd[1812]: Run with RUST_BACKTRACE=full to include source snippets.
mar 15 16:11:57 stationara wpaperd[1812]: ERROR [wpaperd::surface]
mar 15 16:11:57 stationara wpaperd[1812]:    0: Surface for display DP-1 is not available in wpaperd registry
mar 15 16:11:57 stationara wpaperd[1812]: Backtrace omitted. Run with RUST_BACKTRACE=1 environment variable to display it.
mar 15 16:11:57 stationara wpaperd[1812]: Run with RUST_BACKTRACE=full to include source snippets.
mar 15 16:11:57 stationara niri[1613]: 2026-03-15T15:11:57.372602Z DEBUG niri::backend::tty: device changed: 57857
mar 15 16:11:57 stationara niri[1613]: 2026-03-15T15:11:57.391506Z DEBUG niri::backend::tty: new connector: DP-1 "Samsung Electric Company LC34G55T HNTY105709"
mar 15 16:11:57 stationara niri[1613]: 2026-03-15T15:11:57.391523Z DEBUG niri::backend::tty: connecting connector: DP-1
mar 15 16:11:57 stationara niri[1613]: 2026-03-15T15:11:57.391549Z DEBUG niri::backend::tty: picking mode: Mode { name: "3440x1440", clock: 879710, size: (3440, 1440), hsync: (3488, 3520, 3600), vsync: (1467, 1475, 1481), hskew: 0, vscan: 0, vrefresh: 165, mode_type: ModeTypeFlags(PREFERRED | DRIVER) }
mar 15 16:11:57 stationara niri[1613]: 2026-03-15T15:11:57.392246Z  WARN niri::backend::tty: cannot enable VRR because connector does not support it
mar 15 16:11:57 stationara niri[1613]: 2026-03-15T15:11:57.393596Z DEBUG niri::niri: putting output DP-1 at x=0 y=0
mar 15 16:13:38 stationara sudo[7261]: shellback : TTY=pts/0 ; PWD=/home/shellback ; USER=root ; COMMAND=/usr/bin/nano /usr/bin/niriwm
mar 15 16:13:38 stationara sudo[7261]: pam_unix(sudo:session): session opened for user root(uid=0) by shellback(uid=1000)
mar 15 16:14:56 stationara sudo[7261]: pam_unix(sudo:session): session closed for user root
mar 15 16:15:16 stationara sudo[7297]: shellback : TTY=pts/0 ; PWD=/home/shellback ; USER=root ; COMMAND=/usr/bin/journalctl --help
mar 15 16:15:16 stationara sudo[7297]: pam_unix(sudo:session): session opened for user root(uid=0) by shellback(uid=1000)
mar 15 16:15:51 stationara sudo[7297]: pam_unix(sudo:session): session closed for user root
mar 15 16:16:21 stationara sudo[7334]: shellback : TTY=pts/0 ; PWD=/home/shellback ; USER=root ; COMMAND=/usr/bin/journalctl -b --output=export
mar 15 16:16:21 stationara sudo[7334]: pam_unix(sudo:session): session opened for user root(uid=0) by shellback(uid=1000)
mar 15 16:16:28 stationara sudo[7334]: pam_unix(sudo:session): session closed for user root
mar 15 16:16:31 stationara sudo[7368]: shellback : TTY=pts/0 ; PWD=/home/shellback ; USER=root ; COMMAND=/usr/bin/journalctl --help
mar 15 16:16:31 stationara sudo[7368]: pam_unix(sudo:session): session opened for user root(uid=0) by shellback(uid=1000)
mar 15 16:16:35 stationara sudo[7368]: pam_unix(sudo:session): session closed for user root
mar 15 16:17:06 stationara sudo[7402]: shellback : TTY=pts/0 ; PWD=/home/shellback ; USER=root ; COMMAND=/usr/bin/journalctl -b --no-pager
mar 15 16:17:06 stationara sudo[7402]: pam_unix(sudo:session): session opened for user root(uid=0) by shellback(uid=1000)

Offline

#7 2026-03-15 15:57:40

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 74,314

Re: [SOLVED] Programs recieves SIGPIPE and exits after system goes to idle

That boot is running since ~90m and it doesn't look like niri has terminated or any process was killed/crashed?

Your dhcp/IPv6 re-leases rather quickly, no idea whether that can cause a problem.

Offline

#8 2026-03-15 16:06:09

shellback
Member
Registered: 2015-01-17
Posts: 39

Re: [SOLVED] Programs recieves SIGPIPE and exits after system goes to idle

Rebooted and opened an code window first thing after login, but that is now gone, and no niri.terminated file in tmp, not yet anyway.

Realized that I might have missed one part of the description of the problem.

I first thought that it happens during monitor goes blank, and hence probably was caused by the event somehow. But... I have since discovered that code is closing even without the session being locked and the screen goes off, as long as I don't interact with it.

Here's my journal since reboot:

mar 15 16:30:06 archlinux kernel: Linux version 6.19.6-arch1-1 (linux@archlinux) (gcc (GCC) 15.2.1 20260209, GNU ld (GNU Binutils) 2.46) #1 SMP PREEMPT_DYNAMIC Wed, 04 Mar 2026 18:25:08 +0000
mar 15 16:30:06 archlinux kernel: Command line: root=/dev/mapper/root rootfstype=btrfs rootflags=subvol=/@ rw modeprobe.blacklist=pcspkr zswap.enabled=0 resume=/dev/mapper/swap hibernate.compressor=lz4 loglevel=3
mar 15 16:30:06 archlinux kernel: BIOS-provided physical RAM map:
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000009dfffff] usable
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x0000000009e00000-0x0000000009ffffff] reserved
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x000000000a200000-0x000000000a20bfff] ACPI NVS
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x000000000a20c000-0x000000000affffff] usable
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x000000000b000000-0x000000000b01ffff] reserved
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x000000000b020000-0x00000000d9897fff] usable
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x00000000d9898000-0x00000000dad89fff] reserved
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x00000000dad8a000-0x00000000dafa6fff] ACPI data
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x00000000dafa7000-0x00000000db493fff] ACPI NVS
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x00000000db494000-0x00000000dc51cfff] reserved
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x00000000dc51d000-0x00000000deffffff] usable
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x00000000df000000-0x00000000dfffffff] reserved
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x00000000fd000000-0x00000000fd0fffff] reserved
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x00000000fd500000-0x00000000fd5fffff] reserved
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000feefffff] reserved
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
mar 15 16:30:06 archlinux kernel: BIOS-e820: [mem 0x0000000100000000-0x000000041f37ffff] usable
mar 15 16:30:06 archlinux kernel: NX (Execute Disable) protection: active
mar 15 16:30:06 archlinux kernel: APIC: Static calls initialized
mar 15 16:30:06 archlinux kernel: efi: EFI v2.6 by American Megatrends
mar 15 16:30:06 archlinux kernel: efi: TPMFinalLog=0xdb447000 ACPI 2.0=0xdaea1000 ACPI=0xdaea1000 SMBIOS=0xdc3de000 SMBIOS 3.0=0xdc3dd000 ESRT=0xd7909e18 MEMATTR=0xd7032018 RNG=0xdafa6f18 INITRD=0xcec1cf18 TPMEventLog=0xdaf9f018 
mar 15 16:30:06 archlinux kernel: random: crng init done
mar 15 16:30:06 archlinux kernel: efi: memattr: Unexpected EFI Memory Attributes table version -685376616
mar 15 16:30:06 archlinux kernel: efi: Remove mem34: MMIO range=[0xf8000000-0xfbffffff] (64MB) from e820 map
mar 15 16:30:06 archlinux kernel: e820: remove [mem 0xf8000000-0xfbffffff] reserved
mar 15 16:30:06 archlinux kernel: efi: Remove mem35: MMIO range=[0xfd000000-0xfd0fffff] (1MB) from e820 map
mar 15 16:30:06 archlinux kernel: e820: remove [mem 0xfd000000-0xfd0fffff] reserved
mar 15 16:30:06 archlinux kernel: efi: Remove mem36: MMIO range=[0xfd500000-0xfd5fffff] (1MB) from e820 map
mar 15 16:30:06 archlinux kernel: e820: remove [mem 0xfd500000-0xfd5fffff] reserved
mar 15 16:30:06 archlinux kernel: efi: Not removing mem37: MMIO range=[0xfea00000-0xfea0ffff] (64KB) from e820 map
mar 15 16:30:06 archlinux kernel: efi: Remove mem38: MMIO range=[0xfeb80000-0xfec01fff] (0MB) from e820 map
mar 15 16:30:06 archlinux kernel: e820: remove [mem 0xfeb80000-0xfec01fff] reserved
mar 15 16:30:06 archlinux kernel: efi: Not removing mem39: MMIO range=[0xfec10000-0xfec10fff] (4KB) from e820 map
mar 15 16:30:06 archlinux kernel: efi: Not removing mem40: MMIO range=[0xfec30000-0xfec30fff] (4KB) from e820 map
mar 15 16:30:06 archlinux kernel: efi: Not removing mem41: MMIO range=[0xfed00000-0xfed00fff] (4KB) from e820 map
mar 15 16:30:06 archlinux kernel: efi: Not removing mem42: MMIO range=[0xfed40000-0xfed44fff] (20KB) from e820 map
mar 15 16:30:06 archlinux kernel: efi: Not removing mem43: MMIO range=[0xfed80000-0xfed8ffff] (64KB) from e820 map
mar 15 16:30:06 archlinux kernel: efi: Not removing mem44: MMIO range=[0xfedc2000-0xfedcffff] (56KB) from e820 map
mar 15 16:30:06 archlinux kernel: efi: Not removing mem45: MMIO range=[0xfedd4000-0xfedd5fff] (8KB) from e820 map
mar 15 16:30:06 archlinux kernel: efi: Remove mem46: MMIO range=[0xfee00000-0xfeefffff] (1MB) from e820 map
mar 15 16:30:06 archlinux kernel: e820: remove [mem 0xfee00000-0xfeefffff] reserved
mar 15 16:30:06 archlinux kernel: efi: Remove mem47: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
mar 15 16:30:06 archlinux kernel: e820: remove [mem 0xff000000-0xffffffff] reserved
mar 15 16:30:06 archlinux kernel: SMBIOS 3.2.0 present.
mar 15 16:30:06 archlinux kernel: DMI: System manufacturer System Product Name/ROG STRIX B450-F GAMING, BIOS 2605 08/06/2019
mar 15 16:30:06 archlinux kernel: DMI: Memory slots populated: 2/4
mar 15 16:30:06 archlinux kernel: tsc: Fast TSC calibration failed
mar 15 16:30:06 archlinux kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
mar 15 16:30:06 archlinux kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
mar 15 16:30:06 archlinux kernel: last_pfn = 0x41f380 max_arch_pfn = 0x400000000
mar 15 16:30:06 archlinux kernel: total RAM covered: 3583M
mar 15 16:30:06 archlinux kernel: Found optimal setting for mtrr clean up
mar 15 16:30:06 archlinux kernel:  gran_size: 64K         chunk_size: 128M         num_reg: 4          lose cover RAM: 0G
mar 15 16:30:06 archlinux kernel: MTRR map: 7 entries (3 fixed + 4 variable; max 20), built from 9 variable MTRRs
mar 15 16:30:06 archlinux kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
mar 15 16:30:06 archlinux kernel: e820: update [mem 0xdbcf0000-0xdbcfffff] usable ==> reserved
mar 15 16:30:06 archlinux kernel: e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved
mar 15 16:30:06 archlinux kernel: last_pfn = 0xdf000 max_arch_pfn = 0x400000000
mar 15 16:30:06 archlinux kernel: esrt: Reserving ESRT space from 0x00000000d7909e18 to 0x00000000d7909e50.
mar 15 16:30:06 archlinux kernel: e820: update [mem 0xd7909000-0xd7909fff] usable ==> reserved
mar 15 16:30:06 archlinux kernel: Using GB pages for direct mapping
mar 15 16:30:06 archlinux kernel: Secure boot enabled
mar 15 16:30:06 archlinux kernel: RAMDISK: [mem 0xc738c000-0xca7c2fff]
mar 15 16:30:06 archlinux kernel: ACPI: Early table checksum verification disabled
mar 15 16:30:06 archlinux kernel: ACPI: RSDP 0x00000000DAEA1000 000024 (v02 ALASKA)
mar 15 16:30:06 archlinux kernel: ACPI: XSDT 0x00000000DAEA10A8 0000CC (v01 ALASKA A M I    01072009 AMI  00010013)
mar 15 16:30:06 archlinux kernel: ACPI: FACP 0x00000000DAEB03E0 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
mar 15 16:30:06 archlinux kernel: ACPI: DSDT 0x00000000DAEA1210 00F1C9 (v02 ALASKA A M I    01072009 INTL 20120913)
mar 15 16:30:06 archlinux kernel: ACPI: FACS 0x00000000DB47CD80 000040
mar 15 16:30:06 archlinux kernel: ACPI: APIC 0x00000000DAEB04F8 00015E (v03 ALASKA A M I    01072009 AMI  00010013)
mar 15 16:30:06 archlinux kernel: ACPI: FPDT 0x00000000DAEB0658 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
mar 15 16:30:06 archlinux kernel: ACPI: FIDT 0x00000000DAEB06A0 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
mar 15 16:30:06 archlinux kernel: ACPI: SSDT 0x00000000DAEB0740 0000C8 (v02 ALASKA CPUSSDT  01072009 AMI  01072009)
mar 15 16:30:06 archlinux kernel: ACPI: SSDT 0x00000000DAEB0808 008C98 (v02 AMD    AMD ALIB 00000002 MSFT 04000000)
mar 15 16:30:06 archlinux kernel: ACPI: SSDT 0x00000000DAEB94A0 003301 (v01 AMD    AMD AOD  00000001 INTL 20120913)
mar 15 16:30:06 archlinux kernel: ACPI: MCFG 0x00000000DAEBC7A8 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
mar 15 16:30:06 archlinux kernel: ACPI: SSDT 0x00000000DAEC2878 0010AF (v01 AMD    AmdTable 00000001 INTL 20120913)
mar 15 16:30:06 archlinux kernel: ACPI: HPET 0x00000000DAEBC840 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
mar 15 16:30:06 archlinux kernel: ACPI: UEFI 0x00000000DAEBC878 000042 (v01 ALASKA A M I    00000002      01000013)
mar 15 16:30:06 archlinux kernel: ACPI: BGRT 0x00000000DAEBC8C0 000038 (v01 ALASKA A M I    01072009 AMI  00010013)
mar 15 16:30:06 archlinux kernel: ACPI: WPBT 0x00000000DAEBC8F8 00003C (v01 ALASKA A M I    00000001 ASUS 00000001)
mar 15 16:30:06 archlinux kernel: ACPI: TPM2 0x00000000DAEBC938 000034 (v03 ALASKA A M I    00000001 AMI  00000000)
mar 15 16:30:06 archlinux kernel: ACPI: IVRS 0x00000000DAEBC970 0000D0 (v02 AMD    AMD IVRS 00000001 AMD  00000000)
mar 15 16:30:06 archlinux kernel: ACPI: PCCT 0x00000000DAEBCA40 00006E (v01 AMD    AMD PCCT 00000001 AMD  00000000)
mar 15 16:30:06 archlinux kernel: ACPI: SSDT 0x00000000DAEBCAB0 002F29 (v01 AMD    AMD CPU  00000001 AMD  00000001)
mar 15 16:30:06 archlinux kernel: ACPI: CRAT 0x00000000DAEBF9E0 001058 (v01 AMD    AMD CRAT 00000001 AMD  00000001)
mar 15 16:30:06 archlinux kernel: ACPI: CDIT 0x00000000DAEC0A38 000029 (v01 AMD    AMD CDIT 00000001 AMD  00000001)
mar 15 16:30:06 archlinux kernel: ACPI: SSDT 0x00000000DAEC0A68 001D4A (v01 AMD    AmdTable 00000001 INTL 20120913)
mar 15 16:30:06 archlinux kernel: ACPI: SSDT 0x00000000DAEC27B8 0000BF (v01 AMD    AMD PT   00001000 INTL 20120913)
mar 15 16:30:06 archlinux kernel: ACPI: Reserving FACP table memory at [mem 0xdaeb03e0-0xdaeb04f3]
mar 15 16:30:06 archlinux kernel: ACPI: Reserving DSDT table memory at [mem 0xdaea1210-0xdaeb03d8]
mar 15 16:30:06 archlinux kernel: ACPI: Reserving FACS table memory at [mem 0xdb47cd80-0xdb47cdbf]
mar 15 16:30:06 archlinux kernel: ACPI: Reserving APIC table memory at [mem 0xdaeb04f8-0xdaeb0655]
mar 15 16:30:06 archlinux kernel: ACPI: Reserving FPDT table memory at [mem 0xdaeb0658-0xdaeb069b]
mar 15 16:30:06 archlinux kernel: ACPI: Reserving FIDT table memory at [mem 0xdaeb06a0-0xdaeb073b]
mar 15 16:30:06 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0xdaeb0740-0xdaeb0807]
mar 15 16:30:06 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0xdaeb0808-0xdaeb949f]
mar 15 16:30:06 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0xdaeb94a0-0xdaebc7a0]
mar 15 16:30:06 archlinux kernel: ACPI: Reserving MCFG table memory at [mem 0xdaebc7a8-0xdaebc7e3]
mar 15 16:30:06 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0xdaec2878-0xdaec3926]
mar 15 16:30:06 archlinux kernel: ACPI: Reserving HPET table memory at [mem 0xdaebc840-0xdaebc877]
mar 15 16:30:06 archlinux kernel: ACPI: Reserving UEFI table memory at [mem 0xdaebc878-0xdaebc8b9]
mar 15 16:30:06 archlinux kernel: ACPI: Reserving BGRT table memory at [mem 0xdaebc8c0-0xdaebc8f7]
mar 15 16:30:06 archlinux kernel: ACPI: Reserving WPBT table memory at [mem 0xdaebc8f8-0xdaebc933]
mar 15 16:30:06 archlinux kernel: ACPI: Reserving TPM2 table memory at [mem 0xdaebc938-0xdaebc96b]
mar 15 16:30:06 archlinux kernel: ACPI: Reserving IVRS table memory at [mem 0xdaebc970-0xdaebca3f]
mar 15 16:30:06 archlinux kernel: ACPI: Reserving PCCT table memory at [mem 0xdaebca40-0xdaebcaad]
mar 15 16:30:06 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0xdaebcab0-0xdaebf9d8]
mar 15 16:30:06 archlinux kernel: ACPI: Reserving CRAT table memory at [mem 0xdaebf9e0-0xdaec0a37]
mar 15 16:30:06 archlinux kernel: ACPI: Reserving CDIT table memory at [mem 0xdaec0a38-0xdaec0a60]
mar 15 16:30:06 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0xdaec0a68-0xdaec27b1]
mar 15 16:30:06 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0xdaec27b8-0xdaec2876]
mar 15 16:30:06 archlinux kernel: No NUMA configuration found
mar 15 16:30:06 archlinux kernel: Faking a node at [mem 0x0000000000000000-0x000000041f37ffff]
mar 15 16:30:06 archlinux kernel: NODE_DATA(0) allocated [mem 0x41f355280-0x41f37ffff]
mar 15 16:30:06 archlinux kernel: Zone ranges:
mar 15 16:30:06 archlinux kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
mar 15 16:30:06 archlinux kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
mar 15 16:30:06 archlinux kernel:   Normal   [mem 0x0000000100000000-0x000000041f37ffff]
mar 15 16:30:06 archlinux kernel:   Device   empty
mar 15 16:30:06 archlinux kernel: Movable zone start for each node
mar 15 16:30:06 archlinux kernel: Early memory node ranges
mar 15 16:30:06 archlinux kernel:   node   0: [mem 0x0000000000001000-0x000000000009ffff]
mar 15 16:30:06 archlinux kernel:   node   0: [mem 0x0000000000100000-0x0000000009dfffff]
mar 15 16:30:06 archlinux kernel:   node   0: [mem 0x000000000a000000-0x000000000a1fffff]
mar 15 16:30:06 archlinux kernel:   node   0: [mem 0x000000000a20c000-0x000000000affffff]
mar 15 16:30:06 archlinux kernel:   node   0: [mem 0x000000000b020000-0x00000000d9897fff]
mar 15 16:30:06 archlinux kernel:   node   0: [mem 0x00000000dc51d000-0x00000000deffffff]
mar 15 16:30:06 archlinux kernel:   node   0: [mem 0x0000000100000000-0x000000041f37ffff]
mar 15 16:30:06 archlinux kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000041f37ffff]
mar 15 16:30:06 archlinux kernel: On node 0, zone DMA: 1 pages in unavailable ranges
mar 15 16:30:06 archlinux kernel: On node 0, zone DMA: 96 pages in unavailable ranges
mar 15 16:30:06 archlinux kernel: On node 0, zone DMA32: 512 pages in unavailable ranges
mar 15 16:30:06 archlinux kernel: On node 0, zone DMA32: 12 pages in unavailable ranges
mar 15 16:30:06 archlinux kernel: On node 0, zone DMA32: 32 pages in unavailable ranges
mar 15 16:30:06 archlinux kernel: On node 0, zone DMA32: 11397 pages in unavailable ranges
mar 15 16:30:06 archlinux kernel: On node 0, zone Normal: 4096 pages in unavailable ranges
mar 15 16:30:06 archlinux kernel: On node 0, zone Normal: 3200 pages in unavailable ranges
mar 15 16:30:06 archlinux kernel: ACPI: PM-Timer IO Port: 0x808
mar 15 16:30:06 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
mar 15 16:30:06 archlinux kernel: IOAPIC[0]: apic_id 13, version 33, address 0xfec00000, GSI 0-23
mar 15 16:30:06 archlinux kernel: IOAPIC[1]: apic_id 14, version 33, address 0xfec01000, GSI 24-55
mar 15 16:30:06 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
mar 15 16:30:06 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
mar 15 16:30:06 archlinux kernel: ACPI: Using ACPI (MADT) for SMP configuration information
mar 15 16:30:06 archlinux kernel: ACPI: HPET id: 0x10228201 base: 0xfed00000
mar 15 16:30:06 archlinux kernel: e820: update [mem 0xd5531000-0xd56e1fff] usable ==> reserved
mar 15 16:30:06 archlinux kernel: CPU topo: Max. logical packages:   1
mar 15 16:30:06 archlinux kernel: CPU topo: Max. logical dies:       1
mar 15 16:30:06 archlinux kernel: CPU topo: Max. dies per package:   1
mar 15 16:30:06 archlinux kernel: CPU topo: Max. threads per core:   2
mar 15 16:30:06 archlinux kernel: CPU topo: Num. cores per package:     6
mar 15 16:30:06 archlinux kernel: CPU topo: Num. threads per package:  12
mar 15 16:30:06 archlinux kernel: CPU topo: Allowing 12 present CPUs plus 0 hotplug CPUs
mar 15 16:30:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
mar 15 16:30:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
mar 15 16:30:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x09e00000-0x09ffffff]
mar 15 16:30:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20bfff]
mar 15 16:30:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x0b000000-0x0b01ffff]
mar 15 16:30:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xd5531000-0xd56e1fff]
mar 15 16:30:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xd7909000-0xd7909fff]
mar 15 16:30:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xd9898000-0xdc51cfff]
mar 15 16:30:06 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xdf000000-0xffffffff]
mar 15 16:30:06 archlinux kernel: [mem 0xe0000000-0xfe9fffff] available for PCI devices
mar 15 16:30:06 archlinux kernel: Booting paravirtualized kernel on bare hardware
mar 15 16:30:06 archlinux kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
mar 15 16:30:06 archlinux kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:12 nr_cpu_ids:12 nr_node_ids:1
mar 15 16:30:06 archlinux kernel: percpu: Embedded 63 pages/cpu s221184 r8192 d28672 u262144
mar 15 16:30:06 archlinux kernel: pcpu-alloc: s221184 r8192 d28672 u262144 alloc=1*2097152
mar 15 16:30:06 archlinux kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 -- -- -- -- 
mar 15 16:30:06 archlinux kernel: Kernel command line: root=/dev/mapper/root rootfstype=btrfs rootflags=subvol=/@ rw modeprobe.blacklist=pcspkr zswap.enabled=0 resume=/dev/mapper/swap hibernate.compressor=lz4 loglevel=3
mar 15 16:30:06 archlinux kernel: printk: log buffer data + meta data: 131072 + 458752 = 589824 bytes
mar 15 16:30:06 archlinux kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
mar 15 16:30:06 archlinux kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
mar 15 16:30:06 archlinux kernel: software IO TLB: area num 16.
mar 15 16:30:06 archlinux kernel: Fallback order for Node 0: 0 
mar 15 16:30:06 archlinux kernel: Built 1 zonelists, mobility grouping on.  Total pages: 4174958
mar 15 16:30:06 archlinux kernel: Policy zone: Normal
mar 15 16:30:06 archlinux kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
mar 15 16:30:06 archlinux kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=12, Nodes=1
mar 15 16:30:06 archlinux kernel: ftrace: allocating 57655 entries in 228 pages
mar 15 16:30:06 archlinux kernel: ftrace: allocated 228 pages with 4 groups
mar 15 16:30:06 archlinux kernel: Dynamic Preempt: full
mar 15 16:30:06 archlinux kernel: rcu: Preemptible hierarchical RCU implementation.
mar 15 16:30:06 archlinux kernel: rcu:         RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=12.
mar 15 16:30:06 archlinux kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
mar 15 16:30:06 archlinux kernel:         Trampoline variant of Tasks RCU enabled.
mar 15 16:30:06 archlinux kernel:         Rude variant of Tasks RCU enabled.
mar 15 16:30:06 archlinux kernel:         Tracing variant of Tasks RCU enabled.
mar 15 16:30:06 archlinux kernel: rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
mar 15 16:30:06 archlinux kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=12
mar 15 16:30:06 archlinux kernel: RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=12.
mar 15 16:30:06 archlinux kernel: RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=12.
mar 15 16:30:06 archlinux kernel: RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=12.
mar 15 16:30:06 archlinux kernel: NR_IRQS: 524544, nr_irqs: 1064, preallocated irqs: 16
mar 15 16:30:06 archlinux kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
mar 15 16:30:06 archlinux kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
mar 15 16:30:06 archlinux kernel: Console: colour dummy device 80x25
mar 15 16:30:06 archlinux kernel: printk: legacy console [tty0] enabled
mar 15 16:30:06 archlinux kernel: ACPI: Core revision 20250807
mar 15 16:30:06 archlinux kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
mar 15 16:30:06 archlinux kernel: APIC: Switch to symmetric I/O mode setup
mar 15 16:30:06 archlinux kernel: AMD-Vi: Using global IVHD EFR:0x58f77ef22294ade, EFR2:0x0
mar 15 16:30:06 archlinux kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
mar 15 16:30:06 archlinux kernel: tsc: PIT calibration matches HPET. 1 loops
mar 15 16:30:06 archlinux kernel: tsc: Detected 3600.030 MHz processor
mar 15 16:30:06 archlinux kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x33e46fe8e00, max_idle_ns: 440795372550 ns
mar 15 16:30:06 archlinux kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 7200.06 BogoMIPS (lpj=3600030)
mar 15 16:30:06 archlinux kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
mar 15 16:30:06 archlinux kernel: RDRAND is not reliable on this platform; disabling.
mar 15 16:30:06 archlinux kernel: LVT offset 1 assigned for vector 0xf9
mar 15 16:30:06 archlinux kernel: LVT offset 2 assigned for vector 0xf4
mar 15 16:30:06 archlinux kernel: Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
mar 15 16:30:06 archlinux kernel: Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0
mar 15 16:30:06 archlinux kernel: process: using mwait in idle threads
mar 15 16:30:06 archlinux kernel: mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
mar 15 16:30:06 archlinux kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
mar 15 16:30:06 archlinux kernel: Spectre V2 : Mitigation: Retpolines
mar 15 16:30:06 archlinux kernel: RETBleed: Mitigation: untrained return thunk
mar 15 16:30:06 archlinux kernel: Spectre V2 : User space: Mitigation: STIBP always-on protection
mar 15 16:30:06 archlinux kernel: Speculative Return Stack Overflow: Mitigation: Safe RET
mar 15 16:30:06 archlinux kernel: VMSCAPE: Mitigation: IBPB before exit to userspace
mar 15 16:30:06 archlinux kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
mar 15 16:30:06 archlinux kernel: Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
mar 15 16:30:06 archlinux kernel: Spectre V2 : Enabling Speculation Barrier for firmware calls
mar 15 16:30:06 archlinux kernel: active return thunk: retbleed_return_thunk
mar 15 16:30:06 archlinux kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
mar 15 16:30:06 archlinux kernel: active return thunk: srso_return_thunk
mar 15 16:30:06 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
mar 15 16:30:06 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
mar 15 16:30:06 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
mar 15 16:30:06 archlinux kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
mar 15 16:30:06 archlinux kernel: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
mar 15 16:30:06 archlinux kernel: Freeing SMP alternatives memory: 56K
mar 15 16:30:06 archlinux kernel: pid_max: default: 32768 minimum: 301
mar 15 16:30:06 archlinux kernel: landlock: Up and running.
mar 15 16:30:06 archlinux kernel: Yama: becoming mindful.
mar 15 16:30:06 archlinux kernel: LSM support for eBPF active
mar 15 16:30:06 archlinux kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
mar 15 16:30:06 archlinux kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
mar 15 16:30:06 archlinux kernel: smpboot: CPU0: AMD Ryzen 5 3600 6-Core Processor (family: 0x17, model: 0x71, stepping: 0x0)
mar 15 16:30:06 archlinux kernel: Performance Events: Fam17h+ core perfctr, AMD PMU driver.
mar 15 16:30:06 archlinux kernel: ... version:                   0
mar 15 16:30:06 archlinux kernel: ... bit width:                 48
mar 15 16:30:06 archlinux kernel: ... generic counters:          6
mar 15 16:30:06 archlinux kernel: ... generic bitmap:            000000000000003f
mar 15 16:30:06 archlinux kernel: ... fixed-purpose counters:    0
mar 15 16:30:06 archlinux kernel: ... fixed-purpose bitmap:      0000000000000000
mar 15 16:30:06 archlinux kernel: ... value mask:                0000ffffffffffff
mar 15 16:30:06 archlinux kernel: ... max period:                00007fffffffffff
mar 15 16:30:06 archlinux kernel: ... global_ctrl mask:          000000000000003f
mar 15 16:30:06 archlinux kernel: signal: max sigframe size: 1776
mar 15 16:30:06 archlinux kernel: rcu: Hierarchical SRCU implementation.
mar 15 16:30:06 archlinux kernel: rcu:         Max phase no-delay instances is 400.
mar 15 16:30:06 archlinux kernel: Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
mar 15 16:30:06 archlinux kernel: MCE: In-kernel MCE decoding enabled.
mar 15 16:30:06 archlinux kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
mar 15 16:30:06 archlinux kernel: smp: Bringing up secondary CPUs ...
mar 15 16:30:06 archlinux kernel: smpboot: x86: Booting SMP configuration:
mar 15 16:30:06 archlinux kernel: .... node  #0, CPUs:        #1  #2  #3  #4  #5
mar 15 16:30:06 archlinux kernel: RDRAND is not reliable on this platform; disabling.
mar 15 16:30:06 archlinux kernel: RDRAND is not reliable on this platform; disabling.
mar 15 16:30:06 archlinux kernel: RDRAND is not reliable on this platform; disabling.
mar 15 16:30:06 archlinux kernel: RDRAND is not reliable on this platform; disabling.
mar 15 16:30:06 archlinux kernel: RDRAND is not reliable on this platform; disabling.
mar 15 16:30:06 archlinux kernel:   #6  #7  #8  #9 #10 #11
mar 15 16:30:06 archlinux kernel: RDRAND is not reliable on this platform; disabling.
mar 15 16:30:06 archlinux kernel: Spectre V2 : Update user space SMT mitigation: STIBP always-on
mar 15 16:30:06 archlinux kernel: RDRAND is not reliable on this platform; disabling.
mar 15 16:30:06 archlinux kernel: RDRAND is not reliable on this platform; disabling.
mar 15 16:30:06 archlinux kernel: RDRAND is not reliable on this platform; disabling.
mar 15 16:30:06 archlinux kernel: RDRAND is not reliable on this platform; disabling.
mar 15 16:30:06 archlinux kernel: RDRAND is not reliable on this platform; disabling.
mar 15 16:30:06 archlinux kernel: smp: Brought up 1 node, 12 CPUs
mar 15 16:30:06 archlinux kernel: smpboot: Total of 12 processors activated (86400.72 BogoMIPS)
mar 15 16:30:06 archlinux kernel: Memory: 16205372K/16699832K available (20566K kernel code, 2951K rwdata, 16748K rodata, 4776K init, 4600K bss, 474148K reserved, 0K cma-reserved)
mar 15 16:30:06 archlinux kernel: devtmpfs: initialized
mar 15 16:30:06 archlinux kernel: x86/mm: Memory block size: 128MB
mar 15 16:30:06 archlinux kernel: ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20bfff] (49152 bytes)
mar 15 16:30:06 archlinux kernel: ACPI: PM: Registering ACPI NVS region [mem 0xdafa7000-0xdb493fff] (5165056 bytes)
mar 15 16:30:06 archlinux kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
mar 15 16:30:06 archlinux kernel: posixtimers hash table entries: 8192 (order: 5, 131072 bytes, linear)
mar 15 16:30:06 archlinux kernel: futex hash table entries: 4096 (262144 bytes on 1 NUMA nodes, total 256 KiB, linear).
mar 15 16:30:06 archlinux kernel: PM: RTC time: 15:30:04, date: 2026-03-15
mar 15 16:30:06 archlinux kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
mar 15 16:30:06 archlinux kernel: DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
mar 15 16:30:06 archlinux kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
mar 15 16:30:06 archlinux kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
mar 15 16:30:06 archlinux kernel: audit: initializing netlink subsys (disabled)
mar 15 16:30:06 archlinux kernel: audit: type=2000 audit(1773588604.175:1): state=initialized audit_enabled=0 res=1
mar 15 16:30:06 archlinux kernel: thermal_sys: Registered thermal governor 'fair_share'
mar 15 16:30:06 archlinux kernel: thermal_sys: Registered thermal governor 'bang_bang'
mar 15 16:30:06 archlinux kernel: thermal_sys: Registered thermal governor 'step_wise'
mar 15 16:30:06 archlinux kernel: thermal_sys: Registered thermal governor 'user_space'
mar 15 16:30:06 archlinux kernel: thermal_sys: Registered thermal governor 'power_allocator'
mar 15 16:30:06 archlinux kernel: cpuidle: using governor ladder
mar 15 16:30:06 archlinux kernel: cpuidle: using governor menu
mar 15 16:30:06 archlinux kernel: Detected 1 PCC Subspaces
mar 15 16:30:06 archlinux kernel: Registering PCC driver as Mailbox controller
mar 15 16:30:06 archlinux kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
mar 15 16:30:06 archlinux kernel: PCI: ECAM [mem 0xf8000000-0xfbffffff] (base 0xf8000000) for domain 0000 [bus 00-3f]
mar 15 16:30:06 archlinux kernel: PCI: Using configuration type 1 for base access
mar 15 16:30:06 archlinux kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
mar 15 16:30:06 archlinux kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
mar 15 16:30:06 archlinux kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
mar 15 16:30:06 archlinux kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
mar 15 16:30:06 archlinux kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
mar 15 16:30:06 archlinux kernel: raid6: skipped pq benchmark and selected avx2x4
mar 15 16:30:06 archlinux kernel: raid6: using avx2x2 recovery algorithm
mar 15 16:30:06 archlinux kernel: fbcon: Taking over console
mar 15 16:30:06 archlinux kernel: ACPI: Added _OSI(Module Device)
mar 15 16:30:06 archlinux kernel: ACPI: Added _OSI(Processor Device)
mar 15 16:30:06 archlinux kernel: ACPI: Added _OSI(Processor Aggregator Device)
mar 15 16:30:06 archlinux kernel: ACPI: 8 ACPI AML tables successfully acquired and loaded
mar 15 16:30:06 archlinux kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
mar 15 16:30:06 archlinux kernel: ACPI: EC: EC started
mar 15 16:30:06 archlinux kernel: ACPI: EC: interrupt blocked
mar 15 16:30:06 archlinux kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
mar 15 16:30:06 archlinux kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: Boot DSDT EC used to handle transactions
mar 15 16:30:06 archlinux kernel: ACPI: Interpreter enabled
mar 15 16:30:06 archlinux kernel: ACPI: PM: (supports S0 S3 S4 S5)
mar 15 16:30:06 archlinux kernel: ACPI: Using IOAPIC for interrupt routing
mar 15 16:30:06 archlinux kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
mar 15 16:30:06 archlinux kernel: PCI: Using E820 reservations for host bridge windows
mar 15 16:30:06 archlinux kernel: ACPI: Enabled 3 GPEs in block 00 to 1F
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT3._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO11._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT4._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO12._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT5._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO13._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT6._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO14._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT1._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT9._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT2._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO10._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT7._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO15._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT8._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO16._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO17._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO18._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO19._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO20._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO21._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO22._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
mar 15 16:30:06 archlinux kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
mar 15 16:30:06 archlinux kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME LTR DPC]
mar 15 16:30:06 archlinux kernel: acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
mar 15 16:30:06 archlinux kernel: acpi PNP0A08:00: [Firmware Info]: ECAM [mem 0xf8000000-0xfbffffff] for domain 0000 [bus 00-3f] only partially covers this bridge
mar 15 16:30:06 archlinux kernel: PCI host bridge to bus 0000:00
mar 15 16:30:06 archlinux kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xefff window]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfec2ffff window]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
mar 15 16:30:06 archlinux kernel: pci 0000:00:00.0: [1022:1480] type 00 class 0x060000 conventional PCI endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:00:00.2: [1022:1481] type 00 class 0x080600 conventional PCI endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:00:01.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:00:01.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
mar 15 16:30:06 archlinux kernel: pci 0000:00:01.1: PCI bridge to [bus 01]
mar 15 16:30:06 archlinux kernel: pci 0000:00:01.1:   bridge window [mem 0xfcf00000-0xfcffffff]
mar 15 16:30:06 archlinux kernel: pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
mar 15 16:30:06 archlinux kernel: pci 0000:00:01.3: [1022:1483] type 01 class 0x060400 PCIe Root Port
mar 15 16:30:06 archlinux kernel: pci 0000:00:01.3: PCI bridge to [bus 02-08]
mar 15 16:30:06 archlinux kernel: pci 0000:00:01.3:   bridge window [io  0xe000-0xefff]
mar 15 16:30:06 archlinux kernel: pci 0000:00:01.3:   bridge window [mem 0xfca00000-0xfcbfffff]
mar 15 16:30:06 archlinux kernel: pci 0000:00:01.3: enabling Extended Tags
mar 15 16:30:06 archlinux kernel: pci 0000:00:01.3: PME# supported from D0 D3hot D3cold
mar 15 16:30:06 archlinux kernel: pci 0000:00:02.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:00:03.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:00:03.1: [1022:1483] type 01 class 0x060400 PCIe Root Port
mar 15 16:30:06 archlinux kernel: pci 0000:00:03.1: PCI bridge to [bus 09]
mar 15 16:30:06 archlinux kernel: pci 0000:00:03.1:   bridge window [io  0xd000-0xdfff]
mar 15 16:30:06 archlinux kernel: pci 0000:00:03.1:   bridge window [mem 0xfce00000-0xfcefffff]
mar 15 16:30:06 archlinux kernel: pci 0000:00:03.1:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
mar 15 16:30:06 archlinux kernel: pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
mar 15 16:30:06 archlinux kernel: pci 0000:00:04.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:00:05.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:00:07.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:00:07.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
mar 15 16:30:06 archlinux kernel: pci 0000:00:07.1: PCI bridge to [bus 0a]
mar 15 16:30:06 archlinux kernel: pci 0000:00:07.1: enabling Extended Tags
mar 15 16:30:06 archlinux kernel: pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.0: [1022:1482] type 00 class 0x060000 conventional PCI endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.1: [1022:1484] type 01 class 0x060400 PCIe Root Port
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.1: PCI bridge to [bus 0b]
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.1:   bridge window [mem 0xfc700000-0xfc9fffff]
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.1: enabling Extended Tags
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.2: [1022:1484] type 01 class 0x060400 PCIe Root Port
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.2: PCI bridge to [bus 0c]
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.2:   bridge window [mem 0xfcd00000-0xfcdfffff]
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.2: enabling Extended Tags
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.2: PME# supported from D0 D3hot D3cold
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.3: [1022:1484] type 01 class 0x060400 PCIe Root Port
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.3: PCI bridge to [bus 0d]
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.3:   bridge window [mem 0xfcc00000-0xfccfffff]
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.3: enabling Extended Tags
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.3: PME# supported from D0 D3hot D3cold
mar 15 16:30:06 archlinux kernel: pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:00:18.0: [1022:1440] type 00 class 0x060000 conventional PCI endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:00:18.1: [1022:1441] type 00 class 0x060000 conventional PCI endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:00:18.2: [1022:1442] type 00 class 0x060000 conventional PCI endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:00:18.3: [1022:1443] type 00 class 0x060000 conventional PCI endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:00:18.4: [1022:1444] type 00 class 0x060000 conventional PCI endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:00:18.5: [1022:1445] type 00 class 0x060000 conventional PCI endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:00:18.6: [1022:1446] type 00 class 0x060000 conventional PCI endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:00:18.7: [1022:1447] type 00 class 0x060000 conventional PCI endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:01:00.0: [2646:5013] type 00 class 0x010802 PCIe Endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:01:00.0: BAR 0 [mem 0xfcf00000-0xfcf03fff 64bit]
mar 15 16:30:06 archlinux kernel: pci 0000:00:01.1: PCI bridge to [bus 01]
mar 15 16:30:06 archlinux kernel: pci 0000:02:00.0: [1022:43d5] type 00 class 0x0c0330 PCIe Legacy Endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:02:00.0: BAR 0 [mem 0xfcba0000-0xfcba7fff 64bit]
mar 15 16:30:06 archlinux kernel: pci 0000:02:00.0: enabling Extended Tags
mar 15 16:30:06 archlinux kernel: pci 0000:02:00.0: PME# supported from D3hot D3cold
mar 15 16:30:06 archlinux kernel: pci 0000:02:00.1: [1022:43c8] type 00 class 0x010601 PCIe Legacy Endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:02:00.1: BAR 5 [mem 0xfcb80000-0xfcb9ffff]
mar 15 16:30:06 archlinux kernel: pci 0000:02:00.1: ROM [mem 0xfcb00000-0xfcb7ffff pref]
mar 15 16:30:06 archlinux kernel: pci 0000:02:00.1: enabling Extended Tags
mar 15 16:30:06 archlinux kernel: pci 0000:02:00.1: PME# supported from D3hot D3cold
mar 15 16:30:06 archlinux kernel: pci 0000:02:00.2: [1022:43c6] type 01 class 0x060400 PCIe Switch Upstream Port
mar 15 16:30:06 archlinux kernel: pci 0000:02:00.2: PCI bridge to [bus 03-08]
mar 15 16:30:06 archlinux kernel: pci 0000:02:00.2:   bridge window [io  0xe000-0xefff]
mar 15 16:30:06 archlinux kernel: pci 0000:02:00.2:   bridge window [mem 0xfca00000-0xfcafffff]
mar 15 16:30:06 archlinux kernel: pci 0000:02:00.2: enabling Extended Tags
mar 15 16:30:06 archlinux kernel: pci 0000:02:00.2: PME# supported from D3hot D3cold
mar 15 16:30:06 archlinux kernel: pci 0000:00:01.3: PCI bridge to [bus 02-08]
mar 15 16:30:06 archlinux kernel: pci 0000:03:00.0: [1022:43c7] type 01 class 0x060400 PCIe Switch Downstream Port
mar 15 16:30:06 archlinux kernel: pci 0000:03:00.0: PCI bridge to [bus 04]
mar 15 16:30:06 archlinux kernel: pci 0000:03:00.0:   bridge window [io  0xe000-0xefff]
mar 15 16:30:06 archlinux kernel: pci 0000:03:00.0:   bridge window [mem 0xfca00000-0xfcafffff]
mar 15 16:30:06 archlinux kernel: pci 0000:03:00.0: enabling Extended Tags
mar 15 16:30:06 archlinux kernel: pci 0000:03:00.0: PME# supported from D3hot D3cold
mar 15 16:30:06 archlinux kernel: pci 0000:03:01.0: [1022:43c7] type 01 class 0x060400 PCIe Switch Downstream Port
mar 15 16:30:06 archlinux kernel: pci 0000:03:01.0: PCI bridge to [bus 05]
mar 15 16:30:06 archlinux kernel: pci 0000:03:01.0: enabling Extended Tags
mar 15 16:30:06 archlinux kernel: pci 0000:03:01.0: PME# supported from D3hot D3cold
mar 15 16:30:06 archlinux kernel: pci 0000:03:04.0: [1022:43c7] type 01 class 0x060400 PCIe Switch Downstream Port
mar 15 16:30:06 archlinux kernel: pci 0000:03:04.0: PCI bridge to [bus 06]
mar 15 16:30:06 archlinux kernel: pci 0000:03:04.0: enabling Extended Tags
mar 15 16:30:06 archlinux kernel: pci 0000:03:04.0: PME# supported from D3hot D3cold
mar 15 16:30:06 archlinux kernel: pci 0000:03:06.0: [1022:43c7] type 01 class 0x060400 PCIe Switch Downstream Port
mar 15 16:30:06 archlinux kernel: pci 0000:03:06.0: PCI bridge to [bus 07]
mar 15 16:30:06 archlinux kernel: pci 0000:03:06.0: enabling Extended Tags
mar 15 16:30:06 archlinux kernel: pci 0000:03:06.0: PME# supported from D3hot D3cold
mar 15 16:30:06 archlinux kernel: pci 0000:03:07.0: [1022:43c7] type 01 class 0x060400 PCIe Switch Downstream Port
mar 15 16:30:06 archlinux kernel: pci 0000:03:07.0: PCI bridge to [bus 08]
mar 15 16:30:06 archlinux kernel: pci 0000:03:07.0: enabling Extended Tags
mar 15 16:30:06 archlinux kernel: pci 0000:03:07.0: PME# supported from D3hot D3cold
mar 15 16:30:06 archlinux kernel: pci 0000:02:00.2: PCI bridge to [bus 03-08]
mar 15 16:30:06 archlinux kernel: pci 0000:04:00.0: [8086:1539] type 00 class 0x020000 PCIe Endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:04:00.0: BAR 0 [mem 0xfca00000-0xfca1ffff]
mar 15 16:30:06 archlinux kernel: pci 0000:04:00.0: BAR 2 [io  0xe000-0xe01f]
mar 15 16:30:06 archlinux kernel: pci 0000:04:00.0: BAR 3 [mem 0xfca20000-0xfca23fff]
mar 15 16:30:06 archlinux kernel: pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
mar 15 16:30:06 archlinux kernel: pci 0000:03:00.0: PCI bridge to [bus 04]
mar 15 16:30:06 archlinux kernel: pci 0000:03:01.0: PCI bridge to [bus 05]
mar 15 16:30:06 archlinux kernel: pci 0000:03:04.0: PCI bridge to [bus 06]
mar 15 16:30:06 archlinux kernel: pci 0000:03:06.0: PCI bridge to [bus 07]
mar 15 16:30:06 archlinux kernel: pci 0000:03:07.0: PCI bridge to [bus 08]
mar 15 16:30:06 archlinux kernel: pci 0000:09:00.0: [1002:67df] type 00 class 0x030000 PCIe Legacy Endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:09:00.0: BAR 0 [mem 0xe0000000-0xefffffff 64bit pref]
mar 15 16:30:06 archlinux kernel: pci 0000:09:00.0: BAR 2 [mem 0xf0000000-0xf01fffff 64bit pref]
mar 15 16:30:06 archlinux kernel: pci 0000:09:00.0: BAR 4 [io  0xd000-0xd0ff]
mar 15 16:30:06 archlinux kernel: pci 0000:09:00.0: BAR 5 [mem 0xfce00000-0xfce3ffff]
mar 15 16:30:06 archlinux kernel: pci 0000:09:00.0: ROM [mem 0xfce40000-0xfce5ffff pref]
mar 15 16:30:06 archlinux kernel: pci 0000:09:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
mar 15 16:30:06 archlinux kernel: pci 0000:09:00.0: supports D1 D2
mar 15 16:30:06 archlinux kernel: pci 0000:09:00.0: PME# supported from D1 D2 D3hot D3cold
mar 15 16:30:06 archlinux kernel: pci 0000:09:00.1: [1002:aaf0] type 00 class 0x040300 PCIe Legacy Endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:09:00.1: BAR 0 [mem 0xfce60000-0xfce63fff 64bit]
mar 15 16:30:06 archlinux kernel: pci 0000:09:00.1: supports D1 D2
mar 15 16:30:06 archlinux kernel: pci 0000:00:03.1: PCI bridge to [bus 09]
mar 15 16:30:06 archlinux kernel: pci 0000:0a:00.0: [1022:148a] type 00 class 0x130000 PCIe Endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:0a:00.0: enabling Extended Tags
mar 15 16:30:06 archlinux kernel: pci 0000:00:07.1: PCI bridge to [bus 0a]
mar 15 16:30:06 archlinux kernel: pci 0000:0b:00.0: [1022:1485] type 00 class 0x130000 PCIe Endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:0b:00.0: enabling Extended Tags
mar 15 16:30:06 archlinux kernel: pci 0000:0b:00.1: [1022:1486] type 00 class 0x108000 PCIe Endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:0b:00.1: BAR 2 [mem 0xfc800000-0xfc8fffff]
mar 15 16:30:06 archlinux kernel: pci 0000:0b:00.1: BAR 5 [mem 0xfc908000-0xfc909fff]
mar 15 16:30:06 archlinux kernel: pci 0000:0b:00.1: enabling Extended Tags
mar 15 16:30:06 archlinux kernel: pci 0000:0b:00.3: [1022:149c] type 00 class 0x0c0330 PCIe Endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:0b:00.3: BAR 0 [mem 0xfc700000-0xfc7fffff 64bit]
mar 15 16:30:06 archlinux kernel: pci 0000:0b:00.3: enabling Extended Tags
mar 15 16:30:06 archlinux kernel: pci 0000:0b:00.3: PME# supported from D0 D3hot D3cold
mar 15 16:30:06 archlinux kernel: pci 0000:0b:00.4: [1022:1487] type 00 class 0x040300 PCIe Endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:0b:00.4: BAR 0 [mem 0xfc900000-0xfc907fff]
mar 15 16:30:06 archlinux kernel: pci 0000:0b:00.4: enabling Extended Tags
mar 15 16:30:06 archlinux kernel: pci 0000:0b:00.4: PME# supported from D0 D3hot D3cold
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.1: PCI bridge to [bus 0b]
mar 15 16:30:06 archlinux kernel: pci 0000:0c:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:0c:00.0: BAR 5 [mem 0xfcd00000-0xfcd007ff]
mar 15 16:30:06 archlinux kernel: pci 0000:0c:00.0: enabling Extended Tags
mar 15 16:30:06 archlinux kernel: pci 0000:0c:00.0: PME# supported from D3hot D3cold
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.2: PCI bridge to [bus 0c]
mar 15 16:30:06 archlinux kernel: pci 0000:0d:00.0: [1022:7901] type 00 class 0x010601 PCIe Endpoint
mar 15 16:30:06 archlinux kernel: pci 0000:0d:00.0: BAR 5 [mem 0xfcc00000-0xfcc007ff]
mar 15 16:30:06 archlinux kernel: pci 0000:0d:00.0: enabling Extended Tags
mar 15 16:30:06 archlinux kernel: pci 0000:0d:00.0: PME# supported from D3hot D3cold
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.3: PCI bridge to [bus 0d]
mar 15 16:30:06 archlinux kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 0
mar 15 16:30:06 archlinux kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 0
mar 15 16:30:06 archlinux kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 0
mar 15 16:30:06 archlinux kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 0
mar 15 16:30:06 archlinux kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
mar 15 16:30:06 archlinux kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 0
mar 15 16:30:06 archlinux kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
mar 15 16:30:06 archlinux kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 0
mar 15 16:30:06 archlinux kernel: ACPI: EC: interrupt unblocked
mar 15 16:30:06 archlinux kernel: ACPI: EC: event unblocked
mar 15 16:30:06 archlinux kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
mar 15 16:30:06 archlinux kernel: ACPI: EC: GPE=0x2
mar 15 16:30:06 archlinux kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: Boot DSDT EC initialization complete
mar 15 16:30:06 archlinux kernel: ACPI: \_SB_.PCI0.SBRG.EC0_: EC: Used to handle transactions and events
mar 15 16:30:06 archlinux kernel: iommu: Default domain type: Translated
mar 15 16:30:06 archlinux kernel: iommu: DMA domain TLB invalidation policy: lazy mode
mar 15 16:30:06 archlinux kernel: SCSI subsystem initialized
mar 15 16:30:06 archlinux kernel: libata version 3.00 loaded.
mar 15 16:30:06 archlinux kernel: ACPI: bus type USB registered
mar 15 16:30:06 archlinux kernel: usbcore: registered new interface driver usbfs
mar 15 16:30:06 archlinux kernel: usbcore: registered new interface driver hub
mar 15 16:30:06 archlinux kernel: usbcore: registered new device driver usb
mar 15 16:30:06 archlinux kernel: EDAC MC: Ver: 3.0.0
mar 15 16:30:06 archlinux kernel: efivars: Registered efivars operations
mar 15 16:30:06 archlinux kernel: NetLabel: Initializing
mar 15 16:30:06 archlinux kernel: NetLabel:  domain hash size = 128
mar 15 16:30:06 archlinux kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
mar 15 16:30:06 archlinux kernel: NetLabel:  unlabeled traffic allowed by default
mar 15 16:30:06 archlinux kernel: mctp: management component transport protocol core
mar 15 16:30:06 archlinux kernel: NET: Registered PF_MCTP protocol family
mar 15 16:30:06 archlinux kernel: PCI: Using ACPI for IRQ routing
mar 15 16:30:06 archlinux kernel: PCI: pci_cache_line_size set to 64 bytes
mar 15 16:30:06 archlinux kernel: e820: reserve RAM buffer [mem 0x09e00000-0x0bffffff]
mar 15 16:30:06 archlinux kernel: e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
mar 15 16:30:06 archlinux kernel: e820: reserve RAM buffer [mem 0x0b000000-0x0bffffff]
mar 15 16:30:06 archlinux kernel: e820: reserve RAM buffer [mem 0xd5531000-0xd7ffffff]
mar 15 16:30:06 archlinux kernel: e820: reserve RAM buffer [mem 0xd7909000-0xd7ffffff]
mar 15 16:30:06 archlinux kernel: e820: reserve RAM buffer [mem 0xd9898000-0xdbffffff]
mar 15 16:30:06 archlinux kernel: e820: reserve RAM buffer [mem 0xdf000000-0xdfffffff]
mar 15 16:30:06 archlinux kernel: e820: reserve RAM buffer [mem 0x41f380000-0x41fffffff]
mar 15 16:30:06 archlinux kernel: pci 0000:09:00.0: vgaarb: setting as boot VGA device
mar 15 16:30:06 archlinux kernel: pci 0000:09:00.0: vgaarb: bridge control possible
mar 15 16:30:06 archlinux kernel: pci 0000:09:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
mar 15 16:30:06 archlinux kernel: vgaarb: loaded
mar 15 16:30:06 archlinux kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
mar 15 16:30:06 archlinux kernel: hpet0: 3 comparators, 32-bit 14.318180 MHz counter
mar 15 16:30:06 archlinux kernel: clocksource: Switched to clocksource tsc-early
mar 15 16:30:06 archlinux kernel: VFS: Disk quotas dquot_6.6.0
mar 15 16:30:06 archlinux kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
mar 15 16:30:06 archlinux kernel: pnp: PnP ACPI init
mar 15 16:30:06 archlinux kernel: system 00:00: [mem 0xf8000000-0xfbffffff] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:01: [mem 0xfd000000-0xfd0fffff] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:03: [io  0x02a0-0x02af] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:03: [io  0x0230-0x023f] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:03: [io  0x0290-0x029f] has been reserved
mar 15 16:30:06 archlinux kernel: pnp 00:04: [dma 0 disabled]
mar 15 16:30:06 archlinux kernel: system 00:05: [io  0x04d0-0x04d1] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [io  0x040b] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [io  0x04d6] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [io  0x0c00-0x0c01] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [io  0x0c14] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [io  0x0c50-0x0c51] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [io  0x0c52] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [io  0x0c6c] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [io  0x0c6f] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [io  0x0cd0-0x0cd1] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [io  0x0cd2-0x0cd3] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [io  0x0cd4-0x0cd5] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [io  0x0cd6-0x0cd7] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [io  0x0cd8-0x0cdf] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [io  0x0800-0x089f] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [io  0x0b00-0x0b0f] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [io  0x0b20-0x0b3f] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [io  0x0900-0x090f] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [io  0x0910-0x091f] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [mem 0xfec00000-0xfec00fff] could not be reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [mem 0xfec01000-0xfec01fff] could not be reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [mem 0xfedc0000-0xfedc0fff] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [mem 0xfee00000-0xfee00fff] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [mem 0xfed80000-0xfed8ffff] could not be reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [mem 0xfec10000-0xfec10fff] has been reserved
mar 15 16:30:06 archlinux kernel: system 00:05: [mem 0xff000000-0xffffffff] has been reserved
mar 15 16:30:06 archlinux kernel: pnp: PnP ACPI: found 6 devices
mar 15 16:30:06 archlinux kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
mar 15 16:30:06 archlinux kernel: NET: Registered PF_INET protocol family
mar 15 16:30:06 archlinux kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
mar 15 16:30:06 archlinux kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
mar 15 16:30:06 archlinux kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
mar 15 16:30:06 archlinux kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
mar 15 16:30:06 archlinux kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
mar 15 16:30:06 archlinux kernel: TCP: Hash tables configured (established 131072 bind 65536)
mar 15 16:30:06 archlinux kernel: MPTCP token hash table entries: 16384 (order: 7, 393216 bytes, linear)
mar 15 16:30:06 archlinux kernel: UDP hash table entries: 8192 (order: 7, 524288 bytes, linear)
mar 15 16:30:06 archlinux kernel: UDP-Lite hash table entries: 8192 (order: 7, 524288 bytes, linear)
mar 15 16:30:06 archlinux kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
mar 15 16:30:06 archlinux kernel: NET: Registered PF_XDP protocol family
mar 15 16:30:06 archlinux kernel: pci 0000:00:01.1: PCI bridge to [bus 01]
mar 15 16:30:06 archlinux kernel: pci 0000:00:01.1:   bridge window [mem 0xfcf00000-0xfcffffff]
mar 15 16:30:06 archlinux kernel: pci 0000:03:00.0: PCI bridge to [bus 04]
mar 15 16:30:06 archlinux kernel: pci 0000:03:00.0:   bridge window [io  0xe000-0xefff]
mar 15 16:30:06 archlinux kernel: pci 0000:03:00.0:   bridge window [mem 0xfca00000-0xfcafffff]
mar 15 16:30:06 archlinux kernel: pci 0000:03:01.0: PCI bridge to [bus 05]
mar 15 16:30:06 archlinux kernel: pci 0000:03:04.0: PCI bridge to [bus 06]
mar 15 16:30:06 archlinux kernel: pci 0000:03:06.0: PCI bridge to [bus 07]
mar 15 16:30:06 archlinux kernel: pci 0000:03:07.0: PCI bridge to [bus 08]
mar 15 16:30:06 archlinux kernel: pci 0000:02:00.2: PCI bridge to [bus 03-08]
mar 15 16:30:06 archlinux kernel: pci 0000:02:00.2:   bridge window [io  0xe000-0xefff]
mar 15 16:30:06 archlinux kernel: pci 0000:02:00.2:   bridge window [mem 0xfca00000-0xfcafffff]
mar 15 16:30:06 archlinux kernel: pci 0000:00:01.3: PCI bridge to [bus 02-08]
mar 15 16:30:06 archlinux kernel: pci 0000:00:01.3:   bridge window [io  0xe000-0xefff]
mar 15 16:30:06 archlinux kernel: pci 0000:00:01.3:   bridge window [mem 0xfca00000-0xfcbfffff]
mar 15 16:30:06 archlinux kernel: pci 0000:00:03.1: PCI bridge to [bus 09]
mar 15 16:30:06 archlinux kernel: pci 0000:00:03.1:   bridge window [io  0xd000-0xdfff]
mar 15 16:30:06 archlinux kernel: pci 0000:00:03.1:   bridge window [mem 0xfce00000-0xfcefffff]
mar 15 16:30:06 archlinux kernel: pci 0000:00:03.1:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
mar 15 16:30:06 archlinux kernel: pci 0000:00:07.1: PCI bridge to [bus 0a]
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.1: PCI bridge to [bus 0b]
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.1:   bridge window [mem 0xfc700000-0xfc9fffff]
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.2: PCI bridge to [bus 0c]
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.2:   bridge window [mem 0xfcd00000-0xfcdfffff]
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.3: PCI bridge to [bus 0d]
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.3:   bridge window [mem 0xfcc00000-0xfccfffff]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:00: resource 7 [io  0x0d00-0xefff window]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:00: resource 9 [mem 0xe0000000-0xfec2ffff window]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:00: resource 10 [mem 0xfee00000-0xffffffff window]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:01: resource 1 [mem 0xfcf00000-0xfcffffff]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:02: resource 0 [io  0xe000-0xefff]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:02: resource 1 [mem 0xfca00000-0xfcbfffff]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:03: resource 0 [io  0xe000-0xefff]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:03: resource 1 [mem 0xfca00000-0xfcafffff]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:04: resource 0 [io  0xe000-0xefff]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:04: resource 1 [mem 0xfca00000-0xfcafffff]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:09: resource 0 [io  0xd000-0xdfff]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:09: resource 1 [mem 0xfce00000-0xfcefffff]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:09: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:0b: resource 1 [mem 0xfc700000-0xfc9fffff]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:0c: resource 1 [mem 0xfcd00000-0xfcdfffff]
mar 15 16:30:06 archlinux kernel: pci_bus 0000:0d: resource 1 [mem 0xfcc00000-0xfccfffff]
mar 15 16:30:06 archlinux kernel: pci 0000:09:00.1: D0 power state depends on 0000:09:00.0
mar 15 16:30:06 archlinux kernel: PCI: CLS 64 bytes, default 64
mar 15 16:30:06 archlinux kernel: pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
mar 15 16:30:06 archlinux kernel: Trying to unpack rootfs image as initramfs...
mar 15 16:30:06 archlinux kernel: pci 0000:00:01.0: Adding to iommu group 0
mar 15 16:30:06 archlinux kernel: pci 0000:00:01.1: Adding to iommu group 1
mar 15 16:30:06 archlinux kernel: pci 0000:00:01.3: Adding to iommu group 2
mar 15 16:30:06 archlinux kernel: pci 0000:00:02.0: Adding to iommu group 3
mar 15 16:30:06 archlinux kernel: pci 0000:00:03.0: Adding to iommu group 4
mar 15 16:30:06 archlinux kernel: pci 0000:00:03.1: Adding to iommu group 5
mar 15 16:30:06 archlinux kernel: pci 0000:00:04.0: Adding to iommu group 6
mar 15 16:30:06 archlinux kernel: pci 0000:00:05.0: Adding to iommu group 7
mar 15 16:30:06 archlinux kernel: pci 0000:00:07.0: Adding to iommu group 8
mar 15 16:30:06 archlinux kernel: pci 0000:00:07.1: Adding to iommu group 8
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.0: Adding to iommu group 9
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.1: Adding to iommu group 9
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.2: Adding to iommu group 9
mar 15 16:30:06 archlinux kernel: pci 0000:00:08.3: Adding to iommu group 9
mar 15 16:30:06 archlinux kernel: pci 0000:00:14.0: Adding to iommu group 10
mar 15 16:30:06 archlinux kernel: pci 0000:00:14.3: Adding to iommu group 10
mar 15 16:30:06 archlinux kernel: pci 0000:00:18.0: Adding to iommu group 11
mar 15 16:30:06 archlinux kernel: pci 0000:00:18.1: Adding to iommu group 11
mar 15 16:30:06 archlinux kernel: pci 0000:00:18.2: Adding to iommu group 11
mar 15 16:30:06 archlinux kernel: pci 0000:00:18.3: Adding to iommu group 11
mar 15 16:30:06 archlinux kernel: pci 0000:00:18.4: Adding to iommu group 11
mar 15 16:30:06 archlinux kernel: pci 0000:00:18.5: Adding to iommu group 11
mar 15 16:30:06 archlinux kernel: pci 0000:00:18.6: Adding to iommu group 11
mar 15 16:30:06 archlinux kernel: pci 0000:00:18.7: Adding to iommu group 11
mar 15 16:30:06 archlinux kernel: pci 0000:01:00.0: Adding to iommu group 12
mar 15 16:30:06 archlinux kernel: pci 0000:02:00.0: Adding to iommu group 13
mar 15 16:30:06 archlinux kernel: pci 0000:02:00.1: Adding to iommu group 13
mar 15 16:30:06 archlinux kernel: pci 0000:02:00.2: Adding to iommu group 13
mar 15 16:30:06 archlinux kernel: pci 0000:03:00.0: Adding to iommu group 13
mar 15 16:30:06 archlinux kernel: pci 0000:03:01.0: Adding to iommu group 13
mar 15 16:30:06 archlinux kernel: pci 0000:03:04.0: Adding to iommu group 13
mar 15 16:30:06 archlinux kernel: pci 0000:03:06.0: Adding to iommu group 13
mar 15 16:30:06 archlinux kernel: pci 0000:03:07.0: Adding to iommu group 13
mar 15 16:30:06 archlinux kernel: pci 0000:04:00.0: Adding to iommu group 13
mar 15 16:30:06 archlinux kernel: pci 0000:09:00.0: Adding to iommu group 14
mar 15 16:30:06 archlinux kernel: pci 0000:09:00.1: Adding to iommu group 14
mar 15 16:30:06 archlinux kernel: pci 0000:0a:00.0: Adding to iommu group 8
mar 15 16:30:06 archlinux kernel: pci 0000:0b:00.0: Adding to iommu group 9
mar 15 16:30:06 archlinux kernel: pci 0000:0b:00.1: Adding to iommu group 9
mar 15 16:30:06 archlinux kernel: pci 0000:0b:00.3: Adding to iommu group 9
mar 15 16:30:06 archlinux kernel: pci 0000:0b:00.4: Adding to iommu group 9
mar 15 16:30:06 archlinux kernel: pci 0000:0c:00.0: Adding to iommu group 9
mar 15 16:30:06 archlinux kernel: pci 0000:0d:00.0: Adding to iommu group 9
mar 15 16:30:06 archlinux kernel: AMD-Vi: Extended features (0x58f77ef22294ade, 0x0): PPR X2APIC NX GT IA GA PC GA_vAPIC
mar 15 16:30:06 archlinux kernel: AMD-Vi: Interrupt remapping enabled
mar 15 16:30:06 archlinux kernel: AMD-Vi: X2APIC enabled
mar 15 16:30:06 archlinux kernel: AMD-Vi: Virtual APIC enabled
mar 15 16:30:06 archlinux kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
mar 15 16:30:06 archlinux kernel: software IO TLB: mapped [mem 0x00000000cac1d000-0x00000000cec1d000] (64MB)
mar 15 16:30:06 archlinux kernel: LVT offset 0 assigned for vector 0x400
mar 15 16:30:06 archlinux kernel: perf: AMD IBS detected (0x000003ff)
mar 15 16:30:06 archlinux kernel: perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
mar 15 16:30:06 archlinux kernel: Initialise system trusted keyrings
mar 15 16:30:06 archlinux kernel: Key type blacklist registered
mar 15 16:30:06 archlinux kernel: workingset: timestamp_bits=36 max_order=22 bucket_order=0
mar 15 16:30:06 archlinux kernel: fuse: init (API version 7.45)
mar 15 16:30:06 archlinux kernel: integrity: Platform Keyring initialized
mar 15 16:30:06 archlinux kernel: integrity: Machine keyring initialized
mar 15 16:30:06 archlinux kernel: Initramfs unpacking failed: Decoding failed
mar 15 16:30:06 archlinux kernel: xor: automatically using best checksumming function   avx       
mar 15 16:30:06 archlinux kernel: Key type asymmetric registered
mar 15 16:30:06 archlinux kernel: Asymmetric key parser 'x509' registered
mar 15 16:30:06 archlinux kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
mar 15 16:30:06 archlinux kernel: io scheduler mq-deadline registered
mar 15 16:30:06 archlinux kernel: io scheduler kyber registered
mar 15 16:30:06 archlinux kernel: io scheduler bfq registered
mar 15 16:30:06 archlinux kernel: ledtrig-cpu: registered to indicate activity on CPUs
mar 15 16:30:06 archlinux kernel: pcieport 0000:00:01.1: AER: enabled with IRQ 28
mar 15 16:30:06 archlinux kernel: pcieport 0000:00:01.1: DPC: enabled with IRQ 28
mar 15 16:30:06 archlinux kernel: pcieport 0000:00:01.1: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 6, DL_ActiveErr+
mar 15 16:30:06 archlinux kernel: pcieport 0000:00:01.3: AER: enabled with IRQ 29
mar 15 16:30:06 archlinux kernel: pcieport 0000:00:01.3: DPC: enabled with IRQ 29
mar 15 16:30:06 archlinux kernel: pcieport 0000:00:01.3: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 6, DL_ActiveErr+
mar 15 16:30:06 archlinux kernel: pcieport 0000:00:03.1: AER: enabled with IRQ 30
mar 15 16:30:06 archlinux kernel: pcieport 0000:00:03.1: DPC: enabled with IRQ 30
mar 15 16:30:06 archlinux kernel: pcieport 0000:00:03.1: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 6, DL_ActiveErr+
mar 15 16:30:06 archlinux kernel: iommu ivhd0: AMD-Vi: Event logged [INVALID_DEVICE_REQUEST device=0000:00:00.0 pasid=0x00000 address=0xfffffffdf8000000 flags=0x0a00]
mar 15 16:30:06 archlinux kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
mar 15 16:30:06 archlinux kernel: ACPI: button: Power Button [PWRB]
mar 15 16:30:06 archlinux kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
mar 15 16:30:06 archlinux kernel: ACPI: button: Power Button [PWRF]
mar 15 16:30:06 archlinux kernel: Monitor-Mwait will be used to enter C-1 state
mar 15 16:30:06 archlinux kernel: Freeing initrd memory: 53468K
mar 15 16:30:06 archlinux kernel: Estimated ratio of average max frequency by base frequency (times 1024): 1110
mar 15 16:30:06 archlinux kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
mar 15 16:30:06 archlinux kernel: 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
mar 15 16:30:06 archlinux kernel: Non-volatile memory driver v1.3
mar 15 16:30:06 archlinux kernel: Linux agpgart interface v0.103
mar 15 16:30:06 archlinux kernel: tpm_crb MSFT0101:00: [Firmware Bug]: ACPI region does not cover the entire command/response buffer. [mem 0xdad61000-0xdad61fff flags 0x200] vs dad61000 4000
mar 15 16:30:06 archlinux kernel: tpm_crb MSFT0101:00: [Firmware Bug]: ACPI region does not cover the entire command/response buffer. [mem 0xdad65000-0xdad65fff flags 0x200] vs dad65000 4000
mar 15 16:30:06 archlinux kernel: tpm_crb MSFT0101:00: Disabling hwrng
mar 15 16:30:06 archlinux kernel: ACPI: bus type drm_connector registered
mar 15 16:30:06 archlinux kernel: ahci 0000:02:00.1: SSS flag set, parallel bus scan disabled
mar 15 16:30:06 archlinux kernel: ahci 0000:02:00.1: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
mar 15 16:30:06 archlinux kernel: ahci 0000:02:00.1: 4/8 ports implemented (port mask 0x33)
mar 15 16:30:06 archlinux kernel: ahci 0000:02:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst 
mar 15 16:30:06 archlinux kernel: scsi host0: ahci
mar 15 16:30:06 archlinux kernel: scsi host1: ahci
mar 15 16:30:06 archlinux kernel: scsi host2: ahci
mar 15 16:30:06 archlinux kernel: scsi host3: ahci
mar 15 16:30:06 archlinux kernel: scsi host4: ahci
mar 15 16:30:06 archlinux kernel: scsi host5: ahci
mar 15 16:30:06 archlinux kernel: scsi host6: ahci
mar 15 16:30:06 archlinux kernel: scsi host7: ahci
mar 15 16:30:06 archlinux kernel: ata1: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80100 irq 43 lpm-pol 3
mar 15 16:30:06 archlinux kernel: ata2: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80180 irq 43 lpm-pol 3
mar 15 16:30:06 archlinux kernel: ata3: DUMMY
mar 15 16:30:06 archlinux kernel: ata4: DUMMY
mar 15 16:30:06 archlinux kernel: ata5: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80300 irq 43 lpm-pol 3
mar 15 16:30:06 archlinux kernel: ata6: SATA max UDMA/133 abar m131072@0xfcb80000 port 0xfcb80380 irq 43 lpm-pol 3
mar 15 16:30:06 archlinux kernel: ata7: DUMMY
mar 15 16:30:06 archlinux kernel: ata8: DUMMY
mar 15 16:30:06 archlinux kernel: ahci 0000:0c:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
mar 15 16:30:06 archlinux kernel: ahci 0000:0c:00.0: 1/1 ports implemented (port mask 0x1)
mar 15 16:30:06 archlinux kernel: ahci 0000:0c:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part 
mar 15 16:30:06 archlinux kernel: scsi host8: ahci
mar 15 16:30:06 archlinux kernel: ata9: SATA max UDMA/133 abar m2048@0xfcd00000 port 0xfcd00100 irq 45 lpm-pol 3
mar 15 16:30:06 archlinux kernel: ahci 0000:0d:00.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, SATA mode
mar 15 16:30:06 archlinux kernel: ahci 0000:0d:00.0: 1/1 ports implemented (port mask 0x1)
mar 15 16:30:06 archlinux kernel: ahci 0000:0d:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part 
mar 15 16:30:06 archlinux kernel: scsi host9: ahci
mar 15 16:30:06 archlinux kernel: ata10: SATA max UDMA/133 abar m2048@0xfcc00000 port 0xfcc00100 irq 47 lpm-pol 3
mar 15 16:30:06 archlinux kernel: xhci_hcd 0000:02:00.0: xHCI Host Controller
mar 15 16:30:06 archlinux kernel: xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 1
mar 15 16:30:06 archlinux kernel: xhci_hcd 0000:02:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000000000010
mar 15 16:30:06 archlinux kernel: xhci_hcd 0000:02:00.0: xHCI Host Controller
mar 15 16:30:06 archlinux kernel: xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 2
mar 15 16:30:06 archlinux kernel: xhci_hcd 0000:02:00.0: Host supports USB 3.1 Enhanced SuperSpeed
mar 15 16:30:06 archlinux kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.19
mar 15 16:30:06 archlinux kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
mar 15 16:30:06 archlinux kernel: usb usb1: Product: xHCI Host Controller
mar 15 16:30:06 archlinux kernel: usb usb1: Manufacturer: Linux 6.19.6-arch1-1 xhci-hcd
mar 15 16:30:06 archlinux kernel: usb usb1: SerialNumber: 0000:02:00.0
mar 15 16:30:06 archlinux kernel: hub 1-0:1.0: USB hub found
mar 15 16:30:06 archlinux kernel: hub 1-0:1.0: 10 ports detected
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT5._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT5._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT6._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT6._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT7._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT7._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT8._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT8._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT9._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT9._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO10._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO10._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO11._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO11._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO12._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO12._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO13._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO13._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO14._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO14._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
mar 15 16:30:06 archlinux kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.19
mar 15 16:30:06 archlinux kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
mar 15 16:30:06 archlinux kernel: usb usb2: Product: xHCI Host Controller
mar 15 16:30:06 archlinux kernel: usb usb2: Manufacturer: Linux 6.19.6-arch1-1 xhci-hcd
mar 15 16:30:06 archlinux kernel: usb usb2: SerialNumber: 0000:02:00.0
mar 15 16:30:06 archlinux kernel: hub 2-0:1.0: USB hub found
mar 15 16:30:06 archlinux kernel: hub 2-0:1.0: 4 ports detected
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT1._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT1._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT2._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT2._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT3._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT3._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT4._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.POT4._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: xhci_hcd 0000:0b:00.3: xHCI Host Controller
mar 15 16:30:06 archlinux kernel: xhci_hcd 0000:0b:00.3: new USB bus registered, assigned bus number 3
mar 15 16:30:06 archlinux kernel: xhci_hcd 0000:0b:00.3: hcc params 0x0278ffe5 hci version 0x110 quirks 0x0000000000000010
mar 15 16:30:06 archlinux kernel: xhci_hcd 0000:0b:00.3: xHCI Host Controller
mar 15 16:30:06 archlinux kernel: xhci_hcd 0000:0b:00.3: new USB bus registered, assigned bus number 4
mar 15 16:30:06 archlinux kernel: xhci_hcd 0000:0b:00.3: Host supports USB 3.1 Enhanced SuperSpeed
mar 15 16:30:06 archlinux kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.19
mar 15 16:30:06 archlinux kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
mar 15 16:30:06 archlinux kernel: usb usb3: Product: xHCI Host Controller
mar 15 16:30:06 archlinux kernel: usb usb3: Manufacturer: Linux 6.19.6-arch1-1 xhci-hcd
mar 15 16:30:06 archlinux kernel: usb usb3: SerialNumber: 0000:0b:00.3
mar 15 16:30:06 archlinux kernel: hub 3-0:1.0: USB hub found
mar 15 16:30:06 archlinux kernel: hub 3-0:1.0: 4 ports detected
mar 15 16:30:06 archlinux kernel: usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
mar 15 16:30:06 archlinux kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.19
mar 15 16:30:06 archlinux kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
mar 15 16:30:06 archlinux kernel: usb usb4: Product: xHCI Host Controller
mar 15 16:30:06 archlinux kernel: usb usb4: Manufacturer: Linux 6.19.6-arch1-1 xhci-hcd
mar 15 16:30:06 archlinux kernel: usb usb4: SerialNumber: 0000:0b:00.3
mar 15 16:30:06 archlinux kernel: hub 4-0:1.0: USB hub found
mar 15 16:30:06 archlinux kernel: hub 4-0:1.0: 4 ports detected
mar 15 16:30:06 archlinux kernel: usbcore: registered new interface driver usbserial_generic
mar 15 16:30:06 archlinux kernel: usbserial: USB Serial support registered for generic
mar 15 16:30:06 archlinux kernel: i8042: PNP: No PS/2 controller found.
mar 15 16:30:06 archlinux kernel: rtc_cmos 00:02: RTC can wake from S4
mar 15 16:30:06 archlinux kernel: rtc_cmos 00:02: registered as rtc0
mar 15 16:30:06 archlinux kernel: rtc_cmos 00:02: setting system clock to 2026-03-15T15:30:04 UTC (1773588604)
mar 15 16:30:06 archlinux kernel: rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
mar 15 16:30:06 archlinux kernel: amd_pstate: min_freq(0) or max_freq(0) or nominal_freq(0) value is incorrect
mar 15 16:30:06 archlinux kernel: amd_pstate: Failed to initialize CPU 0: -22
mar 15 16:30:06 archlinux kernel: amd_pstate: min_freq(0) or max_freq(0) or nominal_freq(0) value is incorrect
mar 15 16:30:06 archlinux kernel: amd_pstate: Failed to initialize CPU 1: -22
mar 15 16:30:06 archlinux kernel: amd_pstate: min_freq(0) or max_freq(0) or nominal_freq(0) value is incorrect
mar 15 16:30:06 archlinux kernel: amd_pstate: Failed to initialize CPU 2: -22
mar 15 16:30:06 archlinux kernel: amd_pstate: min_freq(0) or max_freq(0) or nominal_freq(0) value is incorrect
mar 15 16:30:06 archlinux kernel: amd_pstate: Failed to initialize CPU 3: -22
mar 15 16:30:06 archlinux kernel: amd_pstate: min_freq(0) or max_freq(0) or nominal_freq(0) value is incorrect
mar 15 16:30:06 archlinux kernel: amd_pstate: Failed to initialize CPU 4: -22
mar 15 16:30:06 archlinux kernel: amd_pstate: min_freq(0) or max_freq(0) or nominal_freq(0) value is incorrect
mar 15 16:30:06 archlinux kernel: amd_pstate: Failed to initialize CPU 5: -22
mar 15 16:30:06 archlinux kernel: amd_pstate: min_freq(0) or max_freq(0) or nominal_freq(0) value is incorrect
mar 15 16:30:06 archlinux kernel: amd_pstate: Failed to initialize CPU 6: -22
mar 15 16:30:06 archlinux kernel: amd_pstate: min_freq(0) or max_freq(0) or nominal_freq(0) value is incorrect
mar 15 16:30:06 archlinux kernel: amd_pstate: Failed to initialize CPU 7: -22
mar 15 16:30:06 archlinux kernel: amd_pstate: min_freq(0) or max_freq(0) or nominal_freq(0) value is incorrect
mar 15 16:30:06 archlinux kernel: amd_pstate: Failed to initialize CPU 8: -22
mar 15 16:30:06 archlinux kernel: amd_pstate: min_freq(0) or max_freq(0) or nominal_freq(0) value is incorrect
mar 15 16:30:06 archlinux kernel: amd_pstate: Failed to initialize CPU 9: -22
mar 15 16:30:06 archlinux kernel: amd_pstate: min_freq(0) or max_freq(0) or nominal_freq(0) value is incorrect
mar 15 16:30:06 archlinux kernel: amd_pstate: Failed to initialize CPU 10: -22
mar 15 16:30:06 archlinux kernel: amd_pstate: min_freq(0) or max_freq(0) or nominal_freq(0) value is incorrect
mar 15 16:30:06 archlinux kernel: amd_pstate: Failed to initialize CPU 11: -22
mar 15 16:30:06 archlinux kernel: amd_pstate: failed to register with return -19
mar 15 16:30:06 archlinux kernel: simple-framebuffer simple-framebuffer.0: [drm] Registered 1 planes with drm panic
mar 15 16:30:06 archlinux kernel: [drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0
mar 15 16:30:06 archlinux kernel: Console: switching to colour frame buffer device 215x45
mar 15 16:30:06 archlinux kernel: simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
mar 15 16:30:06 archlinux kernel: hid: raw HID events driver (C) Jiri Kosina
mar 15 16:30:06 archlinux kernel: usbcore: registered new interface driver usbhid
mar 15 16:30:06 archlinux kernel: usbhid: USB HID core driver
mar 15 16:30:06 archlinux kernel: rust_binder: Loaded Rust Binder.
mar 15 16:30:06 archlinux kernel: drop_monitor: Initializing network drop monitor service
mar 15 16:30:06 archlinux kernel: NET: Registered PF_INET6 protocol family
mar 15 16:30:06 archlinux kernel: Segment Routing with IPv6
mar 15 16:30:06 archlinux kernel: RPL Segment Routing with IPv6
mar 15 16:30:06 archlinux kernel: In-situ OAM (IOAM) with IPv6
mar 15 16:30:06 archlinux kernel: NET: Registered PF_PACKET protocol family
mar 15 16:30:06 archlinux kernel: x86/amd: Previous system reset reason [0x00080800]: software wrote 0x6 to reset control register 0xCF9
mar 15 16:30:06 archlinux kernel: microcode: Current revision: 0x08701034
mar 15 16:30:06 archlinux kernel: microcode: Updated early from: 0x08701013
mar 15 16:30:06 archlinux kernel: resctrl: L3 allocation detected
mar 15 16:30:06 archlinux kernel: resctrl: MB allocation detected
mar 15 16:30:06 archlinux kernel: resctrl: L3 monitoring detected
mar 15 16:30:06 archlinux kernel: IPI shorthand broadcast: enabled
mar 15 16:30:06 archlinux kernel: sched_clock: Marking stable (507499929, -6995770)->(629466904, -128962745)
mar 15 16:30:06 archlinux kernel: registered taskstats version 1
mar 15 16:30:06 archlinux kernel: Loading compiled-in X.509 certificates
mar 15 16:30:06 archlinux kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 301450d4a997a913c46cd9e6d6339afb59970251'
mar 15 16:30:06 archlinux kernel: Demotion targets for Node 0: null
mar 15 16:30:06 archlinux kernel: Key type .fscrypt registered
mar 15 16:30:06 archlinux kernel: Key type fscrypt-provisioning registered
mar 15 16:30:06 archlinux kernel: Btrfs loaded, zoned=yes, fsverity=yes
mar 15 16:30:06 archlinux kernel: Key type big_key registered
mar 15 16:30:06 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
mar 15 16:30:06 archlinux kernel: integrity: Loaded X.509 cert 'Database Key: 00f3517973fb01cf7fa66f98e57dfa4fc8'
mar 15 16:30:06 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
mar 15 16:30:06 archlinux kernel: integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
mar 15 16:30:06 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
mar 15 16:30:06 archlinux kernel: integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
mar 15 16:30:06 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
mar 15 16:30:06 archlinux kernel: integrity: Loaded X.509 cert 'Microsoft Option ROM UEFI CA 2023: 514fbf937fa46fb57bf07af8bed84b3b864b1711'
mar 15 16:30:06 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
mar 15 16:30:06 archlinux kernel: integrity: Loaded X.509 cert 'Microsoft UEFI CA 2023: 81aa6b3244c935bce0d6628af39827421e32497d'
mar 15 16:30:06 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
mar 15 16:30:06 archlinux kernel: integrity: Loaded X.509 cert 'Microsoft Corporation: Windows UEFI CA 2023: aefc5fbbbe055d8f8daa585473499417ab5a5272'
mar 15 16:30:06 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
mar 15 16:30:06 archlinux kernel: integrity: Loaded X.509 cert 'ASUSTeK MotherBoard SW Key Certificate: da83b990422ebc8c441f8d8b039a65a2'
mar 15 16:30:06 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
mar 15 16:30:06 archlinux kernel: integrity: Loaded X.509 cert 'ASUSTeK Notebook SW Key Certificate: b8e581e4df77a5bb4282d5ccfc00c071'
mar 15 16:30:06 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
mar 15 16:30:06 archlinux kernel: integrity: Loaded X.509 cert 'Canonical Ltd. Master Certificate Authority: ad91990bc22ab1f517048c23b6655a268e345a63'
mar 15 16:30:06 archlinux kernel: PM:   Magic number: 2:178:538
mar 15 16:30:06 archlinux kernel: tty ttyS18: hash matches
mar 15 16:30:06 archlinux kernel: port serial8250:0.17: hash matches
mar 15 16:30:06 archlinux kernel: RAS: Correctable Errors collector initialized.
mar 15 16:30:06 archlinux kernel: ata10: SATA link down (SStatus 0 SControl 300)
mar 15 16:30:06 archlinux kernel: ata9: SATA link down (SStatus 0 SControl 300)
mar 15 16:30:06 archlinux kernel: usb 1-6: new full-speed USB device number 2 using xhci_hcd
mar 15 16:30:06 archlinux kernel: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
mar 15 16:30:06 archlinux kernel: ata1.00: ATA-9: ST1000DX001-1CM162, CC43, max UDMA/133
mar 15 16:30:06 archlinux kernel: ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 32), AA
mar 15 16:30:06 archlinux kernel: ata1.00: Features: DIPM
mar 15 16:30:06 archlinux kernel: ata1.00: configured for UDMA/133
mar 15 16:30:06 archlinux kernel: scsi 0:0:0:0: Direct-Access     ATA      ST1000DX001-1CM1 CC43 PQ: 0 ANSI: 5
mar 15 16:30:06 archlinux kernel: sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
mar 15 16:30:06 archlinux kernel: sd 0:0:0:0: [sda] 4096-byte physical blocks
mar 15 16:30:06 archlinux kernel: sd 0:0:0:0: [sda] Write Protect is off
mar 15 16:30:06 archlinux kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
mar 15 16:30:06 archlinux kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
mar 15 16:30:06 archlinux kernel: sd 0:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
mar 15 16:30:06 archlinux kernel:  sda: sda1
mar 15 16:30:06 archlinux kernel: sd 0:0:0:0: [sda] Attached SCSI disk
mar 15 16:30:06 archlinux kernel: usb 1-6: New USB device found, idVendor=046d, idProduct=c548, bcdDevice= 5.03
mar 15 16:30:06 archlinux kernel: usb 1-6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
mar 15 16:30:06 archlinux kernel: usb 1-6: Product: USB Receiver
mar 15 16:30:06 archlinux kernel: usb 1-6: Manufacturer: Logitech
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO10._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO10._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO10._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: input: Logitech USB Receiver as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-6/1-6:1.0/0003:046D:C548.0001/input/input2
mar 15 16:30:06 archlinux kernel: hid-generic 0003:046D:C548.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:02:00.0-6/input0
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO10._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO10._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-6/1-6:1.1/0003:046D:C548.0002/input/input3
mar 15 16:30:06 archlinux kernel: input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-6/1-6:1.1/0003:046D:C548.0002/input/input4
mar 15 16:30:06 archlinux kernel: input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-6/1-6:1.1/0003:046D:C548.0002/input/input5
mar 15 16:30:06 archlinux kernel: input: Logitech USB Receiver as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-6/1-6:1.1/0003:046D:C548.0002/input/input6
mar 15 16:30:06 archlinux kernel: hid-generic 0003:046D:C548.0002: input,hiddev96,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:02:00.0-6/input1
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO10._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO10._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: hid-generic 0003:046D:C548.0003: hiddev97,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:02:00.0-6/input2
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO10._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO10._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: input: Logitech USB Receiver as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-6/1-6:1.3/0003:046D:C548.0004/input/input7
mar 15 16:30:06 archlinux kernel: hid-generic 0003:046D:C548.0004: input,hidraw3: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:02:00.0-6/input3
mar 15 16:30:06 archlinux kernel: tsc: Refined TSC clocksource calibration: 3599.999 MHz
mar 15 16:30:06 archlinux kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x33e4525366a, max_idle_ns: 440795257657 ns
mar 15 16:30:06 archlinux kernel: clocksource: Switched to clocksource tsc
mar 15 16:30:06 archlinux kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
mar 15 16:30:06 archlinux kernel: ata2.00: ATAPI: DRW-24D5MT, 1.00, max UDMA/133
mar 15 16:30:06 archlinux kernel: ata2.00: configured for UDMA/133
mar 15 16:30:06 archlinux kernel: usb 1-8: new full-speed USB device number 3 using xhci_hcd
mar 15 16:30:06 archlinux kernel: scsi 1:0:0:0: CD-ROM            ASUS     DRW-24D5MT       1.00 PQ: 0 ANSI: 5
mar 15 16:30:06 archlinux kernel: usb 1-8: New USB device found, idVendor=0b05, idProduct=190e, bcdDevice= 2.00
mar 15 16:30:06 archlinux kernel: usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=3
mar 15 16:30:06 archlinux kernel: usb 1-8: Product: ASUS USB-BT500
mar 15 16:30:06 archlinux kernel: usb 1-8: Manufacturer: Realtek
mar 15 16:30:06 archlinux kernel: usb 1-8: SerialNumber: 00E04C239987
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO12._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO12._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP2.PTXH.RHUB.PO12._PLD due to previous error (AE_AML_UNINITIALIZED_ELEMENT) (20250807/psparse-529)
mar 15 16:30:06 archlinux kernel: ata5: SATA link down (SStatus 0 SControl 330)
mar 15 16:30:06 archlinux kernel: ata6: SATA link down (SStatus 0 SControl 330)
mar 15 16:30:06 archlinux kernel: clk: Disabling unused clocks
mar 15 16:30:06 archlinux kernel: PM: genpd: Disabling unused power domains
mar 15 16:30:06 archlinux kernel: Freeing unused decrypted memory: 2028K
mar 15 16:30:06 archlinux kernel: Freeing unused kernel image (initmem) memory: 4776K
mar 15 16:30:06 archlinux kernel: Write protecting the kernel read-only data: 40960k
mar 15 16:30:06 archlinux kernel: Freeing unused kernel image (text/rodata gap) memory: 1960K
mar 15 16:30:06 archlinux kernel: Freeing unused kernel image (rodata/data gap) memory: 1684K
mar 15 16:30:06 archlinux kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
mar 15 16:30:06 archlinux kernel: rodata_test: all tests were successful
mar 15 16:30:06 archlinux kernel: Run /init as init process
mar 15 16:30:06 archlinux kernel:   with arguments:
mar 15 16:30:06 archlinux kernel:     /init
mar 15 16:30:06 archlinux kernel:   with environment:
mar 15 16:30:06 archlinux kernel:     HOME=/
mar 15 16:30:06 archlinux kernel:     TERM=linux
mar 15 16:30:06 archlinux systemd[1]: Successfully made /usr/ read-only.
mar 15 16:30:06 archlinux systemd[1]: systemd 259.5-1-arch running in system mode (+PAM +AUDIT -SELINUX +APPARMOR -IMA +IPE +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF +XKBCOMMON +UTMP -SYSVINIT +LIBARCHIVE)
mar 15 16:30:06 archlinux systemd[1]: Detected architecture x86-64.
mar 15 16:30:06 archlinux systemd[1]: Running in initrd.
mar 15 16:30:06 archlinux systemd[1]: Initializing machine ID from random generator.
mar 15 16:30:06 archlinux systemd[1]: Queued start job for default target Initrd Default Target.
mar 15 16:30:06 archlinux systemd[1]: Created slice Slice /system/systemd-cryptsetup.
mar 15 16:30:06 archlinux systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
mar 15 16:30:06 archlinux systemd[1]: Expecting device /dev/disk/by-uuid/052323e9-525e-418e-ae58-09a080bd517b...
mar 15 16:30:06 archlinux systemd[1]: Expecting device /dev/disk/by-uuid/71de9387-74cc-4cd6-b4e3-190964bd0e41...
mar 15 16:30:06 archlinux systemd[1]: Expecting device /dev/mapper/root...
mar 15 16:30:06 archlinux systemd[1]: Expecting device /dev/mapper/swap...
mar 15 16:30:06 archlinux systemd[1]: Reached target Path Units.
mar 15 16:30:06 archlinux systemd[1]: Reached target Slice Units.
mar 15 16:30:06 archlinux systemd[1]: Reached target Swaps.
mar 15 16:30:06 archlinux systemd[1]: Reached target Timer Units.
mar 15 16:30:06 archlinux systemd[1]: Listening on Journal Socket (/dev/log).
mar 15 16:30:06 archlinux systemd[1]: Listening on Journal Sockets.
mar 15 16:30:06 archlinux systemd[1]: Listening on udev Control Socket.
mar 15 16:30:06 archlinux systemd[1]: Listening on udev Kernel Socket.
mar 15 16:30:06 archlinux systemd[1]: Reached target Socket Units.
mar 15 16:30:06 archlinux systemd[1]: Starting Create List of Static Device Nodes...
mar 15 16:30:06 archlinux systemd[1]: Early Battery Level Check skipped, unmet condition check ConditionDirectoryNotEmpty=/sys/class/power_supply
mar 15 16:30:06 archlinux systemd[1]: Started Display Boot-Time Emergency Messages In Full Screen.
mar 15 16:30:06 archlinux systemd[1]: Starting Journal Service...
mar 15 16:30:06 archlinux systemd[1]: Starting Load Kernel Modules...
mar 15 16:30:06 archlinux systemd[1]: Starting TPM PCR Barrier (initrd)...
mar 15 16:30:06 archlinux systemd[1]: Starting Create Static Device Nodes in /dev...
mar 15 16:30:06 archlinux systemd[1]: Starting Coldplug All udev Devices...
mar 15 16:30:06 archlinux systemd-journald[242]: Collecting audit messages is disabled.
mar 15 16:30:06 archlinux systemd[1]: Finished Create List of Static Device Nodes.
mar 15 16:30:06 archlinux systemd[1]: Finished Load Kernel Modules.
mar 15 16:30:06 archlinux systemd[1]: Finished Create Static Device Nodes in /dev.
mar 15 16:30:06 archlinux systemd[1]: Starting Rule-based Manager for Device Events and Files...
mar 15 16:30:06 archlinux systemd[1]: Finished TPM PCR Barrier (initrd).
mar 15 16:30:06 archlinux systemd[1]: Started Rule-based Manager for Device Events and Files.
mar 15 16:30:06 archlinux systemd-journald[242]: Journal started
mar 15 16:30:06 archlinux systemd-journald[242]: Runtime Journal (/run/log/journal/edf68579482a4a79ba33a2ed2a839efa) is 8M, max 318.1M, 310.1M free.
mar 15 16:30:06 archlinux systemd-modules-load[244]: Using 3 probe threads
mar 15 16:30:06 archlinux systemd-modules-load[244]: Failed to find module 'keyboard'
mar 15 16:30:06 archlinux systemd-modules-load[244]: Module 'xhci_hcd' is built in
mar 15 16:30:06 archlinux systemd-modules-load[244]: Module 'usbhid' is built in
mar 15 16:30:06 archlinux systemd-pcrextend[248]: Extended PCR index 11 with 'enter-initrd' (banks sha1, sha256).
mar 15 16:30:06 archlinux systemd-udevd[265]: Using default interface naming scheme 'v259'.
mar 15 16:30:06 archlinux systemd[1]: Started Journal Service.
mar 15 16:30:06 archlinux systemd[1]: Finished Coldplug All udev Devices.
mar 15 16:30:06 archlinux kernel: ccp 0000:0b:00.1: enabling device (0000 -> 0002)
mar 15 16:30:06 archlinux kernel: ccp 0000:0b:00.1: ccp: unable to access the device: you might be running a broken BIOS.
mar 15 16:30:06 archlinux kernel: ccp 0000:0b:00.1: psp: unable to access the device: you might be running a broken BIOS.
mar 15 16:30:06 archlinux kernel: input: Logitech USB Receiver as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-6/1-6:1.3/0003:046D:C548.0004/input/input8
mar 15 16:30:06 archlinux kernel: hid-multitouch 0003:046D:C548.0004: input,hidraw3: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:02:00.0-6/input3
mar 15 16:30:06 archlinux kernel: Key type psk registered
mar 15 16:30:06 archlinux systemd[1]: Starting Virtual Console Setup...
mar 15 16:30:06 archlinux systemd[1]: systemd-vconsole-setup.service: Deactivated successfully.
mar 15 16:30:06 archlinux systemd[1]: Stopped Virtual Console Setup.
mar 15 16:30:06 archlinux kernel: sr 1:0:0:0: [sr0] scsi3-mmc drive: 48x/12x writer dvd-ram cd/rw xa/form2 cdda tray
mar 15 16:30:06 archlinux kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
mar 15 16:30:06 archlinux systemd[1]: Starting Virtual Console Setup...
mar 15 16:30:06 archlinux kernel: nvme nvme0: pci function 0000:01:00.0
mar 15 16:30:06 archlinux kernel: nvme nvme0: D3 entry latency set to 10 seconds
mar 15 16:30:06 archlinux kernel: nvme nvme0: 12/0/0 default/read/poll queues
mar 15 16:30:06 archlinux kernel:  nvme0n1: p1 p2 p3 p4
mar 15 16:30:06 archlinux systemd[1]: Found device KINGSTON SKC3000S1024G Linux\x20swap.
mar 15 16:30:06 archlinux systemd[1]: Finished Virtual Console Setup.
mar 15 16:30:06 archlinux kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
mar 15 16:30:06 archlinux systemd[1]: Found device KINGSTON SKC3000S1024G Linux\x20x86-64\x20root\x20\x28\x2f\x29.
mar 15 16:30:06 archlinux systemd[1]: Starting Cryptography Setup for root...
mar 15 16:30:06 archlinux systemd[1]: Starting Cryptography Setup for swap...
mar 15 16:30:06 archlinux kernel: device-mapper: uevent: version 1.0.3
mar 15 16:30:06 archlinux kernel: device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists.linux.dev
mar 15 16:30:10 archlinux kernel: Key type trusted registered
mar 15 16:30:10 archlinux kernel: amdgpu: Virtual CRAT table created for CPU
mar 15 16:30:10 archlinux kernel: amdgpu: Topology: Add CPU node
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: initializing kernel modesetting (POLARIS10 0x1002:0x67DF 0x1043:0x0525 0xE7).
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: register mmio base: 0xFCE00000
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: register mmio size: 262144
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: detected ip block number 0 <common_v1_0_0> (vi_common)
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: detected ip block number 1 <gmc_v8_1_0> (gmc_v8_0)
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: detected ip block number 2 <ih_v3_0_0> (tonga_ih)
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: detected ip block number 3 <gfx_v8_0_0> (gfx_v8_0)
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: detected ip block number 4 <sdma_v3_1_0> (sdma_v3_0)
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: detected ip block number 5 <smu_v1_0_0> (powerplay)
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: detected ip block number 6 <dce_v1_0_0> (dm)
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: detected ip block number 7 <uvd_v6_3_0> (uvd_v6_0)
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: detected ip block number 8 <vce_v3_4_0> (vce_v3_0)
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: No more image in the PCI ROM
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: Fetched VBIOS from ROM BAR
mar 15 16:30:10 archlinux kernel: amdgpu: ATOM BIOS: 115-D009PI2-101
mar 15 16:30:10 archlinux kernel: [drm] UVD is enabled in VM mode
mar 15 16:30:10 archlinux kernel: [drm] UVD ENC is enabled in VM mode
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: Found VCE firmware Version: 53.26 Binary ID: 3
mar 15 16:30:10 archlinux kernel: [drm] VCE enabled in VM mode
mar 15 16:30:10 archlinux kernel: Key type encrypted registered
mar 15 16:30:10 archlinux kernel: Console: switching to colour dummy device 80x25
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: vgaarb: deactivate vga console
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: Trusted Memory Zone (TMZ) feature not supported
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: vm size is 64 GB, 2 levels, block size is 10-bit, fragment size is 9-bit
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: VRAM: 4096M 0x000000F400000000 - 0x000000F4FFFFFFFF (4096M used)
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: GART: 256M 0x000000FF00000000 - 0x000000FF0FFFFFFF
mar 15 16:30:10 archlinux kernel: [drm] Detected VRAM RAM=4096M, BAR=256M
mar 15 16:30:10 archlinux kernel: [drm] RAM width 256bits GDDR5
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: amdgpu: 4096M of VRAM memory ready
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: amdgpu: 7953M of GTT memory ready.
mar 15 16:30:10 archlinux kernel: [drm] GART: num cpu pages 65536, num gpu pages 65536
mar 15 16:30:10 archlinux systemd[1]: Found device /dev/mapper/swap.
mar 15 16:30:10 archlinux kernel: [drm] PCIE GART of 256M enabled (table at 0x000000F401300000).
mar 15 16:30:10 archlinux kernel: [drm] Chained IB support enabled!
mar 15 16:30:10 archlinux systemd[1]: Finished Cryptography Setup for swap.
mar 15 16:30:10 archlinux kernel: amdgpu: hwmgr_sw_init smu backed is polaris10_smu
mar 15 16:30:10 archlinux kernel: [drm] Found UVD firmware Version: 1.130 Family ID: 16
mar 15 16:30:10 archlinux systemd[1]: Found device /dev/mapper/root.
mar 15 16:30:10 archlinux systemd[1]: Finished Cryptography Setup for root.
mar 15 16:30:10 archlinux systemd[1]: Reached target Local Encrypted Volumes.
mar 15 16:30:10 archlinux systemd[1]: Reached target Initrd Root Device.
mar 15 16:30:10 archlinux systemd[1]: Starting Resume from hibernation...
mar 15 16:30:10 archlinux systemd-hibernate-resume[371]: Unable to resume from device '/dev/mapper/swap' (253:0) offset 0, continuing boot process.
mar 15 16:30:10 archlinux kernel: PM: Image not found (code -22)
mar 15 16:30:10 archlinux systemd[1]: systemd-hibernate-resume.service: Deactivated successfully.
mar 15 16:30:10 archlinux systemd[1]: Finished Resume from hibernation.
mar 15 16:30:10 archlinux systemd[1]: Reached target Preparation for Local File Systems.
mar 15 16:30:10 archlinux systemd[1]: Reached target Local File Systems.
mar 15 16:30:10 archlinux systemd[1]: Starting File System Check on /dev/mapper/root...
mar 15 16:30:10 archlinux systemd[1]: Starting Create System Files and Directories...
mar 15 16:30:10 archlinux systemd[1]: Finished Create System Files and Directories.
mar 15 16:30:10 archlinux systemd[1]: Reached target System Initialization.
mar 15 16:30:10 archlinux systemd[1]: Reached target Basic System.
mar 15 16:30:10 archlinux systemd[1]: Finished File System Check on /dev/mapper/root.
mar 15 16:30:10 archlinux systemd[1]: Mounting /sysroot...
mar 15 16:30:10 archlinux kernel: BTRFS: device label root devid 1 transid 94736 /dev/mapper/root (253:1) scanned by mount (390)
mar 15 16:30:10 archlinux kernel: BTRFS info (device dm-1): first mount of filesystem 4a7a5eb7-fa78-4b85-b393-ba1b1fbd0d25
mar 15 16:30:10 archlinux kernel: BTRFS info (device dm-1): using crc32c (crc32c-lib) checksum algorithm
mar 15 16:30:10 archlinux kernel: BTRFS info (device dm-1): enabling ssd optimizations
mar 15 16:30:10 archlinux kernel: BTRFS info (device dm-1): turning on async discard
mar 15 16:30:10 archlinux kernel: BTRFS info (device dm-1): enabling free space tree
mar 15 16:30:10 archlinux systemd[1]: Mounted /sysroot.
mar 15 16:30:10 archlinux systemd[1]: Reached target Initrd Root File System.
mar 15 16:30:10 archlinux systemd[1]: Starting Mountpoints Configured in the Real Root...
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: [drm] Display Core v3.2.359 initialized on DCE 11.2
mar 15 16:30:10 archlinux systemd[1]: initrd-parse-etc.service: Deactivated successfully.
mar 15 16:30:10 archlinux systemd[1]: Finished Mountpoints Configured in the Real Root.
mar 15 16:30:10 archlinux systemd[1]: initrd-parse-etc.service: Triggering OnSuccess= dependencies.
mar 15 16:30:10 archlinux systemd[1]: Reached target Initrd File Systems.
mar 15 16:30:10 archlinux systemd[1]: Reached target Initrd Default Target.
mar 15 16:30:10 archlinux systemd[1]: Starting Cleaning Up and Shutting Down Daemons...
mar 15 16:30:10 archlinux systemd[1]: Stopped target Initrd Default Target.
mar 15 16:30:10 archlinux systemd[1]: Stopped target Basic System.
mar 15 16:30:10 archlinux systemd[1]: Stopped target Initrd Root Device.
mar 15 16:30:10 archlinux systemd[1]: Stopped target Path Units.
mar 15 16:30:10 archlinux systemd[1]: Stopped target Slice Units.
mar 15 16:30:10 archlinux systemd[1]: Stopped target Socket Units.
mar 15 16:30:10 archlinux systemd[1]: Stopped target System Initialization.
mar 15 16:30:10 archlinux systemd[1]: Stopped target Local Encrypted Volumes.
mar 15 16:30:10 archlinux systemd[1]: systemd-ask-password-console.path: Deactivated successfully.
mar 15 16:30:10 archlinux systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
mar 15 16:30:10 archlinux systemd[1]: Stopped target Swaps.
mar 15 16:30:10 archlinux systemd[1]: Stopped target Timer Units.
mar 15 16:30:10 archlinux systemd[1]: kmod-static-nodes.service: Deactivated successfully.
mar 15 16:30:10 archlinux systemd[1]: Stopped Create List of Static Device Nodes.
mar 15 16:30:10 archlinux systemd[1]: Stopping Display Boot-Time Emergency Messages In Full Screen...
mar 15 16:30:10 archlinux systemd[1]: systemd-modules-load.service: Deactivated successfully.
mar 15 16:30:10 archlinux systemd[1]: Stopped Load Kernel Modules.
mar 15 16:30:10 archlinux systemd[1]: Stopping TPM PCR Barrier (initrd)...
mar 15 16:30:10 archlinux systemd[1]: systemd-tmpfiles-setup.service: Deactivated successfully.
mar 15 16:30:10 archlinux systemd[1]: Stopped Create System Files and Directories.
mar 15 16:30:10 archlinux systemd[1]: Stopped target Local File Systems.
mar 15 16:30:10 archlinux systemd[1]: Stopped target Preparation for Local File Systems.
mar 15 16:30:10 archlinux systemd[1]: systemd-udev-trigger.service: Deactivated successfully.
mar 15 16:30:10 archlinux systemd[1]: Stopped Coldplug All udev Devices.
mar 15 16:30:10 archlinux systemd[1]: Stopping Rule-based Manager for Device Events and Files...
mar 15 16:30:10 archlinux systemd[1]: systemd-vconsole-setup.service: Deactivated successfully.
mar 15 16:30:10 archlinux systemd[1]: Stopped Virtual Console Setup.
mar 15 16:30:10 archlinux systemd[1]: systemd-bsod.service: Deactivated successfully.
mar 15 16:30:10 archlinux systemd[1]: Stopped Display Boot-Time Emergency Messages In Full Screen.
mar 15 16:30:10 archlinux systemd[1]: initrd-cleanup.service: Deactivated successfully.
mar 15 16:30:10 archlinux systemd[1]: Finished Cleaning Up and Shutting Down Daemons.
mar 15 16:30:10 archlinux systemd-pcrextend[426]: Extended PCR index 11 with 'leave-initrd' (banks sha1, sha256).
mar 15 16:30:10 archlinux systemd[1]: systemd-pcrphase-initrd.service: Deactivated successfully.
mar 15 16:30:10 archlinux systemd[1]: Stopped TPM PCR Barrier (initrd).
mar 15 16:30:10 archlinux kernel: [drm] UVD and UVD ENC initialized successfully.
mar 15 16:30:10 archlinux kernel: [drm] VCE initialized successfully.
mar 15 16:30:10 archlinux kernel: kfd kfd: amdgpu: Allocated 3969056 bytes on gart
mar 15 16:30:10 archlinux kernel: kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
mar 15 16:30:10 archlinux kernel: amdgpu: Virtual CRAT table created for GPU
mar 15 16:30:10 archlinux kernel: amdgpu: Topology: Add dGPU node [0x67df:0x1002]
mar 15 16:30:10 archlinux kernel: kfd kfd: amdgpu: added device 1002:67df
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: SE 4, SH per SE 1, CU per SH 9, active_cu_number 36
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: amdgpu: Using BACO for runtime pm
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: [drm] Registered 6 planes with drm panic
mar 15 16:30:10 archlinux kernel: [drm] Initialized amdgpu 3.64.0 for 0000:09:00.0 on minor 1
mar 15 16:30:10 archlinux kernel: fbcon: amdgpudrmfb (fb0) is primary device
mar 15 16:30:10 archlinux kernel: Console: switching to colour frame buffer device 215x45
mar 15 16:30:10 archlinux kernel: amdgpu 0000:09:00.0: [drm] fb0: amdgpudrmfb frame buffer device
mar 15 16:30:10 archlinux systemd[1]: systemd-udevd.service: Deactivated successfully.
mar 15 16:30:10 archlinux systemd[1]: Stopped Rule-based Manager for Device Events and Files.
mar 15 16:30:10 archlinux systemd[1]: systemd-udevd.service: Consumed 4.250s CPU time over 4.050s wall clock time, 29.7M memory peak.
mar 15 16:30:10 archlinux systemd[1]: systemd-udevd-control.socket: Deactivated successfully.
mar 15 16:30:10 archlinux systemd[1]: Closed udev Control Socket.
mar 15 16:30:10 archlinux systemd[1]: Starting Cleanup udev Database...
mar 15 16:30:10 archlinux systemd[1]: systemd-tmpfiles-setup-dev.service: Deactivated successfully.
mar 15 16:30:10 archlinux systemd[1]: Stopped Create Static Device Nodes in /dev.
mar 15 16:30:10 archlinux systemd[1]: initrd-udevadm-cleanup-db.service: Deactivated successfully.
mar 15 16:30:10 archlinux systemd[1]: Finished Cleanup udev Database.
mar 15 16:30:10 archlinux systemd[1]: Reached target Switch Root.
mar 15 16:30:10 archlinux systemd[1]: Starting Switch Root...
mar 15 16:30:10 archlinux systemd[1]: Switching root.
mar 15 16:30:10 archlinux systemd-journald[242]: Journal stopped
mar 15 16:30:11 stationara systemd-journald[242]: Received SIGTERM from PID 1 (systemd).
mar 15 16:30:11 stationara systemd[1]: systemd 259.5-1-arch running in system mode (+PAM +AUDIT -SELINUX +APPARMOR -IMA +IPE +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF +XKBCOMMON +UTMP -SYSVINIT +LIBARCHIVE)
mar 15 16:30:11 stationara systemd[1]: Detected architecture x86-64.
mar 15 16:30:11 stationara systemd[1]: Hostname set to <stationara>.
mar 15 16:30:11 stationara systemd[1]: bpf-restrict-fs: LSM BPF program attached
mar 15 16:30:11 stationara kernel: zram: Added device: zram0
mar 15 16:30:11 stationara systemd[1]: /etc/systemd/system/systemd-logind.service.d/override.conf:1: Unknown section 'Login'. Ignoring.
mar 15 16:30:11 stationara systemd[1]: initrd-switch-root.service: Deactivated successfully.
mar 15 16:30:11 stationara systemd[1]: Stopped Switch Root.
mar 15 16:30:11 stationara systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
mar 15 16:30:11 stationara systemd[1]: Created slice Slice /system/dirmngr.
mar 15 16:30:11 stationara systemd[1]: Created slice Slice /system/getty.
mar 15 16:30:11 stationara systemd[1]: Created slice Slice /system/gpg-agent.
mar 15 16:30:11 stationara systemd[1]: Created slice Slice /system/gpg-agent-browser.
mar 15 16:30:11 stationara systemd[1]: Created slice Slice /system/gpg-agent-extra.
mar 15 16:30:11 stationara systemd[1]: Created slice Slice /system/gpg-agent-ssh.
mar 15 16:30:11 stationara systemd[1]: Created slice Slice /system/keyboxd.
mar 15 16:30:11 stationara systemd[1]: Created slice Slice /system/modprobe.
mar 15 16:30:11 stationara systemd[1]: Created slice Slice /system/systemd-fsck.
mar 15 16:30:11 stationara systemd[1]: Created slice Slice /system/systemd-zram-setup.
mar 15 16:30:11 stationara systemd[1]: Created slice User and Session Slice.
mar 15 16:30:11 stationara systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
mar 15 16:30:11 stationara systemd[1]: Started Forward Password Requests to Wall Directory Watch.
mar 15 16:30:11 stationara systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
mar 15 16:30:11 stationara systemd[1]: Expecting device /dev/disk/by-uuid/18F2-DA6C...
mar 15 16:30:11 stationara systemd[1]: Expecting device /dev/disk/by-uuid/605e92cf-0eb8-417e-b202-8a1a9c778498...
mar 15 16:30:11 stationara systemd[1]: Expecting device /dev/zram0...
mar 15 16:30:11 stationara systemd[1]: Reached target Local Encrypted Volumes.
mar 15 16:30:11 stationara systemd[1]: Reached target Login Prompts.
mar 15 16:30:11 stationara systemd[1]: Reached target Image Downloads.
mar 15 16:30:11 stationara systemd[1]: Stopped target Switch Root.
mar 15 16:30:11 stationara systemd[1]: Stopped target Initrd File Systems.
mar 15 16:30:11 stationara systemd[1]: Stopped target Initrd Root File System.
mar 15 16:30:11 stationara systemd[1]: Reached target Local Integrity Protected Volumes.
mar 15 16:30:11 stationara systemd[1]: Reached target Path Units.
mar 15 16:30:11 stationara systemd[1]: Reached target Remote File Systems.
mar 15 16:30:11 stationara systemd[1]: Reached target Slice Units.
mar 15 16:30:11 stationara systemd[1]: Reached target Local Verity Protected Volumes.
mar 15 16:30:11 stationara systemd[1]: Listening on Device-mapper event daemon FIFOs.
mar 15 16:30:11 stationara systemd[1]: Listening on RPCbind Server Activation Socket.
mar 15 16:30:11 stationara systemd[1]: Reached target RPC Port Mapper.
mar 15 16:30:11 stationara systemd[1]: Listening on Query the User Interactively for a Password.
mar 15 16:30:11 stationara systemd[1]: Listening on Process Core Dump Socket.
mar 15 16:30:11 stationara systemd[1]: Listening on Credential Encryption/Decryption.
mar 15 16:30:11 stationara systemd[1]: Listening on Factory Reset Management.
mar 15 16:30:11 stationara systemd[1]: Listening on Console Output Muting Service Socket.
mar 15 16:30:11 stationara systemd[1]: Listening on TPM PCR Measurements.
mar 15 16:30:11 stationara systemd[1]: Listening on Make TPM PCR Policy.
mar 15 16:30:11 stationara systemd[1]: Listening on Disk Repartitioning Service Socket.
mar 15 16:30:11 stationara systemd[1]: Listening on Resolve Monitor Varlink Socket.
mar 15 16:30:11 stationara systemd[1]: Listening on Resolve Service Varlink Socket.
mar 15 16:30:11 stationara systemd[1]: Listening on udev Control Socket.
mar 15 16:30:11 stationara systemd[1]: Listening on udev Varlink Socket.
mar 15 16:30:11 stationara systemd[1]: Listening on User Database Manager Socket.
mar 15 16:30:11 stationara systemd[1]: Activating swap /dev/disk/by-uuid/e8316da7-3af3-40e3-a94a-bc20a4f4ee97...
mar 15 16:30:11 stationara systemd[1]: Mounting Huge Pages File System...
mar 15 16:30:11 stationara systemd[1]: Mounting POSIX Message Queue File System...
mar 15 16:30:11 stationara systemd[1]: Mounting Kernel Debug File System...
mar 15 16:30:11 stationara systemd[1]: Mounting Kernel Trace File System...
mar 15 16:30:11 stationara systemd[1]: Starting Create List of Static Device Nodes...
mar 15 16:30:11 stationara systemd[1]: Load Kernel Module configfs skipped, unmet condition check ConditionKernelModuleLoaded=!configfs
mar 15 16:30:11 stationara systemd[1]: Mounting Kernel Configuration File System...
mar 15 16:30:11 stationara systemd[1]: Load Kernel Module drm skipped, unmet condition check ConditionKernelModuleLoaded=!drm
mar 15 16:30:11 stationara systemd[1]: Load Kernel Module fuse skipped, unmet condition check ConditionKernelModuleLoaded=!fuse
mar 15 16:30:11 stationara systemd[1]: Mounting FUSE Control File System...
mar 15 16:30:11 stationara kernel: Adding 20955132k swap on /dev/mapper/swap.  Priority:-1 extents:1 across:20955132k SS
mar 15 16:30:11 stationara systemd[1]: systemd-cryptsetup@root.service: Deactivated successfully.
mar 15 16:30:11 stationara systemd[1]: Stopped systemd-cryptsetup@root.service.
mar 15 16:30:11 stationara systemd[1]: systemd-cryptsetup@swap.service: Deactivated successfully.
mar 15 16:30:11 stationara systemd[1]: Stopped systemd-cryptsetup@swap.service.
mar 15 16:30:11 stationara systemd[1]: systemd-fsck-root.service: Deactivated successfully.
mar 15 16:30:11 stationara systemd[1]: Stopped File System Check on Root Device.
mar 15 16:30:11 stationara systemd[1]: Clear Stale Hibernate Storage Info skipped, unmet condition check ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67
mar 15 16:30:11 stationara systemd[1]: Starting Journal Service...
mar 15 16:30:11 stationara systemd[1]: Starting Load Kernel Modules...
mar 15 16:30:11 stationara systemd[1]: Starting TPM PCR Machine ID Measurement...
mar 15 16:30:11 stationara systemd[1]: Starting TPM NvPCR Product ID Measurement...
mar 15 16:30:11 stationara systemd[1]: Starting Remount Root and Kernel File Systems...
mar 15 16:30:11 stationara systemd[1]: Starting Early TPM SRK Setup...
mar 15 16:30:11 stationara systemd[1]: Starting Load udev Rules from Credentials...
mar 15 16:30:11 stationara systemd[1]: Starting Coldplug All udev Devices...
mar 15 16:30:11 stationara kernel: i2c_dev: i2c /dev entries driver
mar 15 16:30:11 stationara systemd-journald[635]: Collecting audit messages is disabled.
mar 15 16:30:11 stationara systemd[1]: Activated swap /dev/disk/by-uuid/e8316da7-3af3-40e3-a94a-bc20a4f4ee97.
mar 15 16:30:11 stationara systemd[1]: Mounted Huge Pages File System.
mar 15 16:30:11 stationara systemd-journald[635]: Journal started
mar 15 16:30:11 stationara systemd-journald[635]: Runtime Journal (/run/log/journal/4579bcf2fe044d4083ff5a0d9052505d) is 8M, max 318.1M, 310.1M free.
mar 15 16:30:10 stationara systemd[1]: Queued start job for default target Graphical Interface.
mar 15 16:30:10 stationara systemd[1]: systemd-journald.service: Deactivated successfully.
mar 15 16:30:11 stationara systemd-modules-load[636]: Using 7 probe threads
mar 15 16:30:11 stationara systemd-modules-load[636]: Inserted module 'crypto_user'
mar 15 16:30:11 stationara kernel: BTRFS info (device dm-1 state M): enabling auto defrag
mar 15 16:30:11 stationara systemd-modules-load[636]: Inserted module 'uinput'
mar 15 16:30:11 stationara systemd-modules-load[636]: Inserted module 'i2c_dev'
mar 15 16:30:11 stationara systemd-modules-load[636]: Inserted module 'ntsync'
mar 15 16:30:11 stationara systemd-pcrextend[637]: Extended PCR index 15 with 'machine-id:4579bcf2fe044d4083ff5a0d9052505d' (banks sha1, sha256).
mar 15 16:30:11 stationara systemd[1]: Started Journal Service.
mar 15 16:30:11 stationara systemd[1]: Mounted POSIX Message Queue File System.
mar 15 16:30:11 stationara systemd[1]: Mounted Kernel Debug File System.
mar 15 16:30:11 stationara systemd[1]: Mounted Kernel Trace File System.
mar 15 16:30:11 stationara systemd[1]: Finished Create List of Static Device Nodes.
mar 15 16:30:11 stationara systemd[1]: Mounted Kernel Configuration File System.
mar 15 16:30:11 stationara systemd[1]: Mounted FUSE Control File System.
mar 15 16:30:11 stationara systemd[1]: Finished TPM PCR Machine ID Measurement.
mar 15 16:30:11 stationara systemd[1]: Finished Remount Root and Kernel File Systems.
mar 15 16:30:11 stationara systemd[1]: Finished Load udev Rules from Credentials.
mar 15 16:30:11 stationara systemd[1]: Rebuild Hardware Database skipped, unmet condition check ConditionNeedsUpdate=/etc
mar 15 16:30:11 stationara systemd[1]: Starting Load/Save OS Random Seed...
mar 15 16:30:11 stationara systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
mar 15 16:30:11 stationara systemd-tpm2-setup[641]: SRK already stored in the TPM.
mar 15 16:30:11 stationara systemd-tpm2-setup[641]: SRK fingerprint is fa1879b2fe17053303791419c28ae16907bd6af4312c435b5336cb28f6ad38b7.
mar 15 16:30:11 stationara systemd-tpm2-setup[641]: SRK public key saved to '/run/systemd/tpm2-srk-public-key.pem' in PEM format.
mar 15 16:30:11 stationara systemd-tpm2-setup[641]: SRK public key saved to '/run/systemd/tpm2-srk-public-key.tpm2b_public' in TPM2B_PUBLIC format.
mar 15 16:30:11 stationara systemd[1]: Finished Load/Save OS Random Seed.
mar 15 16:30:11 stationara systemd[1]: Starting User Database Manager...
mar 15 16:30:11 stationara systemd[1]: Started User Database Manager.
mar 15 16:30:11 stationara kernel: kvm_intel: VMX not supported by CPU 8
mar 15 16:30:11 stationara systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
mar 15 16:30:11 stationara systemd[1]: Create System Users skipped, no trigger condition checks were met.
mar 15 16:30:11 stationara systemd[1]: Starting Create Static Device Nodes in /dev...
mar 15 16:30:11 stationara kernel: kvm_amd: TSC scaling supported
mar 15 16:30:11 stationara kernel: kvm_amd: Nested Virtualization enabled
mar 15 16:30:11 stationara kernel: kvm_amd: Nested Paging enabled
mar 15 16:30:11 stationara kernel: kvm_amd: LBR virtualization supported
mar 15 16:30:11 stationara kernel: kvm_amd: SEV disabled (ASIDs 1 - 509)
mar 15 16:30:11 stationara kernel: kvm_amd: SEV-ES disabled (ASIDs 0 - 0)
mar 15 16:30:11 stationara kernel: kvm_amd: Virtual VMLOAD VMSAVE supported
mar 15 16:30:11 stationara kernel: kvm_amd: Virtual GIF supported
mar 15 16:30:11 stationara systemd[1]: Finished Create Static Device Nodes in /dev.
mar 15 16:30:11 stationara kernel: vboxdrv: loading out-of-tree module taints kernel.
mar 15 16:30:11 stationara kernel: vboxdrv: module verification failed: signature and/or required key missing - tainting kernel
mar 15 16:30:11 stationara kernel: vboxdrv: module uses symbol (cr4_read_shadow) from namespace module:kvm,kvm-amd,kvm-intel, but does not import it.
mar 15 16:30:11 stationara kernel: vboxdrv: module uses symbol (__flush_tlb_all) from namespace module:kvm,kvm-amd,kvm-intel, but does not import it.
mar 15 16:30:11 stationara kernel: vboxdrv: module uses symbol (cr4_update_irqsoff) from namespace module:kvm,kvm-amd,kvm-intel, but does not import it.
mar 15 16:30:11 stationara systemd[1]: Reached target Preparation for Local File Systems.
mar 15 16:30:11 stationara systemd[1]: Starting Rule-based Manager for Device Events and Files...
mar 15 16:30:11 stationara kernel: vboxdrv: Found 12 processor cores/threads
mar 15 16:30:11 stationara systemd-udevd[676]: Using default interface naming scheme 'v259'.
mar 15 16:30:11 stationara systemd[1]: Started Rule-based Manager for Device Events and Files.
mar 15 16:30:11 stationara nfsrahead[703]: skipping non-NFS device 252:0
mar 15 16:30:11 stationara systemd[1]: Starting Virtual Console Setup...
mar 15 16:30:11 stationara systemd[1]: Found device /dev/zram0.
mar 15 16:30:11 stationara systemd[1]: Starting Create swap on /dev/zram0...
mar 15 16:30:11 stationara kernel: zram0: detected capacity change from 0 to 8388608
mar 15 16:30:11 stationara systemd-makefs[720]: /dev/zram0 successfully formatted as swap (label "zram0", uuid dfa1d31a-a2b2-401a-8a5c-01efbe37a947)
mar 15 16:30:11 stationara systemd[1]: Finished Create swap on /dev/zram0.
mar 15 16:30:11 stationara systemd[1]: Activating swap Compressed Swap on /dev/zram0...
mar 15 16:30:11 stationara systemd[1]: Finished Virtual Console Setup.
mar 15 16:30:11 stationara kernel: rtR0InitNative: g_pLnxInitMm=00000000b7ea980d
mar 15 16:30:11 stationara kernel: Adding 4194300k swap on /dev/zram0.  Priority:100 extents:1 across:4194300k SSDsc
mar 15 16:30:11 stationara systemd[1]: Activated swap Compressed Swap on /dev/zram0.
mar 15 16:30:11 stationara systemd[1]: Reached target Swaps.
mar 15 16:30:11 stationara systemd[1]: Finished Coldplug All udev Devices.
mar 15 16:30:11 stationara kernel: vboxdrv: Found KVM hardware-virtualization symbols
mar 15 16:30:11 stationara kernel: vboxdrv: TSC mode is Invariant, tentative frequency 3599999098 Hz
mar 15 16:30:11 stationara kernel: vboxdrv: Successfully loaded version 7.2.6 r172322 (interface 0x00340002)
mar 15 16:30:11 stationara systemd-modules-load[636]: Inserted module 'vboxdrv'
mar 15 16:30:11 stationara systemd-modules-load[636]: Inserted module 'vboxnetadp'
mar 15 16:30:11 stationara kernel: VBoxNetAdp: Successfully started.
mar 15 16:30:11 stationara systemd-modules-load[636]: Inserted module 'vboxnetflt'
mar 15 16:30:11 stationara kernel: VBoxNetFlt: Successfully started.
mar 15 16:30:11 stationara systemd[1]: Finished Load Kernel Modules.
mar 15 16:30:11 stationara systemd[1]: Starting Apply Kernel Variables...
mar 15 16:30:11 stationara systemd[1]: Load Kernel Module configfs skipped, unmet condition check ConditionKernelModuleLoaded=!configfs
mar 15 16:30:11 stationara systemd[1]: Load Kernel Module fuse skipped, unmet condition check ConditionKernelModuleLoaded=!fuse
mar 15 16:30:11 stationara systemd[1]: Finished Apply Kernel Variables.
mar 15 16:30:11 stationara systemd-pcrextend[638]: Anchor secret file '/var/lib/systemd/nvpcr/nvpcr-anchor.cred' different from current anchor secret, updating.
mar 15 16:30:11 stationara systemd[1]: Starting Network Name Resolution...
mar 15 16:30:11 stationara systemd[1]: Starting CLI Netfilter Manager...
mar 15 16:30:11 stationara systemd-pcrextend[638]: Successfully written anchor secret to '/var/lib/systemd/nvpcr/nvpcr-anchor.cred'.
mar 15 16:30:11 stationara systemd-pcrextend[638]: WARNING:esys:src/tss2-esys/api/Esys_NV_DefineSpace.c:345:Esys_NV_DefineSpace_Finish() Received TPM Error
mar 15 16:30:11 stationara systemd-pcrextend[638]: ERROR:esys:src/tss2-esys/api/Esys_NV_DefineSpace.c:121:Esys_NV_DefineSpace() Esys Finish ErrorCode (0x0000014c)
mar 15 16:30:11 stationara systemd[1]: Condition check resulted in /dev/tpmrm0 being skipped.
mar 15 16:30:11 stationara systemd[1]: Expecting device /dev/tpm0...
mar 15 16:30:11 stationara systemd[1]: Condition check resulted in KINGSTON SKC3000S1024G EFI\x20system\x20partition being skipped.
mar 15 16:30:11 stationara mtp-probe[755]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-6"
mar 15 16:30:11 stationara mtp-probe[755]: bus: 1, device: 2 was not an MTP device
mar 15 16:30:11 stationara systemd[1]: Condition check resulted in /dev/tpm0 being skipped.
mar 15 16:30:11 stationara systemd[1]: Reached target Trusted Platform Module.
mar 15 16:30:11 stationara systemd-resolved[742]: Positive Trust Anchors:
mar 15 16:30:11 stationara systemd-resolved[742]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d
mar 15 16:30:11 stationara systemd-resolved[742]: . IN DS 38696 8 2 683d2d0acb8c9b712a1948b27f741219298d0a450d612c483af444a4c0fb2b16
mar 15 16:30:11 stationara systemd-resolved[742]: 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 resolver.arpa corp home internal intranet lan local private test
mar 15 16:30:11 stationara systemd-resolved[742]: Using system hostname 'stationara'.
mar 15 16:30:11 stationara systemd[1]: Started Network Name Resolution.
mar 15 16:30:11 stationara systemd[1]: Reached target Host and Network Name Lookups.
mar 15 16:30:11 stationara kernel: mousedev: PS/2 mouse device common for all mice
mar 15 16:30:11 stationara kernel: dca service started, version 1.12.1
mar 15 16:30:11 stationara kernel: pps_core: LinuxPPS API ver. 1 registered
mar 15 16:30:11 stationara kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
mar 15 16:30:11 stationara kernel: piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
mar 15 16:30:11 stationara kernel: piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
mar 15 16:30:11 stationara kernel: i2c i2c-8: Successfully instantiated SPD at 0x52
mar 15 16:30:11 stationara kernel: i2c i2c-8: Successfully instantiated SPD at 0x53
mar 15 16:30:11 stationara kernel: piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
mar 15 16:30:11 stationara systemd-pcrextend[638]: Extended NvPCR index 'hardware' with 'product-id:b4d3dfbe87a9eb1fdb1c04d9f5f85744'.
mar 15 16:30:11 stationara kernel: acpi_cpufreq: overriding BIOS provided _PSD data
mar 15 16:30:11 stationara kernel: PTP clock support registered
mar 15 16:30:11 stationara nfsrahead[816]: skipping non-NFS device 11:0
mar 15 16:30:11 stationara nfsrahead[819]: skipping non-NFS device 259:0
mar 15 16:30:11 stationara nfsrahead[817]: skipping non-NFS device 253:0
mar 15 16:30:11 stationara nfsrahead[821]: skipping non-NFS device 8:0
mar 15 16:30:11 stationara nfsrahead[822]: skipping non-NFS device btrfs-1
mar 15 16:30:11 stationara nfsrahead[820]: skipping non-NFS device 253:1
mar 15 16:30:11 stationara nfsrahead[818]: skipping non-NFS device 252:0
mar 15 16:30:11 stationara systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
mar 15 16:30:11 stationara systemd[1]: systemd-vconsole-setup.service: Deactivated successfully.
mar 15 16:30:11 stationara systemd[1]: Stopped Virtual Console Setup.
mar 15 16:30:11 stationara systemd[1]: Stopping Virtual Console Setup...
mar 15 16:30:11 stationara systemd[1]: Starting Virtual Console Setup...
mar 15 16:30:11 stationara kernel: sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
mar 15 16:30:11 stationara kernel: sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
mar 15 16:30:11 stationara kernel: sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
mar 15 16:30:11 stationara kernel: Bluetooth: Core ver 2.22
mar 15 16:30:11 stationara kernel: RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
mar 15 16:30:11 stationara kernel: RAPL PMU: hw unit of domain package 2^-16 Joules
mar 15 16:30:11 stationara kernel: RAPL PMU: hw unit of domain core 2^-16 Joules
mar 15 16:30:11 stationara kernel: NET: Registered PF_BLUETOOTH protocol family
mar 15 16:30:11 stationara kernel: Bluetooth: HCI device and connection manager initialized
mar 15 16:30:11 stationara kernel: Bluetooth: HCI socket layer initialized
mar 15 16:30:11 stationara kernel: Bluetooth: L2CAP socket layer initialized
mar 15 16:30:11 stationara kernel: Bluetooth: SCO socket layer initialized
mar 15 16:30:11 stationara kernel: input: PC Speaker as /devices/platform/pcspkr/input/input9
mar 15 16:30:11 stationara systemd[1]: Condition check resulted in ST1000DX001-1CM162 1 being skipped.
mar 15 16:30:11 stationara kernel: igb: Intel(R) Gigabit Ethernet Network Driver
mar 15 16:30:11 stationara kernel: igb: Copyright (c) 2007-2014 Intel Corporation.
mar 15 16:30:11 stationara systemd[1]: Starting File System Check on /dev/disk/by-uuid/605e92cf-0eb8-417e-b202-8a1a9c778498...
mar 15 16:30:11 stationara kernel: ee1004 8-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
mar 15 16:30:11 stationara kernel: ee1004 8-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
mar 15 16:30:11 stationara systemd[1]: Finished Virtual Console Setup.
mar 15 16:30:11 stationara kernel: asus_wmi: ASUS WMI generic driver loaded
mar 15 16:30:11 stationara kernel: asus_wmi: failed to register LPS0 sleep handler in asus-wmi
mar 15 16:30:11 stationara kernel: asus_wmi: Initialization: 0x0
mar 15 16:30:11 stationara kernel: asus_wmi: BIOS WMI version: 0.9
mar 15 16:30:11 stationara kernel: asus_wmi: SFUN value: 0x0
mar 15 16:30:11 stationara kernel: eeepc-wmi eeepc-wmi: Detected ASUSWMI, use DCTS
mar 15 16:30:11 stationara kernel: igb 0000:04:00.0: added PHC on eth0
mar 15 16:30:11 stationara kernel: igb 0000:04:00.0: Intel(R) Gigabit Ethernet Network Connection
mar 15 16:30:11 stationara kernel: igb 0000:04:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 04:d9:f5:f8:57:44
mar 15 16:30:11 stationara kernel: igb 0000:04:00.0: eth0: PBA No: FFFFFF-0FF
mar 15 16:30:11 stationara kernel: igb 0000:04:00.0: Using MSI-X interrupts. 2 rx queue(s), 2 tx queue(s)
mar 15 16:30:11 stationara kernel: usbcore: registered new interface driver btusb
mar 15 16:30:11 stationara kernel: igb 0000:04:00.0 enp4s0: renamed from eth0
mar 15 16:30:11 stationara systemd[1]: Starting Load/Save RF Kill Switch Status...
mar 15 16:30:11 stationara kernel: Bluetooth: hci0: RTL: examining hci_ver=0a hci_rev=000b lmp_ver=0a lmp_subver=8761
mar 15 16:30:11 stationara systemd[1]: Clear Stale Hibernate Storage Info skipped, unmet condition check ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67
mar 15 16:30:11 stationara systemd[1]: Rebuild Hardware Database skipped, unmet condition check ConditionNeedsUpdate=/etc
mar 15 16:30:11 stationara systemd[1]: Create System Users skipped, no trigger condition checks were met.
mar 15 16:30:11 stationara kernel: Bluetooth: hci0: RTL: rom_version status=0 version=1
mar 15 16:30:11 stationara kernel: amd_atl: AMD Address Translation Library initialized
mar 15 16:30:11 stationara kernel: intel_rapl_common: Found RAPL domain package
mar 15 16:30:11 stationara kernel: intel_rapl_common: Found RAPL domain core
mar 15 16:30:11 stationara kernel: Bluetooth: hci0: RTL: btrtl_initialize: key id 0
mar 15 16:30:11 stationara kernel: Bluetooth: hci0: RTL: loading rtl_bt/rtl8761bu_fw.bin
mar 15 16:30:11 stationara kernel: Bluetooth: hci0: RTL: loading rtl_bt/rtl8761bu_config.bin
mar 15 16:30:11 stationara kernel: Bluetooth: hci0: RTL: cfg_sz 6, total sz 30210
mar 15 16:30:11 stationara kernel: input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input10
mar 15 16:30:11 stationara systemd[1]: Started Load/Save RF Kill Switch Status.
mar 15 16:30:11 stationara kernel: snd_hda_intel 0000:09:00.1: Force to non-snoop mode
mar 15 16:30:11 stationara kernel: snd_hda_intel 0000:0b:00.4: enabling device (0000 -> 0002)
mar 15 16:30:11 stationara systemd[1]: Finished TPM NvPCR Product ID Measurement.
mar 15 16:30:11 stationara systemd-fsck[841]: /dev/sda1: rent, 13456/61054976 filer, 8811938/244190385 block
mar 15 16:30:11 stationara kernel: snd_hda_intel 0000:09:00.1: bound 0000:09:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
mar 15 16:30:11 stationara kernel: input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.1/0000:09:00.1/sound/card0/input11
mar 15 16:30:11 stationara kernel: input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.1/0000:09:00.1/sound/card0/input12
mar 15 16:30:11 stationara kernel: input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.1/0000:09:00.1/sound/card0/input13
mar 15 16:30:11 stationara kernel: input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.1/0000:09:00.1/sound/card0/input14
mar 15 16:30:11 stationara kernel: input: HDA ATI HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.1/0000:09:00.1/sound/card0/input15
mar 15 16:30:11 stationara kernel: input: HDA ATI HDMI HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:03.1/0000:09:00.1/sound/card0/input16
mar 15 16:30:11 stationara systemd[1]: Finished File System Check on /dev/disk/by-uuid/605e92cf-0eb8-417e-b202-8a1a9c778498.
mar 15 16:30:11 stationara systemd[1]: Reached target Sound Card.
mar 15 16:30:11 stationara kernel: snd_hda_codec_alc882 hdaudioC1D0: autoconfig for ALC1220: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line
mar 15 16:30:11 stationara kernel: snd_hda_codec_alc882 hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
mar 15 16:30:11 stationara kernel: snd_hda_codec_alc882 hdaudioC1D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
mar 15 16:30:11 stationara kernel: snd_hda_codec_alc882 hdaudioC1D0:    mono: mono_out=0x0
mar 15 16:30:11 stationara kernel: snd_hda_codec_alc882 hdaudioC1D0:    dig-out=0x1e/0x0
mar 15 16:30:11 stationara kernel: snd_hda_codec_alc882 hdaudioC1D0:    inputs:
mar 15 16:30:11 stationara kernel: snd_hda_codec_alc882 hdaudioC1D0:      Rear Mic=0x18
mar 15 16:30:11 stationara kernel: snd_hda_codec_alc882 hdaudioC1D0:      Front Mic=0x19
mar 15 16:30:11 stationara kernel: snd_hda_codec_alc882 hdaudioC1D0:      Line=0x1a
mar 15 16:30:11 stationara kernel: input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:0b:00.4/sound/card1/input17
mar 15 16:30:11 stationara kernel: input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:0b:00.4/sound/card1/input18
mar 15 16:30:11 stationara kernel: input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:0b:00.4/sound/card1/input19
mar 15 16:30:11 stationara kernel: input: HD-Audio Generic Line Out Front as /devices/pci0000:00/0000:00:08.1/0000:0b:00.4/sound/card1/input20
mar 15 16:30:11 stationara kernel: input: HD-Audio Generic Line Out Surround as /devices/pci0000:00/0000:00:08.1/0000:0b:00.4/sound/card1/input21
mar 15 16:30:11 stationara kernel: input: HD-Audio Generic Line Out CLFE as /devices/pci0000:00/0000:00:08.1/0000:0b:00.4/sound/card1/input22
mar 15 16:30:11 stationara kernel: input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:0b:00.4/sound/card1/input23
mar 15 16:30:11 stationara systemd[1]: Finished CLI Netfilter Manager.
mar 15 16:30:11 stationara systemd[1]: Mounting /.snapshots...
mar 15 16:30:11 stationara systemd[1]: Mounting /data...
mar 15 16:30:11 stationara systemd[1]: Mounting /efi...
mar 15 16:30:11 stationara systemd[1]: Mounting /home...
mar 15 16:30:11 stationara systemd[1]: Mounting /tmp...
mar 15 16:30:11 stationara systemd[1]: Mounting /var/cache...
mar 15 16:30:11 stationara systemd[1]: Virtual Machine and Container Storage (Compatibility) skipped, unmet condition check ConditionPathExists=/var/lib/machines.raw
mar 15 16:30:11 stationara systemd[1]: Listening on Disk Image Download Service Socket.
mar 15 16:30:11 stationara systemd[1]: Mounting /var/log...
mar 15 16:30:11 stationara systemd[1]: Mounting /var/spool...
mar 15 16:30:12 stationara systemd[1]: Mounting /var/tmp...
mar 15 16:30:12 stationara kernel: FAT-fs (nvme0n1p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
mar 15 16:30:12 stationara systemd[1]: Mounted /.snapshots.
mar 15 16:30:12 stationara systemd[1]: Mounted /efi.
mar 15 16:30:12 stationara systemd[1]: Mounted /home.
mar 15 16:30:12 stationara systemd[1]: Mounted /tmp.
mar 15 16:30:12 stationara systemd[1]: Mounted /var/cache.
mar 15 16:30:12 stationara systemd[1]: Mounted /var/log.
mar 15 16:30:12 stationara systemd[1]: Mounted /var/spool.
mar 15 16:30:12 stationara systemd[1]: Mounted /var/tmp.
mar 15 16:30:12 stationara systemd[1]: Mounting /var/cache/pacman/pkg...
mar 15 16:30:12 stationara systemd[1]: Starting Flush Journal to Persistent Storage...
mar 15 16:30:12 stationara systemd[1]: Mounted /var/cache/pacman/pkg.
mar 15 16:30:12 stationara systemd-journald[635]: Time spent on flushing to /var/log/journal/4579bcf2fe044d4083ff5a0d9052505d is 18.145ms for 1536 entries.
mar 15 16:30:12 stationara systemd-journald[635]: System Journal (/var/log/journal/4579bcf2fe044d4083ff5a0d9052505d) is 1.8G, max 4G, 2.1G free.
mar 15 16:30:12 stationara systemd-journald[635]: Received client request to flush runtime journal.
mar 15 16:30:12 stationara systemd[1]: Finished Flush Journal to Persistent Storage.
mar 15 16:30:12 stationara systemd-tpm2-setup[641]: WARNING:esys:src/tss2-esys/api/Esys_NV_DefineSpace.c:345:Esys_NV_DefineSpace_Finish() Received TPM Error
mar 15 16:30:12 stationara systemd-tpm2-setup[641]: ERROR:esys:src/tss2-esys/api/Esys_NV_DefineSpace.c:121:Esys_NV_DefineSpace() Esys Finish ErrorCode (0x0000014c)
mar 15 16:30:12 stationara systemd-tpm2-setup[641]: 1 NvPCRs initialized. (1 NvPCRs were already initialized.)
mar 15 16:30:12 stationara systemd[1]: Finished Early TPM SRK Setup.
mar 15 16:30:12 stationara systemd[1]: Repartition Root Disk skipped, no trigger condition checks were met.
mar 15 16:30:12 stationara kernel: Bluetooth: hci0: RTL: fw version 0xdfc6d922
mar 15 16:30:12 stationara systemd[1]: Starting TPM SRK Setup...
mar 15 16:30:12 stationara systemd-tpm2-setup[936]: SRK already stored in the TPM.
mar 15 16:30:12 stationara systemd-tpm2-setup[936]: SRK fingerprint is fa1879b2fe17053303791419c28ae16907bd6af4312c435b5336cb28f6ad38b7.
mar 15 16:30:12 stationara systemd-tpm2-setup[936]: SRK saved in '/var/lib/systemd/tpm2-srk-public-key.pem' matches SRK in TPM2.
mar 15 16:30:13 stationara kernel: EXT4-fs (sda1): mounted filesystem 605e92cf-0eb8-417e-b202-8a1a9c778498 r/w with ordered data mode. Quota mode: none.
mar 15 16:30:13 stationara systemd[1]: Mounted /data.
mar 15 16:30:13 stationara systemd[1]: Reached target Local File Systems.
mar 15 16:30:13 stationara systemd[1]: Listening on Boot Entries Service Socket.
mar 15 16:30:13 stationara systemd[1]: Listening on System Extension Image Management.
mar 15 16:30:13 stationara systemd[1]: Starting Set Up Additional Binary Formats...
mar 15 16:30:13 stationara systemd[1]: Starting Update Boot Loader Random Seed...
mar 15 16:30:13 stationara systemd[1]: Starting Create System Files and Directories...
mar 15 16:30:13 stationara systemd[1]: Starting Load JSON user/group Records from Credentials...
mar 15 16:30:13 stationara systemd[1]: Finished Load JSON user/group Records from Credentials.
mar 15 16:30:13 stationara systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 938 (systemd-binfmt)
mar 15 16:30:13 stationara systemd[1]: Mounting Arbitrary Executable File Formats File System...
mar 15 16:30:13 stationara systemd[1]: Mounted Arbitrary Executable File Formats File System.
mar 15 16:30:13 stationara systemd[1]: Finished Set Up Additional Binary Formats.
mar 15 16:30:13 stationara bootctl[939]: Random seed file /efi/loader/random-seed successfully refreshed (32 bytes).
mar 15 16:30:13 stationara systemd[1]: Finished Update Boot Loader Random Seed.
mar 15 16:30:13 stationara systemd[1]: Finished Create System Files and Directories.
mar 15 16:30:13 stationara systemd-tpm2-setup[936]: Anchor secret file '/efi/loader/credentials/nvpcr-anchor.4579bcf2fe044d4083ff5a0d9052505d.cred' different from current anchor secret, updating.
mar 15 16:30:13 stationara systemd[1]: Rebuild Dynamic Linker Cache skipped, no trigger condition checks were met.
mar 15 16:30:13 stationara systemd-tpm2-setup[936]: Successfully written anchor secret to '/efi/loader/credentials/nvpcr-anchor.4579bcf2fe044d4083ff5a0d9052505d.cred'.
mar 15 16:30:13 stationara systemd-tpm2-setup[936]: 2 NvPCRs already initialized.
mar 15 16:30:13 stationara systemd[1]: Starting RPC Bind...
mar 15 16:30:13 stationara systemd[1]: Initial Setup skipped, unmet condition check ConditionFirstBoot=yes
mar 15 16:30:13 stationara systemd[1]: First Boot Complete skipped, unmet condition check ConditionFirstBoot=yes
mar 15 16:30:13 stationara systemd[1]: Rebuild Journal Catalog skipped, unmet condition check ConditionNeedsUpdate=/var
mar 15 16:30:13 stationara systemd[1]: Save Transient machine-id to Disk skipped, unmet condition check ConditionPathIsMountPoint=/etc/machine-id
mar 15 16:30:13 stationara systemd[1]: Update is Completed skipped, no trigger condition checks were met.
mar 15 16:30:13 stationara systemd[1]: Starting Record System Boot/Shutdown in UTMP...
mar 15 16:30:13 stationara systemd[1]: Finished TPM SRK Setup.
mar 15 16:30:13 stationara systemd[1]: Starting TPM PCR NvPCR Initialization Separator...
mar 15 16:30:13 stationara systemd[1]: Finished Record System Boot/Shutdown in UTMP.
mar 15 16:30:13 stationara systemd-pcrextend[954]: Extended PCR index 9 with 'nvpcr-separator' (banks sha1, sha256).
mar 15 16:30:13 stationara systemd[1]: Finished TPM PCR NvPCR Initialization Separator.
mar 15 16:30:13 stationara systemd[1]: Reached target System Initialization.
mar 15 16:30:13 stationara systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
mar 15 16:30:13 stationara systemd[1]: Started Discard unused filesystem blocks once a week.
mar 15 16:30:13 stationara systemd[1]: Started Daily man-db regeneration.
mar 15 16:30:13 stationara systemd[1]: Started Discard unused packages weekly.
mar 15 16:30:13 stationara systemd[1]: Started Refresh Pacman mirrorlist weekly with Reflector..
mar 15 16:30:13 stationara systemd[1]: Started Daily verification of password and group files.
mar 15 16:30:13 stationara systemd[1]: Started Hourly Cleanup of Snapper Snapshots.
mar 15 16:30:13 stationara systemd[1]: Started Timeline of Snapper Snapshots.
mar 15 16:30:13 stationara systemd[1]: Started Daily Cleanup of Temporary Directories.
mar 15 16:30:13 stationara systemd[1]: Reached target Timer Units.
mar 15 16:30:13 stationara systemd[1]: Listening on D-Bus System Message Bus Socket.
mar 15 16:30:13 stationara systemd[1]: Listening on GnuPG network certificate management daemon for /etc/pacman.d/gnupg.
mar 15 16:30:13 stationara systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers) for /etc/pacman.d/gnupg.
mar 15 16:30:13 stationara systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (restricted) for /etc/pacman.d/gnupg.
mar 15 16:30:13 stationara systemd[1]: Listening on GnuPG cryptographic agent (ssh-agent emulation) for /etc/pacman.d/gnupg.
mar 15 16:30:13 stationara systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache for /etc/pacman.d/gnupg.
mar 15 16:30:13 stationara systemd[1]: Listening on GnuPG public key management service for /etc/pacman.d/gnupg.
mar 15 16:30:13 stationara systemd[1]: Listening on Authorization Manager Agent Helper.
mar 15 16:30:13 stationara systemd[1]: Listening on OpenSSH Server Socket (systemd-ssh-generator, AF_UNIX Local).
mar 15 16:30:13 stationara systemd[1]: Listening on Hostname Service Socket.
mar 15 16:30:13 stationara systemd[1]: Listening on User Login Management Varlink Socket.
mar 15 16:30:13 stationara systemd[1]: Listening on Virtual Machine and Container Registration Service Socket.
mar 15 16:30:13 stationara systemd[1]: Reached target Socket Units.
mar 15 16:30:13 stationara systemd[1]: Starting D-Bus System Message Bus...
mar 15 16:30:13 stationara systemd[1]: Starting TPM PCR Barrier (Initialization)...
mar 15 16:30:13 stationara systemd[1]: Started RPC Bind.
mar 15 16:30:13 stationara systemd[1]: Started D-Bus System Message Bus.
mar 15 16:30:13 stationara systemd-pcrextend[958]: Extended PCR index 11 with 'sysinit' (banks sha1, sha256).
mar 15 16:30:13 stationara dbus-broker-launch[957]: Ready
mar 15 16:30:13 stationara systemd[1]: Finished TPM PCR Barrier (Initialization).
mar 15 16:30:13 stationara systemd[1]: Reached target Basic System.
mar 15 16:30:13 stationara systemd[1]: Starting Network Manager...
mar 15 16:30:13 stationara systemd[1]: Starting Bluetooth service...
mar 15 16:30:13 stationara systemd[1]: Starting User Login Management...
mar 15 16:30:13 stationara systemd[1]: Starting TPM PCR Barrier (User)...
mar 15 16:30:13 stationara systemd-pcrextend[965]: Extended PCR index 11 with 'ready' (banks sha1, sha256).
mar 15 16:30:13 stationara systemd[1]: Finished TPM PCR Barrier (User).
mar 15 16:30:13 stationara bluetoothd[962]: Bluetooth daemon 5.86
mar 15 16:30:13 stationara systemd[1]: Started Bluetooth service.
mar 15 16:30:13 stationara bluetoothd[962]: Starting SDP server
mar 15 16:30:13 stationara systemd[1]: Reached target Bluetooth Support.
mar 15 16:30:13 stationara systemd-logind[964]: New seat seat0.
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.6370] NetworkManager (version 1.56.0-1) is starting... (boot:0e1d4548-7652-45e8-ae80-da8e5d685d84)
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.6370] Read config: /etc/NetworkManager/NetworkManager.conf, /usr/lib/NetworkManager/conf.d/20-connectivity.conf
mar 15 16:30:13 stationara kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
mar 15 16:30:13 stationara kernel: Bluetooth: BNEP filters: protocol multicast
mar 15 16:30:13 stationara kernel: Bluetooth: BNEP socket layer initialized
mar 15 16:30:13 stationara bluetoothd[962]: Bluetooth management interface 1.23 initialized
mar 15 16:30:13 stationara bluetoothd[962]: Battery Provider Manager created
mar 15 16:30:13 stationara kernel: Bluetooth: MGMT ver 1.23
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.6403] manager[0x55e0a3d36a10]: monitoring kernel firmware directory '/lib/firmware'.
mar 15 16:30:13 stationara systemd-logind[964]: Watching system buttons on /dev/input/event1 (Power Button)
mar 15 16:30:13 stationara systemd-logind[964]: Watching system buttons on /dev/input/event0 (Power Button)
mar 15 16:30:13 stationara systemd-logind[964]: Watching system buttons on /dev/input/event2 (Logitech USB Receiver)
mar 15 16:30:13 stationara systemd-logind[964]: Watching system buttons on /dev/input/event4 (Logitech USB Receiver Consumer Control)
mar 15 16:30:13 stationara systemd-logind[964]: Watching system buttons on /dev/input/event5 (Logitech USB Receiver System Control)
mar 15 16:30:13 stationara systemd[1]: Starting Hostname Service...
mar 15 16:30:13 stationara kernel: NET: Registered PF_ALG protocol family
mar 15 16:30:13 stationara systemd[1]: Started User Login Management.
mar 15 16:30:13 stationara bluetoothd[962]: Failed to set default system config for hci0
mar 15 16:30:13 stationara systemd[1]: Started Hostname Service.
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.6980] hostname: hostname: using hostnamed
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.6981] hostname: static hostname changed from (none) to "stationara"
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.6983] dns-mgr: init: dns=default,systemd-resolved rc-manager=symlink
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.6993] manager[0x55e0a3d36a10]: rfkill: Wi-Fi hardware radio set enabled
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.6993] manager[0x55e0a3d36a10]: rfkill: WWAN hardware radio set enabled
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7014] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.56.0-1/libnm-device-plugin-adsl.so)
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7047] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.56.0-1/libnm-device-plugin-bluetooth.so)
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7059] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.56.0-1/libnm-device-plugin-ovs.so)
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7297] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.56.0-1/libnm-device-plugin-team.so)
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7305] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.56.0-1/libnm-device-plugin-wifi.so)
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7310] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.56.0-1/libnm-device-plugin-wwan.so)
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7311] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7312] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7312] manager: Networking is enabled by state file
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7314] settings: Loaded settings plugin: keyfile (internal)
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7322] dhcp: init: Using DHCP client 'internal'
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7323] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1)
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7329] device (lo): state change: unmanaged -> unavailable (reason 'connection-assumed', managed-type: 'external')
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7331] device (lo): state change: unavailable -> disconnected (reason 'connection-assumed', managed-type: 'external')
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7334] device (lo): Activation: starting connection 'lo' (ac23cade-f74a-4c7e-9411-69cbacdcebf5)
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7340] manager: (enp4s0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7345] settings: (enp4s0): created default wired connection 'Trådbunden anslutning 1'
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7345] device (enp4s0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
mar 15 16:30:13 stationara systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7622] manager: (wg0): new WireGuard device (/org/freedesktop/NetworkManager/Devices/3)
mar 15 16:30:13 stationara systemd[1]: Started Network Manager Script Dispatcher Service.
mar 15 16:30:13 stationara kernel: wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.
mar 15 16:30:13 stationara kernel: wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7829] device (wg0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
mar 15 16:30:13 stationara NetworkManager[961]: <warn>  [1773588613.7835] device (wg0): connectivity: "/proc/sys/net/ipv4/conf/wg0/rp_filter" is set to "1". This might break connectivity checking for IPv4 on this device
mar 15 16:30:13 stationara systemd[1]: Started Network Manager.
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7837] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7842] ovsdb: disconnected from ovsdb
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7842] device (lo): state change: disconnected -> prepare (reason 'none', managed-type: 'external')
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7844] device (lo): state change: prepare -> config (reason 'none', managed-type: 'external')
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7844] device (lo): state change: config -> ip-config (reason 'none', managed-type: 'external')
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7849] device (lo): state change: ip-config -> ip-check (reason 'none', managed-type: 'external')
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7853] device (wg0): state change: unavailable -> disconnected (reason 'none', managed-type: 'full')
mar 15 16:30:13 stationara systemd[1]: Reached target Network.
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7856] policy: auto-activating connection 'Personligt Nätverk' (70e92610-7271-4387-bc4c-59716f04463c)
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7858] device (wg0): Activation: starting connection 'Personligt Nätverk' (70e92610-7271-4387-bc4c-59716f04463c)
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7858] device (lo): state change: ip-check -> secondaries (reason 'none', managed-type: 'external')
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7859] device (wg0): state change: disconnected -> prepare (reason 'none', managed-type: 'full')
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7860] manager: NetworkManager state is now CONNECTING
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7861] device (wg0): state change: prepare -> config (reason 'none', managed-type: 'full')
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7863] device (wg0): state change: config -> need-auth (reason 'none', managed-type: 'full')
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7864] device (lo): state change: secondaries -> activated (reason 'none', managed-type: 'external')
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7868] device (lo): Activation: successful, device activated.
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7876] device (wg0): state change: need-auth -> prepare (reason 'none', managed-type: 'full')
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.7878] device (wg0): state change: prepare -> config (reason 'none', managed-type: 'full')
mar 15 16:30:13 stationara systemd[1]: Starting Network Manager Wait Online...
mar 15 16:30:13 stationara systemd[1]: Starting Network Time Service...
mar 15 16:30:13 stationara systemd[1]: Starting Permit User Sessions...
mar 15 16:30:13 stationara systemd[1]: Finished Permit User Sessions.
mar 15 16:30:13 stationara systemd[1]: Started Greeter daemon.
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.8113] device (wg0): state change: config -> ip-config (reason 'none', managed-type: 'full')
mar 15 16:30:13 stationara ntpd[1024]: ntpd 4.2.8p18@1.4062-o Thu Oct 23 00:08:33 UTC 2025 (1): Starting
mar 15 16:30:13 stationara ntpd[1024]: Command line: /usr/bin/ntpd -g -u ntp:ntp
mar 15 16:30:13 stationara ntpd[1024]: ----------------------------------------------------
mar 15 16:30:13 stationara ntpd[1024]: ntp-4 is maintained by Network Time Foundation,
mar 15 16:30:13 stationara ntpd[1024]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
mar 15 16:30:13 stationara ntpd[1024]: corporation.  Support and training for ntp-4 are
mar 15 16:30:13 stationara ntpd[1024]: available at https://www.nwtime.org/support
mar 15 16:30:13 stationara ntpd[1024]: ----------------------------------------------------
mar 15 16:30:13 stationara ntpd[1024]: DEBUG behavior is enabled - a violation of any diagnostic assertion will cause ntpd to abort
mar 15 16:30:13 stationara systemd-resolved[742]: wg0: Bus client set default route setting: yes
mar 15 16:30:13 stationara systemd-resolved[742]: wg0: Bus client set DNS server list to: 10.208.220.1
mar 15 16:30:13 stationara systemd-resolved[742]: /etc/hosts:5: hostname "$HOSTNAME.localdomain" is not valid, ignoring.
mar 15 16:30:13 stationara systemd-resolved[742]: /etc/hosts:5: hostname "$HOSTNAME" is not valid, ignoring.
mar 15 16:30:13 stationara systemd-resolved[742]: /etc/hosts:5: line is missing any valid hostnames
mar 15 16:30:13 stationara ntpd[1034]: proto: precision = 0.040 usec (-24)
mar 15 16:30:13 stationara ntpd[1034]: basedate set to 2025-10-11
mar 15 16:30:13 stationara ntpd[1034]: gps base set to 2025-10-12 (week 2388)
mar 15 16:30:13 stationara ntpd[1034]: initial drift restored to -17.150116
mar 15 16:30:13 stationara ntpd[1034]: Listen and drop on 0 v6wildcard [::]:123
mar 15 16:30:13 stationara ntpd[1034]: Listen and drop on 1 v4wildcard 0.0.0.0:123
mar 15 16:30:13 stationara ntpd[1034]: Listen normally on 2 lo 127.0.0.1:123
mar 15 16:30:13 stationara ntpd[1034]: Listen normally on 3 lo [::1]:123
mar 15 16:30:13 stationara ntpd[1034]: Listen normally on 4 wg0 [fe80::c4a9:bf60:cbef:7fc0%3]:123
mar 15 16:30:13 stationara ntpd[1034]: Listening on routing socket on fd #21 for interface updates
mar 15 16:30:13 stationara ntpd[1034]: kernel reports TIME_ERROR: 0x41: Clock Unsynchronized
mar 15 16:30:13 stationara ntpd[1034]: kernel reports TIME_ERROR: 0x41: Clock Unsynchronized
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.8166] device (wg0): state change: ip-config -> ip-check (reason 'none', managed-type: 'full')
mar 15 16:30:13 stationara systemd[1]: Started Network Time Service.
mar 15 16:30:13 stationara greetd[1032]: config: Config { file: ConfigFile { terminal: ConfigTerminal { vt: Specific(1), switch: true }, general: ConfigGeneral { source_profile: true, runfile: "/run/greetd.run", service: "greetd" }, default_session: ConfigSession { command: "dbus-run-session cage -sd -- startgreeter.sh", user: "greeter", service: "greetd-greeter" }, initial_session: None }, internal: ConfigInternal { session_worker: 0 } }
mar 15 16:30:13 stationara greetd[1037]: config: Config { file: ConfigFile { terminal: ConfigTerminal { vt: None, switch: false }, general: ConfigGeneral { source_profile: true, runfile: "/run/greetd.run", service: "greetd" }, default_session: ConfigSession { command: "", user: "", service: "" }, initial_session: None }, internal: ConfigInternal { session_worker: 11 } }
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.8205] device (wg0): state change: ip-check -> secondaries (reason 'none', managed-type: 'full')
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.8205] device (wg0): state change: secondaries -> activated (reason 'none', managed-type: 'full')
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.8207] manager: NetworkManager state is now CONNECTED_LOCAL
mar 15 16:30:13 stationara NetworkManager[961]: <info>  [1773588613.8208] device (wg0): Activation: successful, device activated.
mar 15 16:30:13 stationara dbus-broker-launch[957]: Activation request for 'org.freedesktop.home1' failed: The systemd unit 'dbus-org.freedesktop.home1.service' could not be found.
mar 15 16:30:13 stationara greetd[1037]: pam_unix(greetd:session): session opened for user greeter(uid=965) by greeter(uid=0)
mar 15 16:30:13 stationara systemd-logind[964]: New session '1' of user 'greeter' with class 'greeter' and type 'tty'.
mar 15 16:30:13 stationara systemd[1]: Created slice User Slice of UID 965.
mar 15 16:30:13 stationara systemd[1]: Starting User Runtime Directory /run/user/965...
mar 15 16:30:13 stationara systemd[1]: Finished User Runtime Directory /run/user/965.
mar 15 16:30:13 stationara systemd[1]: Starting User Manager for UID 965...
mar 15 16:30:13 stationara (systemd)[1048]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[greeter] ruser=[<unknown>] rhost=[<unknown>]
mar 15 16:30:13 stationara (systemd)[1048]: pam_unix(systemd-user:session): session opened for user greeter(uid=965) by greeter(uid=0)
mar 15 16:30:13 stationara systemd-logind[964]: New session '2' of user 'greeter' with class 'manager-early' and type 'unspecified'.
mar 15 16:30:14 stationara systemd[1048]: Queued start job for default target Main User Target.
mar 15 16:30:14 stationara systemd[1048]: Created slice User Application Slice.
mar 15 16:30:14 stationara systemd[1048]: Reached target Paths.
mar 15 16:30:14 stationara systemd[1048]: Reached target Timers.
mar 15 16:30:14 stationara systemd[1048]: Starting D-Bus User Message Bus Socket...
mar 15 16:30:14 stationara systemd[1048]: Listening on GnuPG network certificate management daemon.
mar 15 16:30:14 stationara systemd[1048]: Listening on GNOME Keyring daemon.
mar 15 16:30:14 stationara systemd[1048]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
mar 15 16:30:14 stationara systemd[1048]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
mar 15 16:30:14 stationara systemd[1048]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
mar 15 16:30:14 stationara systemd[1048]: Listening on GnuPG cryptographic agent and passphrase cache.
mar 15 16:30:14 stationara systemd[1048]: Listening on GnuPG public key management service.
mar 15 16:30:14 stationara systemd[1048]: Listening on p11-kit server.
mar 15 16:30:14 stationara systemd[1048]: Listening on PipeWire PulseAudio.
mar 15 16:30:14 stationara systemd[1048]: Listening on PipeWire Multimedia System Sockets.
mar 15 16:30:14 stationara systemd[1048]: Listening on Query the User Interactively for a Password.
mar 15 16:30:14 stationara systemd[1048]: Listening on Disk Image Download Service Socket.
mar 15 16:30:14 stationara systemd[1048]: Listening on Virtual Machine and Container Registration Service Socket.
mar 15 16:30:14 stationara systemd[1048]: Listening on D-Bus User Message Bus Socket.
mar 15 16:30:14 stationara systemd[1048]: Reached target Sockets.
mar 15 16:30:14 stationara systemd[1048]: Reached target Basic System.
mar 15 16:30:14 stationara systemd[1048]: Reached target Main User Target.
mar 15 16:30:14 stationara systemd[1048]: Startup finished in 145ms.
mar 15 16:30:14 stationara systemd[1]: Started User Manager for UID 965.
mar 15 16:30:14 stationara systemd[1]: Started Session 1 of User greeter.
mar 15 16:30:14 stationara systemd[1]: Starting RealtimeKit Scheduling Policy Service...
mar 15 16:30:14 stationara systemd[1]: Started RealtimeKit Scheduling Policy Service.
mar 15 16:30:14 stationara rtkit-daemon[1182]: Handling system-suspend using logind.
mar 15 16:30:14 stationara systemd[1048]: Created slice User Core Session Slice.
mar 15 16:30:14 stationara systemd[1048]: Starting D-Bus User Message Bus...
mar 15 16:30:14 stationara systemd[1048]: Started PipeWire Multimedia Service.
mar 15 16:30:14 stationara dbus-broker-launch[1186]: Service file '/usr/share/dbus-1/services/org.erikreider.swaync.service' is not named after the D-Bus name 'org.freedesktop.Notifications'.
mar 15 16:30:14 stationara dbus-broker-launch[1186]: Service file '/usr/share/dbus-1/services/org.xfce.Thunar.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
mar 15 16:30:14 stationara dbus-broker-launch[1186]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
mar 15 16:30:14 stationara dbus-broker-launch[1186]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
mar 15 16:30:14 stationara dbus-broker-launch[1186]: Service file '/usr/share/dbus-1/services/org.xfce.Tumbler.Cache1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Cache1'.
mar 15 16:30:14 stationara dbus-broker-launch[1186]: Service file '/usr/share/dbus-1/services/org.xfce.Tumbler.Manager1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Manager1'.
mar 15 16:30:14 stationara dbus-broker-launch[1186]: Service file '/usr/share/dbus-1/services/org.xfce.Tumbler.Thumbnailer1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Thumbnailer1'.
mar 15 16:30:14 stationara systemd[1048]: Started D-Bus User Message Bus.
mar 15 16:30:14 stationara dbus-broker-launch[1186]: Ready
mar 15 16:30:14 stationara systemd[1048]: Started Multimedia Service Session Manager.
mar 15 16:30:14 stationara systemd[1]: Starting Authorization Manager...
mar 15 16:30:14 stationara wireplumber[1189]: wp-state: failed to create directory /.local/state/wireplumber: Åtkomst nekas
mar 15 16:30:14 stationara wireplumber[1189]: wp-state: failed to create directory /.local/state/wireplumber: Åtkomst nekas
mar 15 16:30:14 stationara wireplumber[1189]: wp-state: failed to create directory /.local/state/wireplumber: Åtkomst nekas
mar 15 16:30:14 stationara wireplumber[1189]: wp-state: failed to create directory /.local/state/wireplumber: Åtkomst nekas
mar 15 16:30:14 stationara wireplumber[1189]: wp-state: failed to create directory /.local/state/wireplumber: Åtkomst nekas
mar 15 16:30:14 stationara wireplumber[1189]: wp-state: failed to create directory /.local/state/wireplumber: Åtkomst nekas
mar 15 16:30:14 stationara polkitd[1192]: Started polkitd version 127
mar 15 16:30:14 stationara systemd[1]: Started Authorization Manager.
mar 15 16:30:14 stationara rtkit-daemon[1182]: Successfully made thread 1187 of process 1187 owned by '965' high priority at nice level -11.
mar 15 16:30:14 stationara rtkit-daemon[1182]: Successfully made thread 1191 of process 1187 owned by '965' RT at priority 20.
mar 15 16:30:14 stationara rtkit-daemon[1182]: Successfully made thread 1189 of process 1189 owned by '965' high priority at nice level -11.
mar 15 16:30:14 stationara rtkit-daemon[1182]: Successfully made thread 1198 of process 1189 owned by '965' RT at priority 20.
mar 15 16:30:15 stationara wireplumber[1189]: default: Failed to get percentage from UPower: org.freedesktop.DBus.Error.NameHasNoOwner
mar 15 16:30:15 stationara wireplumber[1189]: wp-device: SPA handle 'api.libcamera.enum.manager' could not be loaded; is it installed?
mar 15 16:30:15 stationara wireplumber[1189]: s-monitors-libcamera: PipeWire's libcamera SPA plugin is missing or broken. Some camera types may not be supported.
mar 15 16:30:15 stationara kernel: Bluetooth: RFCOMM TTY layer initialized
mar 15 16:30:15 stationara kernel: Bluetooth: RFCOMM socket layer initialized
mar 15 16:30:15 stationara kernel: Bluetooth: RFCOMM ver 1.11
mar 15 16:30:15 stationara bluetoothd[962]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/ldac
mar 15 16:30:15 stationara bluetoothd[962]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSink/aptx_hd
mar 15 16:30:15 stationara bluetoothd[962]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aptx_hd
mar 15 16:30:15 stationara bluetoothd[962]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSink/aptx
mar 15 16:30:15 stationara bluetoothd[962]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aptx
mar 15 16:30:15 stationara bluetoothd[962]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSink/aac
mar 15 16:30:15 stationara bluetoothd[962]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aac
mar 15 16:30:15 stationara bluetoothd[962]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSink/opus_g
mar 15 16:30:15 stationara bluetoothd[962]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/opus_g
mar 15 16:30:15 stationara bluetoothd[962]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSink/sbc
mar 15 16:30:15 stationara bluetoothd[962]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/sbc
mar 15 16:30:15 stationara bluetoothd[962]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aptx_ll_1
mar 15 16:30:15 stationara bluetoothd[962]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aptx_ll_0
mar 15 16:30:15 stationara bluetoothd[962]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_1
mar 15 16:30:15 stationara bluetoothd[962]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_0
mar 15 16:30:15 stationara bluetoothd[962]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/faststream
mar 15 16:30:15 stationara bluetoothd[962]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/faststream_duplex
mar 15 16:30:15 stationara bluetoothd[962]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSink/opus_05
mar 15 16:30:15 stationara bluetoothd[962]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/opus_05
mar 15 16:30:15 stationara bluetoothd[962]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSink/opus_05_duplex
mar 15 16:30:15 stationara bluetoothd[962]: Endpoint registered: sender=:1.22 path=/MediaEndpoint/A2DPSource/opus_05_duplex
mar 15 16:30:16 stationara systemd[1]: systemd-rfkill.service: Deactivated successfully.
mar 15 16:30:16 stationara kernel: igb 0000:04:00.0 enp4s0: igb: enp4s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
mar 15 16:30:16 stationara ntpd[1034]: Listen normally on 5 wg0 10.208.220.2:123
mar 15 16:30:16 stationara ntpd[1034]: new interface(s) found: waking up resolver
mar 15 16:30:16 stationara NetworkManager[961]: <info>  [1773588616.8910] device (enp4s0): carrier: link connected
mar 15 16:30:16 stationara NetworkManager[961]: <info>  [1773588616.8912] device (enp4s0): state change: unavailable -> disconnected (reason 'carrier-changed', managed-type: 'full')
mar 15 16:30:16 stationara NetworkManager[961]: <info>  [1773588616.8927] policy: auto-activating connection 'Trådbunden anslutning 1' (1bdf034a-1369-30bd-9875-c30f6e7d3c19)
mar 15 16:30:16 stationara NetworkManager[961]: <info>  [1773588616.8931] device (enp4s0): Activation: starting connection 'Trådbunden anslutning 1' (1bdf034a-1369-30bd-9875-c30f6e7d3c19)
mar 15 16:30:16 stationara NetworkManager[961]: <info>  [1773588616.8932] device (enp4s0): state change: disconnected -> prepare (reason 'none', managed-type: 'full')
mar 15 16:30:16 stationara NetworkManager[961]: <info>  [1773588616.8934] manager: NetworkManager state is now CONNECTING
mar 15 16:30:16 stationara NetworkManager[961]: <info>  [1773588616.8935] device (enp4s0): state change: prepare -> config (reason 'none', managed-type: 'full')
mar 15 16:30:16 stationara NetworkManager[961]: <info>  [1773588616.8946] device (enp4s0): state change: config -> ip-config (reason 'none', managed-type: 'full')
mar 15 16:30:16 stationara NetworkManager[961]: <info>  [1773588616.8959] dhcp4 (enp4s0): activation: beginning transaction (timeout in 45 seconds)
mar 15 16:30:16 stationara NetworkManager[961]: <info>  [1773588616.9039] dhcp4 (enp4s0): state changed new lease, address=192.168.20.124, acd pending
mar 15 16:30:17 stationara NetworkManager[961]: <info>  [1773588617.0544] dhcp4 (enp4s0): state changed new lease, address=192.168.20.124
mar 15 16:30:17 stationara NetworkManager[961]: <info>  [1773588617.0563] policy: set 'Trådbunden anslutning 1' (enp4s0) as default for IPv4 routing and DNS
mar 15 16:30:17 stationara systemd-resolved[742]: enp4s0: Bus client set search domain list to: lan
mar 15 16:30:17 stationara systemd-resolved[742]: enp4s0: Bus client set default route setting: no
mar 15 16:30:17 stationara systemd-resolved[742]: enp4s0: Bus client set DNS server list to: 192.168.20.205
mar 15 16:30:17 stationara NetworkManager[961]: <info>  [1773588617.0745] device (enp4s0): state change: ip-config -> ip-check (reason 'none', managed-type: 'full')
mar 15 16:30:17 stationara NetworkManager[961]: <info>  [1773588617.0757] device (enp4s0): state change: ip-check -> secondaries (reason 'none', managed-type: 'full')
mar 15 16:30:17 stationara NetworkManager[961]: <info>  [1773588617.0758] device (enp4s0): state change: secondaries -> activated (reason 'none', managed-type: 'full')
mar 15 16:30:17 stationara NetworkManager[961]: <info>  [1773588617.0761] manager: NetworkManager state is now CONNECTED_SITE
mar 15 16:30:17 stationara NetworkManager[961]: <info>  [1773588617.0763] device (enp4s0): Activation: successful, device activated.
mar 15 16:30:17 stationara NetworkManager[961]: <info>  [1773588617.0768] manager: startup complete
mar 15 16:30:17 stationara systemd[1]: Finished Network Manager Wait Online.
mar 15 16:30:17 stationara systemd[1]: Reached target Network is Online.
mar 15 16:30:17 stationara systemd[1]: Starting Notify NFS peers of a restart...
mar 15 16:30:17 stationara systemd[1]: Starting NFS status monitor for NFSv2/3 locking....
mar 15 16:30:17 stationara sm-notify[1279]: Version 2.8.7 starting
mar 15 16:30:17 stationara systemd[1]: Started Notify NFS peers of a restart.
mar 15 16:30:17 stationara rpc.statd[1282]: Version 2.8.7 starting
mar 15 16:30:17 stationara rpc.statd[1282]: Flags: TI-RPC
mar 15 16:30:17 stationara systemd[1]: Started NFS status monitor for NFSv2/3 locking..
mar 15 16:30:17 stationara systemd[1]: Starting Automounts filesystems on demand...
mar 15 16:30:17 stationara (automount)[1284]: autofs.service: Referenced but unset environment variable evaluates to an empty string: OPTIONS
mar 15 16:30:17 stationara systemd[1]: tmp-autoE6WLWy.mount: Deactivated successfully.
mar 15 16:30:17 stationara systemd[1]: Started Automounts filesystems on demand.
mar 15 16:30:17 stationara systemd[1]: Reached target Multi-User System.
mar 15 16:30:17 stationara systemd[1]: Reached target Graphical Interface.
mar 15 16:30:17 stationara systemd[1]: Startup finished in 22.121s (firmware) + 908ms (loader) + 2.160s (kernel) + 4.432s (initrd) + 6.511s (userspace) = 36.133s.
mar 15 16:30:17 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC= SRC=192.168.20.124 DST=224.0.0.252 LEN=56 TOS=0x00 PREC=0x00 TTL=255 ID=4514 PROTO=UDP SPT=5355 DPT=5355 LEN=36 
mar 15 16:30:17 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC= SRC=192.168.20.124 DST=224.0.0.252 LEN=56 TOS=0x00 PREC=0x00 TTL=255 ID=4518 PROTO=UDP SPT=5355 DPT=5355 LEN=36 
mar 15 16:30:17 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC= SRC=192.168.20.124 DST=224.0.0.252 LEN=56 TOS=0x00 PREC=0x00 TTL=255 ID=4581 PROTO=UDP SPT=5355 DPT=5355 LEN=36 
mar 15 16:30:18 stationara NetworkManager[961]: <info>  [1773588618.0305] dhcp6 (enp4s0): activation: beginning transaction (timeout in 45 seconds)
mar 15 16:30:18 stationara NetworkManager[961]: <info>  [1773588618.0320] policy: set 'Trådbunden anslutning 1' (enp4s0) as default for IPv6 routing and DNS
mar 15 16:30:18 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC= SRC=fe80:0000:0000:0000:9099:517a:e4db:e689 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=76 TC=0 HOPLIMIT=255 FLOWLBL=448449 PROTO=UDP SPT=5355 DPT=5355 LEN=36 
mar 15 16:30:18 stationara NetworkManager[961]: <info>  [1773588618.0442] dhcp6 (enp4s0): state changed new lease, address=fd92:b956:263b::96f 2001:2043:7b4d:2d00::96f
mar 15 16:30:18 stationara systemd[1]: tmp-autoRVKOeU.mount: Deactivated successfully.
mar 15 16:30:18 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC= SRC=fe80:0000:0000:0000:9099:517a:e4db:e689 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=76 TC=0 HOPLIMIT=255 FLOWLBL=448449 PROTO=UDP SPT=5355 DPT=5355 LEN=36 
mar 15 16:30:18 stationara kernel: [UFW BLOCK] IN=enp4s0 OUT= MAC= SRC=fe80:0000:0000:0000:9099:517a:e4db:e689 DST=ff02:0000:0000:0000:0000:0000:0001:0003 LEN=76 TC=0 HOPLIMIT=255 FLOWLBL=448449 PROTO=UDP SPT=5355 DPT=5355 LEN=36 
mar 15 16:30:22 stationara ntpd[1034]: Listen normally on 6 enp4s0 192.168.20.124:123
mar 15 16:30:22 stationara ntpd[1034]: Listen normally on 7 enp4s0 [fd92:b956:263b::96f]:123
mar 15 16:30:22 stationara ntpd[1034]: Listen normally on 8 enp4s0 [2001:2043:7b4d:2d00::96f]:123
mar 15 16:30:22 stationara ntpd[1034]: Listen normally on 9 enp4s0 [2001:2043:7b4d:2d00:4d60:daa3:6681:78e8]:123
mar 15 16:30:22 stationara ntpd[1034]: Listen normally on 10 enp4s0 [fd92:b956:263b:0:294b:7d16:e5ef:7752]:123
mar 15 16:30:22 stationara ntpd[1034]: Listen normally on 11 enp4s0 [fe80::9099:517a:e4db:e689%2]:123
mar 15 16:30:22 stationara ntpd[1034]: 172.232.157.27 local addr 10.208.220.2 -> 192.168.20.124
mar 15 16:30:22 stationara ntpd[1034]: 194.58.200.20 local addr 10.208.220.2 -> 192.168.20.124
mar 15 16:30:22 stationara ntpd[1034]: 176.126.86.247 local addr 10.208.220.2 -> 192.168.20.124
mar 15 16:30:22 stationara ntpd[1034]: 195.72.61.39 local addr 10.208.220.2 -> 192.168.20.124
mar 15 16:30:22 stationara ntpd[1034]: new interface(s) found: waking up resolver
mar 15 16:30:23 stationara systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 15 16:30:27 stationara greetd[1297]: config: Config { file: ConfigFile { terminal: ConfigTerminal { vt: None, switch: false }, general: ConfigGeneral { source_profile: true, runfile: "/run/greetd.run", service: "greetd" }, default_session: ConfigSession { command: "", user: "", service: "" }, initial_session: None }, internal: ConfigInternal { session_worker: 12 } }
mar 15 16:30:35 stationara nfsrahead[1453]: skipping non-NFS device 253:2
mar 15 16:30:35 stationara systemd[1]: Condition check resulted in /dev/disk/by-id/dm-name-shellback being skipped.
mar 15 16:30:35 stationara systemd[1]: Condition check resulted in /dev/disk/by-uuid/2f7d7512-74a7-44cc-851e-3396353082a0 being skipped.
mar 15 16:30:35 stationara systemd[1]: Condition check resulted in /dev/dm-2 being skipped.
mar 15 16:30:35 stationara systemd[1]: Condition check resulted in /dev/disk/by-diskseq/8 being skipped.
mar 15 16:30:35 stationara systemd[1]: Created slice User Slice of UID 1000.
mar 15 16:30:35 stationara systemd[1]: Finished cryptsetup-shellback.service.
mar 15 16:30:35 stationara systemd[1]: Mounting /home/shellback...
mar 15 16:30:35 stationara systemd[1]: Starting User Runtime Directory /run/user/1000...
mar 15 16:30:36 stationara systemd-user-runtime-dir[1470]: Successfully configured disk quota for UID 1000 on /dev/shm to 6.2G
mar 15 16:30:36 stationara systemd[1]: Finished User Runtime Directory /run/user/1000.
mar 15 16:30:36 stationara greetd[1037]: pam_unix(greetd:session): session closed for user greeter
mar 15 16:30:36 stationara systemd[1]: run-user-965-gvfs.mount: Deactivated successfully.
mar 15 16:30:36 stationara systemd[1]: run-user-965-doc.mount: Deactivated successfully.
mar 15 16:30:36 stationara kernel: EXT4-fs (dm-2): mounting with "discard" option, but the device does not support discard
mar 15 16:30:36 stationara kernel: EXT4-fs (dm-2): mounted filesystem 2f7d7512-74a7-44cc-851e-3396353082a0 r/w with ordered data mode. Quota mode: none.
mar 15 16:30:36 stationara systemd[1]: Mounted /home/shellback.
mar 15 16:30:36 stationara systemd[1]: session-1.scope: Deactivated successfully.
mar 15 16:30:36 stationara systemd[1]: session-1.scope: Consumed 743ms CPU time over 21.989s wall clock time, 289.3M memory peak.
mar 15 16:30:36 stationara systemd-logind[964]: Session 1 logged out. Waiting for processes to exit.
mar 15 16:30:36 stationara greetd[1297]: pam_unix(greetd:session): session opened for user shellback(uid=1000) by shellback(uid=0)
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/ldac
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSink/aptx_hd
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aptx_hd
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSink/aptx
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aptx
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSink/aac
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aac
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSink/opus_g
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/opus_g
mar 15 16:30:36 stationara systemd[1]: Starting User Manager for UID 1000...
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSink/sbc
mar 15 16:30:36 stationara systemd-logind[964]: Removed session 1.
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/sbc
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aptx_ll_1
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aptx_ll_0
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_1
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_0
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/faststream
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/faststream_duplex
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSink/opus_05
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/opus_05
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSink/opus_05_duplex
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint unregistered: sender=:1.22 path=/MediaEndpoint/A2DPSource/opus_05_duplex
mar 15 16:30:36 stationara systemd-logind[964]: New session '3' of user 'shellback' with class 'user' and type 'tty'.
mar 15 16:30:36 stationara systemd[1048]: Reached target Sound Card.
mar 15 16:30:36 stationara (systemd)[1485]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[shellback] ruser=[<unknown>] rhost=[<unknown>]
mar 15 16:30:36 stationara (systemd)[1485]: pam_unix(systemd-user:session): session opened for user shellback(uid=1000) by shellback(uid=0)
mar 15 16:30:36 stationara systemd-logind[964]: New session '4' of user 'shellback' with class 'manager' and type 'unspecified'.
mar 15 16:30:36 stationara systemd-xdg-autostart-generator[1522]: Exec binary 'audio-recorder' does not exist: No such file or directory
mar 15 16:30:36 stationara systemd-xdg-autostart-generator[1522]: /home/shellback/.config/autostart/audio-recorder.desktop: not generating unit, executable specified in Exec= does not exist.
mar 15 16:30:36 stationara systemd-xdg-autostart-generator[1522]: Exec binary '/opt/localsend/localsend' does not exist: No such file or directory
mar 15 16:30:36 stationara systemd-xdg-autostart-generator[1522]: /home/shellback/.config/autostart/localsend_app.desktop: not generating unit, executable specified in Exec= does not exist.
mar 15 16:30:36 stationara systemd-xdg-autostart-generator[1522]: Exec binary '/usr/bin/nextcloud' does not exist: No such file or directory
mar 15 16:30:36 stationara systemd-xdg-autostart-generator[1522]: /home/shellback/.config/autostart/Nextcloud.desktop: not generating unit, executable specified in Exec= does not exist.
mar 15 16:30:36 stationara systemd-xdg-autostart-generator[1522]: Exec binary '/usr/bin/nextcloud' does not exist: No such file or directory
mar 15 16:30:36 stationara systemd-xdg-autostart-generator[1522]: /home/shellback/.config/autostart/com.nextcloud.desktopclient.nextcloud.desktop: not generating unit, executable specified in Exec= does not exist.
mar 15 16:30:36 stationara systemd[1485]: Queued start job for default target Main User Target.
mar 15 16:30:36 stationara systemd[1485]: Created slice User Application Slice.
mar 15 16:30:36 stationara systemd[1485]: Created slice User Core Session Slice.
mar 15 16:30:36 stationara systemd[1485]: Reached target Paths.
mar 15 16:30:36 stationara systemd[1485]: Reached target Timers.
mar 15 16:30:36 stationara systemd[1485]: Starting D-Bus User Message Bus Socket...
mar 15 16:30:36 stationara systemd[1485]: Listening on GnuPG network certificate management daemon.
mar 15 16:30:36 stationara systemd[1485]: Listening on GNOME Keyring daemon.
mar 15 16:30:36 stationara systemd[1485]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
mar 15 16:30:36 stationara systemd[1485]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
mar 15 16:30:36 stationara systemd[1485]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
mar 15 16:30:36 stationara systemd[1485]: Listening on GnuPG cryptographic agent and passphrase cache.
mar 15 16:30:36 stationara systemd[1485]: Listening on GnuPG public key management service.
mar 15 16:30:36 stationara systemd[1485]: Listening on p11-kit server.
mar 15 16:30:36 stationara systemd[1485]: Listening on PipeWire PulseAudio.
mar 15 16:30:36 stationara systemd[1485]: Listening on PipeWire Multimedia System Sockets.
mar 15 16:30:36 stationara systemd[1485]: Listening on Query the User Interactively for a Password.
mar 15 16:30:36 stationara systemd[1485]: Listening on Disk Image Download Service Socket.
mar 15 16:30:36 stationara systemd[1485]: Listening on Virtual Machine and Container Registration Service Socket.
mar 15 16:30:36 stationara systemd[1485]: Listening on D-Bus User Message Bus Socket.
mar 15 16:30:36 stationara systemd[1485]: Reached target Sockets.
mar 15 16:30:36 stationara systemd[1485]: Starting D-Bus User Message Bus...
mar 15 16:30:36 stationara dbus-broker-launch[1526]: Service file '/usr/share/dbus-1/services/org.erikreider.swaync.service' is not named after the D-Bus name 'org.freedesktop.Notifications'.
mar 15 16:30:36 stationara dbus-broker-launch[1526]: Service file '/usr/share/dbus-1/services/org.xfce.Thunar.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
mar 15 16:30:36 stationara dbus-broker-launch[1526]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
mar 15 16:30:36 stationara dbus-broker-launch[1526]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
mar 15 16:30:36 stationara dbus-broker-launch[1526]: Service file '/usr/share/dbus-1/services/org.xfce.Tumbler.Cache1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Cache1'.
mar 15 16:30:36 stationara dbus-broker-launch[1526]: Service file '/usr/share/dbus-1/services/org.xfce.Tumbler.Manager1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Manager1'.
mar 15 16:30:36 stationara dbus-broker-launch[1526]: Service file '/usr/share/dbus-1/services/org.xfce.Tumbler.Thumbnailer1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Thumbnailer1'.
mar 15 16:30:36 stationara systemd[1485]: Started D-Bus User Message Bus.
mar 15 16:30:36 stationara dbus-broker-launch[1526]: Ready
mar 15 16:30:36 stationara systemd[1485]: Reached target Basic System.
mar 15 16:30:36 stationara systemd[1485]: Reached target Current graphical user session.
mar 15 16:30:36 stationara systemd[1]: Started User Manager for UID 1000.
mar 15 16:30:36 stationara systemd[1485]: Started PipeWire Multimedia Service.
mar 15 16:30:36 stationara systemd[1]: Started Session 3 of User shellback.
mar 15 16:30:36 stationara systemd[1485]: Started Soteria Polkit Authentication Agent.
mar 15 16:30:36 stationara systemd[1485]: Started Multimedia Service Session Manager.
mar 15 16:30:36 stationara systemd[1485]: Started PipeWire PulseAudio.
mar 15 16:30:36 stationara systemd[1485]: Reached target Main User Target.
mar 15 16:30:36 stationara systemd[1485]: Startup finished in 170ms.
mar 15 16:30:36 stationara rtkit-daemon[1182]: Successfully made thread 1528 of process 1528 owned by '1000' high priority at nice level -11.
mar 15 16:30:36 stationara rtkit-daemon[1182]: Successfully made thread 1547 of process 1528 owned by '1000' RT at priority 20.
mar 15 16:30:36 stationara rtkit-daemon[1182]: Successfully made thread 1532 of process 1532 owned by '1000' high priority at nice level -11.
mar 15 16:30:36 stationara rtkit-daemon[1182]: Successfully made thread 1556 of process 1532 owned by '1000' RT at priority 20.
mar 15 16:30:36 stationara rtkit-daemon[1182]: Successfully made thread 1531 of process 1531 owned by '1000' high priority at nice level -11.
mar 15 16:30:36 stationara rtkit-daemon[1182]: Successfully made thread 1559 of process 1531 owned by '1000' RT at priority 20.
mar 15 16:30:36 stationara systemd[1485]: Starting AT-SPI D-Bus Bus...
mar 15 16:30:36 stationara systemd[1485]: Starting Blueman Applet...
mar 15 16:30:36 stationara systemd[1485]: Starting Certificate and Key Storage...
mar 15 16:30:36 stationara systemd[1485]: Starting Secret Storage Service...
mar 15 16:30:36 stationara soteria[1529]: 2026-03-15T15:30:36.293820Z  INFO no configuration file found, using default configuration instead
mar 15 16:30:36 stationara soteria[1529]: 2026-03-15T15:30:36.293855Z  INFO using agent socket at /run/polkit/agent-helper.socket
mar 15 16:30:36 stationara soteria[1529]: 2026-03-15T15:30:36.293898Z  INFO Registering authentication agent with locale: sv_SE.utf-8
mar 15 16:30:36 stationara systemd[1485]: Started blueman-applet.service.
mar 15 16:30:36 stationara soteria[1529]: Error: Could not get XDG session id, make sure that it is set and try again.
mar 15 16:30:36 stationara soteria[1529]: Caused by:
mar 15 16:30:36 stationara soteria[1529]:     environment variable not found
mar 15 16:30:36 stationara soteria[1529]: Location:
mar 15 16:30:36 stationara soteria[1529]:     src/main.rs:88:18
mar 15 16:30:36 stationara systemd[1485]: Started bnk2pta.service.
mar 15 16:30:36 stationara systemd[1485]: Started clapboard.service.
mar 15 16:30:36 stationara systemd[1485]: Started swaync.service.
mar 15 16:30:36 stationara systemd[1485]: Started wljoywake.service.
mar 15 16:30:36 stationara systemd[1485]: Started wpaperd.service.
mar 15 16:30:36 stationara systemd[1485]: Starting User folders update...
mar 15 16:30:36 stationara (clapboard)[1587]: clapboard.service: Unable to locate executable '/usr/bin/clapboard': No such file or directory
mar 15 16:30:36 stationara (clapboard)[1587]: clapboard.service: Failed at step EXEC spawning /usr/bin/clapboard: No such file or directory
mar 15 16:30:36 stationara systemd[1485]: Started Blueman Applet.
mar 15 16:30:36 stationara systemd[1485]: soteria.service: Main process exited, code=exited, status=1/FAILURE
mar 15 16:30:36 stationara systemd[1485]: soteria.service: Failed with result 'exit-code'.
mar 15 16:30:36 stationara (wljoywake)[1590]: wljoywake.service: Unable to locate executable '/usr/bin/wljoywake': No such file or directory
mar 15 16:30:36 stationara (wljoywake)[1590]: wljoywake.service: Failed at step EXEC spawning /usr/bin/wljoywake: No such file or directory
mar 15 16:30:36 stationara systemd[1485]: app-at\x2dspi\x2ddbus\x2dbus@autostart.service: Skipped due to 'exec-condition'.
mar 15 16:30:36 stationara systemd[1485]: Condition check resulted in AT-SPI D-Bus Bus being skipped.
mar 15 16:30:36 stationara systemd[1485]: app-gnome\x2dkeyring\x2dpkcs11@autostart.service: Skipped due to 'exec-condition'.
mar 15 16:30:36 stationara systemd[1485]: Condition check resulted in Certificate and Key Storage being skipped.
mar 15 16:30:36 stationara systemd[1485]: app-gnome\x2dkeyring\x2dsecrets@autostart.service: Skipped due to 'exec-condition'.
mar 15 16:30:36 stationara systemd[1485]: Condition check resulted in Secret Storage Service being skipped.
mar 15 16:30:36 stationara systemd[1485]: clapboard.service: Main process exited, code=exited, status=203/EXEC
mar 15 16:30:36 stationara systemd[1485]: clapboard.service: Failed with result 'exit-code'.
mar 15 16:30:36 stationara systemd[1485]: wljoywake.service: Main process exited, code=exited, status=203/EXEC
mar 15 16:30:36 stationara systemd[1485]: wljoywake.service: Failed with result 'exit-code'.
mar 15 16:30:36 stationara systemd[1485]: Finished User folders update.
mar 15 16:30:36 stationara systemd[1485]: Reached target Session services which should run early before the graphical session is brought up.
mar 15 16:30:36 stationara systemd[1485]: Starting A scrollable-tiling Wayland compositor...
mar 15 16:30:36 stationara wpaperd[1591]: ERROR [wpaperd]
mar 15 16:30:36 stationara wpaperd[1591]:    0: Failed to connect to the Wayland server
mar 15 16:30:36 stationara wpaperd[1591]:    1: Could not find wayland compositor
mar 15 16:30:36 stationara wpaperd[1591]: Suggestion: Are you running a wayland compositor?
mar 15 16:30:36 stationara wpaperd[1591]: Backtrace omitted. Run with RUST_BACKTRACE=1 environment variable to display it.
mar 15 16:30:36 stationara wpaperd[1591]: Run with RUST_BACKTRACE=full to include source snippets.
mar 15 16:30:36 stationara wpaperd[1591]: Error:
mar 15 16:30:36 stationara wpaperd[1591]:    0: Failed to connect to the Wayland server
mar 15 16:30:36 stationara wpaperd[1591]:    1: Could not find wayland compositor
mar 15 16:30:36 stationara wpaperd[1591]: Suggestion: Are you running a wayland compositor?
mar 15 16:30:36 stationara wpaperd[1591]: Backtrace omitted. Run with RUST_BACKTRACE=1 environment variable to display it.
mar 15 16:30:36 stationara wpaperd[1591]: Run with RUST_BACKTRACE=full to include source snippets.
mar 15 16:30:36 stationara systemd[1485]: wpaperd.service: Main process exited, code=exited, status=1/FAILURE
mar 15 16:30:36 stationara systemd[1485]: wpaperd.service: Failed with result 'exit-code'.
mar 15 16:30:36 stationara niri[1599]: 2026-03-15T15:30:36.366252Z  INFO niri: starting version 25.11 (b35bcae)
mar 15 16:30:36 stationara swaync[1588]: Starting SwayNotificationCenter version swaync 0.12.4
mar 15 16:30:36 stationara systemd[1485]: Starting Virtual filesystem service...
mar 15 16:30:36 stationara systemd[1485]: Started Virtual filesystem service.
mar 15 16:30:36 stationara niri[1599]: 2026-03-15T15:30:36.393747Z DEBUG niri_config: loaded config from "/home/shellback/.config/niri/config.kdl"
mar 15 16:30:36 stationara swaync[1588]: Failed to open display
mar 15 16:30:36 stationara systemd[1485]: swaync.service: Main process exited, code=exited, status=1/FAILURE
mar 15 16:30:36 stationara systemd[1485]: swaync.service: Failed with result 'exit-code'.
mar 15 16:30:36 stationara niri[1599]: 2026-03-15T15:30:36.516710Z  INFO niri::backend::tty: using as the render node: "/dev/dri/renderD128"
mar 15 16:30:36 stationara niri[1599]: 2026-03-15T15:30:36.537996Z DEBUG niri::backend::tty: adding device: 57857 "/dev/dri/card1"
mar 15 16:30:36 stationara niri[1599]: 2026-03-15T15:30:36.538036Z DEBUG niri::backend::tty: this is the primary node
mar 15 16:30:36 stationara blueman-applet[1584]: gtk_icon_theme_get_for_screen: assertion 'GDK_IS_SCREEN (screen)' failed
mar 15 16:30:36 stationara blueman-applet[1584]: Traceback (most recent call last):
mar 15 16:30:36 stationara blueman-applet[1584]:   File "/usr/bin/blueman-applet", line 39, in <module>
mar 15 16:30:36 stationara blueman-applet[1584]:     app = BluemanApplet()
mar 15 16:30:36 stationara blueman-applet[1584]:   File "/usr/lib/python3.14/site-packages/blueman/main/Applet.py", line 28, in __init__
mar 15 16:30:36 stationara blueman-applet[1584]:     setup_icon_path()
mar 15 16:30:36 stationara blueman-applet[1584]:     ~~~~~~~~~~~~~~~^^
mar 15 16:30:36 stationara blueman-applet[1584]:   File "/usr/lib/python3.14/site-packages/blueman/Functions.py", line 140, in setup_icon_path
mar 15 16:30:36 stationara blueman-applet[1584]:     ic.prepend_search_path(ICON_PATH)
mar 15 16:30:36 stationara blueman-applet[1584]:     ^^^^^^^^^^^^^^^^^^^^^^
mar 15 16:30:36 stationara blueman-applet[1584]: AttributeError: 'NoneType' object has no attribute 'prepend_search_path'
mar 15 16:30:36 stationara blueman-applet[1569]: gtk_icon_theme_get_for_screen: assertion 'GDK_IS_SCREEN (screen)' failed
mar 15 16:30:36 stationara blueman-applet[1569]: Traceback (most recent call last):
mar 15 16:30:36 stationara blueman-applet[1569]:   File "/usr/bin/blueman-applet", line 39, in <module>
mar 15 16:30:36 stationara blueman-applet[1569]:     app = BluemanApplet()
mar 15 16:30:36 stationara blueman-applet[1569]:   File "/usr/lib/python3.14/site-packages/blueman/main/Applet.py", line 28, in __init__
mar 15 16:30:36 stationara blueman-applet[1569]:     setup_icon_path()
mar 15 16:30:36 stationara blueman-applet[1569]:     ~~~~~~~~~~~~~~~^^
mar 15 16:30:36 stationara blueman-applet[1569]:   File "/usr/lib/python3.14/site-packages/blueman/Functions.py", line 140, in setup_icon_path
mar 15 16:30:36 stationara blueman-applet[1569]:     ic.prepend_search_path(ICON_PATH)
mar 15 16:30:36 stationara blueman-applet[1569]:     ^^^^^^^^^^^^^^^^^^^^^^
mar 15 16:30:36 stationara blueman-applet[1569]: AttributeError: 'NoneType' object has no attribute 'prepend_search_path'
mar 15 16:30:36 stationara niri[1599]: 2026-03-15T15:30:36.568606Z DEBUG niri::backend::tty: got render node: renderD128
mar 15 16:30:36 stationara niri[1599]: 2026-03-15T15:30:36.568622Z DEBUG niri::backend::tty: initializing the primary renderer
mar 15 16:30:36 stationara niri[1599]: 2026-03-15T15:30:36.581488Z  WARN niri::backend::tty: error binding wl-display in EGL: EglExtensionNotSupported(["EGL_WL_bind_wayland_display"])
mar 15 16:30:36 stationara niri[1599]: 2026-03-15T15:30:36.590787Z DEBUG niri::backend::tty: device changed: 57857
mar 15 16:30:36 stationara systemd[1485]: blueman-applet.service: Main process exited, code=exited, status=1/FAILURE
mar 15 16:30:36 stationara systemd[1485]: blueman-applet.service: Failed with result 'exit-code'.
mar 15 16:30:36 stationara systemd[1485]: wpaperd.service: Scheduled restart job, restart counter is at 1.
mar 15 16:30:36 stationara systemd[1485]: app-blueman@autostart.service: Main process exited, code=exited, status=1/FAILURE
mar 15 16:30:36 stationara systemd[1485]: app-blueman@autostart.service: Failed with result 'exit-code'.
mar 15 16:30:36 stationara systemd[1485]: Started wpaperd.service.
mar 15 16:30:36 stationara niri[1599]: 2026-03-15T15:30:36.601253Z DEBUG niri::backend::tty: new connector: DP-1 "Samsung Electric Company LC34G55T HNTY105709"
mar 15 16:30:36 stationara niri[1599]: 2026-03-15T15:30:36.601443Z DEBUG niri::backend::tty: connecting connector: DP-1
mar 15 16:30:36 stationara niri[1599]: 2026-03-15T15:30:36.601459Z DEBUG niri::backend::tty: picking mode: Mode { name: "3440x1440", clock: 879710, size: (3440, 1440), hsync: (3488, 3520, 3600), vsync: (1467, 1475, 1481), hskew: 0, vscan: 0, vrefresh: 165, mode_type: ModeTypeFlags(PREFERRED | DRIVER) }
mar 15 16:30:36 stationara niri[1599]: 2026-03-15T15:30:36.601859Z  WARN niri::backend::tty: cannot enable VRR because connector does not support it
mar 15 16:30:36 stationara niri[1599]: 2026-03-15T15:30:36.602766Z DEBUG niri::niri: putting output DP-1 at x=0 y=0
mar 15 16:30:36 stationara niri[1599]: 2026-03-15T15:30:36.602830Z  INFO niri: listening on Wayland socket: wayland-1
mar 15 16:30:36 stationara niri[1599]: 2026-03-15T15:30:36.602835Z  INFO niri: IPC listening on: /run/user/1000/niri.wayland-1.1599.sock
mar 15 16:30:36 stationara niri[1599]: 2026-03-15T15:30:36.610874Z  INFO niri: listening on X11 socket: :0
mar 15 16:30:36 stationara wpaperd[1655]: ERROR [wpaperd]
mar 15 16:30:36 stationara wpaperd[1655]:    0: Failed to connect to the Wayland server
mar 15 16:30:36 stationara wpaperd[1655]:    1: Could not find wayland compositor
mar 15 16:30:36 stationara wpaperd[1655]: Suggestion: Are you running a wayland compositor?
mar 15 16:30:36 stationara wpaperd[1655]: Backtrace omitted. Run with RUST_BACKTRACE=1 environment variable to display it.
mar 15 16:30:36 stationara wpaperd[1655]: Run with RUST_BACKTRACE=full to include source snippets.
mar 15 16:30:36 stationara wpaperd[1655]: Error:
mar 15 16:30:36 stationara wpaperd[1655]:    0: Failed to connect to the Wayland server
mar 15 16:30:36 stationara wpaperd[1655]:    1: Could not find wayland compositor
mar 15 16:30:36 stationara wpaperd[1655]: Suggestion: Are you running a wayland compositor?
mar 15 16:30:36 stationara wpaperd[1655]: Backtrace omitted. Run with RUST_BACKTRACE=1 environment variable to display it.
mar 15 16:30:36 stationara wpaperd[1655]: Run with RUST_BACKTRACE=full to include source snippets.
mar 15 16:30:36 stationara systemd[1485]: wpaperd.service: Main process exited, code=exited, status=1/FAILURE
mar 15 16:30:36 stationara systemd[1485]: wpaperd.service: Failed with result 'exit-code'.
mar 15 16:30:36 stationara systemd[1485]: Started A scrollable-tiling Wayland compositor.
mar 15 16:30:36 stationara systemd[1485]: Reached target Startup of XDG autostart applications.
mar 15 16:30:36 stationara systemd[1485]: Started ashell.service.
mar 15 16:30:36 stationara systemd[1485]: Started nwg-drawer.service.
mar 15 16:30:36 stationara systemd[1485]: Started swayidle.service.
mar 15 16:30:36 stationara systemd[1485]: Started app-niri-dbus\x2dupdate\x2dactivation\x2denvironment-1693.scope.
mar 15 16:30:36 stationara systemd[1485]: Started app-niri-gnome\x2dkeyring\x2ddaemon-1689.scope.
mar 15 16:30:36 stationara systemd[1]: Starting Locale Service...
mar 15 16:30:36 stationara systemd[1485]: Started app-niri-xwayland\x2dsatellite-1686.scope.
mar 15 16:30:36 stationara systemd[1485]: Starting Accessibility services bus...
mar 15 16:30:36 stationara swayidle[1685]: 2026-03-15 16:30:36 - [Line 277] Failed to parse get BlockInhibited property: Invalid argument
mar 15 16:30:36 stationara systemd[1485]: Started app-niri-setWaylandTheme.sh-1696.scope.
mar 15 16:30:36 stationara systemd[1485]: Started GNOME Keyring daemon.
mar 15 16:30:36 stationara systemd[1485]: Started Accessibility services bus.
mar 15 16:30:36 stationara gnome-keyring-daemon[1709]: gnome-keyring-daemon: no process capabilities, insecure memory might get used
mar 15 16:30:36 stationara gnome-keyring-daemon[1709]: GNOME_KEYRING_CONTROL=/run/user/1000/keyring
mar 15 16:30:36 stationara systemd[1485]: Starting User preferences database...
mar 15 16:30:36 stationara gnome-keyring-daemon[1709]: The Secret Service was already initialized
mar 15 16:30:36 stationara gnome-keyring-daemon[1709]: The Secret Service was already initialized
mar 15 16:30:36 stationara gnome-keyring-daemon[1698]: discover_other_daemon: 1
mar 15 16:30:36 stationara wireplumber[1531]: default: Failed to get percentage from UPower: org.freedesktop.DBus.Error.NameHasNoOwner
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/ldac
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSink/aptx_hd
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/aptx_hd
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSink/aptx
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/aptx
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSink/aac
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/aac
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSink/opus_g
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/opus_g
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSink/sbc
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/sbc
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/aptx_ll_1
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/aptx_ll_0
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_1
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_0
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/faststream
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/faststream_duplex
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSink/opus_05
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/opus_05
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSink/opus_05_duplex
mar 15 16:30:36 stationara bluetoothd[962]: Endpoint registered: sender=:1.38 path=/MediaEndpoint/A2DPSource/opus_05_duplex
mar 15 16:30:36 stationara ashell[1682]: INFO [ashell::config] Decoding config file "/home/shellback/.config/ashell/config.toml"
mar 15 16:30:36 stationara ashell[1682]: INFO [ashell::config] Config file loaded successfully
mar 15 16:30:36 stationara systemd[1485]: Started User preferences database.
mar 15 16:30:36 stationara wireplumber[1531]: wp-device: SPA handle 'api.libcamera.enum.manager' could not be loaded; is it installed?
mar 15 16:30:36 stationara wireplumber[1531]: s-monitors-libcamera: PipeWire's libcamera SPA plugin is missing or broken. Some camera types may not be supported.
mar 15 16:30:36 stationara nwg-drawer[1684]: time="2026-03-15T16:30:36+01:00" level=info msg="term: alacritty"
mar 15 16:30:36 stationara nwg-drawer[1684]: time="2026-03-15T16:30:36+01:00" level=info msg="lang: sv_SE"
mar 15 16:30:36 stationara nwg-drawer[1684]: time="2026-03-15T16:30:36+01:00" level=info msg="Config dir: /home/shellback/.config/nwg-drawer"
mar 15 16:30:36 stationara nwg-drawer[1684]: time="2026-03-15T16:30:36+01:00" level=info msg="Data dir: /usr/share/nwg-drawer"
mar 15 16:30:36 stationara nwg-drawer[1684]: time="2026-03-15T16:30:36+01:00" level=info msg="Found 0 pinned items"
mar 15 16:30:36 stationara nwg-drawer[1684]: time="2026-03-15T16:30:36+01:00" level=info msg="Data dir: /usr/share/nwg-drawer"
mar 15 16:30:36 stationara nwg-drawer[1684]: time="2026-03-15T16:30:36+01:00" level=info msg="Found 98 desktop files"
mar 15 16:30:36 stationara systemd[1]: Started Locale Service.
mar 15 16:30:36 stationara nwg-drawer[1684]: time="2026-03-15T16:30:36+01:00" level=info msg="Skipped 6 duplicates; 44 .desktop entries hidden by \"NoDisplay=true\""
mar 15 16:30:36 stationara nwg-drawer[1684]: time="2026-03-15T16:30:36+01:00" level=info msg="/home/shellback/.config/nwg-drawer/preferred-apps.json file not found"
mar 15 16:30:36 stationara nwg-drawer[1684]: time="2026-03-15T16:30:36+01:00" level=info msg="/home/shellback/.config/nwg-drawer/excluded-dirs file not found"
mar 15 16:30:36 stationara dbus-broker-launch[1800]: Ready
mar 15 16:30:36 stationara systemd[1485]: wpaperd.service: Scheduled restart job, restart counter is at 2.
mar 15 16:30:36 stationara systemd[1485]: Started wpaperd.service.
mar 15 16:30:36 stationara nwg-drawer[1684]: time="2026-03-15T16:30:36+01:00" level=info msg="Preferring dark theme variants"
mar 15 16:30:36 stationara nwg-drawer[1684]: time="2026-03-15T16:30:36+01:00" level=info msg="Using style from /home/shellback/.config/nwg-drawer/drawer.css"
mar 15 16:30:36 stationara nwg-drawer[1684]: time="2026-03-15T16:30:36+01:00" level=info msg="Setting GTK layer shell keyboard mode to default: exclusive"
mar 15 16:30:36 stationara ashell[1682]: WARN [ashell::services::brightness] No backlight devices found
mar 15 16:30:36 stationara ashell[1682]: ERROR [ashell::services::brightness] Failed to access to brightness files: No backlight devices found
mar 15 16:30:36 stationara ashell[1682]: ERROR [ashell::services::brightness] Brightness service error
mar 15 16:30:36 stationara ashell[1682]: WARN [ashell::services::privacy] Failed to connect to webcam: No such file or directory (os error 2)
mar 15 16:30:36 stationara systemd[1]: Starting Daemon for power management...
mar 15 16:30:36 stationara systemd[1485]: Started swaync.service.
mar 15 16:30:36 stationara niri[1599]: 2026-03-15T15:30:36.832504Z DEBUG niri::utils::xwayland::satellite: connection to X11 abstract socket; spawning xwayland-satellite
mar 15 16:30:36 stationara upowerd[1847]: The "Ignore" CriticalPowerAction setting is considered risky: abrupt power loss due to battery exhaustion may lead to data corruption. Use AllowRiskyCriticalPowerAction=false to disable support for risky settings.
mar 15 16:30:36 stationara swaync[1846]: Starting SwayNotificationCenter version swaync 0.12.4
mar 15 16:30:36 stationara systemd[1485]: Starting Portal service...
mar 15 16:30:36 stationara kernel: netfs: FS-Cache loaded
mar 15 16:30:36 stationara systemd[1485]: Starting sandboxed app permission store...
mar 15 16:30:36 stationara systemd[1485]: Starting Virtual filesystem metadata service...
mar 15 16:30:36 stationara systemd[1485]: Started sandboxed app permission store.
mar 15 16:30:36 stationara systemd[1485]: Starting flatpak document portal service...
mar 15 16:30:36 stationara systemd[1485]: Started Virtual filesystem metadata service.
mar 15 16:30:36 stationara kernel: RPC: Registered named UNIX socket transport module.
mar 15 16:30:36 stationara kernel: RPC: Registered udp transport module.
mar 15 16:30:36 stationara kernel: RPC: Registered tcp transport module.
mar 15 16:30:36 stationara kernel: RPC: Registered tcp-with-tls transport module.
mar 15 16:30:36 stationara kernel: RPC: Registered tcp NFSv4.1 backchannel transport module.
mar 15 16:30:36 stationara systemd[1485]: Started flatpak document portal service.
mar 15 16:30:36 stationara ashell[1682]: WARN [wgpu_hal::gles::egl] Re-initializing Gles context due to Wayland window
mar 15 16:30:36 stationara systemd[1485]: Starting Portal service (GTK/GNOME implementation)...
mar 15 16:30:36 stationara systemd[1]: Started Daemon for power management.
mar 15 16:30:36 stationara ashell[1682]: WARN [ashell::services::upower] Failed to get power profile: org.freedesktop.DBus.Error.ServiceUnknown: The name is not activatable
mar 15 16:30:36 stationara systemd[1485]: Created slice Slice /app/dbus-:1.34-org.a11y.atspi.Registry.
mar 15 16:30:36 stationara systemd[1485]: Started dbus-:1.34-org.a11y.atspi.Registry@0.service.
mar 15 16:30:36 stationara systemd[1485]: Started Portal service (GTK/GNOME implementation).
mar 15 16:30:37 stationara kernel: nfs: Deprecated parameter 'intr'
mar 15 16:30:37 stationara at-spi2-registryd[2109]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
mar 15 16:30:37 stationara kernel: Key type dns_resolver registered
mar 15 16:30:37 stationara systemd[1485]: Started Portal service.
mar 15 16:30:37 stationara swaync[1846]: configModel.vala:513: Loading Config: "/home/shellback/.config/swaync/config.json"
mar 15 16:30:37 stationara nwg-drawer[1684]: time="2026-03-15T16:30:37+01:00" level=warning msg="Cannot load icon \"com.github.mtkennerly.ludusavi\" for \"Ludusavi\": Ikonen ”com.github.mtkennerly.ludusavi” finns inte i temat Nordzy-dark"
mar 15 16:30:37 stationara nwg-drawer[1684]: time="2026-03-15T16:30:37+01:00" level=warning msg="Cannot load icon \"lutris_project-diablo-2\" for \"Project Diablo 2\": Ikonen ”lutris_project-diablo-2” finns inte i temat Nordzy-dark"
mar 15 16:30:37 stationara nwg-drawer[1684]: time="2026-03-15T16:30:37+01:00" level=info msg="Using XDG user dirs from /home/shellback/.config/user-dirs.dirs"
mar 15 16:30:37 stationara kernel: NFS: Registering the id_resolver key type
mar 15 16:30:37 stationara kernel: Key type id_resolver registered
mar 15 16:30:37 stationara kernel: Key type id_legacy registered
mar 15 16:30:37 stationara swaync[1846]: functions.vala:104: Loading CSS: "/etc/xdg/swaync/style.css"
mar 15 16:30:37 stationara swaync[1846]: functions.vala:117: Loading CSS: "/home/shellback/.config/swaync/style.css"
mar 15 16:30:37 stationara swaync[1846]: Theme parser error: style.css:80:3-19: No property named "-gtk-icon-effect"
mar 15 16:30:37 stationara swaync[1846]: Theme parser error: style.css:103:3-19: No property named "-gtk-icon-effect"
mar 15 16:30:37 stationara swaync[1846]: Theme parser error: style.css:111:3-19: No property named "-gtk-icon-effect"
mar 15 16:30:37 stationara swaync[1846]: Theme parser error: style.css:154:3-19: No property named "-gtk-icon-effect"
mar 15 16:30:37 stationara swaync[1846]: baseWidget.vala:47: notifications: Config not found! Using default config...
mar 15 16:30:37 stationara nwg-drawer[1684]: time="2026-03-15T16:30:37+01:00" level=info msg="UI created in 490 ms. Thank you for your patience."
mar 15 16:30:37 stationara swaync[1846]: factory.vala:55: Loading widget: mpris
mar 15 16:30:37 stationara swaync[1846]: baseWidget.vala:47: volume: Config not found! Using default config...
mar 15 16:30:37 stationara swaync[1846]: factory.vala:55: Loading widget: volume
mar 15 16:30:37 stationara swaync[1846]: factory.vala:55: Loading widget: title
mar 15 16:30:37 stationara swaync[1846]: factory.vala:55: Loading widget: dnd
mar 15 16:30:37 stationara swaync[1846]: factory.vala:55: Loading widget: inhibitors
mar 15 16:30:37 stationara swaync[1846]: factory.vala:17: Loading widget: widget-notifications
mar 15 16:30:37 stationara swaync[1846]: baseWidget.vala:47: notifications: Config not found! Using default config...
mar 15 16:30:37 stationara nfsrahead[2599]: setting /mnt/MediaServer readahead to 128
mar 15 16:30:38 stationara systemd[1485]: soteria.service: Scheduled restart job, restart counter is at 1.
mar 15 16:30:38 stationara systemd[1485]: Started Soteria Polkit Authentication Agent.
mar 15 16:30:38 stationara soteria[2638]: 2026-03-15T15:30:38.608664Z  INFO no configuration file found, using default configuration instead
mar 15 16:30:38 stationara soteria[2638]: 2026-03-15T15:30:38.608691Z  INFO using agent socket at /run/polkit/agent-helper.socket
mar 15 16:30:38 stationara soteria[2638]: 2026-03-15T15:30:38.608737Z  INFO Registering authentication agent with locale: sv_SE.utf8
mar 15 16:30:38 stationara soteria[2638]: 2026-03-15T15:30:38.610652Z  INFO Registered as authentication provider.
mar 15 16:30:38 stationara soteria[2638]: 2026-03-15T15:30:38.617267Z  INFO loading css stylesheet from /home/shellback/.config/soteria/style.css
mar 15 16:30:39 stationara systemd[1485]: Started app-niri-nwg\x2ddrawer-2690.scope.
mar 15 16:30:43 stationara systemd[1]: systemd-hostnamed.service: Deactivated successfully.
mar 15 16:30:46 stationara systemd[1]: Stopping User Manager for UID 965...
mar 15 16:30:46 stationara systemd[1048]: Activating special unit Exit the Session...
mar 15 16:30:46 stationara systemd[1048]: Stopped target Main User Target.
mar 15 16:30:46 stationara systemd[1048]: Stopped target Sound Card.
mar 15 16:30:46 stationara systemd[1048]: Stopping Multimedia Service Session Manager...
mar 15 16:30:46 stationara systemd[1048]: Stopped Multimedia Service Session Manager.
mar 15 16:30:46 stationara systemd[1048]: wireplumber.service: Consumed 230ms CPU time over 31.549s wall clock time, 99.5M memory peak.
mar 15 16:30:46 stationara systemd[1048]: Stopping PipeWire Multimedia Service...
mar 15 16:30:46 stationara systemd[1048]: Stopped PipeWire Multimedia Service.
mar 15 16:30:46 stationara systemd[1048]: Stopped target Basic System.
mar 15 16:30:46 stationara systemd[1048]: Stopped target Paths.
mar 15 16:30:46 stationara systemd[1048]: Stopped target Sockets.
mar 15 16:30:46 stationara systemd[1048]: Stopped target Timers.
mar 15 16:30:46 stationara systemd[1048]: Closed GnuPG network certificate management daemon.
mar 15 16:30:46 stationara systemd[1048]: Closed GNOME Keyring daemon.
mar 15 16:30:46 stationara systemd[1048]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
mar 15 16:30:46 stationara systemd[1048]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
mar 15 16:30:46 stationara systemd[1048]: Closed GnuPG cryptographic agent (ssh-agent emulation).
mar 15 16:30:46 stationara systemd[1048]: Closed GnuPG cryptographic agent and passphrase cache.
mar 15 16:30:46 stationara systemd[1048]: Closed GnuPG public key management service.
mar 15 16:30:46 stationara systemd[1048]: Closed p11-kit server.
mar 15 16:30:46 stationara systemd[1048]: Closed PipeWire PulseAudio.
mar 15 16:30:46 stationara systemd[1048]: Closed PipeWire Multimedia System Sockets.
mar 15 16:30:46 stationara systemd[1048]: Closed Query the User Interactively for a Password.
mar 15 16:30:46 stationara systemd[1048]: Closed Disk Image Download Service Socket.
mar 15 16:30:46 stationara systemd[1048]: Closed Virtual Machine and Container Registration Service Socket.
mar 15 16:30:46 stationara dbus-broker[1188]: Dispatched 327 messages @ 1(±3)μs / message.
mar 15 16:30:46 stationara systemd[1048]: Stopping D-Bus User Message Bus...
mar 15 16:30:46 stationara systemd[1048]: Stopped D-Bus User Message Bus.
mar 15 16:30:46 stationara systemd[1048]: Removed slice User Core Session Slice.
mar 15 16:30:46 stationara systemd[1048]: session.slice: Consumed 274ms CPU time over 31.572s wall clock time, 107.8M memory peak.
mar 15 16:30:46 stationara systemd[1048]: Closed D-Bus User Message Bus Socket.
mar 15 16:30:46 stationara systemd[1048]: Removed slice User Application Slice.
mar 15 16:30:46 stationara systemd[1048]: Reached target Shutdown.
mar 15 16:30:46 stationara systemd[1048]: Finished Exit the Session.
mar 15 16:30:46 stationara systemd[1048]: Reached target Exit the Session.
mar 15 16:30:46 stationara systemd-logind[964]: Removed session 2.
mar 15 16:30:46 stationara (sd-pam)[1051]: pam_unix(systemd-user:session): session closed for user greeter
mar 15 16:30:46 stationara systemd[1]: user@965.service: Deactivated successfully.
mar 15 16:30:46 stationara systemd[1]: Stopped User Manager for UID 965.
mar 15 16:30:46 stationara systemd[1]: user@965.service: Consumed 479ms CPU time over 32.445s wall clock time, 113.9M memory peak.
mar 15 16:30:46 stationara systemd[1]: Stopping User Runtime Directory /run/user/965...
mar 15 16:30:46 stationara systemd[1]: run-user-965.mount: Deactivated successfully.
mar 15 16:30:46 stationara systemd[1]: user-runtime-dir@965.service: Deactivated successfully.
mar 15 16:30:46 stationara systemd[1]: Stopped User Runtime Directory /run/user/965.
mar 15 16:30:46 stationara systemd[1]: Removed slice User Slice of UID 965.
mar 15 16:30:46 stationara systemd[1]: user-965.slice: Consumed 1.238s CPU time over 32.480s wall clock time, 402.3M memory peak.
mar 15 16:30:48 stationara nwg-drawer[1684]: time="2026-03-15T16:30:48+01:00" level=info msg="Executing command: \"/usr/bin/env\"; args: [\"-S\" \"code-oss --enable-features=WebRTCPipeWireCapturer --ozone-platform-hint=auto --gtk-version=4\"]\n"
mar 15 16:30:48 stationara nwg-drawer[1684]: time="2026-03-15T16:30:48+01:00" level=warning msg="Cannot load icon \"com.github.mtkennerly.ludusavi\" for \"Ludusavi\": Ikonen ”com.github.mtkennerly.ludusavi” finns inte i temat Nordzy-dark"
mar 15 16:30:48 stationara nwg-drawer[1684]: time="2026-03-15T16:30:48+01:00" level=warning msg="Cannot load icon \"lutris_project-diablo-2\" for \"Project Diablo 2\": Ikonen ”lutris_project-diablo-2” finns inte i temat Nordzy-dark"
mar 15 16:30:49 stationara systemd[1485]: Started app-org.chromium.Chromium-2820.scope.
mar 15 16:30:52 stationara systemd[1485]: Started app-niri-nwg\x2ddrawer-3409.scope.
mar 15 16:30:58 stationara nwg-drawer[1684]: time="2026-03-15T16:30:58+01:00" level=info msg="Executing command: \"/usr/bin/env\"; args: [\"-S\" \"/usr/bin/vivaldi-stable --gtk-version=4\"]\n"
mar 15 16:30:58 stationara nwg-drawer[1684]: time="2026-03-15T16:30:58+01:00" level=warning msg="Cannot load icon \"com.github.mtkennerly.ludusavi\" for \"Ludusavi\": Ikonen ”com.github.mtkennerly.ludusavi” finns inte i temat Nordzy-dark"
mar 15 16:30:58 stationara nwg-drawer[1684]: time="2026-03-15T16:30:58+01:00" level=warning msg="Cannot load icon \"lutris_project-diablo-2\" for \"Project Diablo 2\": Ikonen ”lutris_project-diablo-2” finns inte i temat Nordzy-dark"
mar 15 16:30:59 stationara systemd[1485]: Started app-com.vivaldi.Vivaldi-3691.scope.
mar 15 16:30:59 stationara systemd[1485]: Created slice Slice /app/dbus-:1.1-org.gnome.keyring.SystemPrompter.
mar 15 16:30:59 stationara systemd[1485]: Started dbus-:1.1-org.gnome.keyring.SystemPrompter@0.service.
mar 15 16:30:59 stationara gcr-prompter[3898]: Gcr: bus acquired: org.gnome.keyring.SystemPrompter
mar 15 16:30:59 stationara gcr-prompter[3898]: Gcr: registering prompter
mar 15 16:30:59 stationara gcr-prompter[3898]: Gcr: bus acquired: org.gnome.keyring.PrivatePrompter
mar 15 16:30:59 stationara gcr-prompter[3898]: Gcr: acquired name: org.gnome.keyring.SystemPrompter
mar 15 16:30:59 stationara gcr-prompter[3898]: Gcr: received BeginPrompting call from callback /org/gnome/keyring/Prompt/p2@:1.26
mar 15 16:30:59 stationara gcr-prompter[3898]: Gcr: preparing a prompt for callback /org/gnome/keyring/Prompt/p2@:1.26
mar 15 16:30:59 stationara gcr-prompter[3898]: Gcr: creating new GcrPromptDialog prompt
mar 15 16:30:59 stationara gcr-prompter[3898]: Gcr: automatically selecting secret exchange protocol
mar 15 16:30:59 stationara gcr-prompter[3898]: Gcr: generating public key
mar 15 16:30:59 stationara gcr-prompter[3898]: Gcr: beginning the secret exchange: [sx-aes-1]\npublic=O3uBycsan/vEsXmmlj1C0YLr2iYJZWyw1fjQRZRNxXfmwvlhDWqUOJBHRSu6KFsvWG0jEHBQdJBfFypZ7eGlnkXgaYr47zQZlh2d/yBS+bg04qMypqO+ziI/FlROk5eg75yoUa59VrRdXndfccI496s+OWGc+n+1YBHNReBgDWrO22mt8V3Eqn8a6NEr4dMZzVczzPTo6iLdWGyarh1ucVWubPchwMZXikziD3XU6nkiG0hS9njdaFXlm+p63r0S\n
mar 15 16:30:59 stationara gcr-prompter[3898]: Gcr: calling the PromptReady method on /org/gnome/keyring/Prompt/p2@:1.26
mar 15 16:30:59 stationara gcr-prompter[3898]: Gcr: acquired name: org.gnome.keyring.PrivatePrompter
mar 15 16:30:59 stationara gcr-prompter[3898]: Gcr: returned from the PromptReady method on /org/gnome/keyring/Prompt/p2@:1.26
mar 15 16:30:59 stationara gcr-prompter[3898]: Gcr: received PerformPrompt call from callback /org/gnome/keyring/Prompt/p2@:1.26
mar 15 16:30:59 stationara gcr-prompter[3898]: Gcr: receiving secret exchange: [sx-aes-1]\npublic=Q6Jn0gUkVSsS4R3C+XUOetbw8Eixi/uIeqRRrd5F2fyKBCY/Dyn5GijyoRig11ubPHMEepKt4R+RdMBRHFshzCO4VC8C9HNWQqEuo3LV2kPXpgTfXefoRmvw9sSnQnq+y6O6RJvShePez5yzyTq9K2KrkmXDiFi/u8sRY8FFGipgiwD7FgABTXszjAAqduSje9Vf1y0svbBtX+CHP+cEJ70Lp6QWfXMI27wrQTnAo6mLIFdV3ud/k9hOh+eKnnG+\n
mar 15 16:30:59 stationara gcr-prompter[3898]: Gcr: deriving shared transport key
mar 15 16:30:59 stationara gcr-prompter[3898]: Gcr: deriving transport key
mar 15 16:30:59 stationara gcr-prompter[3898]: Gcr: starting password prompt for callback /org/gnome/keyring/Prompt/p2@:1.26
mar 15 16:31:06 stationara systemd[1]: systemd-localed.service: Deactivated successfully.
mar 15 16:31:09 stationara gcr-prompter[3898]: Gcr: completed password prompt for callback :1.26@/org/gnome/keyring/Prompt/p2
mar 15 16:31:09 stationara gcr-prompter[3898]: Gcr: encrypting data
mar 15 16:31:09 stationara gcr-prompter[3898]: Gcr: sending the secret exchange: [sx-aes-1]\npublic=O3uBycsan/vEsXmmlj1C0YLr2iYJZWyw1fjQRZRNxXfmwvlhDWqUOJBHRSu6KFsvWG0jEHBQdJBfFypZ7eGlnkXgaYr47zQZlh2d/yBS+bg04qMypqO+ziI/FlROk5eg75yoUa59VrRdXndfccI496s+OWGc+n+1YBHNReBgDWrO22mt8V3Eqn8a6NEr4dMZzVczzPTo6iLdWGyarh1ucVWubPchwMZXikziD3XU6nkiG0hS9njdaFXlm+p63r0S\nsecret=+YMmWM3GtOJbJu1Rfmw9ug==\niv=fYV2siNlnrrF6mZ98oB4VQ==\n
mar 15 16:31:09 stationara gcr-prompter[3898]: Gcr: calling the PromptReady method on /org/gnome/keyring/Prompt/p2@:1.26
mar 15 16:31:09 stationara gcr-prompter[3898]: Gcr: returned from the PromptReady method on /org/gnome/keyring/Prompt/p2@:1.26
mar 15 16:31:09 stationara gcr-prompter[3898]: Gcr: received PerformPrompt call from callback /org/gnome/keyring/Prompt/p2@:1.26
mar 15 16:31:09 stationara gcr-prompter[3898]: Gcr: stopping prompting for operation /org/gnome/keyring/Prompt/p2@:1.26
mar 15 16:31:09 stationara gcr-prompter[3898]: Gcr: closing the prompt
mar 15 16:31:09 stationara gcr-prompter[3898]: Gcr: stopping prompting for operation /org/gnome/keyring/Prompt/p2@:1.26
mar 15 16:31:09 stationara gcr-prompter[3898]: Gcr: couldn't find the callback for prompting operation /org/gnome/keyring/Prompt/p2@:1.26
mar 15 16:31:09 stationara gcr-prompter[3898]: Gcr: stopping prompting for operation /org/gnome/keyring/Prompt/p2@:1.26
mar 15 16:31:09 stationara gcr-prompter[3898]: Gcr: couldn't find the callback for prompting operation /org/gnome/keyring/Prompt/p2@:1.26
mar 15 16:31:09 stationara gcr-prompter[3898]: Gcr: stopping prompting for operation /org/gnome/keyring/Prompt/p2@:1.26
mar 15 16:31:09 stationara gcr-prompter[3898]: Gcr: couldn't find the callback for prompting operation /org/gnome/keyring/Prompt/p2@:1.26
mar 15 16:31:09 stationara gcr-prompter[3898]: Gcr: calling the PromptDone method on /org/gnome/keyring/Prompt/p2@:1.26, and ignoring reply
mar 15 16:31:18 stationara gcr-prompter[3898]: Gcr: 10 second inactivity timeout, quitting
mar 15 16:31:18 stationara gcr-prompter[3898]: Gcr: unregistering prompter
mar 15 16:31:18 stationara gcr-prompter[3898]: Gcr: disposing prompter
mar 15 16:31:18 stationara gcr-prompter[3898]: Gcr: finalizing prompter
mar 15 16:31:18 stationara systemd[1485]: dbus-:1.1-org.gnome.keyring.SystemPrompter@0.service: Unit process 4015 (bwrap) remains running after unit stopped.
mar 15 16:31:18 stationara systemd[1485]: dbus-:1.1-org.gnome.keyring.SystemPrompter@0.service: Unit process 4017 (bwrap) remains running after unit stopped.
mar 15 16:31:18 stationara systemd[1485]: dbus-:1.1-org.gnome.keyring.SystemPrompter@0.service: Unit process 4018 (glycin-image-rs) remains running after unit stopped.
mar 15 16:31:29 stationara chrome[3691]: [3691:3734:0315/163129.195787:INFO:chromium/chrome/browser/extensions/extension_garbage_collector.cc:188] Garbage collection for extensions on file thread is complete.
mar 15 16:32:07 stationara systemd[1]: mnt-MediaServer.mount: Deactivated successfully.
mar 15 16:33:50 stationara systemd-resolved[742]: Clock change detected. Flushing caches.
mar 15 16:37:51 stationara NetworkManager[961]: <info>  [1773589071.8095] dhcp6 (enp4s0): state changed new lease, address=fd92:b956:263b::96f 2001:2043:7b4d:2d00::96f
mar 15 16:37:51 stationara systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 15 16:37:51 stationara systemd[1]: Started Network Manager Script Dispatcher Service.
mar 15 16:38:01 stationara systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 15 16:39:18 stationara niri[1599]: 2026-03-15T15:39:18.145010Z  INFO niri::niri: locking session
mar 15 16:40:51 stationara systemd[1]: Started Daily Cleanup of Snapper Snapshots.
mar 15 16:40:51 stationara systemd[1]: Starting DBus interface for snapper...
mar 15 16:40:51 stationara systemd[1]: Started DBus interface for snapper.
mar 15 16:40:51 stationara systemd-helper[4486]: Running cleanup for 'root'.
mar 15 16:40:51 stationara systemd-helper[4486]: Running number cleanup for 'root'.
mar 15 16:40:51 stationara systemd-helper[4486]: Running timeline cleanup for 'root'.
mar 15 16:40:51 stationara systemd-helper[4486]: Raderar snapshot från root:
mar 15 16:40:51 stationara systemd-helper[4486]: 1112
mar 15 16:40:51 stationara systemd-helper[4486]: Running empty-pre-post cleanup for 'root'.
mar 15 16:40:51 stationara systemd[1]: snapper-cleanup.service: Deactivated successfully.
mar 15 16:41:51 stationara systemd[1]: snapperd.service: Deactivated successfully.
mar 15 16:41:53 stationara NetworkManager[961]: <info>  [1773589313.3868] dhcp6 (enp4s0): state changed new lease, address=fd92:b956:263b::96f 2001:2043:7b4d:2d00::96f
mar 15 16:41:53 stationara systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 15 16:41:53 stationara systemd[1]: Started Network Manager Script Dispatcher Service.
mar 15 16:42:03 stationara systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 15 16:44:11 stationara NetworkManager[961]: <info>  [1773589451.8098] dhcp6 (enp4s0): state changed new lease, address=fd92:b956:263b::96f 2001:2043:7b4d:2d00::96f
mar 15 16:44:11 stationara systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 15 16:44:11 stationara systemd[1]: Started Network Manager Script Dispatcher Service.
mar 15 16:44:21 stationara systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 15 16:45:09 stationara systemd[1]: Starting Cleanup of Temporary Directories...
mar 15 16:45:09 stationara systemd[1]: systemd-tmpfiles-clean.service: Deactivated successfully.
mar 15 16:45:09 stationara systemd[1]: Finished Cleanup of Temporary Directories.
mar 15 16:53:41 stationara NetworkManager[961]: <info>  [1773590021.8093] dhcp6 (enp4s0): state changed new lease, address=fd92:b956:263b::96f 2001:2043:7b4d:2d00::96f
mar 15 16:53:41 stationara systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 15 16:53:41 stationara systemd[1]: Started Network Manager Script Dispatcher Service.
mar 15 16:53:51 stationara systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 15 16:57:07 stationara niri[1599]: 2026-03-15T15:57:07.391810Z DEBUG niri::backend::tty: device changed: 57857
mar 15 16:57:07 stationara niri[1599]: 2026-03-15T15:57:07.391930Z DEBUG niri::backend::tty: disconnecting connector: "DP-1"
mar 15 16:57:07 stationara niri[1599]: 2026-03-15T15:57:07.474779Z  WARN niri::handlers::layer_shell: no output for new layer surface, closing
mar 15 16:57:07 stationara niri[1599]: 2026-03-15T15:57:07.474836Z  WARN niri::handlers::layer_shell: no output for new layer surface, closing
mar 15 16:57:07 stationara niri[1599]: 2026-03-15T15:57:07.476555Z  WARN niri::utils::xwayland::satellite: xwayland-satellite exited with: exit status: 101
mar 15 16:57:07 stationara systemd[1485]: app-org.chromium.Chromium-2820.scope: Consumed 14.290s CPU time over 26min 17.848s wall clock time, 1.1G memory peak.
mar 15 16:57:08 stationara niri[1599]: 2026-03-15T15:57:08.181037Z DEBUG niri::backend::tty: device changed: 57857
mar 15 16:57:08 stationara niri[1599]: 2026-03-15T15:57:08.199986Z DEBUG niri::backend::tty: new connector: DP-1 "Samsung Electric Company LC34G55T HNTY105709"
mar 15 16:57:08 stationara niri[1599]: 2026-03-15T15:57:08.200004Z DEBUG niri::backend::tty: connecting connector: DP-1
mar 15 16:57:08 stationara niri[1599]: 2026-03-15T15:57:08.200031Z DEBUG niri::backend::tty: picking mode: Mode { name: "3440x1440", clock: 879710, size: (3440, 1440), hsync: (3488, 3520, 3600), vsync: (1467, 1475, 1481), hskew: 0, vscan: 0, vrefresh: 165, mode_type: ModeTypeFlags(PREFERRED | DRIVER) }
mar 15 16:57:08 stationara niri[1599]: 2026-03-15T15:57:08.200738Z  WARN niri::backend::tty: cannot enable VRR because connector does not support it
mar 15 16:57:08 stationara niri[1599]: 2026-03-15T15:57:08.202091Z DEBUG niri::niri: putting output DP-1 at x=0 y=0
mar 15 16:57:19 stationara niri[1599]: 2026-03-15T15:57:19.941691Z  INFO niri::niri: unlocking session
mar 15 16:57:48 stationara systemd[1485]: Started app-niri-nwg\x2ddrawer-4663.scope.
mar 15 16:57:51 stationara nwg-drawer[1684]: time="2026-03-15T16:57:51+01:00" level=info msg="Executing command: \"/usr/bin/env\"; args: [\"-S\" \"thunar\"]\n"
mar 15 16:57:51 stationara nwg-drawer[1684]: time="2026-03-15T16:57:51+01:00" level=warning msg="Cannot load icon \"com.github.mtkennerly.ludusavi\" for \"Ludusavi\": Ikonen ”com.github.mtkennerly.ludusavi” finns inte i temat Nordzy-dark"
mar 15 16:57:51 stationara nwg-drawer[1684]: time="2026-03-15T16:57:51+01:00" level=warning msg="Cannot load icon \"lutris_project-diablo-2\" for \"Project Diablo 2\": Ikonen ”lutris_project-diablo-2” finns inte i temat Nordzy-dark"
mar 15 16:57:51 stationara systemd[1485]: Starting Xfce configuration service...
mar 15 16:57:51 stationara systemd[1485]: Started Xfce configuration service.
mar 15 16:57:51 stationara systemd[1485]: Starting Virtual filesystem service - disk device monitor...
mar 15 16:57:51 stationara systemd[1]: Starting Disk Manager...
mar 15 16:57:51 stationara kernel: nvme nvme0: using unchecked data buffer
mar 15 16:57:52 stationara kernel: block nvme0n1: No UUID available providing old NGUID
mar 15 16:57:52 stationara systemd[1]: Started Disk Manager.
mar 15 16:57:52 stationara systemd[1485]: Started Virtual filesystem service - disk device monitor.
mar 15 16:57:52 stationara systemd[1485]: Starting Virtual filesystem service - Media Transfer Protocol monitor...
mar 15 16:57:52 stationara systemd[1485]: Started Virtual filesystem service - Media Transfer Protocol monitor.
mar 15 16:57:52 stationara systemd[1485]: Starting Thumbnailing service...
mar 15 16:57:52 stationara tumblerd[5105]: Failed to load plugin "tumbler-odf-thumbnailer.so": libgsf-1.so.114: kan inte öppna delad objektfil: Filen eller katalogen finns inte
mar 15 16:57:52 stationara tumblerd[5105]: Failed to load plugin "tumbler-raw-thumbnailer.so": libopenrawgnome.so.9: kan inte öppna delad objektfil: Filen eller katalogen finns inte
mar 15 16:57:52 stationara systemd[1485]: Started Thumbnailing service.
mar 15 16:58:21 stationara NetworkManager[961]: <info>  [1773590301.8099] dhcp6 (enp4s0): state changed new lease, address=fd92:b956:263b::96f 2001:2043:7b4d:2d00::96f
mar 15 16:58:21 stationara systemd[1]: Starting Network Manager Script Dispatcher Service...
mar 15 16:58:21 stationara systemd[1]: Started Network Manager Script Dispatcher Service.
mar 15 16:58:31 stationara systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
mar 15 16:59:21 stationara systemd[1485]: Started app-niri-alacritty-7822.scope.
mar 15 16:59:42 stationara sudo[7906]: shellback : TTY=pts/0 ; PWD=/home/shellback ; USER=root ; COMMAND=/usr/bin/journalctl -b --no-pager
mar 15 16:59:42 stationara sudo[7906]: pam_unix(sudo:session): session opened for user root(uid=0) by shellback(uid=1000)

Offline

#9 2026-03-15 16:11:08

shellback
Member
Registered: 2015-01-17
Posts: 39

Re: [SOLVED] Programs recieves SIGPIPE and exits after system goes to idle

seth wrote:

That boot is running since ~90m and it doesn't look like niri has terminated or any process was killed/crashed?

Both code-oss and steam was opened and closed (by itself) during that boot. But that is roughly how I have intepretted the loggs too, it's like I have exited those processes myself, except that I haven't!


seth wrote:

Your dhcp/IPv6 re-leases rather quickly, no idea whether that can cause a problem.

dunno myself, but doubt it...

Offline

#10 2026-03-15 16:44:43

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 74,314

Re: [SOLVED] Programs recieves SIGPIPE and exits after system goes to idle

I have since discovered that code is closing even without the session being locked and the screen goes off, as long as I don't interact with it.

No interaction would trigger swaidle

mar 15 16:30:36 stationara swayidle[1685]: 2026-03-15 16:30:36 - [Line 277] Failed to parse get BlockInhibited property: Invalid argument

Rebooted and opened an code window first thing after login, but that is now gone, and no niri.terminated file in tmp, not yet anyway.

Among those programs that gets exited is code-oss and steam.

Ah, so it only affects https://wiki.archlinux.org/title/Waylan … plications ?
Is xterm affected? (really "xterm", not foot or kitty or alacritty, …)

mar 15 16:57:07 stationara niri[1599]: 2026-03-15T15:57:07.391810Z DEBUG niri::backend::tty: device changed: 57857
################ mar 15 16:57:07 stationara niri[1599]: 2026-03-15T15:57:07.391930Z DEBUG niri::backend::tty: disconnecting connector: "DP-1"
mar 15 16:57:07 stationara niri[1599]: 2026-03-15T15:57:07.474779Z  WARN niri::handlers::layer_shell: no output for new layer surface, closing
mar 15 16:57:07 stationara niri[1599]: 2026-03-15T15:57:07.474836Z  WARN niri::handlers::layer_shell: no output for new layer surface, closing
################ mar 15 16:57:07 stationara niri[1599]: 2026-03-15T15:57:07.476555Z  WARN niri::utils::xwayland::satellite: xwayland-satellite exited with: exit status: 101
mar 15 16:57:07 stationara systemd[1485]: app-org.chromium.Chromium-2820.scope: Consumed 14.290s CPU time over 26min 17.848s wall clock time, 1.1G memory peak.
mar 15 16:57:08 stationara niri[1599]: 2026-03-15T15:57:08.181037Z DEBUG niri::backend::tty: device changed: 57857
################ mar 15 16:57:08 stationara niri[1599]: 2026-03-15T15:57:08.199986Z DEBUG niri::backend::tty: new connector: DP-1 "Samsung Electric Company LC34G55T HNTY105709"
mar 15 16:57:08 stationara niri[1599]: 2026-03-15T15:57:08.200004Z DEBUG niri::backend::tty: connecting connector: DP-1
mar 15 16:57:08 stationara niri[1599]: 2026-03-15T15:57:08.200031Z DEBUG niri::backend::tty: picking mode: Mode { name: "3440x1440", clock: 879710, size: (3440, 1440), hsync: (3488, 3520, 3600), vsync: (1467, 1475, 1481), hskew: 0, vscan: 0, vrefresh: 165, mode_type: ModeTypeFlags(PREFERRED | DRIVER) }
mar 15 16:57:08 stationara niri[1599]: 2026-03-15T15:57:08.200738Z  WARN niri::backend::tty: cannot enable VRR because connector does not support it
mar 15 16:57:08 stationara niri[1599]: 2026-03-15T15:57:08.202091Z DEBUG niri::niri: putting output DP-1 at x=0 y=0
mar 15 16:57:19 stationara niri[1599]: 2026-03-15T15:57:19.941691Z  INFO niri::niri: unlocking session

The monitor disconnects, xwayland-satellite terminates, all xwayland clients lose connection to the X11 server - hence the sigpipe (socket gone)
Possibly https://github.com/Supreeeme/xwayland-s … issues/388 though that's supposed to be fixed in 0.8.1-1 ?

Offline

#11 2026-03-15 17:44:35

shellback
Member
Registered: 2015-01-17
Posts: 39

Re: [SOLVED] Programs recieves SIGPIPE and exits after system goes to idle

seth wrote:

No interaction would trigger swaidle

Would it? I mean, swayidle shouldn't be triggered if I'm not interactiong with code-oss as long as I'm interacting with something else, or?

mar 15 16:30:36 stationara swayidle[1685]: 2026-03-15 16:30:36 - [Line 277] Failed to parse get BlockInhibited property: Invalid argument

I saw this one also, and qwanted it (terrible word, but trying to wash out google as much as I can). Apparently this is a bugg that prevents swayidle to recieve dbussignal from watching movie in firefox for example and hence lock the screen anyway, something I have experienced. Isn't fixed but in the work on it as far as I have understood it.

seth wrote:

hmm... that have escaped my investigation, but might at least explain why certain apps are affected and others not. Steam most certainly runs on xwayland. code-oss should not, considering what arguments I'm passing, se below. But who knows, might have some dependencies that makes the fan hit the roof. Going to investigate according to that wiki page and see what I can find.

code-oss --enable-features=WebRTCPipeWireCapturer --ozone-platform-hint=auto --gtk-version=4 %F
seth wrote:

Is xterm affected? (really "xterm", not foot or kitty or alacritty, …)

I have installed it now to test, returning with finding if and when I find them wink

seth wrote:

The monitor disconnects, xwayland-satellite terminates, all xwayland clients lose connection to the X11 server - hence the sigpipe (socket gone)
Possibly https://github.com/Supreeeme/xwayland-s … issues/388 though that's supposed to be fixed in 0.8.1-1 ?

Is it fixed in 0.8.1-1? the fixed was merged two weeks ago, but 0.8.1 was released in february on the git page. Anyhow, that might explain a thing or two...

During my writing, I have had both code-oss and xterm open. They haven't exited yet, But if that means I have been too inpatient and interacted with them to soon, or that my earlier findings was somewhat faulty is to be seen. I hope for the later, since that bugg mentioned earlier would explain it better then. I will return after some more testing.

(am starting to be a little tired of this after more or less an whole weekend investigating)

Offline

#12 2026-03-15 19:04:05

shellback
Member
Registered: 2015-01-17
Posts: 39

Re: [SOLVED] Programs recieves SIGPIPE and exits after system goes to idle

After siting and reading the web for a longer time, both code-oss and xterm was still up and running. But after leaving and screen goes blank, pop and they both are gone!

I think we can determine that it is indeed xwayland process that is beeing killed, and most probably by that bugg. (makes me feel a little better about myself, just a little)

Compile xwayland-satellite from git source, or whait for next release should prove this theory right or wrong. We'll see what I have energy and time for. Marking this as solved though.

Many thanx seth! You're a lifesaver!

Offline

Board footer

Powered by FluxBB