You are not logged in.

#1 2025-09-13 14:42:17

jl2
Member
From: 47° 18' N 8° 34' E
Registered: 2022-06-01
Posts: 1,301

Adding DDC/CI device at boot fails but later on it does not

I'm trying to set up https://aur.archlinux.org/packages/ddcc … linux-dkms to be able to control the backlight of my monitor.
However, when I enable it automatically at boot it fails, however if I try enabling it manually after boot, it succeeds.
These two are mutually exclusive, I only have one try at activating it, see below for the error.

Basically, to enable I start this module:

[Unit]
Description=Set up backlight via DDC/CI

[Service]
ExecStart=/usr/bin/dash -c "echo 'ddcci 0x37' | tee /sys/class/drm/card?/card?-DP-?/i2c-?/new_device"

[Install]
WantedBy=multi-user.target

I also have this udev rule to set up a static symlink to the corresponding /dev/i2c-? device and to set the brightness to 40, but these aren't too hard:

ACTION=="add|change", SUBSYSTEM=="i2c-dev", ATTRS{name}=="AMDGPU DM aux hw bus 1", SYMLINK+="i2c-backlight", GROUP="video"
# , RUN="/usr/bin/dash -c 'echo ddcci 0x37 | tee /sys/class/drm/card?/card?-DP-?/i2c-?/new_device'"
ACTION=="add", SUBSYSTEM=="backlight", ATTR{brightness}="40"

Running the command via udev doesn't work, and neither does running it from my sway/WM config (e.g. from a "finished" system startup) (note that I use autologin, so this is immediately after startup)

I also added the module to be loaded via /etc/modules-load.d:

ddcci
i2c-dev

This is the error code:

ddcci 7-0037: core device [6e] probe failed: -19

Here are two boot logs, the first one is with manually starting the service later on, and the second one at boot:
https://paste.c-net.org/BurgersHumble
https://paste.c-net.org/HangoutReopened

Also, important to note is that once I try to write to the i2c device, it is not possible to write to the i2c device anymore, no matter if it worked or did not.

Sep 13 16:36:03 PC dash[5172]: tee: /sys/class/drm/card1/card1-DP-1/i2c-7/new_device: Device or resource busy

So, my big question is, what do I have to wait for until I can run it? I only have one shot per boot at it, otherwise I'd just loop it hmm

Last edited by jl2 (2025-09-13 14:43:04)


Why I run Arch? To "BTW I run Arch" the guy one grade younger.
And to let my siblings and cousins laugh at Arsch Linux...

Upload longer text output like this

Offline

#2 2025-11-06 13:44:13

letthiac
Member
Registered: 2025-11-05
Posts: 1

Re: Adding DDC/CI device at boot fails but later on it does not

I also came across with this problem where my external monitor would be detected by ddcutil and i2cdetect -l but it cant be controlled by any brightness program. I wanted to share some of the information I managed to gather and the step I took. This are my detection logs:

i2cdetect -l
i2c-0	i2c       	        NVIDIA i2c adapter 1 at 1:00.0  	        I2C adapter
i2c-1	i2c       	        NVIDIA i2c adapter 2 at 1:00.0  	        I2C adapter
i2c-2	i2c       	        NVIDIA i2c adapter 3 at 1:00.0  	        I2C adapter
i2c-3	i2c       	        NVIDIA i2c adapter 4 at 1:00.0  	        I2C adapter
i2c-4	i2c       	        NVIDIA i2c adapter 5 at 1:00.0  	        I2C adapter
i2c-5	i2c       	        NVIDIA i2c adapter 6 at 1:00.0  	        I2C adapter
i2c-6	unknown   	        NVIDIA GPU I2C adapter          	        N/A
i2c-7	unknown   	        SMBus I801 adapter at 0000:00:1f.3	        N/A

ddcutil detect
Display 1
   I2C bus:  /dev/i2c-2
   DRM_connector:           card1-DP-1
   EDID synopsis:
      Mfg id:               SAM - Samsung Electric Company
      Model:                LS32CG51x
      Product code:         29438  (0x72fe)
      Serial number:        H9JWA0XXXXXX
      Binary serial number: XXXXXXXXX (XXXXXXX)
      Manufacture year:     2022,  Week: 24
   VCP version:             2.1

At first I installed AUR - Package Details: ddcci-driver-linux-dkms 0.4.5-1 that some folks were suggesting over some forums but it didn't work after reboot. Soon after I found that the git ending version:  AUR - Package Details: ddcci-driver-linux-dkms-git 1:0.4.5.r6.g7f8f8e6-1. It had a recent patch that could make that work so I uninstalled the previous and rebooted.

At this point the program I was trying to make work, brillo, still didn't work but at least the monitor was being detected with ddcutil and even the brighness controll worked by  ddcutil --display 1  setvcp 10 +/- 5

While doing some research I came to find the issue #7 of the ddcci-driver...-git where a Yuri was having simillar conditions with a NVIDIA card and the same issues as I had because no backlight devices were being detected:

ls -l /sys/bus/ddcci/devices/
total 0

So I tried his solution and it worked for the most part with two caveats:

  • Changing brigthness didn't work without root permissions.

  • No persistence after second boot.

With no persistence at boot we are mostly at square 1 but we should tackle 1 problem at a time. I then kept trying the ownership setting with the video group making sure my user is part of that group. I don't know how I really managed to get the file owned by video as I don't remember atm. I tried this but it didn't work (at least more than 1 reboot):

/etc/udev/rules.d/backlight.rules

RUN+="/bin/chgrp video /sys/class/backlight/ddcci2/brightness"
RUN+="/bin/chmod g+w /sys/class/backlight/ddcci2/brightness"

I was about to give up when I looked further down the thread and started to read "carefully" (I'm not sure if I'm understanding anything at this point) @psentee's replies. He explains something that has to do with linking udevadm output to a device on /sys/bus/ddcci/devices/ and at /sys/class/drm/ by trial and error but I can't follow on this yet.

At the end I tried the solution posted by Timon where he changes the previous udev rule to this:

/etc/udev/rules.d/99-ddcci.rules

ACTION=="add", SUBSYSTEM=="i2c", IMPORT{parent}="DRIVER"
ACTION=="add", SUBSYSTEM=="i2c", ENV{DRIVER}=="nvidia", ATTR{new_device}="ddcci 0x37"

That's what I'm running right now and it maintains persistence over reboots. Also I no longer need root access as the permissions were fixed. I'm posting some of the logs I have in case it could be of use to someone in the future:


Some info:

  • 1 External Monitor (DP 1.2)

  • GeForce RTX 2060 (DP 1.4)

  • Linux 6.17.7-arch1-1

  • Hyprland 0.51.1 (Wayland)

  • nvidia-open-dkms 580.95.05-1

  • ddcci-driver-linux-dkms-git 1:0.4.5.r6.g7f8f8e6-1

brillo 1.4.13-1
ddcci-driver-linux-dkms-git 1:0.4.5.r8.gbbb7553-1
ddcutil 2.2.1-1

journalctl

...
Nov 06 09:57:03 kernel: Linux version 6.17.7-arch1-1 (linux@archlinux) (gcc (GCC) 15.2.1 20250813, GNU ld (GNU Binutils) 2.45.0) #1 SMP PREEMPT_DYNAMIC Sun, 02 Nov 2025 17:27:22 +0000
Nov 06 09:57:03 kernel: Command line: quiet splash cryptdevice=PARTUUID=5daf5396-4d19-4e57-8052-b017174e7ebd:root root=/dev/mapper/root zswap.enabled=0 rootflags=subvol=@ rw rootfstype=btrfs
Nov 06 09:57:03 kernel: BIOS-provided physical RAM map:
Nov 06 09:57:03 kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
Nov 06 09:57:03 kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
Nov 06 09:57:03 kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009efff] usable
Nov 06 09:57:03 kernel: BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] reserved
Nov 06 09:57:03 kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000c8d7efff] usable
Nov 06 09:57:03 kernel: BIOS-e820: [mem 0x00000000c8d7f000-0x00000000c8d85fff] ACPI NVS
Nov 06 09:57:03 kernel: BIOS-e820: [mem 0x00000000c8d86000-0x00000000c9a1afff] usable
Nov 06 09:57:03 kernel: BIOS-e820: [mem 0x00000000c9a1b000-0x00000000c9eeafff] reserved
Nov 06 09:57:03 kernel: BIOS-e820: [mem 0x00000000c9eeb000-0x00000000dd674fff] usable
Nov 06 09:57:03 kernel: BIOS-e820: [mem 0x00000000dd675000-0x00000000dd6ddfff] reserved
Nov 06 09:57:03 kernel: BIOS-e820: [mem 0x00000000dd6de000-0x00000000dd6edfff] ACPI data
Nov 06 09:57:03 kernel: BIOS-e820: [mem 0x00000000dd6ee000-0x00000000dd85afff] ACPI NVS
Nov 06 09:57:03 kernel: BIOS-e820: [mem 0x00000000dd85b000-0x00000000def98fff] reserved
Nov 06 09:57:03 kernel: BIOS-e820: [mem 0x00000000def99000-0x00000000def9afff] usable
Nov 06 09:57:03 kernel: BIOS-e820: [mem 0x00000000def9b000-0x00000000deffefff] reserved
Nov 06 09:57:03 kernel: BIOS-e820: [mem 0x00000000defff000-0x00000000deffffff] usable
Nov 06 09:57:03 kernel: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
Nov 06 09:57:03 kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Nov 06 09:57:03 kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
Nov 06 09:57:03 kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
Nov 06 09:57:03 kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Nov 06 09:57:03 kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Nov 06 09:57:03 kernel: BIOS-e820: [mem 0x0000000100000000-0x000000081effffff] usable
Nov 06 09:57:03 kernel: NX (Execute Disable) protection: active
Nov 06 09:57:03 kernel: APIC: Static calls initialized
Nov 06 09:57:03 kernel: efi: EFI v2.3.1 by American Megatrends
Nov 06 09:57:03 kernel: efi: ACPI=0xdd82a000 ACPI 2.0=0xdd82a000 SMBIOS=0xf04d0 RNG=0xdd6edf98 INITRD=0xdef9ac18 
Nov 06 09:57:03 kernel: random: crng init done
Nov 06 09:57:03 kernel: efi: Remove mem74: MMIO range=[0xf8000000-0xfbffffff] (64MB) from e820 map
Nov 06 09:57:03 kernel: e820: remove [mem 0xf8000000-0xfbffffff] reserved
Nov 06 09:57:03 kernel: efi: Not removing mem75: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
Nov 06 09:57:03 kernel: efi: Not removing mem76: MMIO range=[0xfed00000-0xfed03fff] (16KB) from e820 map
Nov 06 09:57:03 kernel: efi: Not removing mem77: MMIO range=[0xfed1c000-0xfed1ffff] (16KB) from e820 map
Nov 06 09:57:03 kernel: efi: Not removing mem78: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
Nov 06 09:57:03 kernel: efi: Remove mem79: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
Nov 06 09:57:03 kernel: e820: remove [mem 0xff000000-0xffffffff] reserved
Nov 06 09:57:03 kernel: SMBIOS 2.8 present.
Nov 06 09:57:03 kernel: DMI: To Be Filled By O.E.M. To Be Filled By O.E.M./Z97 Extreme4, BIOS P2.60 03/06/2018
Nov 06 09:57:03 kernel: DMI: Memory slots populated: 4/4
Nov 06 09:57:03 kernel: tsc: Fast TSC calibration using PIT
Nov 06 09:57:03 kernel: tsc: Detected 3398.720 MHz processor
Nov 06 09:57:03 kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Nov 06 09:57:03 kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Nov 06 09:57:03 kernel: last_pfn = 0x81f000 max_arch_pfn = 0x400000000
Nov 06 09:57:03 kernel: total RAM covered: 32752M
Nov 06 09:57:03 kernel: Found optimal setting for mtrr clean up
Nov 06 09:57:03 kernel:  gran_size: 64K         chunk_size: 32M         num_reg: 8          lose cover RAM: 0G
Nov 06 09:57:03 kernel: MTRR map: 8 entries (5 fixed + 3 variable; max 25), built from 10 variable MTRRs
Nov 06 09:57:03 kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Nov 06 09:57:03 kernel: e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved
Nov 06 09:57:03 kernel: last_pfn = 0xdf000 max_arch_pfn = 0x400000000
Nov 06 09:57:03 kernel: found SMP MP-table at [mem 0x000fd170-0x000fd17f]
Nov 06 09:57:03 kernel: Using GB pages for direct mapping
Nov 06 09:57:03 kernel: Secure boot disabled
Nov 06 09:57:03 kernel: RAMDISK: [mem 0x9cfd6000-0xaa4f7fff]
Nov 06 09:57:03 kernel: ACPI: Early table checksum verification disabled
Nov 06 09:57:03 kernel: ACPI: RSDP 0x00000000DD82A000 000024 (v02 ALASKA)
Nov 06 09:57:03 kernel: ACPI: XSDT 0x00000000DD82A088 00008C (v01 ALASKA A M I    01072009 AMI  00010013)
Nov 06 09:57:03 kernel: ACPI: FACP 0x00000000DD83A420 00010C (v05 ALASKA A M I    01072009 AMI  00010013)
Nov 06 09:57:03 kernel: ACPI: DSDT 0x00000000DD82A1A8 010274 (v02 ALASKA A M I    00000260 INTL 20120711)
Nov 06 09:57:03 kernel: ACPI: FACS 0x00000000DD85AF80 000040
Nov 06 09:57:03 kernel: ACPI: APIC 0x00000000DD83A530 000072 (v03 ALASKA A M I    01072009 AMI  00010013)
Nov 06 09:57:03 kernel: ACPI: FPDT 0x00000000DD83A5A8 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
Nov 06 09:57:03 kernel: ACPI: SSDT 0x00000000DD83A5F0 000539 (v01 PmRef  Cpu0Ist  00003000 INTL 20051117)
Nov 06 09:57:03 kernel: ACPI: SSDT 0x00000000DD83AB30 000B74 (v01 CpuRef CpuSsdt  00003000 INTL 20051117)
Nov 06 09:57:03 kernel: ACPI: SSDT 0x00000000DD83B6A8 0001C7 (v01 PmRef  LakeTiny 00003000 INTL 20051117)
Nov 06 09:57:03 kernel: ACPI: MCFG 0x00000000DD83B870 00003C (v01 ALASKA A M I    01072009 MSFT 00000097)
Nov 06 09:57:03 kernel: ACPI: HPET 0x00000000DD83B8B0 000038 (v01 ALASKA A M I    01072009 AMI. 00000005)
Nov 06 09:57:03 kernel: ACPI: SSDT 0x00000000DD83B8E8 00036D (v01 SataRe SataTabl 00001000 INTL 20120711)
Nov 06 09:57:03 kernel: ACPI: SSDT 0x00000000DD83BC58 005A36 (v01 SaSsdt SaSsdt   00003000 INTL 20120711)
Nov 06 09:57:03 kernel: ACPI: AAFT 0x00000000DD841690 0005BC (v01 ALASKA OEMAAFT  01072009 MSFT 00000097)
Nov 06 09:57:03 kernel: ACPI: UEFI 0x00000000DD841C50 000042 (v01 ALASKA A M I    01072009      00000000)
Nov 06 09:57:03 kernel: ACPI: BGRT 0x00000000DD841C98 000038 (v00 ALASKA A M I    01072009 AMI  00010013)
Nov 06 09:57:03 kernel: ACPI: Reserving FACP table memory at [mem 0xdd83a420-0xdd83a52b]
Nov 06 09:57:03 kernel: ACPI: Reserving DSDT table memory at [mem 0xdd82a1a8-0xdd83a41b]
Nov 06 09:57:03 kernel: ACPI: Reserving FACS table memory at [mem 0xdd85af80-0xdd85afbf]
Nov 06 09:57:03 kernel: ACPI: Reserving APIC table memory at [mem 0xdd83a530-0xdd83a5a1]
Nov 06 09:57:03 kernel: ACPI: Reserving FPDT table memory at [mem 0xdd83a5a8-0xdd83a5eb]
Nov 06 09:57:03 kernel: ACPI: Reserving SSDT table memory at [mem 0xdd83a5f0-0xdd83ab28]
Nov 06 09:57:03 kernel: ACPI: Reserving SSDT table memory at [mem 0xdd83ab30-0xdd83b6a3]
Nov 06 09:57:03 kernel: ACPI: Reserving SSDT table memory at [mem 0xdd83b6a8-0xdd83b86e]
Nov 06 09:57:03 kernel: ACPI: Reserving MCFG table memory at [mem 0xdd83b870-0xdd83b8ab]
Nov 06 09:57:03 kernel: ACPI: Reserving HPET table memory at [mem 0xdd83b8b0-0xdd83b8e7]
Nov 06 09:57:03 kernel: ACPI: Reserving SSDT table memory at [mem 0xdd83b8e8-0xdd83bc54]
Nov 06 09:57:03 kernel: ACPI: Reserving SSDT table memory at [mem 0xdd83bc58-0xdd84168d]
Nov 06 09:57:03 kernel: ACPI: Reserving AAFT table memory at [mem 0xdd841690-0xdd841c4b]
Nov 06 09:57:03 kernel: ACPI: Reserving UEFI table memory at [mem 0xdd841c50-0xdd841c91]
Nov 06 09:57:03 kernel: ACPI: Reserving BGRT table memory at [mem 0xdd841c98-0xdd841ccf]
Nov 06 09:57:03 kernel: No NUMA configuration found
Nov 06 09:57:03 kernel: Faking a node at [mem 0x0000000000000000-0x000000081effffff]
Nov 06 09:57:03 kernel: NODE_DATA(0) allocated [mem 0x81efd52c0-0x81effffff]
Nov 06 09:57:03 kernel: Zone ranges:
Nov 06 09:57:03 kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Nov 06 09:57:03 kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Nov 06 09:57:03 kernel:   Normal   [mem 0x0000000100000000-0x000000081effffff]
Nov 06 09:57:03 kernel:   Device   empty
Nov 06 09:57:03 kernel: Movable zone start for each node
Nov 06 09:57:03 kernel: Early memory node ranges
Nov 06 09:57:03 kernel:   node   0: [mem 0x0000000000001000-0x0000000000057fff]
Nov 06 09:57:03 kernel:   node   0: [mem 0x0000000000059000-0x000000000009efff]
Nov 06 09:57:03 kernel:   node   0: [mem 0x0000000000100000-0x00000000c8d7efff]
Nov 06 09:57:03 kernel:   node   0: [mem 0x00000000c8d86000-0x00000000c9a1afff]
Nov 06 09:57:03 kernel:   node   0: [mem 0x00000000c9eeb000-0x00000000dd674fff]
Nov 06 09:57:03 kernel:   node   0: [mem 0x00000000def99000-0x00000000def9afff]
Nov 06 09:57:03 kernel:   node   0: [mem 0x00000000defff000-0x00000000deffffff]
Nov 06 09:57:03 kernel:   node   0: [mem 0x0000000100000000-0x000000081effffff]
Nov 06 09:57:03 kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000081effffff]
Nov 06 09:57:03 kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Nov 06 09:57:03 kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Nov 06 09:57:03 kernel: On node 0, zone DMA: 97 pages in unavailable ranges
Nov 06 09:57:03 kernel: On node 0, zone DMA32: 7 pages in unavailable ranges
Nov 06 09:57:03 kernel: On node 0, zone DMA32: 1232 pages in unavailable ranges
Nov 06 09:57:03 kernel: On node 0, zone DMA32: 6436 pages in unavailable ranges
Nov 06 09:57:03 kernel: On node 0, zone DMA32: 100 pages in unavailable ranges
Nov 06 09:57:03 kernel: On node 0, zone Normal: 4096 pages in unavailable ranges
Nov 06 09:57:03 kernel: On node 0, zone Normal: 4096 pages in unavailable ranges
Nov 06 09:57:03 kernel: ACPI: PM-Timer IO Port: 0x1808
Nov 06 09:57:03 kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
Nov 06 09:57:03 kernel: IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
Nov 06 09:57:03 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Nov 06 09:57:03 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Nov 06 09:57:03 kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Nov 06 09:57:03 kernel: ACPI: HPET id: 0x8086a701 base: 0xfed00000
Nov 06 09:57:03 kernel: e820: update [mem 0xd0e8b000-0xd10cbfff] usable ==> reserved
Nov 06 09:57:03 kernel: TSC deadline timer available
Nov 06 09:57:03 kernel: CPU topo: Max. logical packages:   1
Nov 06 09:57:03 kernel: CPU topo: Max. logical dies:       1
Nov 06 09:57:03 kernel: CPU topo: Max. dies per package:   1
Nov 06 09:57:03 kernel: CPU topo: Max. threads per core:   1
Nov 06 09:57:03 kernel: CPU topo: Num. cores per package:     4
Nov 06 09:57:03 kernel: CPU topo: Num. threads per package:   4
Nov 06 09:57:03 kernel: CPU topo: Allowing 4 present CPUs plus 0 hotplug CPUs
Nov 06 09:57:03 kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Nov 06 09:57:03 kernel: PM: hibernation: Registered nosave memory: [mem 0x00058000-0x00058fff]
Nov 06 09:57:03 kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
Nov 06 09:57:03 kernel: PM: hibernation: Registered nosave memory: [mem 0xc8d7f000-0xc8d85fff]
Nov 06 09:57:03 kernel: PM: hibernation: Registered nosave memory: [mem 0xc9a1b000-0xc9eeafff]
Nov 06 09:57:03 kernel: PM: hibernation: Registered nosave memory: [mem 0xd0e8b000-0xd10cbfff]
Nov 06 09:57:03 kernel: PM: hibernation: Registered nosave memory: [mem 0xdd675000-0xdef98fff]
Nov 06 09:57:03 kernel: PM: hibernation: Registered nosave memory: [mem 0xdef9b000-0xdeffefff]
Nov 06 09:57:03 kernel: PM: hibernation: Registered nosave memory: [mem 0xdf000000-0xffffffff]
Nov 06 09:57:03 kernel: [mem 0xdf000000-0xfebfffff] available for PCI devices
Nov 06 09:57:03 kernel: Booting paravirtualized kernel on bare hardware
Nov 06 09:57:03 kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
Nov 06 09:57:03 kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
Nov 06 09:57:03 kernel: percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u524288
Nov 06 09:57:03 kernel: pcpu-alloc: s217088 r8192 d28672 u524288 alloc=1*2097152
Nov 06 09:57:03 kernel: pcpu-alloc: [0] 0 1 2 3 
Nov 06 09:57:03 kernel: Kernel command line: quiet splash cryptdevice=PARTUUID=5daf5396-4d19-4e57-8052-b017174e7ebd:root root=/dev/mapper/root zswap.enabled=0 rootflags=subvol=@ rw rootfstype=btrfs
Nov 06 09:57:03 kernel: Unknown kernel command line parameters "splash cryptdevice=PARTUUID=5daf5396-4d19-4e57-8052-b017174e7ebd:root", will be passed to user space.
Nov 06 09:57:03 kernel: printk: log buffer data + meta data: 131072 + 458752 = 589824 bytes
Nov 06 09:57:03 kernel: Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
Nov 06 09:57:03 kernel: Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
Nov 06 09:57:03 kernel: software IO TLB: area num 4.
Nov 06 09:57:03 kernel: Fallback order for Node 0: 0 
Nov 06 09:57:03 kernel: Built 1 zonelists, mobility grouping on.  Total pages: 8372542
Nov 06 09:57:03 kernel: Policy zone: Normal
Nov 06 09:57:03 kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
Nov 06 09:57:03 kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Nov 06 09:57:03 kernel: Kernel/User page tables isolation: enabled
Nov 06 09:57:03 kernel: ftrace: allocating 56529 entries in 224 pages
Nov 06 09:57:03 kernel: ftrace: allocated 224 pages with 3 groups
Nov 06 09:57:03 kernel: Dynamic Preempt: full
Nov 06 09:57:03 kernel: rcu: Preemptible hierarchical RCU implementation.
Nov 06 09:57:03 kernel: rcu:         RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
Nov 06 09:57:03 kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
Nov 06 09:57:03 kernel:         Trampoline variant of Tasks RCU enabled.
Nov 06 09:57:03 kernel:         Rude variant of Tasks RCU enabled.
Nov 06 09:57:03 kernel:         Tracing variant of Tasks RCU enabled.
Nov 06 09:57:03 kernel: rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
Nov 06 09:57:03 kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
Nov 06 09:57:03 kernel: RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
Nov 06 09:57:03 kernel: RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
Nov 06 09:57:03 kernel: RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
Nov 06 09:57:03 kernel: NR_IRQS: 524544, nr_irqs: 456, preallocated irqs: 16
Nov 06 09:57:03 kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
Nov 06 09:57:03 kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
Nov 06 09:57:03 kernel: Console: colour dummy device 80x25
Nov 06 09:57:03 kernel: printk: legacy console [tty0] enabled
Nov 06 09:57:03 kernel: ACPI: Core revision 20250404
Nov 06 09:57:03 kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
Nov 06 09:57:03 kernel: APIC: Switch to symmetric I/O mode setup
Nov 06 09:57:03 kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
Nov 06 09:57:03 kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x30fd9578613, max_idle_ns: 440795335903 ns
Nov 06 09:57:03 kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6797.44 BogoMIPS (lpj=3398720)
Nov 06 09:57:03 kernel: CPU0: Thermal monitoring enabled (TM1)
Nov 06 09:57:03 kernel: Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
Nov 06 09:57:03 kernel: Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
Nov 06 09:57:03 kernel: process: using mwait in idle threads
Nov 06 09:57:03 kernel: mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
Nov 06 09:57:03 kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
Nov 06 09:57:03 kernel: SRBDS: Mitigation: Microcode
Nov 06 09:57:03 kernel: Spectre V2 : Mitigation: Retpolines
Nov 06 09:57:03 kernel: MDS: Mitigation: Clear CPU buffers
Nov 06 09:57:03 kernel: VMSCAPE: Mitigation: IBPB before exit to userspace
Nov 06 09:57:03 kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Nov 06 09:57:03 kernel: Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
Nov 06 09:57:03 kernel: Spectre V2 : Enabling Restricted Speculation for firmware calls
Nov 06 09:57:03 kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Nov 06 09:57:03 kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Nov 06 09:57:03 kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Nov 06 09:57:03 kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Nov 06 09:57:03 kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Nov 06 09:57:03 kernel: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
Nov 06 09:57:03 kernel: Freeing SMP alternatives memory: 56K
Nov 06 09:57:03 kernel: pid_max: default: 32768 minimum: 301
Nov 06 09:57:03 kernel: LSM: initializing lsm=capability,landlock,lockdown,yama,bpf
Nov 06 09:57:03 kernel: landlock: Up and running.
Nov 06 09:57:03 kernel: Yama: becoming mindful.
Nov 06 09:57:03 kernel: LSM support for eBPF active
Nov 06 09:57:03 kernel: Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
Nov 06 09:57:03 kernel: Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
Nov 06 09:57:03 kernel: smpboot: CPU0: Intel(R) Core(TM) i5-4670K CPU @ 3.40GHz (family: 0x6, model: 0x3c, stepping: 0x3)
Nov 06 09:57:03 kernel: Performance Events: PEBS fmt2+, Haswell events, 16-deep LBR, full-width counters, Intel PMU driver.
Nov 06 09:57:03 kernel: ... version:                3
Nov 06 09:57:03 kernel: ... bit width:              48
Nov 06 09:57:03 kernel: ... generic registers:      8
Nov 06 09:57:03 kernel: ... value mask:             0000ffffffffffff
Nov 06 09:57:03 kernel: ... max period:             00007fffffffffff
Nov 06 09:57:03 kernel: ... fixed-purpose events:   3
Nov 06 09:57:03 kernel: ... event mask:             00000007000000ff
Nov 06 09:57:03 kernel: signal: max sigframe size: 1776
Nov 06 09:57:03 kernel: Estimated ratio of average max frequency by base frequency (times 1024): 1084
Nov 06 09:57:03 kernel: rcu: Hierarchical SRCU implementation.
Nov 06 09:57:03 kernel: rcu:         Max phase no-delay instances is 400.
Nov 06 09:57:03 kernel: Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
Nov 06 09:57:03 kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Nov 06 09:57:03 kernel: smp: Bringing up secondary CPUs ...
Nov 06 09:57:03 kernel: smpboot: x86: Booting SMP configuration:
Nov 06 09:57:03 kernel: .... node  #0, CPUs:      #1 #2 #3
Nov 06 09:57:03 kernel: smp: Brought up 1 node, 4 CPUs
Nov 06 09:57:03 kernel: smpboot: Total of 4 processors activated (27189.76 BogoMIPS)
Nov 06 09:57:03 kernel: Memory: 32560128K/33490168K available (20061K kernel code, 2946K rwdata, 16220K rodata, 4692K init, 4880K bss, 920076K reserved, 0K cma-reserved)
Nov 06 09:57:03 kernel: devtmpfs: initialized
Nov 06 09:57:03 kernel: x86/mm: Memory block size: 128MB
Nov 06 09:57:03 kernel: ACPI: PM: Registering ACPI NVS region [mem 0xc8d7f000-0xc8d85fff] (28672 bytes)
Nov 06 09:57:03 kernel: ACPI: PM: Registering ACPI NVS region [mem 0xdd6ee000-0xdd85afff] (1495040 bytes)
Nov 06 09:57:03 kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
Nov 06 09:57:03 kernel: posixtimers hash table entries: 2048 (order: 3, 32768 bytes, linear)
Nov 06 09:57:03 kernel: futex hash table entries: 1024 (65536 bytes on 1 NUMA nodes, total 64 KiB, linear).
Nov 06 09:57:03 kernel: pinctrl core: initialized pinctrl subsystem
Nov 06 09:57:03 kernel: PM: RTC time: 08:55:36, date: 2025-11-06
Nov 06 09:57:03 kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Nov 06 09:57:03 kernel: DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
Nov 06 09:57:03 kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Nov 06 09:57:03 kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Nov 06 09:57:03 kernel: audit: initializing netlink subsys (disabled)
Nov 06 09:57:03 kernel: audit: type=2000 audit(1762419336.039:1): state=initialized audit_enabled=0 res=1
Nov 06 09:57:03 kernel: thermal_sys: Registered thermal governor 'fair_share'
Nov 06 09:57:03 kernel: thermal_sys: Registered thermal governor 'bang_bang'
Nov 06 09:57:03 kernel: thermal_sys: Registered thermal governor 'step_wise'
Nov 06 09:57:03 kernel: thermal_sys: Registered thermal governor 'user_space'
Nov 06 09:57:03 kernel: thermal_sys: Registered thermal governor 'power_allocator'
Nov 06 09:57:03 kernel: cpuidle: using governor ladder
Nov 06 09:57:03 kernel: cpuidle: using governor menu
Nov 06 09:57:03 kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Nov 06 09:57:03 kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Nov 06 09:57:03 kernel: PCI: ECAM [mem 0xf8000000-0xfbffffff] (base 0xf8000000) for domain 0000 [bus 00-3f]
Nov 06 09:57:03 kernel: PCI: Using configuration type 1 for base access
Nov 06 09:57:03 kernel: core: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off
Nov 06 09:57:03 kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
Nov 06 09:57:03 kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
Nov 06 09:57:03 kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
Nov 06 09:57:03 kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
Nov 06 09:57:03 kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
Nov 06 09:57:03 kernel: raid6: skipped pq benchmark and selected avx2x4
Nov 06 09:57:03 kernel: raid6: using avx2x2 recovery algorithm
Nov 06 09:57:03 kernel: ACPI: Added _OSI(Module Device)
Nov 06 09:57:03 kernel: ACPI: Added _OSI(Processor Device)
Nov 06 09:57:03 kernel: ACPI: Added _OSI(Processor Aggregator Device)
Nov 06 09:57:03 kernel: ACPI: 6 ACPI AML tables successfully acquired and loaded
Nov 06 09:57:03 kernel: ACPI: Dynamic OEM Table Load:
Nov 06 09:57:03 kernel: ACPI: SSDT 0xFFFF8B0340CBC800 0003D3 (v01 PmRef  Cpu0Cst  00003001 INTL 20051117)
Nov 06 09:57:03 kernel: ACPI: Dynamic OEM Table Load:
Nov 06 09:57:03 kernel: ACPI: SSDT 0xFFFF8B0340C66000 0005AA (v01 PmRef  ApIst    00003000 INTL 20051117)
Nov 06 09:57:03 kernel: ACPI: Dynamic OEM Table Load:
Nov 06 09:57:03 kernel: ACPI: SSDT 0xFFFF8B03413A9200 000119 (v01 PmRef  ApCst    00003000 INTL 20051117)
Nov 06 09:57:03 kernel: ACPI: Interpreter enabled
Nov 06 09:57:03 kernel: ACPI: PM: (supports S0 S3 S4 S5)
Nov 06 09:57:03 kernel: ACPI: Using IOAPIC for interrupt routing
Nov 06 09:57:03 kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Nov 06 09:57:03 kernel: PCI: Using E820 reservations for host bridge windows
Nov 06 09:57:03 kernel: ACPI: Enabled 11 GPEs in block 00 to 3F
Nov 06 09:57:03 kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
Nov 06 09:57:03 kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Nov 06 09:57:03 kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug LTR DPC]
Nov 06 09:57:03 kernel: acpi PNP0A08:00: _OSC: OS now controls [PME AER PCIeCapability]
Nov 06 09:57:03 kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
Nov 06 09:57:03 kernel: PCI host bridge to bus 0000:00
Nov 06 09:57:03 kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Nov 06 09:57:03 kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Nov 06 09:57:03 kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Nov 06 09:57:03 kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff window]
Nov 06 09:57:03 kernel: pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfeafffff window]
Nov 06 09:57:03 kernel: pci_bus 0000:00: root bus resource [bus 00-3e]
Nov 06 09:57:03 kernel: pci 0000:00:00.0: [8086:0c00] type 00 class 0x060000 conventional PCI endpoint
Nov 06 09:57:03 kernel: pci 0000:00:01.0: [8086:0c01] type 01 class 0x060400 PCIe Root Port
Nov 06 09:57:03 kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Nov 06 09:57:03 kernel: pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
Nov 06 09:57:03 kernel: pci 0000:00:01.0:   bridge window [mem 0xf6000000-0xf70fffff]
Nov 06 09:57:03 kernel: pci 0000:00:01.0:   bridge window [mem 0xe0000000-0xf20fffff 64bit pref]
Nov 06 09:57:03 kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
Nov 06 09:57:03 kernel: pci 0000:00:14.0: [8086:8cb1] type 00 class 0x0c0330 conventional PCI endpoint
Nov 06 09:57:03 kernel: pci 0000:00:14.0: BAR 0 [mem 0xf7320000-0xf732ffff 64bit]
Nov 06 09:57:03 kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Nov 06 09:57:03 kernel: pci 0000:00:16.0: [8086:8cba] type 00 class 0x078000 conventional PCI endpoint
Nov 06 09:57:03 kernel: pci 0000:00:16.0: BAR 0 [mem 0xf733a000-0xf733a00f 64bit]
Nov 06 09:57:03 kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
Nov 06 09:57:03 kernel: pci 0000:00:19.0: [8086:15a1] type 00 class 0x020000 conventional PCI endpoint
Nov 06 09:57:03 kernel: pci 0000:00:19.0: BAR 0 [mem 0xf7300000-0xf731ffff]
Nov 06 09:57:03 kernel: pci 0000:00:19.0: BAR 1 [mem 0xf7338000-0xf7338fff]
Nov 06 09:57:03 kernel: pci 0000:00:19.0: BAR 2 [io  0xf040-0xf05f]
Nov 06 09:57:03 kernel: pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
Nov 06 09:57:03 kernel: pci 0000:00:1a.0: [8086:8cad] type 00 class 0x0c0320 conventional PCI endpoint
Nov 06 09:57:03 kernel: pci 0000:00:1a.0: BAR 0 [mem 0xf7337000-0xf73373ff]
Nov 06 09:57:03 kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
Nov 06 09:57:03 kernel: pci 0000:00:1b.0: [8086:8ca0] type 00 class 0x040300 PCIe Root Complex Integrated Endpoint
Nov 06 09:57:03 kernel: pci 0000:00:1b.0: BAR 0 [mem 0xf7330000-0xf7333fff 64bit]
Nov 06 09:57:03 kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Nov 06 09:57:03 kernel: pci 0000:00:1c.0: [8086:8c90] type 01 class 0x060400 PCIe Root Port
Nov 06 09:57:03 kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
Nov 06 09:57:03 kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Nov 06 09:57:03 kernel: pci 0000:00:1c.3: [8086:8c96] type 01 class 0x060400 PCIe Root Port
Nov 06 09:57:03 kernel: pci 0000:00:1c.3: PCI bridge to [bus 03]
Nov 06 09:57:03 kernel: pci 0000:00:1c.3:   bridge window [io  0xd000-0xdfff]
Nov 06 09:57:03 kernel: pci 0000:00:1c.3:   bridge window [mem 0xf7200000-0xf72fffff]
Nov 06 09:57:03 kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Nov 06 09:57:03 kernel: pci 0000:00:1c.6: [8086:8c9c] type 01 class 0x060400 PCIe Root Port
Nov 06 09:57:03 kernel: pci 0000:00:1c.6: PCI bridge to [bus 04]
Nov 06 09:57:03 kernel: pci 0000:00:1c.6:   bridge window [mem 0xf7100000-0xf71fffff]
Nov 06 09:57:03 kernel: pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold
Nov 06 09:57:03 kernel: pci 0000:00:1d.0: [8086:8ca6] type 00 class 0x0c0320 conventional PCI endpoint
Nov 06 09:57:03 kernel: pci 0000:00:1d.0: BAR 0 [mem 0xf7336000-0xf73363ff]
Nov 06 09:57:03 kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
Nov 06 09:57:03 kernel: pci 0000:00:1f.0: [8086:8cc4] type 00 class 0x060100 conventional PCI endpoint
Nov 06 09:57:03 kernel: pci 0000:00:1f.2: [8086:8c82] type 00 class 0x010601 conventional PCI endpoint
Nov 06 09:57:03 kernel: pci 0000:00:1f.2: BAR 0 [io  0xf090-0xf097]
Nov 06 09:57:03 kernel: pci 0000:00:1f.2: BAR 1 [io  0xf080-0xf083]
Nov 06 09:57:03 kernel: pci 0000:00:1f.2: BAR 2 [io  0xf070-0xf077]
Nov 06 09:57:03 kernel: pci 0000:00:1f.2: BAR 3 [io  0xf060-0xf063]
Nov 06 09:57:03 kernel: pci 0000:00:1f.2: BAR 4 [io  0xf020-0xf03f]
Nov 06 09:57:03 kernel: pci 0000:00:1f.2: BAR 5 [mem 0xf7335000-0xf73357ff]
Nov 06 09:57:03 kernel: pci 0000:00:1f.2: PME# supported from D3hot
Nov 06 09:57:03 kernel: pci 0000:00:1f.3: [8086:8ca2] type 00 class 0x0c0500 conventional PCI endpoint
Nov 06 09:57:03 kernel: pci 0000:00:1f.3: BAR 0 [mem 0xf7334000-0xf73340ff 64bit]
Nov 06 09:57:03 kernel: pci 0000:00:1f.3: BAR 4 [io  0xf000-0xf01f]
Nov 06 09:57:03 kernel: pci 0000:01:00.0: [10de:1f08] type 00 class 0x030000 PCIe Legacy Endpoint
Nov 06 09:57:03 kernel: pci 0000:01:00.0: BAR 0 [mem 0xf6000000-0xf6ffffff]
Nov 06 09:57:03 kernel: pci 0000:01:00.0: BAR 1 [mem 0xe0000000-0xefffffff 64bit pref]
Nov 06 09:57:03 kernel: pci 0000:01:00.0: BAR 3 [mem 0xf0000000-0xf1ffffff 64bit pref]
Nov 06 09:57:03 kernel: pci 0000:01:00.0: BAR 5 [io  0xe000-0xe07f]
Nov 06 09:57:03 kernel: pci 0000:01:00.0: ROM [mem 0xf7000000-0xf707ffff pref]
Nov 06 09:57:03 kernel: pci 0000:01:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Nov 06 09:57:03 kernel: pci 0000:01:00.0: PME# supported from D0 D3hot
Nov 06 09:57:03 kernel: pci 0000:01:00.0: 32.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x16 link at 0000:00:01.0 (capable of 126.016 Gb/s with 8.0 GT/s PCIe x16 link)
Nov 06 09:57:03 kernel: pci 0000:01:00.1: [10de:10f9] type 00 class 0x040300 PCIe Endpoint
Nov 06 09:57:03 kernel: pci 0000:01:00.1: BAR 0 [mem 0xf7080000-0xf7083fff]
Nov 06 09:57:03 kernel: pci 0000:01:00.2: [10de:1ada] type 00 class 0x0c0330 PCIe Endpoint
Nov 06 09:57:03 kernel: pci 0000:01:00.2: BAR 0 [mem 0xf2000000-0xf203ffff 64bit pref]
Nov 06 09:57:03 kernel: pci 0000:01:00.2: BAR 3 [mem 0xf2040000-0xf204ffff 64bit pref]
Nov 06 09:57:03 kernel: pci 0000:01:00.2: PME# supported from D0 D3hot
Nov 06 09:57:03 kernel: pci 0000:01:00.3: [10de:1adb] type 00 class 0x0c8000 PCIe Endpoint
Nov 06 09:57:03 kernel: pci 0000:01:00.3: BAR 0 [mem 0xf7084000-0xf7084fff]
Nov 06 09:57:03 kernel: pci 0000:01:00.3: PME# supported from D0 D3hot
Nov 06 09:57:03 kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Nov 06 09:57:03 kernel: acpiphp: Slot [1] registered
Nov 06 09:57:03 kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
Nov 06 09:57:03 kernel: pci 0000:03:00.0: [1b21:0612] type 00 class 0x010601 PCIe Legacy Endpoint
Nov 06 09:57:03 kernel: pci 0000:03:00.0: BAR 0 [io  0xd050-0xd057]
Nov 06 09:57:03 kernel: pci 0000:03:00.0: BAR 1 [io  0xd040-0xd043]
Nov 06 09:57:03 kernel: pci 0000:03:00.0: BAR 2 [io  0xd030-0xd037]
Nov 06 09:57:03 kernel: pci 0000:03:00.0: BAR 3 [io  0xd020-0xd023]
Nov 06 09:57:03 kernel: pci 0000:03:00.0: BAR 4 [io  0xd000-0xd01f]
Nov 06 09:57:03 kernel: pci 0000:03:00.0: BAR 5 [mem 0xf7200000-0xf72001ff]
Nov 06 09:57:03 kernel: pci 0000:00:1c.3: PCI bridge to [bus 03]
Nov 06 09:57:03 kernel: pci 0000:04:00.0: [1b21:1142] type 00 class 0x0c0330 PCIe Legacy Endpoint
Nov 06 09:57:03 kernel: pci 0000:04:00.0: BAR 0 [mem 0xf7100000-0xf7107fff 64bit]
Nov 06 09:57:03 kernel: pci 0000:04:00.0: PME# supported from D3cold
Nov 06 09:57:03 kernel: pci 0000:00:1c.6: PCI bridge to [bus 04]
Nov 06 09:57:03 kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 11
Nov 06 09:57:03 kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 10
Nov 06 09:57:03 kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 5
Nov 06 09:57:03 kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 3
Nov 06 09:57:03 kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 11
Nov 06 09:57:03 kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 0
Nov 06 09:57:03 kernel: ACPI: PCI: Interrupt link LNKF disabled
Nov 06 09:57:03 kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 10
Nov 06 09:57:03 kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 5
Nov 06 09:57:03 kernel: iommu: Default domain type: Translated
Nov 06 09:57:03 kernel: iommu: DMA domain TLB invalidation policy: lazy mode
Nov 06 09:57:03 kernel: SCSI subsystem initialized
Nov 06 09:57:03 kernel: libata version 3.00 loaded.
Nov 06 09:57:03 kernel: ACPI: bus type USB registered
Nov 06 09:57:03 kernel: usbcore: registered new interface driver usbfs
Nov 06 09:57:03 kernel: usbcore: registered new interface driver hub
Nov 06 09:57:03 kernel: usbcore: registered new device driver usb
Nov 06 09:57:03 kernel: EDAC MC: Ver: 3.0.0
Nov 06 09:57:03 kernel: efivars: Registered efivars operations
Nov 06 09:57:03 kernel: NetLabel: Initializing
Nov 06 09:57:03 kernel: NetLabel:  domain hash size = 128
Nov 06 09:57:03 kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Nov 06 09:57:03 kernel: NetLabel:  unlabeled traffic allowed by default
Nov 06 09:57:03 kernel: mctp: management component transport protocol core
Nov 06 09:57:03 kernel: NET: Registered PF_MCTP protocol family
Nov 06 09:57:03 kernel: PCI: Using ACPI for IRQ routing
Nov 06 09:57:03 kernel: PCI: pci_cache_line_size set to 64 bytes
Nov 06 09:57:03 kernel: e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
Nov 06 09:57:03 kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
Nov 06 09:57:03 kernel: e820: reserve RAM buffer [mem 0xc8d7f000-0xcbffffff]
Nov 06 09:57:03 kernel: e820: reserve RAM buffer [mem 0xc9a1b000-0xcbffffff]
Nov 06 09:57:03 kernel: e820: reserve RAM buffer [mem 0xd0e8b000-0xd3ffffff]
Nov 06 09:57:03 kernel: e820: reserve RAM buffer [mem 0xdd675000-0xdfffffff]
Nov 06 09:57:03 kernel: e820: reserve RAM buffer [mem 0xdef9b000-0xdfffffff]
Nov 06 09:57:03 kernel: e820: reserve RAM buffer [mem 0xdf000000-0xdfffffff]
Nov 06 09:57:03 kernel: e820: reserve RAM buffer [mem 0x81f000000-0x81fffffff]
Nov 06 09:57:03 kernel: pci 0000:01:00.0: vgaarb: setting as boot VGA device
Nov 06 09:57:03 kernel: pci 0000:01:00.0: vgaarb: bridge control possible
Nov 06 09:57:03 kernel: pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Nov 06 09:57:03 kernel: vgaarb: loaded
Nov 06 09:57:03 kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Nov 06 09:57:03 kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
Nov 06 09:57:03 kernel: clocksource: Switched to clocksource tsc-early
Nov 06 09:57:03 kernel: VFS: Disk quotas dquot_6.6.0
Nov 06 09:57:03 kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Nov 06 09:57:03 kernel: pnp: PnP ACPI init
Nov 06 09:57:03 kernel: system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
Nov 06 09:57:03 kernel: system 00:01: [io  0x0800-0x087f] has been reserved
Nov 06 09:57:03 kernel: system 00:03: [io  0x0290-0x029f] has been reserved
Nov 06 09:57:03 kernel: system 00:04: [io  0x04d0-0x04d1] has been reserved
Nov 06 09:57:03 kernel: pnp 00:05: [dma 0 disabled]
Nov 06 09:57:03 kernel: system 00:06: [mem 0xfed1c000-0xfed1ffff] has been reserved
Nov 06 09:57:03 kernel: system 00:06: [mem 0xfed10000-0xfed17fff] has been reserved
Nov 06 09:57:03 kernel: system 00:06: [mem 0xfed18000-0xfed18fff] has been reserved
Nov 06 09:57:03 kernel: system 00:06: [mem 0xfed19000-0xfed19fff] has been reserved
Nov 06 09:57:03 kernel: system 00:06: [mem 0xf8000000-0xfbffffff] has been reserved
Nov 06 09:57:03 kernel: system 00:06: [mem 0xfed20000-0xfed3ffff] has been reserved
Nov 06 09:57:03 kernel: system 00:06: [mem 0xfed90000-0xfed93fff] has been reserved
Nov 06 09:57:03 kernel: system 00:06: [mem 0xfed45000-0xfed8ffff] has been reserved
Nov 06 09:57:03 kernel: system 00:06: [mem 0xff000000-0xffffffff] has been reserved
Nov 06 09:57:03 kernel: system 00:06: [mem 0xfee00000-0xfeefffff] could not be reserved
Nov 06 09:57:03 kernel: system 00:06: [mem 0xf7fe0000-0xf7feffff] has been reserved
Nov 06 09:57:03 kernel: pnp: PnP ACPI: found 7 devices
Nov 06 09:57:03 kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Nov 06 09:57:03 kernel: NET: Registered PF_INET protocol family
Nov 06 09:57:03 kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Nov 06 09:57:03 kernel: tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
Nov 06 09:57:03 kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
Nov 06 09:57:03 kernel: TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Nov 06 09:57:03 kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
Nov 06 09:57:03 kernel: TCP: Hash tables configured (established 262144 bind 65536)
Nov 06 09:57:03 kernel: MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
Nov 06 09:57:03 kernel: UDP hash table entries: 16384 (order: 8, 1048576 bytes, linear)
Nov 06 09:57:03 kernel: UDP-Lite hash table entries: 16384 (order: 8, 1048576 bytes, linear)
Nov 06 09:57:03 kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Nov 06 09:57:03 kernel: NET: Registered PF_XDP protocol family
Nov 06 09:57:03 kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Nov 06 09:57:03 kernel: pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
Nov 06 09:57:03 kernel: pci 0000:00:01.0:   bridge window [mem 0xf6000000-0xf70fffff]
Nov 06 09:57:03 kernel: pci 0000:00:01.0:   bridge window [mem 0xe0000000-0xf20fffff 64bit pref]
Nov 06 09:57:03 kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
Nov 06 09:57:03 kernel: pci 0000:00:1c.3: PCI bridge to [bus 03]
Nov 06 09:57:03 kernel: pci 0000:00:1c.3:   bridge window [io  0xd000-0xdfff]
Nov 06 09:57:03 kernel: pci 0000:00:1c.3:   bridge window [mem 0xf7200000-0xf72fffff]
Nov 06 09:57:03 kernel: pci 0000:00:1c.6: PCI bridge to [bus 04]
Nov 06 09:57:03 kernel: pci 0000:00:1c.6:   bridge window [mem 0xf7100000-0xf71fffff]
Nov 06 09:57:03 kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Nov 06 09:57:03 kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Nov 06 09:57:03 kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Nov 06 09:57:03 kernel: pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff window]
Nov 06 09:57:03 kernel: pci_bus 0000:00: resource 8 [mem 0xe0000000-0xfeafffff window]
Nov 06 09:57:03 kernel: pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
Nov 06 09:57:03 kernel: pci_bus 0000:01: resource 1 [mem 0xf6000000-0xf70fffff]
Nov 06 09:57:03 kernel: pci_bus 0000:01: resource 2 [mem 0xe0000000-0xf20fffff 64bit pref]
Nov 06 09:57:03 kernel: pci_bus 0000:03: resource 0 [io  0xd000-0xdfff]
Nov 06 09:57:03 kernel: pci_bus 0000:03: resource 1 [mem 0xf7200000-0xf72fffff]
Nov 06 09:57:03 kernel: pci_bus 0000:04: resource 1 [mem 0xf7100000-0xf71fffff]
Nov 06 09:57:03 kernel: pci 0000:00:1a.0: quirk_usb_early_handoff+0x0/0x760 took 15057 usecs
Nov 06 09:57:03 kernel: pci 0000:00:1d.0: quirk_usb_early_handoff+0x0/0x760 took 15603 usecs
Nov 06 09:57:03 kernel: pci 0000:01:00.1: extending delay after power-on from D3hot to 20 msec
Nov 06 09:57:03 kernel: pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
Nov 06 09:57:03 kernel: pci 0000:01:00.2: D0 power state depends on 0000:01:00.0
Nov 06 09:57:03 kernel: pci 0000:01:00.2: xHCI HW not ready after 5 sec (HC bug?) status = 0x801
Nov 06 09:57:03 kernel: pci 0000:01:00.2: quirk_usb_early_handoff+0x0/0x760 took 5231212 usecs
Nov 06 09:57:03 kernel: pci 0000:01:00.3: D0 power state depends on 0000:01:00.0
Nov 06 09:57:03 kernel: PCI: CLS 64 bytes, default 64
Nov 06 09:57:03 kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Nov 06 09:57:03 kernel: software IO TLB: mapped [mem 0x00000000ccad1000-0x00000000d0ad1000] (64MB)
Nov 06 09:57:03 kernel: Trying to unpack rootfs image as initramfs...
Nov 06 09:57:03 kernel: Initialise system trusted keyrings
Nov 06 09:57:03 kernel: Key type blacklist registered
Nov 06 09:57:03 kernel: workingset: timestamp_bits=36 max_order=23 bucket_order=0
Nov 06 09:57:03 kernel: fuse: init (API version 7.44)
Nov 06 09:57:03 kernel: integrity: Platform Keyring initialized
Nov 06 09:57:03 kernel: integrity: Machine keyring initialized
Nov 06 09:57:03 kernel: xor: automatically using best checksumming function   avx       
Nov 06 09:57:03 kernel: Key type asymmetric registered
Nov 06 09:57:03 kernel: Asymmetric key parser 'x509' registered
Nov 06 09:57:03 kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
Nov 06 09:57:03 kernel: io scheduler mq-deadline registered
Nov 06 09:57:03 kernel: io scheduler kyber registered
Nov 06 09:57:03 kernel: io scheduler bfq registered
Nov 06 09:57:03 kernel: ledtrig-cpu: registered to indicate activity on CPUs
Nov 06 09:57:03 kernel: pcieport 0000:00:01.0: PME: Signaling with IRQ 24
Nov 06 09:57:03 kernel: pcieport 0000:00:1c.0: PME: Signaling with IRQ 25
Nov 06 09:57:03 kernel: pcieport 0000:00:1c.3: PME: Signaling with IRQ 26
Nov 06 09:57:03 kernel: pcieport 0000:00:1c.6: PME: Signaling with IRQ 27
Nov 06 09:57:03 kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Nov 06 09:57:03 kernel: ACPI: button: Power Button [PWRB]
Nov 06 09:57:03 kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
Nov 06 09:57:03 kernel: ACPI: button: Sleep Button [SLPB]
Nov 06 09:57:03 kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
Nov 06 09:57:03 kernel: ACPI: button: Power Button [PWRF]
Nov 06 09:57:03 kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Nov 06 09:57:03 kernel: 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
Nov 06 09:57:03 kernel: Non-volatile memory driver v1.3
Nov 06 09:57:03 kernel: Linux agpgart interface v0.103
Nov 06 09:57:03 kernel: ACPI: bus type drm_connector registered
Nov 06 09:57:03 kernel: ahci 0000:00:1f.2: AHCI vers 0001.0300, 32 command slots, 6 Gbps, SATA mode
Nov 06 09:57:03 kernel: ahci 0000:00:1f.2: 4/6 ports implemented (port mask 0x2d)
Nov 06 09:57:03 kernel: ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst 
Nov 06 09:57:03 kernel: scsi host0: ahci
Nov 06 09:57:03 kernel: scsi host1: ahci
Nov 06 09:57:03 kernel: scsi host2: ahci
Nov 06 09:57:03 kernel: scsi host3: ahci
Nov 06 09:57:03 kernel: scsi host4: ahci
Nov 06 09:57:03 kernel: scsi host5: ahci
Nov 06 09:57:03 kernel: ata1: SATA max UDMA/133 abar m2048@0xf7335000 port 0xf7335100 irq 28 lpm-pol 3
Nov 06 09:57:03 kernel: ata2: DUMMY
Nov 06 09:57:03 kernel: ata3: SATA max UDMA/133 abar m2048@0xf7335000 port 0xf7335200 irq 28 lpm-pol 3
Nov 06 09:57:03 kernel: ata4: SATA max UDMA/133 abar m2048@0xf7335000 port 0xf7335280 irq 28 lpm-pol 3
Nov 06 09:57:03 kernel: ata5: DUMMY
Nov 06 09:57:03 kernel: ata6: SATA max UDMA/133 abar m2048@0xf7335000 port 0xf7335380 irq 28 lpm-pol 3
Nov 06 09:57:03 kernel: ahci 0000:03:00.0: SSS flag set, parallel bus scan disabled
Nov 06 09:57:03 kernel: ahci 0000:03:00.0: AHCI vers 0001.0200, 32 command slots, 6 Gbps, SATA mode
Nov 06 09:57:03 kernel: ahci 0000:03:00.0: 2/2 ports implemented (port mask 0x3)
Nov 06 09:57:03 kernel: ahci 0000:03:00.0: flags: 64bit ncq sntf stag led clo pmp pio slum part ccc sxs 
Nov 06 09:57:03 kernel: scsi host6: ahci
Nov 06 09:57:03 kernel: scsi host7: ahci
Nov 06 09:57:03 kernel: ata7: SATA max UDMA/133 abar m512@0xf7200000 port 0xf7200100 irq 29 lpm-pol 1 ext
Nov 06 09:57:03 kernel: ata8: SATA max UDMA/133 abar m512@0xf7200000 port 0xf7200180 irq 29 lpm-pol 1 ext
Nov 06 09:57:03 kernel: ehci-pci 0000:00:1a.0: EHCI Host Controller
Nov 06 09:57:03 kernel: ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
Nov 06 09:57:03 kernel: ehci-pci 0000:00:1a.0: debug port 2
Nov 06 09:57:03 kernel: ehci-pci 0000:00:1a.0: irq 16, io mem 0xf7337000
Nov 06 09:57:03 kernel: ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
Nov 06 09:57:03 kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.17
Nov 06 09:57:03 kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Nov 06 09:57:03 kernel: usb usb1: Product: EHCI Host Controller
Nov 06 09:57:03 kernel: usb usb1: Manufacturer: Linux 6.17.7-arch1-1 ehci_hcd
Nov 06 09:57:03 kernel: usb usb1: SerialNumber: 0000:00:1a.0
Nov 06 09:57:03 kernel: hub 1-0:1.0: USB hub found
Nov 06 09:57:03 kernel: hub 1-0:1.0: 2 ports detected
Nov 06 09:57:03 kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Nov 06 09:57:03 kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
Nov 06 09:57:03 kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000000009810
Nov 06 09:57:03 kernel: ehci-pci 0000:00:1d.0: EHCI Host Controller
Nov 06 09:57:03 kernel: ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 3
Nov 06 09:57:03 kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Nov 06 09:57:03 kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
Nov 06 09:57:03 kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
Nov 06 09:57:03 kernel: ehci-pci 0000:00:1d.0: debug port 2
Nov 06 09:57:03 kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.17
Nov 06 09:57:03 kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Nov 06 09:57:03 kernel: usb usb2: Product: xHCI Host Controller
Nov 06 09:57:03 kernel: usb usb2: Manufacturer: Linux 6.17.7-arch1-1 xhci-hcd
Nov 06 09:57:03 kernel: usb usb2: SerialNumber: 0000:00:14.0
Nov 06 09:57:03 kernel: hub 2-0:1.0: USB hub found
Nov 06 09:57:03 kernel: hub 2-0:1.0: 14 ports detected
Nov 06 09:57:03 kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.17
Nov 06 09:57:03 kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Nov 06 09:57:03 kernel: usb usb4: Product: xHCI Host Controller
Nov 06 09:57:03 kernel: usb usb4: Manufacturer: Linux 6.17.7-arch1-1 xhci-hcd
Nov 06 09:57:03 kernel: usb usb4: SerialNumber: 0000:00:14.0
Nov 06 09:57:03 kernel: hub 4-0:1.0: USB hub found
Nov 06 09:57:03 kernel: hub 4-0:1.0: 6 ports detected
Nov 06 09:57:03 kernel: ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7336000
Nov 06 09:57:03 kernel: ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
Nov 06 09:57:03 kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.17
Nov 06 09:57:03 kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Nov 06 09:57:03 kernel: usb usb3: Product: EHCI Host Controller
Nov 06 09:57:03 kernel: usb usb3: Manufacturer: Linux 6.17.7-arch1-1 ehci_hcd
Nov 06 09:57:03 kernel: usb usb3: SerialNumber: 0000:00:1d.0
Nov 06 09:57:03 kernel: hub 3-0:1.0: USB hub found
Nov 06 09:57:03 kernel: hub 3-0:1.0: 2 ports detected
Nov 06 09:57:03 kernel: xhci_hcd 0000:01:00.2: xHCI Host Controller
Nov 06 09:57:03 kernel: xhci_hcd 0000:01:00.2: new USB bus registered, assigned bus number 5
Nov 06 09:57:03 kernel: Freeing initrd memory: 218248K
Nov 06 09:57:03 kernel: usb 2-1: new high-speed USB device number 2 using xhci_hcd
Nov 06 09:57:03 kernel: usb 1-1: new high-speed USB device number 2 using ehci-pci
Nov 06 09:57:03 kernel: usb 3-1: new high-speed USB device number 2 using ehci-pci
Nov 06 09:57:03 kernel: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Nov 06 09:57:03 kernel: ata4: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Nov 06 09:57:03 kernel: ata7: SATA link down (SStatus 0 SControl 300)
Nov 06 09:57:03 kernel: ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Nov 06 09:57:03 kernel: ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Nov 06 09:57:03 kernel: ata1.00: ATA-10: KINGSTON SA400S37480G, 020KST32, max UDMA/133
Nov 06 09:57:03 kernel: ata1.00: 937703088 sectors, multi 1: LBA48 NCQ (depth 32), AA
Nov 06 09:57:03 kernel: ata4.00: Model 'Crucial_CT240M500SSD1', rev 'MU05', applying quirks: noncqtrim zeroaftertrim
Nov 06 09:57:03 kernel: ata3.00: ATA-10: WDC WD20EZBX-00AYRA0, 01.01A01, max UDMA/133
Nov 06 09:57:03 kernel: ata1.00: configured for UDMA/133
Nov 06 09:57:03 kernel: ata4.00: supports DRM functions and may not be fully accessible
Nov 06 09:57:03 kernel: ata4.00: ATA-9: Crucial_CT240M500SSD1, MU05, max UDMA/133
Nov 06 09:57:03 kernel: ata6.00: ACPI cmd f5/00:00:00:00:00:00(SECURITY FREEZE LOCK) filtered out
Nov 06 09:57:03 kernel: ata6.00: ACPI cmd b1/c1:00:00:00:00:00(DEVICE CONFIGURATION OVERLAY) filtered out
Nov 06 09:57:03 kernel: ata6.00: ATAPI: ATAPI   iHAS124   E, 4L07, max UDMA/100
Nov 06 09:57:03 kernel: ata6.00: ACPI cmd f5/00:00:00:00:00:00(SECURITY FREEZE LOCK) filtered out
Nov 06 09:57:03 kernel: ata6.00: ACPI cmd b1/c1:00:00:00:00:00(DEVICE CONFIGURATION OVERLAY) filtered out
Nov 06 09:57:03 kernel: ata6.00: configured for UDMA/100
Nov 06 09:57:03 kernel: ata3.00: 3907029168 sectors, multi 16: LBA48 NCQ (depth 32), AA
Nov 06 09:57:03 kernel: ata3.00: Features: HIPM DIPM NCQ-prio
Nov 06 09:57:03 kernel: scsi 0:0:0:0: Direct-Access     ATA      KINGSTON SA400S3 ST32 PQ: 0 ANSI: 5
Nov 06 09:57:03 kernel: sd 0:0:0:0: [sda] 937703088 512-byte logical blocks: (480 GB/447 GiB)
Nov 06 09:57:03 kernel: sd 0:0:0:0: [sda] Write Protect is off
Nov 06 09:57:03 kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Nov 06 09:57:03 kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Nov 06 09:57:03 kernel: sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
Nov 06 09:57:03 kernel: ata4.00: 468862128 sectors, multi 16: LBA48 NCQ (depth 32), AA
Nov 06 09:57:03 kernel: ata3.00: configured for UDMA/133
Nov 06 09:57:03 kernel: scsi 2:0:0:0: Direct-Access     ATA      WDC WD20EZBX-00A 1A01 PQ: 0 ANSI: 5
Nov 06 09:57:03 kernel: sd 2:0:0:0: [sdb] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
Nov 06 09:57:03 kernel: sd 2:0:0:0: [sdb] 4096-byte physical blocks
Nov 06 09:57:03 kernel: sd 2:0:0:0: [sdb] Write Protect is off
Nov 06 09:57:03 kernel: sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00
Nov 06 09:57:03 kernel: sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Nov 06 09:57:03 kernel: sd 2:0:0:0: [sdb] Preferred minimum I/O size 4096 bytes
Nov 06 09:57:03 kernel:  sda: sda1 sda2
Nov 06 09:57:03 kernel: sd 0:0:0:0: [sda] Attached SCSI disk
Nov 06 09:57:03 kernel: ata4.00: Features: Trust Dev-Sleep HIPM DIPM NCQ-sndrcv NCQ-prio
Nov 06 09:57:03 kernel: ata4.00: supports DRM functions and may not be fully accessible
Nov 06 09:57:03 kernel: sd 2:0:0:0: [sdb] Attached SCSI disk
Nov 06 09:57:03 kernel: ata4.00: configured for UDMA/133
Nov 06 09:57:03 kernel: scsi 3:0:0:0: Direct-Access     ATA      Crucial_CT240M50 MU05 PQ: 0 ANSI: 5
Nov 06 09:57:03 kernel: ata4.00: Enabling discard_zeroes_data
Nov 06 09:57:03 kernel: sd 3:0:0:0: [sdc] 468862128 512-byte logical blocks: (240 GB/224 GiB)
Nov 06 09:57:03 kernel: sd 3:0:0:0: [sdc] 4096-byte physical blocks
Nov 06 09:57:03 kernel: sd 3:0:0:0: [sdc] Write Protect is off
Nov 06 09:57:03 kernel: sd 3:0:0:0: [sdc] Mode Sense: 00 3a 00 00
Nov 06 09:57:03 kernel: sd 3:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Nov 06 09:57:03 kernel: sd 3:0:0:0: [sdc] Preferred minimum I/O size 4096 bytes
Nov 06 09:57:03 kernel: ata4.00: Enabling discard_zeroes_data
Nov 06 09:57:03 kernel: scsi 5:0:0:0: CD-ROM            ATAPI    iHAS124   E      4L07 PQ: 0 ANSI: 5
Nov 06 09:57:03 kernel:  sdc: sdc1 sdc3
Nov 06 09:57:03 kernel: sd 3:0:0:0: [sdc] supports TCG Opal
Nov 06 09:57:03 kernel: sd 3:0:0:0: [sdc] Attached SCSI disk
Nov 06 09:57:03 kernel: usb 1-1: New USB device found, idVendor=8087, idProduct=8009, bcdDevice= 0.00
Nov 06 09:57:03 kernel: usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Nov 06 09:57:03 kernel: hub 1-1:1.0: USB hub found
Nov 06 09:57:03 kernel: hub 1-1:1.0: 6 ports detected
Nov 06 09:57:03 kernel: usb 3-1: New USB device found, idVendor=8087, idProduct=8001, bcdDevice= 0.00
Nov 06 09:57:03 kernel: usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Nov 06 09:57:03 kernel: hub 3-1:1.0: USB hub found
Nov 06 09:57:03 kernel: hub 3-1:1.0: 8 ports detected
Nov 06 09:57:03 kernel: usb 2-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=92.24
Nov 06 09:57:03 kernel: usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Nov 06 09:57:03 kernel: usb 2-1: Product: USB2.0 Hub
Nov 06 09:57:03 kernel: usb 2-1: Manufacturer: GenesysLogic
Nov 06 09:57:03 kernel: hub 2-1:1.0: USB hub found
Nov 06 09:57:03 kernel: hub 2-1:1.0: 4 ports detected
Nov 06 09:57:03 kernel: usb 4-1: new SuperSpeed USB device number 2 using xhci_hcd
Nov 06 09:57:03 kernel: usb 4-1: New USB device found, idVendor=05e3, idProduct=0612, bcdDevice=92.24
Nov 06 09:57:03 kernel: usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Nov 06 09:57:03 kernel: usb 4-1: Product: USB3.0 Hub
Nov 06 09:57:03 kernel: usb 4-1: Manufacturer: GenesysLogic
Nov 06 09:57:03 kernel: hub 4-1:1.0: USB hub found
Nov 06 09:57:03 kernel: hub 4-1:1.0: 4 ports detected
Nov 06 09:57:03 kernel: usb 2-3: new full-speed USB device number 3 using xhci_hcd
Nov 06 09:57:03 kernel: usb 2-3: New USB device found, idVendor=2516, idProduct=0016, bcdDevice= 1.04
Nov 06 09:57:03 kernel: usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Nov 06 09:57:03 kernel: usb 2-3: Product: Quickfire Pro Ultimate N key
Nov 06 09:57:03 kernel: usb 2-3: Manufacturer: CM Storm
Nov 06 09:57:03 kernel: ata8: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Nov 06 09:57:03 kernel: ata8.00: ATA-9: WDC WD10EZEX-08M2NA0, 01.01A01, max UDMA/100
Nov 06 09:57:03 kernel: ata8.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 32), AA
Nov 06 09:57:03 kernel: ata8.00: configured for UDMA/100
Nov 06 09:57:03 kernel: scsi 7:0:0:0: Direct-Access     ATA      WDC WD10EZEX-08M 1A01 PQ: 0 ANSI: 5
Nov 06 09:57:03 kernel: sd 7:0:0:0: [sdd] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
Nov 06 09:57:03 kernel: sd 7:0:0:0: [sdd] 4096-byte physical blocks
Nov 06 09:57:03 kernel: sd 7:0:0:0: [sdd] Write Protect is off
Nov 06 09:57:03 kernel: sd 7:0:0:0: [sdd] Mode Sense: 00 3a 00 00
Nov 06 09:57:03 kernel: sd 7:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Nov 06 09:57:03 kernel: sd 7:0:0:0: [sdd] Preferred minimum I/O size 4096 bytes
Nov 06 09:57:03 kernel: usb 2-6: new full-speed USB device number 4 using xhci_hcd
Nov 06 09:57:03 kernel: sd 7:0:0:0: [sdd] Attached SCSI disk
Nov 06 09:57:03 kernel: tsc: Refined TSC clocksource calibration: 3399.013 MHz
Nov 06 09:57:03 kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x30feaaa6ba3, max_idle_ns: 440795361226 ns
Nov 06 09:57:03 kernel: clocksource: Switched to clocksource tsc
Nov 06 09:57:03 kernel: usb 2-6: New USB device found, idVendor=1038, idProduct=137a, bcdDevice= 1.14
Nov 06 09:57:03 kernel: usb 2-6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Nov 06 09:57:03 kernel: usb 2-6: Product: Kana v2 Gaming Mouse
Nov 06 09:57:03 kernel: usb 2-6: Manufacturer: SteelSeries
Nov 06 09:57:03 kernel: usb 2-7: new full-speed USB device number 5 using xhci_hcd
Nov 06 09:57:03 kernel: usb 2-7: New USB device found, idVendor=0bda, idProduct=a728, bcdDevice= 2.00
Nov 06 09:57:03 kernel: usb 2-7: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Nov 06 09:57:03 kernel: usb 2-7: Product: Bluetooth 5.4 Radio
Nov 06 09:57:03 kernel: usb 2-7: Manufacturer: Realtek
Nov 06 09:57:03 kernel: usb 2-7: SerialNumber: 00E04C239987
Nov 06 09:57:03 kernel: xhci_hcd 0000:01:00.2: can't setup: -110
Nov 06 09:57:03 kernel: xhci_hcd 0000:01:00.2: USB bus 5 deregistered
Nov 06 09:57:03 kernel: xhci_hcd 0000:01:00.2: init 0000:01:00.2 fail, -110
Nov 06 09:57:03 kernel: xhci_hcd 0000:01:00.2: probe with driver xhci_hcd failed with error -110
Nov 06 09:57:03 kernel: xhci_hcd 0000:04:00.0: xHCI Host Controller
Nov 06 09:57:03 kernel: xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 5
Nov 06 09:57:03 kernel: xhci_hcd 0000:04:00.0: hcc params 0x0200e080 hci version 0x100 quirks 0x0000000010800010
Nov 06 09:57:03 kernel: xhci_hcd 0000:04:00.0: xHCI Host Controller
Nov 06 09:57:03 kernel: xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 6
Nov 06 09:57:03 kernel: xhci_hcd 0000:04:00.0: Host supports USB 3.0 SuperSpeed
Nov 06 09:57:03 kernel: usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.17
Nov 06 09:57:03 kernel: usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Nov 06 09:57:03 kernel: usb usb5: Product: xHCI Host Controller
Nov 06 09:57:03 kernel: usb usb5: Manufacturer: Linux 6.17.7-arch1-1 xhci-hcd
Nov 06 09:57:03 kernel: usb usb5: SerialNumber: 0000:04:00.0
Nov 06 09:57:03 kernel: hub 5-0:1.0: USB hub found
Nov 06 09:57:03 kernel: hub 5-0:1.0: 2 ports detected
Nov 06 09:57:03 kernel: usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
Nov 06 09:57:03 kernel: usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.17
Nov 06 09:57:03 kernel: usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Nov 06 09:57:03 kernel: usb usb6: Product: xHCI Host Controller
Nov 06 09:57:03 kernel: usb usb6: Manufacturer: Linux 6.17.7-arch1-1 xhci-hcd
Nov 06 09:57:03 kernel: usb usb6: SerialNumber: 0000:04:00.0
Nov 06 09:57:03 kernel: hub 6-0:1.0: USB hub found
Nov 06 09:57:03 kernel: hub 6-0:1.0: 2 ports detected
Nov 06 09:57:03 kernel: usbcore: registered new interface driver usbserial_generic
Nov 06 09:57:03 kernel: usbserial: USB Serial support registered for generic
Nov 06 09:57:03 kernel: i8042: PNP: No PS/2 controller found.
Nov 06 09:57:03 kernel: rtc_cmos 00:02: RTC can wake from S4
Nov 06 09:57:03 kernel: rtc_cmos 00:02: registered as rtc0
Nov 06 09:57:03 kernel: rtc_cmos 00:02: setting system clock to 2025-11-06T08:55:59 UTC (1762419359)
Nov 06 09:57:03 kernel: rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram
Nov 06 09:57:03 kernel: intel_pstate: Intel P-state driver initializing
Nov 06 09:57:03 kernel: Relocating firmware framebuffer to offset 0x0000000001000000[d] within [mem 0xf0000000-0xf1ffffff flags 0x14220c]
Nov 06 09:57:03 kernel: simple-framebuffer simple-framebuffer.0: [drm] Registered 1 planes with drm panic
Nov 06 09:57:03 kernel: [drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0
Nov 06 09:57:03 kernel: fbcon: Deferring console take-over
Nov 06 09:57:03 kernel: simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
Nov 06 09:57:03 kernel: hid: raw HID events driver (C) Jiri Kosina
Nov 06 09:57:03 kernel: input: CM Storm Quickfire Pro Ultimate N key as /devices/pci0000:00/0000:00:14.0/usb2/2-3/2-3:1.0/0003:2516:0016.0001/input/input3
Nov 06 09:57:03 kernel: hid-generic 0003:2516:0016.0001: input,hidraw0: USB HID v1.10 Keyboard [CM Storm Quickfire Pro Ultimate N key] on usb-0000:00:14.0-3/input0
Nov 06 09:57:03 kernel: input: CM Storm Quickfire Pro Ultimate N key Consumer Control as /devices/pci0000:00/0000:00:14.0/usb2/2-3/2-3:1.1/0003:2516:0016.0002/input/input4
Nov 06 09:57:03 kernel: input: CM Storm Quickfire Pro Ultimate N key System Control as /devices/pci0000:00/0000:00:14.0/usb2/2-3/2-3:1.1/0003:2516:0016.0002/input/input5
Nov 06 09:57:03 kernel: input: CM Storm Quickfire Pro Ultimate N key Keyboard as /devices/pci0000:00/0000:00:14.0/usb2/2-3/2-3:1.1/0003:2516:0016.0002/input/input6
Nov 06 09:57:03 kernel: hid-generic 0003:2516:0016.0002: input,hidraw1: USB HID v1.10 Keyboard [CM Storm Quickfire Pro Ultimate N key] on usb-0000:00:14.0-3/input1
Nov 06 09:57:03 kernel: hid-generic 0003:1038:137A.0003: hiddev96,hidraw2: USB HID v1.11 Device [SteelSeries Kana v2 Gaming Mouse] on usb-0000:00:14.0-6/input0
Nov 06 09:57:03 kernel: input: SteelSeries Kana v2 Gaming Mouse as /devices/pci0000:00/0000:00:14.0/usb2/2-6/2-6:1.1/0003:1038:137A.0004/input/input7
Nov 06 09:57:03 kernel: hid-generic 0003:1038:137A.0004: input,hidraw3: USB HID v1.11 Mouse [SteelSeries Kana v2 Gaming Mouse] on usb-0000:00:14.0-6/input1
Nov 06 09:57:03 kernel: usbcore: registered new interface driver usbhid
Nov 06 09:57:03 kernel: usbhid: USB HID core driver
Nov 06 09:57:03 kernel: drop_monitor: Initializing network drop monitor service
Nov 06 09:57:03 kernel: NET: Registered PF_INET6 protocol family
Nov 06 09:57:03 kernel: Segment Routing with IPv6
Nov 06 09:57:03 kernel: RPL Segment Routing with IPv6
Nov 06 09:57:03 kernel: In-situ OAM (IOAM) with IPv6
Nov 06 09:57:03 kernel: NET: Registered PF_PACKET protocol family
Nov 06 09:57:03 kernel: microcode: Current revision: 0x00000028
Nov 06 09:57:03 kernel: microcode: Updated early from: 0x00000024
Nov 06 09:57:03 kernel: IPI shorthand broadcast: enabled
Nov 06 09:57:03 kernel: sched_clock: Marking stable (22999001026, 270509)->(23001570446, -2298911)
Nov 06 09:57:03 kernel: registered taskstats version 1
Nov 06 09:57:03 kernel: Loading compiled-in X.509 certificates
Nov 06 09:57:03 kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 46d261b4279a399a9dad440045a7c0163909f942'
Nov 06 09:57:03 kernel: Demotion targets for Node 0: null
Nov 06 09:57:03 kernel: Key type .fscrypt registered
Nov 06 09:57:03 kernel: Key type fscrypt-provisioning registered
Nov 06 09:57:03 kernel: Btrfs loaded, zoned=yes, fsverity=yes
Nov 06 09:57:03 kernel: Key type big_key registered
Nov 06 09:57:03 kernel: integrity: Loading X.509 certificate: UEFI:db
Nov 06 09:57:03 kernel: integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
Nov 06 09:57:03 kernel: integrity: Loading X.509 certificate: UEFI:db
Nov 06 09:57:03 kernel: integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
Nov 06 09:57:03 kernel: PM:   Magic number: 1:220:927
Nov 06 09:57:03 kernel: RAS: Correctable Errors collector initialized.
Nov 06 09:57:03 kernel: clk: Disabling unused clocks
Nov 06 09:57:03 kernel: PM: genpd: Disabling unused power domains
Nov 06 09:57:03 kernel: Freeing unused decrypted memory: 2028K
Nov 06 09:57:03 kernel: Freeing unused kernel image (initmem) memory: 4692K
Nov 06 09:57:03 kernel: Write protecting the kernel read-only data: 36864k
Nov 06 09:57:03 kernel: Freeing unused kernel image (text/rodata gap) memory: 416K
Nov 06 09:57:03 kernel: Freeing unused kernel image (rodata/data gap) memory: 164K
Nov 06 09:57:03 kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Nov 06 09:57:03 kernel: rodata_test: all tests were successful
Nov 06 09:57:03 kernel: x86/mm: Checking user space page tables
Nov 06 09:57:03 kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Nov 06 09:57:03 kernel: Run /init as init process
Nov 06 09:57:03 kernel:   with arguments:
Nov 06 09:57:03 kernel:     /init
Nov 06 09:57:03 kernel:     splash
Nov 06 09:57:03 kernel:   with environment:
Nov 06 09:57:03 kernel:     HOME=/
Nov 06 09:57:03 kernel:     TERM=linux
Nov 06 09:57:03 kernel:     cryptdevice=PARTUUID=5daf5396-4d19-4e57-8052-b017174e7ebd:root
Nov 06 09:57:03 kernel: nvidia: loading out-of-tree module taints kernel.
Nov 06 09:57:03 kernel: nvidia: module verification failed: signature and/or required key missing - tainting kernel
Nov 06 09:57:03 kernel: nvidia-nvlink: Nvlink Core is being initialized, major device number 239
Nov 06 09:57:03 kernel: 
Nov 06 09:57:03 kernel: nvidia 0000:01:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=io+mem
Nov 06 09:57:03 kernel: NVRM: loading NVIDIA UNIX Open Kernel Module for x86_64  580.95.05  Release Build  (root@dahin)  
Nov 06 09:57:03 kernel: nvidia-modeset: Loading NVIDIA UNIX Open Kernel Mode Setting Driver for x86_64  580.95.05  Release Build  (root@dahin)  
Nov 06 09:57:03 kernel: [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
Nov 06 09:57:03 kernel: [drm] Initialized nvidia-drm 0.0.0 for 0000:01:00.0 on minor 1
Nov 06 09:57:03 kernel: nvidia 0000:01:00.0: vgaarb: deactivate vga console
Nov 06 09:57:03 kernel: fbcon: nvidia-drmdrmfb (fb0) is primary device
Nov 06 09:57:03 kernel: fbcon: Deferring console take-over
Nov 06 09:57:03 kernel: nvidia 0000:01:00.0: [drm] fb0: nvidia-drmdrmfb frame buffer device
Nov 06 09:57:03 kernel: ACPI Warning: SystemIO range 0x0000000000001828-0x000000000000182F conflicts with OpRegion 0x0000000000001800-0x000000000000187F (\PMIO) (20250404/utaddress-204)
Nov 06 09:57:03 kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Nov 06 09:57:03 kernel: ACPI Warning: SystemIO range 0x0000000000001C40-0x0000000000001C4F conflicts with OpRegion 0x0000000000001C00-0x0000000000001FFF (\GPR) (20250404/utaddress-204)
Nov 06 09:57:03 kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Nov 06 09:57:03 kernel: ACPI Warning: SystemIO range 0x0000000000001C30-0x0000000000001C3F conflicts with OpRegion 0x0000000000001C00-0x0000000000001C3F (\GPRL) (20250404/utaddress-204)
Nov 06 09:57:03 kernel: ACPI Warning: SystemIO range 0x0000000000001C30-0x0000000000001C3F conflicts with OpRegion 0x0000000000001C00-0x0000000000001FFF (\GPR) (20250404/utaddress-204)
Nov 06 09:57:03 kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Nov 06 09:57:03 kernel: ACPI Warning: SystemIO range 0x0000000000001C00-0x0000000000001C2F conflicts with OpRegion 0x0000000000001C00-0x0000000000001C3F (\GPRL) (20250404/utaddress-204)
Nov 06 09:57:03 kernel: ACPI Warning: SystemIO range 0x0000000000001C00-0x0000000000001C2F conflicts with OpRegion 0x0000000000001C00-0x0000000000001FFF (\GPR) (20250404/utaddress-204)
Nov 06 09:57:03 kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Nov 06 09:57:03 kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
Nov 06 09:57:03 kernel: sr 5:0:0:0: [sr0] scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
Nov 06 09:57:03 kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
Nov 06 09:57:03 kernel: sr 5:0:0:0: Attached scsi CD-ROM sr0
Nov 06 09:57:03 kernel: device-mapper: uevent: version 1.0.3
Nov 06 09:57:03 kernel: device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists.linux.dev
Nov 06 09:57:03 kernel: Key type encrypted registered
Nov 06 09:57:03 kernel: BTRFS: device fsid 4f776292-0146-4358-aebe-601b8060f4a9 devid 1 transid 38917 /dev/mapper/root (253:0) scanned by mount (392)
Nov 06 09:57:03 kernel: BTRFS info (device dm-0): first mount of filesystem 4f776292-0146-4358-aebe-601b8060f4a9
Nov 06 09:57:03 kernel: BTRFS info (device dm-0): using crc32c (crc32c-lib) checksum algorithm
Nov 06 09:57:03 kernel: BTRFS info (device dm-0): enabling ssd optimizations
Nov 06 09:57:03 kernel: BTRFS info (device dm-0): enabling free space tree
Nov 06 09:57:03 systemd[1]: systemd 258.1-1-arch running in system mode (+PAM +AUDIT -SELINUX +APPARMOR -IMA +IPE +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF +XKBCOMMON +UTMP -SYSVINIT +LIBARCHIVE)
Nov 06 09:57:03 systemd[1]: Detected architecture x86-64.
Nov 06 09:57:03 systemd[1]: Hostname set to <dahin>.
Nov 06 09:57:03 systemd[1]: bpf-restrict-fs: LSM BPF program attached
Nov 06 09:57:03 kernel: zram: Added device: zram0
Nov 06 09:57:03 systemd[1]: Queued start job for default target Graphical Interface.
Nov 06 09:57:03 systemd[1]: Created slice Virtual Machine and Container Slice.
Nov 06 09:57:03 systemd[1]: Created slice CUPS Slice.
Nov 06 09:57:03 systemd[1]: Created slice Slice /system/dirmngr.
Nov 06 09:57:03 systemd[1]: Created slice Slice /system/getty.
Nov 06 09:57:03 systemd[1]: Created slice Slice /system/gpg-agent.
Nov 06 09:57:03 systemd[1]: Created slice Slice /system/gpg-agent-browser.
Nov 06 09:57:03 systemd[1]: Created slice Slice /system/gpg-agent-extra.
Nov 06 09:57:03 systemd[1]: Created slice Slice /system/gpg-agent-ssh.
Nov 06 09:57:03 systemd[1]: Created slice Slice /system/keyboxd.
Nov 06 09:57:03 systemd[1]: Created slice Slice /system/modprobe.
Nov 06 09:57:03 systemd[1]: Created slice Slice /system/systemd-fsck.
Nov 06 09:57:03 systemd[1]: Created slice Slice /system/systemd-zram-setup.
Nov 06 09:57:03 systemd[1]: Created slice Slice /system/wg-quick.
Nov 06 09:57:03 systemd[1]: Created slice User and Session Slice.
Nov 06 09:57:03 systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Nov 06 09:57:03 systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Nov 06 09:57:03 systemd[1]: Expecting device /dev/disk/by-uuid/4BD1-D5E7...
Nov 06 09:57:03 systemd[1]: Expecting device /dev/disk/by-uuid/4f776292-0146-4358-aebe-601b8060f4a9...
Nov 06 09:57:03 systemd[1]: Expecting device /dev/zram0...
Nov 06 09:57:03 systemd[1]: Reached target Login Prompts.
Nov 06 09:57:03 systemd[1]: Reached target Image Downloads.
Nov 06 09:57:03 systemd[1]: Reached target Local Integrity Protected Volumes.
Nov 06 09:57:03 systemd[1]: Reached target Remote File Systems.
Nov 06 09:57:03 systemd[1]: Reached target Slice Units.
Nov 06 09:57:03 systemd[1]: Reached target Local Verity Protected Volumes.
Nov 06 09:57:03 systemd[1]: Listening on Device-mapper event daemon FIFOs.
Nov 06 09:57:03 systemd[1]: Listening on LVM2 poll daemon socket.
Nov 06 09:57:03 systemd[1]: Listening on Query the User Interactively for a Password.
Nov 06 09:57:03 systemd[1]: Listening on Process Core Dump Socket.
Nov 06 09:57:03 systemd[1]: Listening on Credential Encryption/Decryption.
Nov 06 09:57:03 systemd[1]: Listening on Factory Reset Management.
Nov 06 09:57:03 systemd[1]: Listening on Journal Socket (/dev/log).
Nov 06 09:57:03 systemd[1]: Listening on Journal Sockets.
Nov 06 09:57:03 systemd[1]: Listening on Network Service Varlink Socket.
Nov 06 09:57:03 systemd[1]: Listening on Network Service Netlink Socket.
Nov 06 09:57:03 systemd[1]: TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Nov 06 09:57:03 systemd[1]: Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Nov 06 09:57:03 systemd[1]: Listening on Resolve Monitor Varlink Socket.
Nov 06 09:57:03 systemd[1]: Listening on Resolve Service Varlink Socket.
Nov 06 09:57:03 systemd[1]: Listening on udev Control Socket.
Nov 06 09:57:03 systemd[1]: Listening on udev Kernel Socket.
Nov 06 09:57:03 systemd[1]: Listening on udev Varlink Socket.
Nov 06 09:57:03 systemd[1]: Listening on User Database Manager Socket.
Nov 06 09:57:03 systemd[1]: Mounting Huge Pages File System...
Nov 06 09:57:03 systemd[1]: Mounting POSIX Message Queue File System...
Nov 06 09:57:03 systemd[1]: Mounting Kernel Debug File System...
Nov 06 09:57:03 systemd[1]: Mounting Kernel Trace File System...
Nov 06 09:57:03 systemd[1]: Starting Create List of Static Device Nodes...
Nov 06 09:57:03 systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Nov 06 09:57:03 systemd[1]: Load Kernel Module configfs was skipped because of an unmet condition check (ConditionKernelModuleLoaded=!configfs).
Nov 06 09:57:03 systemd[1]: Mounting Kernel Configuration File System...
Nov 06 09:57:03 systemd[1]: Load Kernel Module dm_mod was skipped because of an unmet condition check (ConditionKernelModuleLoaded=!dm_mod).
Nov 06 09:57:03 systemd[1]: Load Kernel Module drm was skipped because of an unmet condition check (ConditionKernelModuleLoaded=!drm).
Nov 06 09:57:03 systemd[1]: Load Kernel Module fuse was skipped because of an unmet condition check (ConditionKernelModuleLoaded=!fuse).
Nov 06 09:57:03 systemd[1]: Mounting FUSE Control File System...
Nov 06 09:57:03 systemd[1]: Starting Load Kernel Module loop...
Nov 06 09:57:03 systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
Nov 06 09:57:03 systemd[1]: Starting Journal Service...
Nov 06 09:57:03 systemd[1]: Starting Load Kernel Modules...
Nov 06 09:57:03 systemd[1]: Starting Generate network units from Kernel command line...
Nov 06 09:57:03 systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Nov 06 09:57:03 systemd[1]: Starting Remount Root and Kernel File Systems...
Nov 06 09:57:03 systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Nov 06 09:57:03 systemd[1]: Starting Load udev Rules from Credentials...
Nov 06 09:57:03 systemd[1]: Starting Coldplug All udev Devices...
Nov 06 09:57:03 systemd[1]: Starting Virtual Console Setup...
Nov 06 09:57:03 systemd[1]: Mounted Huge Pages File System.
Nov 06 09:57:03 systemd[1]: Mounted POSIX Message Queue File System.
Nov 06 09:57:03 systemd[1]: Mounted Kernel Debug File System.
Nov 06 09:57:03 systemd[1]: Mounted Kernel Trace File System.
Nov 06 09:57:03 systemd[1]: Finished Create List of Static Device Nodes.
Nov 06 09:57:03 systemd[1]: Mounted Kernel Configuration File System.
Nov 06 09:57:03 systemd[1]: Mounted FUSE Control File System.
Nov 06 09:57:03 kernel: loop: module loaded
Nov 06 09:57:03 systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
Nov 06 09:57:03 systemd[1]: modprobe@loop.service: Deactivated successfully.
Nov 06 09:57:03 systemd[1]: Finished Load Kernel Module loop.
Nov 06 09:57:03 systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
Nov 06 09:57:03 systemd-journald[462]: Collecting audit messages is disabled.
Nov 06 09:57:03 systemd[1]: Finished Generate network units from Kernel command line.
Nov 06 09:57:03 systemd[1]: Reached target Preparation for Network.
Nov 06 09:57:03 systemd[1]: Finished Load udev Rules from Credentials.
Nov 06 09:57:03 systemd[1]: Finished Virtual Console Setup.
Nov 06 09:57:03 kernel: i2c_dev: i2c /dev entries driver
Nov 06 09:57:03 kernel: ddcci: WARNING: Auto-probing of displays is not available on kernel 6.8 and later
Nov 06 09:57:03 systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Nov 06 09:57:03 kernel: BTRFS info (device dm-0 state M): use zstd compression, level 3
Nov 06 09:57:03 systemd[1]: Finished Remount Root and Kernel File Systems.
Nov 06 09:57:03 kernel: Asymmetric key parser 'pkcs8' registered
Nov 06 09:57:03 systemd[1]: Rebuild Hardware Database was skipped because no trigger condition checks were met.
Nov 06 09:57:03 systemd[1]: Starting Load/Save OS Random Seed...
Nov 06 09:57:03 systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Nov 06 09:57:03 systemd[1]: Starting User Database Manager...
Nov 06 09:57:03 systemd[1]: Finished Load/Save OS Random Seed.
Nov 06 09:57:03 systemd-journald[462]: Journal started
Nov 06 09:57:03 systemd-journald[462]: Runtime Journal (/run/log/journal/0de77d99083e43039070f46c2a2db704) is 8M, max 1.5G, 1.5G free.
Nov 06 09:57:03 systemd-vconsole-setup[470]: All allocated virtual consoles are busy, will not configure key mapping and font.
Nov 06 09:57:03 systemd-modules-load[463]: Inserted module 'ntsync'
Nov 06 09:57:03 systemd[1]: Started Journal Service.
Nov 06 09:57:03 systemd-modules-load[463]: Inserted module 'crypto_user'
Nov 06 09:57:03 systemd-modules-load[463]: Inserted module 'i2c_dev'
Nov 06 09:57:03 systemd-modules-load[463]: Inserted module 'ddcci'
Nov 06 09:57:03 systemd-modules-load[463]: Inserted module 'ddcci_backlight'
Nov 06 09:57:03 systemd-modules-load[463]: Inserted module 'pkcs8_key_parser'
Nov 06 09:57:03 systemd[1]: Started User Database Manager.
Nov 06 09:57:03 systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
Nov 06 09:57:03 systemd[1]: Starting Create System Users...
Nov 06 09:57:03 kernel: vboxdrv: Found 4 processor cores/threads
Nov 06 09:57:03 systemd[1]: Finished Create System Users.
Nov 06 09:57:03 systemd[1]: Starting Network Time Synchronization...
Nov 06 09:57:03 systemd[1]: Starting Create Static Device Nodes in /dev...
Nov 06 09:57:03 systemd-modules-load[463]: Inserted module 'vboxdrv'
Nov 06 09:57:03 kernel: vboxdrv: TSC mode is Invariant, tentative frequency 3399012849 Hz
Nov 06 09:57:03 kernel: vboxdrv: Successfully loaded version 7.2.4 r170995 (interface 0x00340001)
Nov 06 09:57:03 systemd-modules-load[463]: Inserted module 'vboxnetadp'
Nov 06 09:57:03 kernel: VBoxNetAdp: Successfully started.
Nov 06 09:57:03 systemd-modules-load[463]: Inserted module 'vboxnetflt'
Nov 06 09:57:03 kernel: VBoxNetFlt: Successfully started.
Nov 06 09:57:03 systemd[1]: Finished Load Kernel Modules.
Nov 06 09:57:03 systemd[1]: Starting Apply Kernel Variables...
Nov 06 09:57:03 systemd[1]: Started Network Time Synchronization.
Nov 06 09:57:03 systemd[1]: Reached target System Time Set.
Nov 06 09:57:03 systemd[1]: Finished Apply Kernel Variables.
Nov 06 09:57:03 systemd[1]: Finished Create Static Device Nodes in /dev.
Nov 06 09:57:03 systemd[1]: Reached target Preparation for Local File Systems.
Nov 06 09:57:03 systemd[1]: Set up automount mnt-legacy_hdd.automount.
Nov 06 09:57:03 systemd[1]: Set up automount mnt-storage_vols-data.automount.
Nov 06 09:57:03 systemd[1]: Set up automount mnt-storage_vols-games.automount.
Nov 06 09:57:03 systemd[1]: Set up automount mnt-storage_vols-media.automount.
Nov 06 09:57:03 systemd[1]: Set up automount mnt-storage_vols-software.automount.
Nov 06 09:57:03 systemd[1]: Starting Network Name Resolution...
Nov 06 09:57:03 systemd[1]: Starting Rule-based Manager for Device Events and Files...
Nov 06 09:57:03 systemd[1]: Starting CLI Netfilter Manager...
Nov 06 09:57:03 systemd-udevd[516]: Using default interface naming scheme 'v258'.
Nov 06 09:57:03 systemd-resolved[515]: Positive Trust Anchors:
Nov 06 09:57:03 systemd-resolved[515]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d
Nov 06 09:57:03 systemd-resolved[515]: . IN DS 38696 8 2 683d2d0acb8c9b712a1948b27f741219298d0a450d612c483af444a4c0fb2b16
Nov 06 09:57:03 systemd-resolved[515]: 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
Nov 06 09:57:03 systemd-udevd[516]: Configuration file /etc/udev/rules.d/40-libsane.rules is marked executable. Please remove executable permission bits. Proceeding anyway.
Nov 06 09:57:03 systemd-udevd[516]: /etc/udev/rules.d/40-libsane.rules:26 GOTO="libsane_rules_end" has no matching label, ignoring.
Nov 06 09:57:03 systemd-udevd[516]: /etc/udev/rules.d/40-libsane.rules:26 The line has no effect any more, dropping.
Nov 06 09:57:03 systemd-resolved[515]: Using system hostname 'dahin'.
Nov 06 09:57:03 systemd[1]: Started Network Name Resolution.
Nov 06 09:57:03 systemd[1]: Reached target Host and Network Name Lookups.
Nov 06 09:57:03 systemd[1]: Finished Coldplug All udev Devices.
Nov 06 09:57:03 systemd-udevd[516]: Configuration file /etc/udev/rules.d/S99-2000S1.rules is marked executable. Please remove executable permission bits. Proceeding anyway.
Nov 06 09:57:03 systemd-udevd[516]: /etc/udev/rules.d/S99-2000S1.rules:26 GOTO="libsane_rules_end" has no matching label, ignoring.
Nov 06 09:57:03 systemd-udevd[516]: /etc/udev/rules.d/S99-2000S1.rules:26 The line has no effect any more, dropping.
Nov 06 09:57:03 systemd[1]: Started Rule-based Manager for Device Events and Files.
Nov 06 09:57:03 systemd[1]: Starting Show Plymouth Boot Screen...
Nov 06 09:57:03 systemd[1]: Starting Network Configuration...
Nov 06 09:57:03 systemd-timesyncd[503]: Network configuration changed, trying to establish connection.
Nov 06 09:57:03 systemd-timesyncd[503]: Network configuration changed, trying to establish connection.
Nov 06 09:57:03 systemd-timesyncd[503]: Network configuration changed, trying to establish connection.
Nov 06 09:57:03 systemd-timesyncd[503]: Network configuration changed, trying to establish connection.
Nov 06 09:57:03 systemd[1]: Started Show Plymouth Boot Screen.
Nov 06 09:57:03 systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
Nov 06 09:57:03 systemd[1]: Started Forward Password Requests to Plymouth Directory Watch.
Nov 06 09:57:03 systemd[1]: Reached target Local Encrypted Volumes.
Nov 06 09:57:03 kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Nov 06 09:57:03 kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Nov 06 09:57:03 kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
Nov 06 09:57:03 systemd-networkd[542]: /etc/systemd/network/20-ethernet.network:16: Unknown key 'Broadcast' in section [Network], ignoring.
Nov 06 09:57:03 systemd-networkd[542]: lo: Link UP
Nov 06 09:57:03 systemd-networkd[542]: lo: Gained carrier
Nov 06 09:57:03 systemd[1]: Found device /dev/zram0.
Nov 06 09:57:03 systemd[1]: Starting Create swap on /dev/zram0...
Nov 06 09:57:03 kernel: zram0: detected capacity change from 0 to 8388608
Nov 06 09:57:03 systemd[1]: Started Network Configuration.
Nov 06 09:57:03 systemd[1]: Starting Enable Persistent Storage in systemd-networkd...
Nov 06 09:57:03 systemd-makefs[613]: /dev/zram0 successfully formatted as swap (label "zram0", uuid db2ca747-a41e-48d7-aa73-5caa5103afe4)
Nov 06 09:57:03 systemd[1]: Finished Create swap on /dev/zram0.
Nov 06 09:57:03 systemd[1]: Activating swap Compressed Swap on /dev/zram0...
Nov 06 09:57:03 systemd[1]: Finished Enable Persistent Storage in systemd-networkd.
Nov 06 09:57:03 systemd[1]: Finished CLI Netfilter Manager.
Nov 06 09:57:03 kernel: Adding 4194300k swap on /dev/zram0.  Priority:100 extents:1 across:4194300k SSDsc
Nov 06 09:57:03 systemd[1]: Activated swap Compressed Swap on /dev/zram0.
Nov 06 09:57:03 systemd[1]: Reached target Swaps.
Nov 06 09:57:03 systemd[1]: Found device /dev/disk/by-uuid/4f776292-0146-4358-aebe-601b8060f4a9.
Nov 06 09:57:03 mtp-probe[648]: checking bus 2, device 4: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-6"
Nov 06 09:57:03 mtp-probe[647]: checking bus 2, device 3: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-3"
Nov 06 09:57:03 mtp-probe[648]: bus: 2, device: 4 was not an MTP device
Nov 06 09:57:03 mtp-probe[647]: bus: 2, device: 3 was not an MTP device
Nov 06 09:57:03 systemd[1]: Found device KINGSTON_SA400S37480G 1.
Nov 06 09:57:03 systemd[1]: Starting File System Check on /dev/disk/by-uuid/4BD1-D5E7...
Nov 06 09:57:03 systemd-fsck[678]: fsck.fat 4.2 (2021-01-31)
Nov 06 09:57:03 systemd-fsck[678]: /dev/sda1: 30 files, 180738/523260 clusters
Nov 06 09:57:03 systemd[1]: Finished File System Check on /dev/disk/by-uuid/4BD1-D5E7.
Nov 06 09:57:03 kernel: pps_core: LinuxPPS API ver. 1 registered
Nov 06 09:57:03 kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Nov 06 09:57:03 kernel: PTP clock support registered
Nov 06 09:57:03 kernel: ddcci 0-0037: core device [6e] probe failed: -19
Nov 06 09:57:03 kernel: e1000e: Intel(R) PRO/1000 Network Driver
Nov 06 09:57:03 kernel: e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
Nov 06 09:57:03 kernel: e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
Nov 06 09:57:03 kernel: mousedev: PS/2 mouse device common for all mice
Nov 06 09:57:03 kernel: i2c i2c-0: new_device: Instantiated device ddcci at 0x37
Nov 06 09:57:03 kernel: ddcci 4-0037: core device [6e] probe failed: -19
Nov 06 09:57:03 kernel: i2c i2c-4: new_device: Instantiated device ddcci at 0x37
Nov 06 09:57:03 kernel: ddcci 1-0037: core device [6e] probe failed: -19
Nov 06 09:57:03 kernel: i2c i2c-1: new_device: Instantiated device ddcci at 0x37
Nov 06 09:57:03 kernel: snd_hda_intel 0000:00:1b.0: enabling device (0000 -> 0002)
Nov 06 09:57:03 kernel: snd_hda_intel 0000:01:00.1: Disabling MSI
Nov 06 09:57:03 kernel: snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
Nov 06 09:57:03 kernel: ddcci 5-0037: core device [6e] probe failed: -19
Nov 06 09:57:03 kernel: i2c i2c-5: new_device: Instantiated device ddcci at 0x37
Nov 06 09:57:03 kernel: e1000e 0000:00:19.0 0000:00:19.0 (uninitialized): registered PHC clock
Nov 06 09:57:03 kernel: ddcci 3-0037: core device [6e] probe failed: -19
Nov 06 09:57:03 kernel: i2c i2c-3: new_device: Instantiated device ddcci at 0x37
Nov 06 09:57:03 kernel: Bluetooth: Core ver 2.22
Nov 06 09:57:03 kernel: NET: Registered PF_BLUETOOTH protocol family
Nov 06 09:57:03 kernel: Bluetooth: HCI device and connection manager initialized
Nov 06 09:57:03 kernel: Bluetooth: HCI socket layer initialized
Nov 06 09:57:03 kernel: Bluetooth: L2CAP socket layer initialized
Nov 06 09:57:03 kernel: Bluetooth: SCO socket layer initialized
Nov 06 09:57:03 kernel: iTCO_vendor_support: vendor-support=0
Nov 06 09:57:03 kernel: input: PC Speaker as /devices/platform/pcspkr/input/input8
Nov 06 09:57:03 kernel: i801_smbus 0000:00:1f.3: SPD Write Disable is set
Nov 06 09:57:03 kernel: i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
Nov 06 09:57:03 kernel: snd_hda_codec_alc882 hdaudioC0D0: ALC1150: SKU not ready 0x00000000
Nov 06 09:57:03 kernel: snd_hda_codec_alc882 hdaudioC0D0: autoconfig for ALC1150: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line
Nov 06 09:57:03 kernel: snd_hda_codec_alc882 hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Nov 06 09:57:03 kernel: snd_hda_codec_alc882 hdaudioC0D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
Nov 06 09:57:03 kernel: snd_hda_codec_alc882 hdaudioC0D0:    mono: mono_out=0x0
Nov 06 09:57:03 kernel: snd_hda_codec_alc882 hdaudioC0D0:    dig-out=0x1e/0x0
Nov 06 09:57:03 kernel: snd_hda_codec_alc882 hdaudioC0D0:    inputs:
Nov 06 09:57:03 kernel: snd_hda_codec_alc882 hdaudioC0D0:      Rear Mic=0x18
Nov 06 09:57:03 kernel: snd_hda_codec_alc882 hdaudioC0D0:      Front Mic=0x19
Nov 06 09:57:03 kernel: snd_hda_codec_alc882 hdaudioC0D0:      Line=0x1a
Nov 06 09:57:03 kernel: i2c i2c-7: Successfully instantiated SPD at 0x50
Nov 06 09:57:03 kernel: iTCO_wdt iTCO_wdt.1.auto: Found a 9 Series TCO device (Version=2, TCOBASE=0x1860)
Nov 06 09:57:03 kernel: iTCO_wdt iTCO_wdt.1.auto: initialized. heartbeat=30 sec (nowayout=0)
Nov 06 09:57:03 kernel: i2c i2c-7: Successfully instantiated SPD at 0x51
Nov 06 09:57:03 kernel: RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 655360 ms ovfl timer
Nov 06 09:57:03 kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
Nov 06 09:57:03 kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
Nov 06 09:57:03 kernel: RAPL PMU: hw unit of domain dram 2^-14 Joules
Nov 06 09:57:03 kernel: i2c i2c-7: Successfully instantiated SPD at 0x52
Nov 06 09:57:03 kernel: i2c i2c-7: Successfully instantiated SPD at 0x53
Nov 06 09:57:03 kernel: input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input9
Nov 06 09:57:03 kernel: input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input10
Nov 06 09:57:03 kernel: input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input11
Nov 06 09:57:03 kernel: input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input12
Nov 06 09:57:03 kernel: input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
Nov 06 09:57:03 kernel: input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
Nov 06 09:57:03 kernel: input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
Nov 06 09:57:03 kernel: input: HDA Intel PCH Line Out Front as /devices/pci0000:00/0000:00:1b.0/sound/card0/input16
Nov 06 09:57:03 kernel: input: HDA Intel PCH Line Out Surround as /devices/pci0000:00/0000:00:1b.0/sound/card0/input17
Nov 06 09:57:03 kernel: input: HDA Intel PCH Line Out CLFE as /devices/pci0000:00/0000:00:1b.0/sound/card0/input18
Nov 06 09:57:03 kernel: input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input19
Nov 06 09:57:04 kernel: usbcore: registered new interface driver btusb
Nov 06 09:57:04 kernel: e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) d0:50:99:25:da:e1
Nov 06 09:57:04 kernel: e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
Nov 06 09:57:04 kernel: e1000e 0000:00:19.0 eth0: MAC: 11, PHY: 12, PBA No: FFFFFF-0FF
Nov 06 09:57:04 kernel: Bluetooth: hci0: RTL: examining hci_ver=0a hci_rev=000b lmp_ver=0a lmp_subver=8761
Nov 06 09:57:04 kernel: Bluetooth: hci0: RTL: rom_version status=0 version=1
Nov 06 09:57:04 kernel: Bluetooth: hci0: RTL: loading rtl_bt/rtl8761bu_fw.bin
Nov 06 09:57:04 kernel: Bluetooth: hci0: RTL: loading rtl_bt/rtl8761bu_config.bin
Nov 06 09:57:04 kernel: Bluetooth: hci0: RTL: cfg_sz 6, total sz 30210
Nov 06 09:57:04 systemd[1]: systemd-vconsole-setup.service: Deactivated successfully.
Nov 06 09:57:04 systemd[1]: Stopped Virtual Console Setup.
Nov 06 09:57:04 systemd[1]: Stopping Virtual Console Setup...
Nov 06 09:57:04 systemd[1]: Starting Virtual Console Setup...
Nov 06 09:57:04 systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Nov 06 09:57:04 systemd[1]: Starting Load/Save RF Kill Switch Status...
Nov 06 09:57:04 systemd-vconsole-setup[763]: All allocated virtual consoles are busy, will not configure key mapping and font.
Nov 06 09:57:04 systemd[1]: Finished Virtual Console Setup.
Nov 06 09:57:04 systemd[1]: Reached target Sound Card.
Nov 06 09:57:04 systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
Nov 06 09:57:04 systemd[1]: Load Kernel Module dm_mod was skipped because of an unmet condition check (ConditionKernelModuleLoaded=!dm_mod).
Nov 06 09:57:04 systemd[1]: Load Kernel Module loop was skipped because of an unmet condition check (ConditionKernelModuleLoaded=!loop).
Nov 06 09:57:04 systemd[1]: Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67).
Nov 06 09:57:04 systemd[1]: Rebuild Hardware Database was skipped because no trigger condition checks were met.
Nov 06 09:57:04 systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Nov 06 09:57:04 systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Nov 06 09:57:04 systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
Nov 06 09:57:04 systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Nov 06 09:57:04 kernel: ACPI: bus type thunderbolt registered
Nov 06 09:57:04 systemd[1]: Started Load/Save RF Kill Switch Status.
Nov 06 09:57:04 kernel: at24 7-0050: supply vcc not found, using dummy regulator
Nov 06 09:57:04 kernel: e1000e 0000:00:19.0 enp0s25: renamed from eth0
Nov 06 09:57:04 systemd-networkd[542]: eth0: Interface name change detected, renamed to enp0s25.
Nov 06 09:57:04 kernel: intel_rapl_common: Found RAPL domain package
Nov 06 09:57:04 kernel: intel_rapl_common: Found RAPL domain core
Nov 06 09:57:04 kernel: intel_rapl_common: Found RAPL domain dram
Nov 06 09:57:04 kernel: at24 7-0050: 256 byte spd EEPROM, read-only
Nov 06 09:57:04 kernel: at24 7-0051: supply vcc not found, using dummy regulator
Nov 06 09:57:04 kernel: at24 7-0051: 256 byte spd EEPROM, read-only
Nov 06 09:57:04 kernel: at24 7-0052: supply vcc not found, using dummy regulator
Nov 06 09:57:04 systemd-networkd[542]: enp0s25: Configuring with /etc/systemd/network/20-ethernet.network.
Nov 06 09:57:04 kernel: at24 7-0052: 256 byte spd EEPROM, read-only
Nov 06 09:57:04 kernel: at24 7-0053: supply vcc not found, using dummy regulator
Nov 06 09:57:04 kernel: at24 7-0053: 256 byte spd EEPROM, read-only
Nov 06 09:57:04 systemd[1]: Mounting /boot...
Nov 06 09:57:04 systemd[1]: Mounting /home...
Nov 06 09:57:04 systemd[1]: Mounting Temporary Directory /tmp...
Nov 06 09:57:04 systemd[1]: Mounting /var/cache/pacman/pkg...
Nov 06 09:57:04 systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
Nov 06 09:57:04 systemd[1]: Listening on Disk Image Download Service Socket.
Nov 06 09:57:04 systemd[1]: Mounting /var/log...
Nov 06 09:57:04 systemd[1]: Mounted Temporary Directory /tmp.
Nov 06 09:57:04 systemd[1]: Mounted /home.
Nov 06 09:57:04 systemd[1]: Mounted /var/cache/pacman/pkg.
Nov 06 09:57:04 systemd[1]: Mounted /var/log.
Nov 06 09:57:04 systemd[1]: Starting Flush Journal to Persistent Storage...
Nov 06 09:57:04 systemd-journald[462]: Time spent on flushing to /var/log/journal/0de77d99083e43039070f46c2a2db704 is 110.659ms for 1138 entries.
Nov 06 09:57:04 systemd-journald[462]: System Journal (/var/log/journal/0de77d99083e43039070f46c2a2db704) is 328.4M, max 4G, 3.6G free.
Nov 06 09:57:04 systemd-journald[462]: Received client request to flush runtime journal.
Nov 06 09:57:04 systemd[1]: Mounted /boot.
Nov 06 09:57:04 kernel: Bluetooth: hci0: RTL: fw version 0xdfc6d922
Nov 06 09:57:04 systemd[1]: Reached target Local File Systems.
Nov 06 09:57:04 systemd[1]: Listening on Boot Entries Service Socket.
Nov 06 09:57:04 systemd[1]: Listening on System Extension Image Management.
Nov 06 09:57:04 systemd[1]: Starting Tell Plymouth To Write Out Runtime Data...
Nov 06 09:57:04 systemd[1]: Starting Set Up Additional Binary Formats...
Nov 06 09:57:04 systemd[1]: Starting Update Boot Loader Random Seed...
Nov 06 09:57:04 systemd[1]: Starting Load JSON user/group Records from Credentials...
Nov 06 09:57:04 systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 796 (systemd-binfmt)
Nov 06 09:57:04 systemd[1]: Finished Load JSON user/group Records from Credentials.
Nov 06 09:57:04 systemd[1]: Received SIGRTMIN+20 from PID 203 (plymouthd).
Nov 06 09:57:04 systemd[1]: Finished Tell Plymouth To Write Out Runtime Data.
Nov 06 09:57:04 bootctl[797]:  Mount point '/boot' which backs the random seed file is world accessible, which is a security hole! 
Nov 06 09:57:04 bootctl[797]: Random seed file '/boot/loader/random-seed' is world accessible, which is a security hole!
Nov 06 09:57:04 bootctl[797]: Random seed file /boot/loader/random-seed successfully refreshed (32 bytes).
Nov 06 09:57:04 systemd[1]: Finished Update Boot Loader Random Seed.
Nov 06 09:57:04 systemd-networkd[542]: enp0s25: Link UP
Nov 06 09:57:04 systemd[1]: Finished Flush Journal to Persistent Storage.
Nov 06 09:57:04 systemd[1]: Starting Create System Files and Directories...
Nov 06 09:57:04 systemd[1]: Finished Create System Files and Directories.
Nov 06 09:57:04 systemd[1]: Starting Rebuild Dynamic Linker Cache...
Nov 06 09:57:04 systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Nov 06 09:57:04 systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Nov 06 09:57:04 systemd[1]: Starting Rebuild Journal Catalog...
Nov 06 09:57:04 systemd[1]: Save Transient machine-id to Disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
Nov 06 09:57:04 systemd[1]: Starting Record System Boot/Shutdown in UTMP...
Nov 06 09:57:04 systemd[1]: Finished Record System Boot/Shutdown in UTMP.
Nov 06 09:57:04 systemd[1]: Finished Rebuild Journal Catalog.
Nov 06 09:57:04 systemd[1]: Finished Rebuild Dynamic Linker Cache.
Nov 06 09:57:04 systemd[1]: Starting Update is Completed...
Nov 06 09:57:04 systemd[1]: Finished Update is Completed.
Nov 06 09:57:05 kernel: nvidia-gpu 0000:01:00.3: i2c timeout error e0000000
Nov 06 09:57:05 kernel: ucsi_ccg 6-0008: i2c_transfer failed -110
Nov 06 09:57:05 kernel: ucsi_ccg 6-0008: ucsi_ccg_init failed - -110
Nov 06 09:57:05 systemd[1]: Mounting Arbitrary Executable File Formats File System...
Nov 06 09:57:05 kernel: ucsi_ccg 6-0008: probe with driver ucsi_ccg failed with error -110
Nov 06 09:57:05 systemd[1]: Mounted Arbitrary Executable File Formats File System.
Nov 06 09:57:05 systemd[1]: Finished Set Up Additional Binary Formats.
Nov 06 09:57:05 systemd[1]: Reached target System Initialization.
Nov 06 09:57:05 systemd[1]: Started CUPS Scheduler.
Nov 06 09:57:05 systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
Nov 06 09:57:05 systemd[1]: Started Daily man-db regeneration.
Nov 06 09:57:05 systemd[1]: Started Update the plocate database daily.
Nov 06 09:57:05 systemd[1]: Started Daily verification of password and group files.
Nov 06 09:57:05 systemd[1]: Started Hourly Cleanup of Snapper Snapshots.
Nov 06 09:57:05 systemd[1]: Started Timeline of Snapper Snapshots.
Nov 06 09:57:05 systemd[1]: Started Daily Cleanup of Temporary Directories.
Nov 06 09:57:05 systemd[1]: Reached target Path Units.
Nov 06 09:57:05 systemd[1]: Reached target Timer Units.
Nov 06 09:57:05 systemd[1]: Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
Nov 06 09:57:05 systemd[1]: Listening on CUPS Scheduler.
Nov 06 09:57:05 systemd[1]: Listening on D-Bus System Message Bus Socket.
Nov 06 09:57:05 systemd[1]: Listening on GnuPG network certificate management daemon for /etc/pacman.d/gnupg.
Nov 06 09:57:05 systemd[1]: Starting Docker Socket for the API...
Nov 06 09:57:05 systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers) for /etc/pacman.d/gnupg.
Nov 06 09:57:05 systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (restricted) for /etc/pacman.d/gnupg.
Nov 06 09:57:05 systemd[1]: Listening on GnuPG cryptographic agent (ssh-agent emulation) for /etc/pacman.d/gnupg.
Nov 06 09:57:05 systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache for /etc/pacman.d/gnupg.
Nov 06 09:57:05 systemd[1]: Listening on GnuPG public key management service for /etc/pacman.d/gnupg.
Nov 06 09:57:05 systemd[1]: Listening on libvirt legacy monolithic daemon socket.
Nov 06 09:57:05 systemd[1]: Listening on libvirt legacy monolithic daemon admin socket.
Nov 06 09:57:05 systemd[1]: Listening on libvirt legacy monolithic daemon read-only socket.
Nov 06 09:57:05 systemd[1]: Listening on OpenSSH Server Socket (systemd-ssh-generator, AF_UNIX Local).
Nov 06 09:57:05 systemd[1]: Listening on Hostname Service Socket.
Nov 06 09:57:05 systemd[1]: Listening on User Login Management Varlink Socket.
Nov 06 09:57:05 systemd[1]: Listening on Virtual Machine and Container Registration Service Socket.
Nov 06 09:57:05 systemd[1]: Listening on libvirt locking daemon socket.
Nov 06 09:57:05 systemd[1]: Listening on libvirt locking daemon admin socket.
Nov 06 09:57:05 systemd[1]: Listening on libvirt logging daemon socket.
Nov 06 09:57:05 systemd[1]: Listening on libvirt logging daemon admin socket.
Nov 06 09:57:05 systemd[1]: Starting D-Bus System Message Bus...
Nov 06 09:57:05 systemd[1]: TPM PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Nov 06 09:57:05 systemd[1]: Listening on Docker Socket for the API.
Nov 06 09:57:05 systemd[1]: Reached target Socket Units.
Nov 06 09:57:05 systemd[1]: Started D-Bus System Message Bus.
Nov 06 09:57:05 dbus-broker-launch[823]: Ready
Nov 06 09:57:05 systemd[1]: Reached target Basic System.
Nov 06 09:57:05 systemd[1]: Starting Avahi mDNS/DNS-SD Stack...
Nov 06 09:57:05 systemd[1]: Starting Bluetooth service...
Nov 06 09:57:05 systemd[1]: Started DHCP/ IPv4LL/ IPv6RA/ DHCPv6 client on all interfaces.
Nov 06 09:57:05 systemd[1]: Starting Wireless service...
Nov 06 09:57:05 systemd[1]: Started [limine-snapper-sync.service] automatically synchronizes boot entries with the Snapper snapshot list..
Nov 06 09:57:05 systemd[1]: Starting User Login Management...
Nov 06 09:57:05 systemd[1]: Starting Virtual Machine and Container Registration Service...
Nov 06 09:57:05 systemd[1]: TPM PCR Barrier (User) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Nov 06 09:57:05 dhcpcd[827]: dhcpcd-10.2.4 starting
Nov 06 09:57:05 systemd[1]: Started Verify integrity of password and group files.
Nov 06 09:57:05 dhcpcd[835]: dev: loaded udev
Nov 06 09:57:05 dhcpcd[835]: DUID 00:01:00:01:30:8b:74:7d:d0:50:99:25:da:e1
Nov 06 09:57:05 avahi-daemon[825]: Found user 'avahi' (UID 970) and group 'avahi' (GID 970).
Nov 06 09:57:05 avahi-daemon[825]: Successfully dropped root privileges.
Nov 06 09:57:05 systemd[1]: Started Avahi mDNS/DNS-SD Stack.
Nov 06 09:57:05 avahi-daemon[825]: avahi-daemon 0.8 starting up.
Nov 06 09:57:05 avahi-daemon[825]: Successfully called chroot().
Nov 06 09:57:05 avahi-daemon[825]: Successfully dropped remaining capabilities.
Nov 06 09:57:05 avahi-daemon[825]: No service file found in /etc/avahi/services.
Nov 06 09:57:05 avahi-daemon[825]: Joining mDNS multicast group on interface lo.IPv6 with address ::1.
Nov 06 09:57:05 avahi-daemon[825]: New relevant interface lo.IPv6 for mDNS.
Nov 06 09:57:05 avahi-daemon[825]: Joining mDNS multicast group on interface lo.IPv4 with address 127.0.0.1.
Nov 06 09:57:05 avahi-daemon[825]: New relevant interface lo.IPv4 for mDNS.
Nov 06 09:57:05 avahi-daemon[825]: Network interface enumeration completed.
Nov 06 09:57:05 avahi-daemon[825]: Registering new address record for ::1 on lo.*.
Nov 06 09:57:05 avahi-daemon[825]: Registering new address record for 127.0.0.1 on lo.IPv4.
Nov 06 09:57:05 kernel: 8021q: 802.1Q VLAN Support v1.8
Nov 06 09:57:05 kernel: NET: Registered PF_ALG protocol family
Nov 06 09:57:05 systemd[1]: Started Virtual Machine and Container Registration Service.
Nov 06 09:57:05 kernel: ddcci-backlight ddcci2: registered luminance as backlight device ddcci2
Nov 06 09:57:05 dhcpcd[835]: no interfaces have a carrier
Nov 06 09:57:05 dhcpcd[835]: enp0s25: waiting for carrier
Nov 06 09:57:05 bluetoothd[826]: Bluetooth daemon 5.84
Nov 06 09:57:05 systemd[1]: Started Bluetooth service.
Nov 06 09:57:05 systemd[1]: Reached target Bluetooth Support.
Nov 06 09:57:05 bluetoothd[826]: Starting SDP server
Nov 06 09:57:05 systemd[1]: shadow.service: Deactivated successfully.
Nov 06 09:57:05 kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Nov 06 09:57:05 kernel: Bluetooth: BNEP filters: protocol multicast
Nov 06 09:57:05 kernel: Bluetooth: BNEP socket layer initialized
Nov 06 09:57:05 systemd-logind[832]: New seat seat0.
Nov 06 09:57:05 bluetoothd[826]: Bluetooth management interface 1.23 initialized
Nov 06 09:57:05 bluetoothd[826]: Battery Provider Manager created
Nov 06 09:57:05 kernel: Bluetooth: MGMT ver 1.23
Nov 06 09:57:05 systemd[1]: Starting Hostname Service...
Nov 06 09:57:05 systemd-logind[832]: Watching system buttons on /dev/input/event2 (Power Button)
Nov 06 09:57:05 systemd-logind[832]: Watching system buttons on /dev/input/event0 (Power Button)
Nov 06 09:57:05 systemd-logind[832]: Watching system buttons on /dev/input/event1 (Sleep Button)
Nov 06 09:57:05 systemd-logind[832]: Watching system buttons on /dev/input/event4 (CM Storm Quickfire Pro Ultimate N key Consumer Control)
Nov 06 09:57:05 systemd-logind[832]: Watching system buttons on /dev/input/event5 (CM Storm Quickfire Pro Ultimate N key System Control)
Nov 06 09:57:05 bluetoothd[826]: Failed to set mode: Failed (0x03)
Nov 06 09:57:05 systemd[1]: Started User Login Management.
Nov 06 09:57:05 systemd[1]: Started Hostname Service.
Nov 06 09:57:05 iwd[828]: Wireless daemon version 3.10
Nov 06 09:57:05 systemd[1]: Started Wireless service.
Nov 06 09:57:05 systemd[1]: Reached target Network.
Nov 06 09:57:05 iwd[828]: station: Network configuration is disabled.
Nov 06 09:57:05 systemd[1]: Reached target Network is Online.
Nov 06 09:57:05 systemd[1]: Starting containerd container runtime...
Nov 06 09:57:05 systemd[1]: Starting CUPS Scheduler...
Nov 06 09:57:05 systemd[1]: Starting libvirt legacy monolithic daemon...
Nov 06 09:57:05 systemd[1]: Starting Permit User Sessions...
Nov 06 09:57:05 systemd[1]: Starting Transmission BitTorrent Daemon...
Nov 06 09:57:05 systemd[1]: Started WireGuard via wg-quick(8) for wgcf/profile.
Nov 06 09:57:05 systemd[1]: Finished Permit User Sessions.
Nov 06 09:57:05 systemd[1]: Starting Hold until boot process finishes up...
Nov 06 09:57:05 systemd[1]: Starting Terminate Plymouth Boot Screen...
Nov 06 09:57:05 systemd[1]: Received SIGRTMIN+21 from PID 203 (plymouthd).
Nov 06 09:57:05 systemd[1]: Finished Terminate Plymouth Boot Screen.
Nov 06 09:57:05 systemd[1]: Started Simple Desktop Display Manager.
Nov 06 09:57:05 systemd[1]: Finished Hold until boot process finishes up.
Nov 06 09:57:05 wg-quick[955]: [#] ip link add dev wgcf-profile type wireguard
Nov 06 09:57:05 kernel: wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.
Nov 06 09:57:05 kernel: wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
Nov 06 09:57:05 wg-quick[955]: [#] wg setconf wgcf-profile /dev/fd/63
Nov 06 09:57:05 iwd[828]: udev interface=wgcf-profile ifindex=3
Nov 06 09:57:05 wg-quick[981]: Temporary failure in name resolution: `engage.cloudflareclient.com:2408'. Trying again in 1.00 seconds...
Nov 06 09:57:05 systemd-networkd[542]: wgcf-profile: Link UP
Nov 06 09:57:05 dhcpcd[835]: wgcf-profile: waiting for carrier
Nov 06 09:57:05 dhcpcd[835]: wgcf-profile: carrier acquired
Nov 06 09:57:05 systemd-networkd[542]: wgcf-profile: Gained carrier
Nov 06 09:57:05 transmission-daemon[954]: sendto: Network is unreachable
Nov 06 09:57:05 transmission-daemon[954]: sendto: Network is unreachable
Nov 06 09:57:05 transmission-daemon[954]: sendto: Network is unreachable
Nov 06 09:57:05 transmission-daemon[954]: sendto: Network is unreachable
Nov 06 09:57:05 dhcpcd[835]: wgcf-profile: IAID 00:00:00:03
Nov 06 09:57:05 dhcpcd[835]: wgcf-profile: waiting for 3rd party to configure IP address
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.560820931+01:00" level=info msg="starting containerd" revision=75cb2b7193e4e490e9fbdc236c0e811ccaba3376.m version=v2.1.4
Nov 06 09:57:05 systemd[1]: Started CUPS Scheduler.
Nov 06 09:57:05 systemd[1]: Started Make remote CUPS printers available locally.
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.573658089+01:00" level=info msg="loading plugin" id=io.containerd.content.v1.content type=io.containerd.content.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.574268881+01:00" level=info msg="loading plugin" id=io.containerd.image-verifier.v1.bindir type=io.containerd.image-verifier.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.574293118+01:00" level=info msg="loading plugin" id=io.containerd.internal.v1.opt type=io.containerd.internal.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.574347265+01:00" level=info msg="loading plugin" id=io.containerd.warning.v1.deprecations type=io.containerd.warning.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.574368079+01:00" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.blockfile type=io.containerd.snapshotter.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.574401054+01:00" level=info msg="skip loading plugin" error="no scratch file generator: skip plugin" id=io.containerd.snapshotter.v1.blockfile type=io.containerd.snapshotter.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.574411173+01:00" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.btrfs type=io.containerd.snapshotter.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.574587784+01:00" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.devmapper type=io.containerd.snapshotter.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.574610403+01:00" level=info msg="skip loading plugin" error="devmapper not configured: skip plugin" id=io.containerd.snapshotter.v1.devmapper type=io.containerd.snapshotter.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.574617335+01:00" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.erofs type=io.containerd.snapshotter.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.574761145+01:00" level=info msg="skip loading plugin" error="EROFS unsupported, please `modprobe erofs`: skip plugin" id=io.containerd.snapshotter.v1.erofs type=io.containerd.snapshotter.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.574774538+01:00" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.native type=io.containerd.snapshotter.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.574809343+01:00" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.overlayfs type=io.containerd.snapshotter.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.574915374+01:00" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.zfs type=io.containerd.snapshotter.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.574947013+01:00" level=info msg="skip loading plugin" error="lstat /var/lib/containerd/io.containerd.snapshotter.v1.zfs: no such file or directory: skip plugin" id=io.containerd.snapshotter.v1.zfs type=io.containerd.snapshotter.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.574954919+01:00" level=info msg="loading plugin" id=io.containerd.event.v1.exchange type=io.containerd.event.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.574982171+01:00" level=info msg="loading plugin" id=io.containerd.monitor.task.v1.cgroups type=io.containerd.monitor.task.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.575149002+01:00" level=info msg="loading plugin" id=io.containerd.metadata.v1.bolt type=io.containerd.metadata.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.575175568+01:00" level=info msg="metadata content store policy set" policy=shared
Nov 06 09:57:05 sddm[967]: Initializing...
Nov 06 09:57:05 sddm[967]: Starting...
Nov 06 09:57:05 sddm[967]: Logind interface found
Nov 06 09:57:05 sddm[967]: Adding new display...
Nov 06 09:57:05 sddm[967]: Loaded empty theme configuration
Nov 06 09:57:05 sddm[967]: Xauthority path: "/run/sddm/xauth_MctRHf"
Nov 06 09:57:05 sddm[967]: Using VT 2
Nov 06 09:57:05 sddm[967]: Display server starting...
Nov 06 09:57:05 sddm[967]: Writing cookie to "/run/sddm/xauth_MctRHf"
Nov 06 09:57:05 sddm[967]: Running: /usr/bin/X -nolisten tcp -background none -seat seat0 vt2 -auth /run/sddm/xauth_MctRHf -noreset -displayfd 16
Nov 06 09:57:05 systemd[1]: mnt-legacy_hdd.automount: Got automount request for /mnt/legacy_hdd, triggered by 992 (transmission-da)
Nov 06 09:57:05 systemd[1]: Starting File System Check on /dev/disk/by-uuid/a42f59ec-0bab-4cd2-8ff4-ff51bb7f7e52...
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.650767981+01:00" level=info msg="loading plugin" id=io.containerd.gc.v1.scheduler type=io.containerd.gc.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.650837807+01:00" level=info msg="loading plugin" id=io.containerd.differ.v1.erofs type=io.containerd.differ.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.650893177+01:00" level=info msg="skip loading plugin" error="could not find mkfs.erofs: exec: \"mkfs.erofs\": executable file not found in $PATH: skip plugin" id=io.containerd.differ.v1.erofs type=io.containerd.differ.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.651031677+01:00" level=info msg="loading plugin" id=io.containerd.differ.v1.walking type=io.containerd.differ.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.651047326+01:00" level=info msg="loading plugin" id=io.containerd.lease.v1.manager type=io.containerd.lease.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.651058040+01:00" level=info msg="loading plugin" id=io.containerd.service.v1.containers-service type=io.containerd.service.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.651067268+01:00" level=info msg="loading plugin" id=io.containerd.service.v1.content-service type=io.containerd.service.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652000165+01:00" level=info msg="loading plugin" id=io.containerd.service.v1.diff-service type=io.containerd.service.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652087498+01:00" level=info msg="loading plugin" id=io.containerd.service.v1.images-service type=io.containerd.service.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652392466+01:00" level=info msg="loading plugin" id=io.containerd.service.v1.introspection-service type=io.containerd.service.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652410762+01:00" level=info msg="loading plugin" id=io.containerd.service.v1.namespaces-service type=io.containerd.service.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652420016+01:00" level=info msg="loading plugin" id=io.containerd.service.v1.snapshots-service type=io.containerd.service.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652427394+01:00" level=info msg="loading plugin" id=io.containerd.shim.v1.manager type=io.containerd.shim.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652436520+01:00" level=info msg="loading plugin" id=io.containerd.runtime.v2.task type=io.containerd.runtime.v2
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652495640+01:00" level=info msg="loading plugin" id=io.containerd.service.v1.tasks-service type=io.containerd.service.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652511997+01:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.containers type=io.containerd.grpc.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652523619+01:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.content type=io.containerd.grpc.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652541051+01:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.diff type=io.containerd.grpc.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652548897+01:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.events type=io.containerd.grpc.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652556399+01:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.images type=io.containerd.grpc.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652574164+01:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.introspection type=io.containerd.grpc.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652583882+01:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.leases type=io.containerd.grpc.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652592109+01:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.namespaces type=io.containerd.grpc.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652599704+01:00" level=info msg="loading plugin" id=io.containerd.sandbox.store.v1.local type=io.containerd.sandbox.store.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652607581+01:00" level=info msg="loading plugin" id=io.containerd.transfer.v1.local type=io.containerd.transfer.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652634589+01:00" level=info msg="loading plugin" id=io.containerd.cri.v1.images type=io.containerd.cri.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652669730+01:00" level=info msg="Get image filesystem path \"/var/lib/containerd/io.containerd.snapshotter.v1.overlayfs\" for snapshotter \"overlayfs\""
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652679496+01:00" level=info msg="Start snapshots syncer"
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652697491+01:00" level=info msg="loading plugin" id=io.containerd.cri.v1.runtime type=io.containerd.cri.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652831243+01:00" level=info msg="starting cri plugin" config="{\"containerd\":{\"defaultRuntimeName\":\"runc\",\"runtimes\":{\"runc\":{\"runtimeType\":\"io.containerd.runc.v2\",\"runtimePath\":\"\",\"PodAnnotations\":null,\"ContainerAnnotations\":null,\"options\":{\"BinaryName\":\"\",\"CriuImagePath\":\"\",\"CriuWorkPath\":\"\",\"IoGid\":0,\"IoUid\":0,\"NoNewKeyring\":false,\"Root\":\"\",\"ShimCgroup\":\"\"},\"privileged_without_host_devices\":false,\"privileged_without_host_devices_all_devices_allowed\":false,\"cgroupWritable\":false,\"baseRuntimeSpec\":\"\",\"cniConfDir\":\"\",\"cniMaxConfNum\":0,\"snapshotter\":\"\",\"sandboxer\":\"podsandbox\",\"io_type\":\"\"}},\"ignoreBlockIONotEnabledErrors\":false,\"ignoreRdtNotEnabledErrors\":false},\"cni\":{\"binDir\":\"\",\"binDirs\":[\"/opt/cni/bin\"],\"confDir\":\"/etc/cni/net.d\",\"maxConfNum\":1,\"setupSerially\":false,\"confTemplate\":\"\",\"ipPref\":\"\",\"useInternalLoopback\":false},\"enableSelinux\":false,\"selinuxCategoryRange\":1024,\"maxContainerLogLineSize\":16384,\"disableApparmor\":false,\"restrictOOMScoreAdj\":false,\"disableProcMount\":false,\"unsetSeccompProfile\":\"\",\"tolerateMissingHugetlbController\":true,\"disableHugetlbController\":true,\"device_ownership_from_security_context\":false,\"ignoreImageDefinedVolumes\":false,\"netnsMountsUnderStateDir\":false,\"enableUnprivilegedPorts\":true,\"enableUnprivilegedICMP\":true,\"enableCDI\":true,\"cdiSpecDirs\":[\"/etc/cdi\",\"/var/run/cdi\"],\"drainExecSyncIOTimeout\":\"0s\",\"ignoreDeprecationWarnings\":null,\"containerdRootDir\":\"/var/lib/containerd\",\"containerdEndpoint\":\"/run/containerd/containerd.sock\",\"rootDir\":\"/var/lib/containerd/io.containerd.grpc.v1.cri\",\"stateDir\":\"/run/containerd/io.containerd.grpc.v1.cri\"}"
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652863934+01:00" level=info msg="loading plugin" id=io.containerd.podsandbox.controller.v1.podsandbox type=io.containerd.podsandbox.controller.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652909104+01:00" level=info msg="loading plugin" id=io.containerd.sandbox.controller.v1.shim type=io.containerd.sandbox.controller.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652953251+01:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.sandbox-controllers type=io.containerd.grpc.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652968924+01:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.sandboxes type=io.containerd.grpc.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652976953+01:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.snapshots type=io.containerd.grpc.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.652984061+01:00" level=info msg="loading plugin" id=io.containerd.streaming.v1.manager type=io.containerd.streaming.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.654665715+01:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.streaming type=io.containerd.grpc.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.654736137+01:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.tasks type=io.containerd.grpc.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.654785478+01:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.transfer type=io.containerd.grpc.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.654834017+01:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.version type=io.containerd.grpc.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.654879335+01:00" level=info msg="loading plugin" id=io.containerd.monitor.container.v1.restart type=io.containerd.monitor.container.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.654941108+01:00" level=info msg="loading plugin" id=io.containerd.tracing.processor.v1.otlp type=io.containerd.tracing.processor.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.655063390+01:00" level=info msg="skip loading plugin" error="skip plugin: tracing endpoint not configured" id=io.containerd.tracing.processor.v1.otlp type=io.containerd.tracing.processor.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.655113073+01:00" level=info msg="loading plugin" id=io.containerd.internal.v1.tracing type=io.containerd.internal.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.655166015+01:00" level=info msg="skip loading plugin" error="skip plugin: tracing endpoint not configured" id=io.containerd.internal.v1.tracing type=io.containerd.internal.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.655210550+01:00" level=info msg="loading plugin" id=io.containerd.ttrpc.v1.otelttrpc type=io.containerd.ttrpc.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.655264755+01:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.healthcheck type=io.containerd.grpc.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.655313536+01:00" level=info msg="loading plugin" id=io.containerd.nri.v1.nri type=io.containerd.nri.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.655377807+01:00" level=info msg="runtime interface created"
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.655569671+01:00" level=info msg="created NRI interface"
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.655594380+01:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.cri type=io.containerd.grpc.v1
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.655612787+01:00" level=info msg="Connect containerd service"
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.655700048+01:00" level=info msg="using experimental NRI integration - disable nri plugin to prevent this"
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.656094700+01:00" level=error msg="failed to load cni during init, please check CRI plugin status before setting up network for pods" error="cni config load failed: no network config found in /etc/cni/net.d: cni plugin not initialized: failed to load cni config"
Nov 06 09:57:05 libvirtd[952]: libvirt version: 11.9.0
Nov 06 09:57:05 libvirtd[952]: hostname: dahin
Nov 06 09:57:05 libvirtd[952]: Libvirt doesn't support VirtualBox API version 7002004
Nov 06 09:57:05 systemd[1]: Started libvirt legacy monolithic daemon.
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.721941190+01:00" level=info msg="Start subscribing containerd event"
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.721983040+01:00" level=info msg="Start recovering state"
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.722039443+01:00" level=info msg=serving... address=/run/containerd/containerd.sock.ttrpc
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.722057727+01:00" level=info msg="Start event monitor"
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.722067670+01:00" level=info msg="Start cni network conf syncer for default"
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.722072873+01:00" level=info msg="Start streaming server"
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.722081645+01:00" level=info msg=serving... address=/run/containerd/containerd.sock
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.723635518+01:00" level=info msg="Registered namespace \"k8s.io\" with NRI"
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.723663305+01:00" level=info msg="runtime interface starting up..."
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.723669850+01:00" level=info msg="starting plugins..."
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.723689775+01:00" level=info msg="Synchronizing NRI (plugin) with current runtime state"
Nov 06 09:57:05 systemd[1]: Started containerd container runtime.
Nov 06 09:57:05 containerd[960]: time="2025-11-06T09:57:05.725364593+01:00" level=info msg="containerd successfully booted in 0.164799s"
Nov 06 09:57:05 systemd[1]: Starting Docker Application Container Engine...
Nov 06 09:57:05 systemd-fsck[1021]: /dev/sdd: clean, 33999/61054976 files, 82368797/244190646 blocks
Nov 06 09:57:05 kernel: bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
Nov 06 09:57:05 iwd[828]: udev interface=virbr0 ifindex=4
Nov 06 09:57:05 kernel: i2c i2c-2: new_device: Instantiated device ddcci at 0x37
Nov 06 09:57:05 systemd[1]: Finished File System Check on /dev/disk/by-uuid/a42f59ec-0bab-4cd2-8ff4-ff51bb7f7e52.
Nov 06 09:57:05 systemd[1]: Mounting /mnt/legacy_hdd...
Nov 06 09:57:05 systemd[1]: Created slice Slice /system/systemd-backlight.
Nov 06 09:57:05 systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:ddcci2...
Nov 06 09:57:05 dockerd[1043]: time="2025-11-06T09:57:05.954618952+01:00" level=info msg="Starting up"
Nov 06 09:57:05 dockerd[1043]: time="2025-11-06T09:57:05.955045719+01:00" level=info msg="OTEL tracing is not configured, using no-op tracer provider"
Nov 06 09:57:05 dockerd[1043]: time="2025-11-06T09:57:05.955455430+01:00" level=info msg="CDI directory does not exist, skipping: failed to monitor for changes: no such file or directory" dir=/etc/cdi
Nov 06 09:57:05 dockerd[1043]: time="2025-11-06T09:57:05.955471946+01:00" level=info msg="CDI directory does not exist, skipping: failed to monitor for changes: no such file or directory" dir=/var/run/cdi
Nov 06 09:57:05 dockerd[1043]: time="2025-11-06T09:57:05.966972821+01:00" level=info msg="Creating a containerd client" address=/run/containerd/containerd.sock timeout=1m0s
Nov 06 09:57:05 avahi-daemon[825]: Joining mDNS multicast group on interface virbr0.IPv4 with address 192.168.122.1.
Nov 06 09:57:05 avahi-daemon[825]: New relevant interface virbr0.IPv4 for mDNS.
Nov 06 09:57:05 avahi-daemon[825]: Registering new address record for 192.168.122.1 on virbr0.IPv4.
Nov 06 09:57:05 systemd-networkd[542]: virbr0: Link UP
Nov 06 09:57:05 systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:ddcci2.
Nov 06 09:57:06 dnsmasq[1149]: started, version 2.91 cachesize 150
Nov 06 09:57:06 dnsmasq[1149]: compile time options: IPv6 GNU-getopt DBus no-UBus i18n IDN2 DHCP DHCPv6 no-Lua TFTP conntrack ipset nftset auth DNSSEC loop-detect inotify dumpfile
Nov 06 09:57:06 libvirtd[952]: operation failed: Storage source conflict with pool: 'default'
Nov 06 09:57:06 kernel: EXT4-fs (sdd): mounted filesystem a42f59ec-0bab-4cd2-8ff4-ff51bb7f7e52 r/w with ordered data mode. Quota mode: none.
Nov 06 09:57:06 dnsmasq-dhcp[1149]: DHCP, IP range 192.168.122.2 -- 192.168.122.254, lease time 1h
Nov 06 09:57:06 systemd[1]: Mounted /mnt/legacy_hdd.
Nov 06 09:57:06 dnsmasq-dhcp[1149]: DHCP, sockets bound exclusively to interface virbr0
Nov 06 09:57:06 dnsmasq[1149]: reading /etc/resolv.conf
Nov 06 09:57:06 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 09:57:06 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 09:57:06 dnsmasq[1149]: read /etc/hosts - 2 names
Nov 06 09:57:06 dnsmasq[1149]: read /var/lib/libvirt/dnsmasq/default.addnhosts - 0 names
Nov 06 09:57:06 dnsmasq-dhcp[1149]: read /var/lib/libvirt/dnsmasq/default.hostsfile
Nov 06 09:57:06 systemd[1]: Started Transmission BitTorrent Daemon.
Nov 06 09:57:06 systemd[1]: Reached target Multi-User System.
Nov 06 09:57:06 systemd[1]: Reached target Graphical Interface.
Nov 06 09:57:06 dockerd[1043]: time="2025-11-06T09:57:06.163044678+01:00" level=info msg="[graphdriver] using prior storage driver: overlay2"
Nov 06 09:57:06 dockerd[1043]: time="2025-11-06T09:57:06.216782481+01:00" level=info msg="Loading containers: start."
Nov 06 09:57:06 kernel: Initializing XFRM netlink socket
Nov 06 09:57:06 iwd[828]: udev interface=br-7d8ab39fc86f ifindex=5
Nov 06 09:57:06 systemd-networkd[542]: br-7d8ab39fc86f: Link UP
Nov 06 09:57:06 avahi-daemon[825]: Joining mDNS multicast group on interface br-7d8ab39fc86f.IPv4 with address 172.19.0.1.
Nov 06 09:57:06 avahi-daemon[825]: New relevant interface br-7d8ab39fc86f.IPv4 for mDNS.
Nov 06 09:57:06 avahi-daemon[825]: Registering new address record for 172.19.0.1 on br-7d8ab39fc86f.IPv4.
Nov 06 09:57:06 iwd[828]: udev interface=docker0 ifindex=6
Nov 06 09:57:06 avahi-daemon[825]: Joining mDNS multicast group on interface docker0.IPv4 with address 172.17.0.1.
Nov 06 09:57:06 systemd-networkd[542]: docker0: Link UP
Nov 06 09:57:06 avahi-daemon[825]: New relevant interface docker0.IPv4 for mDNS.
Nov 06 09:57:06 avahi-daemon[825]: Registering new address record for 172.17.0.1 on docker0.IPv4.
Nov 06 09:57:06 iwd[828]: udev interface=br-f8c9eb38ccfd ifindex=7
Nov 06 09:57:06 systemd-networkd[542]: br-f8c9eb38ccfd: Link UP
Nov 06 09:57:06 avahi-daemon[825]: Joining mDNS multicast group on interface br-f8c9eb38ccfd.IPv4 with address 172.18.0.1.
Nov 06 09:57:06 avahi-daemon[825]: New relevant interface br-f8c9eb38ccfd.IPv4 for mDNS.
Nov 06 09:57:06 avahi-daemon[825]: Registering new address record for 172.18.0.1 on br-f8c9eb38ccfd.IPv4.
Nov 06 09:57:06 wg-quick[981]: Temporary failure in name resolution: `engage.cloudflareclient.com:2408'. Trying again in 1.20 seconds...
Nov 06 09:57:06 containerd[960]: time="2025-11-06T09:57:06.741649306+01:00" level=info msg="connecting to shim 1684c09366e77173707646a40bf8d14a9e920e40f48afb0745c1cdb0dd42304f" address="unix:///run/containerd/s/0829435417044654db9fb99eedefb97add11e49350753e7a2b497f651e73bd7b" namespace=moby protocol=ttrpc version=3
Nov 06 09:57:06 systemd[1]: Started libcontainer container 1684c09366e77173707646a40bf8d14a9e920e40f48afb0745c1cdb0dd42304f.
Nov 06 09:57:06 containerd[960]: time="2025-11-06T09:57:06.766256329+01:00" level=info msg="connecting to shim 6fb1ed0f02417e3737749d970fe70043b5ffdcd6e3d6c11299e18f806155ebbb" address="unix:///run/containerd/s/251d56506aad2e740789583a64b2e411799e0a8067ce834d5982f2fd371d7f9f" namespace=moby protocol=ttrpc version=3
Nov 06 09:57:06 containerd[960]: time="2025-11-06T09:57:06.770423489+01:00" level=info msg="connecting to shim dddcb073a791c21a1050993c3d4c49a47ec4a1412aad827b93250eea8d63aae4" address="unix:///run/containerd/s/89ceb8ca745dd7ec642c2edc733b4a2dff7ecaf508a3614ff5c32f832e5537fc" namespace=moby protocol=ttrpc version=3
Nov 06 09:57:06 systemd[1]: Started libcontainer container 6fb1ed0f02417e3737749d970fe70043b5ffdcd6e3d6c11299e18f806155ebbb.
Nov 06 09:57:06 systemd[1]: Started libcontainer container dddcb073a791c21a1050993c3d4c49a47ec4a1412aad827b93250eea8d63aae4.
Nov 06 09:57:06 kernel: br-f8c9eb38ccfd: port 1(veth3d7581c) entered blocking state
Nov 06 09:57:06 kernel: br-f8c9eb38ccfd: port 1(veth3d7581c) entered disabled state
Nov 06 09:57:06 kernel: veth3d7581c: entered allmulticast mode
Nov 06 09:57:06 kernel: veth3d7581c: entered promiscuous mode
Nov 06 09:57:06 systemd-networkd[542]: veth3d7581c: Link UP
Nov 06 09:57:06 iwd[828]: udev interface=veth3d7581c ifindex=8
Nov 06 09:57:06 dnsmasq[1149]: no servers found in /etc/resolv.conf, will retry
Nov 06 09:57:06 dhcpcd[835]: veth3d7581c: waiting for carrier
Nov 06 09:57:06 kernel: br-f8c9eb38ccfd: port 2(vetha40cd74) entered blocking state
Nov 06 09:57:06 kernel: br-f8c9eb38ccfd: port 2(vetha40cd74) entered disabled state
Nov 06 09:57:06 kernel: vetha40cd74: entered allmulticast mode
Nov 06 09:57:06 kernel: vetha40cd74: entered promiscuous mode
Nov 06 09:57:06 dnsmasq[1149]: reading /etc/resolv.conf
Nov 06 09:57:06 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 09:57:06 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 09:57:06 systemd-networkd[542]: vetha40cd74: Link UP
Nov 06 09:57:06 iwd[828]: udev interface=vetha40cd74 ifindex=9
Nov 06 09:57:06 kernel: eth0: renamed from vethacdf50c
Nov 06 09:57:06 systemd-networkd[542]: veth3d7581c: Gained carrier
Nov 06 09:57:06 kernel: br-f8c9eb38ccfd: port 1(veth3d7581c) entered blocking state
Nov 06 09:57:06 kernel: br-f8c9eb38ccfd: port 1(veth3d7581c) entered forwarding state
Nov 06 09:57:06 systemd-networkd[542]: br-f8c9eb38ccfd: Gained carrier
Nov 06 09:57:06 dnsmasq[1149]: no servers found in /etc/resolv.conf, will retry
Nov 06 09:57:06 dhcpcd[835]: vetha40cd74: waiting for carrier
Nov 06 09:57:06 dhcpcd[835]: veth3d7581c: carrier acquired
Nov 06 09:57:06 systemd-networkd[542]: enp0s25: Gained carrier
Nov 06 09:57:06 kernel: e1000e 0000:00:19.0 enp0s25: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
Nov 06 09:57:06 dhcpcd[835]: veth3d7581c: IAID 40:64:41:5e
Nov 06 09:57:06 systemd-timesyncd[503]: Network configuration changed, trying to establish connection.
Nov 06 09:57:06 dhcpcd[835]: veth3d7581c: adding address fe80::890e:783c:2a23:888
Nov 06 09:57:06 dhcpcd[835]: enp0s25: carrier acquired
Nov 06 09:57:06 avahi-daemon[825]: Joining mDNS multicast group on interface enp0s25.IPv4 with address 192.168.6.76.
Nov 06 09:57:06 avahi-daemon[825]: New relevant interface enp0s25.IPv4 for mDNS.
Nov 06 09:57:06 avahi-daemon[825]: Registering new address record for 192.168.6.76 on enp0s25.IPv4.
Nov 06 09:57:06 avahi-daemon[825]: Joining mDNS multicast group on interface veth3d7581c.IPv6 with address fe80::890e:783c:2a23:888.
Nov 06 09:57:06 avahi-daemon[825]: New relevant interface veth3d7581c.IPv6 for mDNS.
Nov 06 09:57:06 avahi-daemon[825]: Registering new address record for fe80::890e:783c:2a23:888 on veth3d7581c.*.
Nov 06 09:57:06 dnsmasq[1149]: reading /etc/resolv.conf
Nov 06 09:57:06 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 09:57:06 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 09:57:06 dhcpcd[835]: enp0s25: IAID 99:25:da:e1
Nov 06 09:57:06 dhcpcd[835]: enp0s25: adding address fe80::a9ef:3613:6e80:7da
Nov 06 09:57:06 avahi-daemon[825]: Joining mDNS multicast group on interface enp0s25.IPv6 with address fe80::a9ef:3613:6e80:7da.
Nov 06 09:57:06 avahi-daemon[825]: New relevant interface enp0s25.IPv6 for mDNS.
Nov 06 09:57:06 avahi-daemon[825]: Registering new address record for fe80::a9ef:3613:6e80:7da on enp0s25.*.
Nov 06 09:57:06 kernel: eth0: renamed from veth2f38062
Nov 06 09:57:06 dhcpcd[835]: vetha40cd74: carrier acquired
Nov 06 09:57:06 systemd-networkd[542]: vetha40cd74: Gained carrier
Nov 06 09:57:06 systemd-timesyncd[503]: Network configuration changed, trying to establish connection.
Nov 06 09:57:06 kernel: br-f8c9eb38ccfd: port 2(vetha40cd74) entered blocking state
Nov 06 09:57:06 kernel: br-f8c9eb38ccfd: port 2(vetha40cd74) entered forwarding state
Nov 06 09:57:06 systemd-timesyncd[503]: Network configuration changed, trying to establish connection.
Nov 06 09:57:06 dhcpcd[835]: vetha40cd74: IAID fc:c0:b0:45
Nov 06 09:57:06 dhcpcd[835]: vetha40cd74: adding address fe80::5260:4a45:ddca:ca4b
Nov 06 09:57:06 avahi-daemon[825]: Joining mDNS multicast group on interface vetha40cd74.IPv6 with address fe80::5260:4a45:ddca:ca4b.
Nov 06 09:57:06 avahi-daemon[825]: New relevant interface vetha40cd74.IPv6 for mDNS.
Nov 06 09:57:06 avahi-daemon[825]: Registering new address record for fe80::5260:4a45:ddca:ca4b on vetha40cd74.*.
Nov 06 09:57:06 dhcpcd[835]: enp0s25: rebinding lease of 192.168.1.76
Nov 06 09:57:07 sddm[967]: Setting default cursor
Nov 06 09:57:07 sddm[967]: Could not setup default cursor
Nov 06 09:57:07 sddm[967]: Running display setup script  "/usr/share/sddm/scripts/Xsetup"
Nov 06 09:57:07 sddm[967]: Display server started.
Nov 06 09:57:07 sddm[967]: Reading from "/usr/local/share/wayland-sessions/hyprland-uwsm.desktop"
Nov 06 09:57:07 sddm[967]: Reading from "/usr/share/wayland-sessions/hyprland-uwsm.desktop"
Nov 06 09:57:07 sddm[967]: Session "/usr/share/wayland-sessions/hyprland-uwsm.desktop" selected, command: "uwsm start -- hyprland.desktop" for VT 1
Nov 06 09:57:07 dhcpcd[835]: enp0s25: probing address 192.168.1.76/24
Nov 06 09:57:07 dockerd[1043]: time="2025-11-06T09:57:07.039348943+01:00" level=info msg="Loading containers: done."
Nov 06 09:57:07 sddm-helper[1650]: [PAM] Starting...
Nov 06 09:57:07 sddm-helper[1650]: [PAM] Authenticating...
Nov 06 09:57:07 sddm-helper[1650]: gkr-pam: no password is available for user
Nov 06 09:57:07 sddm-helper[1650]: [PAM] returning.
Nov 06 09:57:07 sddm-helper[1650]: pam_unix(sddm-autologin:session): session opened for user user(uid=1000) by user(uid=0)
Nov 06 09:57:07 dbus-broker-launch[823]: Activation request for 'org.freedesktop.home1' failed: The systemd unit 'dbus-org.freedesktop.home1.service' could not be found.
Nov 06 09:57:07 sddm[967]: Authentication for user  "user"  successful
Nov 06 09:57:07 dhcpcd[835]: vetha40cd74: soliciting a DHCP lease
Nov 06 09:57:07 systemd[1]: Created slice User Slice of UID 1000.
Nov 06 09:57:07 systemd[1]: Starting User Runtime Directory /run/user/1000...
Nov 06 09:57:07 systemd-logind[832]: New session '1' of user 'user' with class 'user' and type 'wayland'.
Nov 06 09:57:07 systemd-user-runtime-dir[1678]: Successfully configured disk quota for UID 1000 on /tmp to 12.5G
Nov 06 09:57:07 systemd-user-runtime-dir[1678]: Successfully configured disk quota for UID 1000 on /dev/shm to 12.5G
Nov 06 09:57:07 systemd[1]: Finished User Runtime Directory /run/user/1000.
Nov 06 09:57:07 systemd[1]: Starting User Manager for UID 1000...
Nov 06 09:57:07 (systemd)[1688]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[/dev/tty2] user=[user] ruser=[<unknown>] rhost=[<unknown>]
Nov 06 09:57:07 (systemd)[1688]: pam_unix(systemd-user:session): session opened for user user(uid=1000) by user(uid=0)
Nov 06 09:57:07 systemd-logind[832]: New session '2' of user 'user' with class 'manager' and type 'unspecified'.
Nov 06 09:57:07 dockerd[1043]: time="2025-11-06T09:57:07.359511871+01:00" level=warning msg="Not using native diff for overlay2, this may cause degraded performance for building images: kernel has CONFIG_OVERLAY_FS_REDIRECT_DIR enabled" storage-driver=overlay2
Nov 06 09:57:07 dockerd[1043]: time="2025-11-06T09:57:07.359595996+01:00" level=info msg="Docker daemon" commit=89c5e8fd66 containerd-snapshotter=false storage-driver=overlay2 version=28.5.2
Nov 06 09:57:07 dockerd[1043]: time="2025-11-06T09:57:07.359638680+01:00" level=info msg="Initializing buildkit"
Nov 06 09:57:07 systemd[1688]: Queued start job for default target Main User Target.
Nov 06 09:57:07 systemd[1688]: Created slice User Application Slice.
Nov 06 09:57:07 dockerd[1043]: time="2025-11-06T09:57:07.393196905+01:00" level=info msg="Completed buildkit initialization"
Nov 06 09:57:07 dockerd[1043]: time="2025-11-06T09:57:07.396543118+01:00" level=info msg="Daemon has completed initialization"
Nov 06 09:57:07 dockerd[1043]: time="2025-11-06T09:57:07.396613450+01:00" level=info msg="API listen on /run/docker.sock"
Nov 06 09:57:07 systemd[1688]: Reached target Paths.
Nov 06 09:57:07 systemd[1688]: Reached target Timers.
Nov 06 09:57:07 systemd[1688]: Starting D-Bus User Message Bus Socket...
Nov 06 09:57:07 systemd[1688]: Listening on GnuPG network certificate management daemon.
Nov 06 09:57:07 systemd[1688]: Listening on GNOME Keyring daemon.
Nov 06 09:57:07 systemd[1688]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Nov 06 09:57:07 systemd[1688]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Nov 06 09:57:07 systemd[1688]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Nov 06 09:57:07 systemd[1688]: Listening on GnuPG cryptographic agent and passphrase cache.
Nov 06 09:57:07 systemd[1688]: Listening on GnuPG public key management service.
Nov 06 09:57:07 systemd[1688]: Listening on p11-kit server.
Nov 06 09:57:07 systemd[1688]: Listening on PipeWire PulseAudio.
Nov 06 09:57:07 systemd[1688]: Listening on PipeWire Multimedia System Sockets.
Nov 06 09:57:07 systemd[1688]: Listening on Query the User Interactively for a Password.
Nov 06 09:57:07 systemd[1688]: Listening on D-Bus User Message Bus Socket.
Nov 06 09:57:07 systemd[1688]: Reached target Sockets.
Nov 06 09:57:07 systemd[1688]: Reached target Basic System.
Nov 06 09:57:07 systemd[1688]: Reached target Main User Target.
Nov 06 09:57:07 systemd[1688]: Startup finished in 202ms.
Nov 06 09:57:07 systemd[1]: Started User Manager for UID 1000.
Nov 06 09:57:07 systemd[1]: Started Session 1 of User user.
Nov 06 09:57:07 systemd[1688]: Started GNOME Keyring daemon.
Nov 06 09:57:07 systemd[1]: Started Docker Application Container Engine.
Nov 06 09:57:07 systemd[1]: Startup finished in 8.485s (firmware) + 3.224s (loader) + 1min 25.809s (kernel) + 4.960s (userspace) = 1min 42.479s.
Nov 06 09:57:07 gnome-keyring-daemon[1706]: gnome-keyring-daemon: no process capabilities, insecure memory might get used
Nov 06 09:57:07 gnome-keyring-daemon[1706]: GNOME_KEYRING_CONTROL=/run/user/1000/keyring
Nov 06 09:57:07 systemd[1688]: Created slice User Core Session Slice.
Nov 06 09:57:07 systemd[1688]: Starting D-Bus User Message Bus...
Nov 06 09:57:07 dbus-broker-launch[1725]: Service file '/usr/share/dbus-1/services/fr.emersion.mako.service' is not named after the D-Bus name 'org.freedesktop.Notifications'.
Nov 06 09:57:07 dbus-broker-launch[1725]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
Nov 06 09:57:07 dbus-broker-launch[1725]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
Nov 06 09:57:07 systemd[1688]: Started D-Bus User Message Bus.
Nov 06 09:57:07 dbus-broker-launch[1725]: Ready
Nov 06 09:57:07 sddm-helper[1650]: gkr-pam: couldn't unlock the login keyring.
Nov 06 09:57:07 sddm-helper[1650]: Starting Wayland user session: "/usr/share/sddm/scripts/wayland-session" "uwsm start -- hyprland.desktop"
Nov 06 09:57:07 sddm-helper[1730]: Jumping to VT 1
Nov 06 09:57:07 sddm-helper[1730]: VT mode didn't need to be fixed
Nov 06 09:57:07 sddm[967]: Session started true
Nov 06 09:57:07 systemd[1688]: Reached target Sound Card.
Nov 06 09:57:07 systemd-resolved[515]: Using degraded feature set UDP+EDNS0 instead of TLS+EDNS0 for DNS server 127.0.0.1:1053.
Nov 06 09:57:07 systemd-resolved[515]: Using degraded feature set UDP instead of UDP+EDNS0 for DNS server 127.0.0.1:1053.
Nov 06 09:57:07 systemd-resolved[515]: Using degraded feature set TCP instead of UDP for DNS server 127.0.0.1:1053.
Nov 06 09:57:07 systemd-resolved[515]: Using degraded feature set UDP instead of TCP for DNS server 127.0.0.1:1053.
Nov 06 09:57:07 systemd-resolved[515]: Using degraded feature set TCP instead of UDP for DNS server 127.0.0.1:1053.
Nov 06 09:57:07 systemd-resolved[515]: Using degraded feature set UDP instead of TCP for DNS server 127.0.0.1:1053.
Nov 06 09:57:07 systemd-resolved[515]: Using degraded feature set TCP instead of UDP for DNS server 127.0.0.1:1053.
Nov 06 09:57:07 systemd-resolved[515]: Using degraded feature set UDP instead of TCP for DNS server 127.0.0.1:1053.
Nov 06 09:57:07 systemd-resolved[515]: Using degraded feature set TCP instead of UDP for DNS server 127.0.0.1:1053.
Nov 06 09:57:07 systemd-resolved[515]: Using degraded feature set UDP instead of TCP for DNS server 127.0.0.1:1053.
Nov 06 09:57:07 wg-quick[981]: Temporary failure in name resolution: `engage.cloudflareclient.com:2408'. Trying again in 1.44 seconds...
Nov 06 09:57:07 uwsm[1730]: Selected compositor ID: hyprland.desktop
                                            Command Line: Hyprland
                                        Plugin/binary ID: hyprland
                                   Initial Desktop Names: Hyprland
                                                    Name: Hyprland
                                             Description: An intelligent dynamic tiling Wayland compositor
Nov 06 09:57:07 uwsm[1730]: Created dir "/run/user/1000/systemd/user/"
Nov 06 09:57:07 uwsm[1730]: Created unit subdir "wayland-wm-env@hyprland.desktop.service.d/" (run).
Nov 06 09:57:07 uwsm[1730]: Created "wayland-wm-env@hyprland.desktop.service.d/50_custom.conf" (run).
Nov 06 09:57:07 uwsm[1730]: Created unit subdir "wayland-wm@hyprland.desktop.service.d/" (run).
Nov 06 09:57:07 uwsm[1730]: Created "wayland-wm@hyprland.desktop.service.d/50_custom.conf" (run).
Nov 06 09:57:07 uwsm[1730]: Created unit subdir "app-@autostart.service.d/" (run).
Nov 06 09:57:07 uwsm[1730]: Created "app-@autostart.service.d/slice-tweak.conf" (run).
Nov 06 09:57:07 uwsm[1730]: Created unit subdir "app-flatpak-.scope.d/" (run).
Nov 06 09:57:07 uwsm[1730]: Created "app-flatpak-.scope.d/order-tweak.conf" (run).
Nov 06 09:57:07 uwsm[1730]: Created unit subdir "plasma-xdg-desktop-portal-kde.service.d/" (run).
Nov 06 09:57:07 uwsm[1730]: Created "plasma-xdg-desktop-portal-kde.service.d/order-tweak.conf" (run).
Nov 06 09:57:07 uwsm[1730]: Reloading systemd user manager.
Nov 06 09:57:07 systemd[1688]: Reload requested from client PID 1730 ('uwsm')...
Nov 06 09:57:07 systemd[1688]: Reloading...
Nov 06 09:57:07 avahi-daemon[825]: Server startup complete. Host name is dahin.local. Local service cookie is 845861004.
Nov 06 09:57:07 systemd[1688]: Reloading finished in 121 ms.
Nov 06 09:57:07 uwsm[1730]: Starting hyprland.desktop and waiting while it is running...
Nov 06 09:57:07 systemd[1688]: Created slice User Background Tasks Slice.
Nov 06 09:57:07 systemd[1688]: Starting Bind graphical session to PID 1730...
Nov 06 09:57:07 systemd[1688]: Started Bind graphical session to PID 1730.
Nov 06 09:57:07 systemd[1688]: Starting Environment preloader for Hyprland, An intelligent dynamic tiling Wayland compositor...
Nov 06 09:57:07 systemd[1688]: Starting User folders update...
Nov 06 09:57:08 systemd[1688]: Finished User folders update.
Nov 06 09:57:08 uwsm_env-preloader[1799]: Preparing environment for Hyprland...
Nov 06 09:57:08 uwsm_env-preloader[1799]: Got saved login session variables.
Nov 06 09:57:08 uwsm_env-preloader[1799]: Loading plugin "/usr/share/uwsm/plugins/hyprland.sh".
Nov 06 09:57:08 uwsm_env-preloader[1799]: Applying quirks for "hyprland".
Nov 06 09:57:08 uwsm_env-preloader[1799]: Loading environment from "/home/user/.config/uwsm/env".
Nov 06 09:57:08 uwsm_env-preloader[1799]: Marking variables for later cleanup from systemd user manager on stop:
Nov 06 09:57:08 uwsm_env-preloader[1799]:   DEBUGINFOD_URLS
Nov 06 09:57:08 uwsm_env-preloader[1799]:   DESKTOP_SESSION
Nov 06 09:57:08 uwsm_env-preloader[1799]:   EDITOR
Nov 06 09:57:08 uwsm_env-preloader[1799]:   MAIL
Nov 06 09:57:08 uwsm_env-preloader[1799]:   MISE_SHELL
Nov 06 09:57:08 uwsm_env-preloader[1799]:   MOTD_SHOWN
Nov 06 09:57:08 uwsm_env-preloader[1799]:   OMARCHY_PATH
Nov 06 09:57:08 uwsm_env-preloader[1799]:   PATH
Nov 06 09:57:08 uwsm_env-preloader[1799]:   TERMINAL
Nov 06 09:57:08 uwsm_env-preloader[1799]:   UWSM_FINALIZE_VARNAMES
Nov 06 09:57:08 uwsm_env-preloader[1799]:   UWSM_WAIT_VARNAMES
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_BACKEND
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_CACHE_HOME
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_CONFIG_DIRS
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_CONFIG_HOME
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_CURRENT_DESKTOP
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_DATA_DIRS
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_DATA_HOME
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_MENU_PREFIX
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_SEAT
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_SEAT_PATH
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_SESSION_CLASS
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_SESSION_DESKTOP
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_SESSION_ID
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_SESSION_PATH
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_SESSION_TYPE
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_STATE_HOME
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_VTNR
Nov 06 09:57:08 uwsm_env-preloader[1799]:   __MISE_DIFF
Nov 06 09:57:08 uwsm_env-preloader[1799]:   __MISE_ORIG_PATH
Nov 06 09:57:08 uwsm_env-preloader[1799]:   __MISE_SESSION
Nov 06 09:57:08 uwsm_env-preloader[1799]: Exporting variables to systemd user manager:
Nov 06 09:57:08 uwsm_env-preloader[1799]:   DEBUGINFOD_URLS
Nov 06 09:57:08 uwsm_env-preloader[1799]:   DESKTOP_SESSION
Nov 06 09:57:08 uwsm_env-preloader[1799]:   EDITOR
Nov 06 09:57:08 uwsm_env-preloader[1799]:   MAIL
Nov 06 09:57:08 uwsm_env-preloader[1799]:   MISE_SHELL
Nov 06 09:57:08 uwsm_env-preloader[1799]:   MOTD_SHOWN
Nov 06 09:57:08 uwsm_env-preloader[1799]:   OMARCHY_PATH
Nov 06 09:57:08 uwsm_env-preloader[1799]:   PATH (updating)
Nov 06 09:57:08 uwsm_env-preloader[1799]:   TERMINAL
Nov 06 09:57:08 uwsm_env-preloader[1799]:   UWSM_FINALIZE_VARNAMES
Nov 06 09:57:08 uwsm_env-preloader[1799]:   UWSM_WAIT_VARNAMES
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_BACKEND
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_CACHE_HOME
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_CONFIG_DIRS
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_CONFIG_HOME
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_CURRENT_DESKTOP
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_DATA_DIRS
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_DATA_HOME
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_MENU_PREFIX
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_SEAT
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_SEAT_PATH
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_SESSION_CLASS
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_SESSION_DESKTOP
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_SESSION_ID
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_SESSION_PATH
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_SESSION_TYPE
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_STATE_HOME
Nov 06 09:57:08 uwsm_env-preloader[1799]:   XDG_VTNR
Nov 06 09:57:08 uwsm_env-preloader[1799]:   __MISE_DIFF
Nov 06 09:57:08 uwsm_env-preloader[1799]:   __MISE_ORIG_PATH
Nov 06 09:57:08 uwsm_env-preloader[1799]:   __MISE_SESSION
Nov 06 09:57:08 systemd[1688]: Finished Environment preloader for Hyprland, An intelligent dynamic tiling Wayland compositor.
Nov 06 09:57:08 systemd[1688]: Reached target Preparation for session of hyprland.desktop Wayland compositor.
Nov 06 09:57:08 systemd[1688]: Reached target Session services which should run early before the graphical session is brought up.
Nov 06 09:57:08 systemd[1688]: Starting Wait for WAYLAND_DISPLAY and other variables...
Nov 06 09:57:08 systemd[1688]: Starting Main service for Hyprland, An intelligent dynamic tiling Wayland compositor...
Nov 06 09:57:08 uwsm_waitenv[1846]: Expecting variables to appear in activation environment:
Nov 06 09:57:08 uwsm_waitenv[1846]:   HYPRLAND_INSTANCE_SIGNATURE, WAYLAND_DISPLAY
Nov 06 09:57:08 uwsm_hyprland.desktop[1847]: Starting: Hyprland...
Nov 06 09:57:08 uwsm_hyprland.desktop[1849]: Expecting variables to appear in activation environment:
Nov 06 09:57:08 uwsm_hyprland.desktop[1849]:   WAYLAND_DISPLAY, HYPRLAND_INSTANCE_SIGNATURE
Nov 06 09:57:08 dhcpcd[835]: veth3d7581c: soliciting a DHCP lease
Nov 06 09:57:08 systemd-networkd[542]: vetha40cd74: Gained IPv6LL
Nov 06 09:57:08 systemd-timesyncd[503]: Network configuration changed, trying to establish connection.
Nov 06 09:57:08 systemd-networkd[542]: enp0s25: Gained IPv6LL
Nov 06 09:57:08 systemd-timesyncd[503]: Network configuration changed, trying to establish connection.
Nov 06 09:57:08 uwsm[1798]: waitpid: Holding login session 1 open until PID 1847 exits
Nov 06 09:57:08 avahi-daemon[825]: Joining mDNS multicast group on interface br-f8c9eb38ccfd.IPv6 with address fe80::80eb:23ff:fe20:171c.
Nov 06 09:57:08 avahi-daemon[825]: New relevant interface br-f8c9eb38ccfd.IPv6 for mDNS.
Nov 06 09:57:08 systemd-networkd[542]: br-f8c9eb38ccfd: Gained IPv6LL
Nov 06 09:57:08 avahi-daemon[825]: Registering new address record for fe80::80eb:23ff:fe20:171c on br-f8c9eb38ccfd.*.
Nov 06 09:57:08 systemd-timesyncd[503]: Network configuration changed, trying to establish connection.
Nov 06 09:57:08 systemd-networkd[542]: veth3d7581c: Gained IPv6LL
Nov 06 09:57:08 systemd-timesyncd[503]: Network configuration changed, trying to establish connection.
Nov 06 09:57:09 dhcpcd[835]: veth3d7581c: soliciting an IPv6 router
Nov 06 09:57:09 systemd[1]: systemd-rfkill.service: Deactivated successfully.
Nov 06 09:57:09 dhcpcd[835]: enp0s25: soliciting an IPv6 router
Nov 06 09:57:09 wg-quick[981]: Temporary failure in name resolution: `engage.cloudflareclient.com:2408'. Trying again in 1.73 seconds...
Nov 06 09:57:09 dhcpcd[835]: vetha40cd74: soliciting an IPv6 router
Nov 06 09:57:09 systemd[1688]: Starting User preferences database...
Nov 06 09:57:09 systemd[1688]: Started User preferences database.
Nov 06 09:57:09 uwsm_waitenv[1846]: All expected variables appeared in activation environment.
Nov 06 09:57:09 uwsm_hyprland.desktop[1849]: All expected variables appeared in activation environment.
Nov 06 09:57:09 systemd[1688]: Started Main service for Hyprland, An intelligent dynamic tiling Wayland compositor.
Nov 06 09:57:09 systemd[1688]: Starting Accessibility services bus...
Nov 06 09:57:09 systemd[1688]: Started Accessibility services bus.
Nov 06 09:57:09 dbus-broker-launch[1951]: Ready
Nov 06 09:57:09 systemd[1688]: Starting Virtual filesystem service...
Nov 06 09:57:10 systemd[1688]: Started Virtual filesystem service.
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86OK
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86GoTo
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86VendorLogo
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86MediaSelectProgramGuide
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86MediaSelectProgramGuide
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86MediaSelectHome
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86MediaLanguageMenu
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86MediaTitleMenu
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86AudioChannelMode
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86MediaSelectPC
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86MediaSelectTV
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86MediaSelectCable
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86MediaSelectVCR
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86MediaSelectVCRPlus
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86MediaSelectSatellite
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86MediaSelectCD
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86MediaSelectTape
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86MediaSelectRadio
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86MediaSelectTuner
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86MediaPlayer
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86MediaSelectTeletext
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86MediaSelectAuxiliary
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86MediaPlaySlow
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86NumberEntryMode
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86RefreshRateToggle
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86Accessibility
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: > Warning:          Could not resolve keysym XF86DoNotDisturb
Nov 06 09:57:10 uwsm_hyprland.desktop[1968]: Errors from xkbcomp are not fatal to the X server
Nov 06 09:57:10 uwsm_hyprland.desktop[1970]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Nov 06 09:57:10 uwsm_hyprland.desktop[1970]: > Warning:          Unsupported maximum keycode 708, clipping.
Nov 06 09:57:10 uwsm_hyprland.desktop[1970]: >                   X11 cannot support keycodes above 255.
Nov 06 09:57:10 uwsm_hyprland.desktop[1970]: > Warning:          Virtual modifier Hyper multiply defined
Nov 06 09:57:10 uwsm_hyprland.desktop[1970]: >                   Using 0, ignoring 0
Nov 06 09:57:10 uwsm_hyprland.desktop[1970]: > Warning:          Virtual modifier ScrollLock multiply defined
Nov 06 09:57:10 uwsm_hyprland.desktop[1970]: >                   Using 0, ignoring 0
Nov 06 09:57:10 uwsm_hyprland.desktop[1970]: Errors from xkbcomp are not fatal to the X server
Nov 06 09:57:10 systemd[1]: Starting Authorization Manager...
Nov 06 09:57:10 systemd[1688]: Finished Wait for WAYLAND_DISPLAY and other variables.
Nov 06 09:57:10 systemd[1688]: Reached target Session of hyprland.desktop Wayland compositor.
Nov 06 09:57:10 systemd[1688]: Reached target Current graphical user session.
Nov 06 09:57:10 systemd[1688]: Created slice User Graphical Application Slice.
Nov 06 09:57:10 systemd[1688]: Reached target XDG Autostart for session of hyprland.desktop Wayland compositor.
Nov 06 09:57:10 systemd[1688]: Reached target Startup of XDG autostart applications.
Nov 06 09:57:10 systemd[1688]: Starting AT-SPI D-Bus Bus...
Nov 06 09:57:10 systemd[1688]: Starting Bluetooth OBEX Agent...
Nov 06 09:57:10 systemd[1688]: Starting blueberry...
Nov 06 09:57:10 systemd[1688]: Starting Dropbox...
Nov 06 09:57:10 systemd[1688]: Starting Certificate and Key Storage...
Nov 06 09:57:10 systemd[1688]: Starting Secret Storage Service...
Nov 06 09:57:10 systemd[1688]: Starting Limine-snapper-restore notification...
Nov 06 09:57:10 systemd[1688]: Starting Fcitx 5...
Nov 06 09:57:10 systemd[1688]: Starting gnome-disk-utility notification plugin for GNOME Settings Daemon...
Nov 06 09:57:10 systemd[1688]: Starting Print Queue Applet...
Nov 06 09:57:10 systemd[1688]: Starting User folders update...
Nov 06 09:57:10 systemd[1688]: Starting xapp-sn-watcher...
Nov 06 09:57:10 systemd[1688]: Starting Fast application argument generator...
Nov 06 09:57:10 polkitd[1971]: Started polkitd version 126
Nov 06 09:57:10 systemd[1688]: Started Limine-snapper-restore notification.
Nov 06 09:57:10 polkitd[1971]: Loading rules from directory /etc/polkit-1/rules.d
Nov 06 09:57:10 polkitd[1971]: Loading rules from directory /run/polkit-1/rules.d
Nov 06 09:57:10 polkitd[1971]: Error opening rules directory: Error opening directory “/run/polkit-1/rules.d”: No such file or directory (g-file-error-quark, 4)
Nov 06 09:57:10 polkitd[1971]: Loading rules from directory /usr/local/share/polkit-1/rules.d
Nov 06 09:57:10 polkitd[1971]: Error opening rules directory: Error opening directory “/usr/local/share/polkit-1/rules.d”: No such file or directory (g-file-error-quark, 4)
Nov 06 09:57:10 polkitd[1971]: Loading rules from directory /usr/share/polkit-1/rules.d
Nov 06 09:57:10 systemd[1688]: Started Fcitx 5.
Nov 06 09:57:10 polkitd[1971]: Finished loading, compiling and executing 6 rules
Nov 06 09:57:10 systemd[1688]: Started Fast application argument generator.
Nov 06 09:57:10 systemd[1]: Started Authorization Manager.
Nov 06 09:57:10 polkitd[1971]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
Nov 06 09:57:10 systemd[1688]: app-at\x2dspi\x2ddbus\x2dbus@autostart.service: Skipped due to 'exec-condition'.
Nov 06 09:57:10 polkitd[1971]: Registered Authentication Agent for unix-session:1 (system bus name :1.33 [/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
Nov 06 09:57:10 systemd[1688]: Condition check resulted in AT-SPI D-Bus Bus being skipped.
Nov 06 09:57:10 limine-snapper-restore[1979]: You are not in a snapshot.
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.160245 instance.cpp:1416] Override Enabled Addons: {}
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.169082 instance.cpp:1417] Override Disabled Addons: {}
Nov 06 09:57:10 systemd[1688]: Started Dropbox.
Nov 06 09:57:10 systemd[1688]: app-gnome\x2dkeyring\x2dpkcs11@autostart.service: Skipped due to 'exec-condition'.
Nov 06 09:57:10 systemd[1688]: Condition check resulted in Certificate and Key Storage being skipped.
Nov 06 09:57:10 systemd[1688]: app-gnome\x2dkeyring\x2dsecrets@autostart.service: Skipped due to 'exec-condition'.
Nov 06 09:57:10 systemd[1688]: Condition check resulted in Secret Storage Service being skipped.
Nov 06 09:57:10 systemd[1688]: app-org.gnome.SettingsDaemon.DiskUtilityNotify@autostart.service: Skipped due to 'exec-condition'.
Nov 06 09:57:10 systemd[1688]: Condition check resulted in gnome-disk-utility notification plugin for GNOME Settings Daemon being skipped.
Nov 06 09:57:10 systemd[1688]: app-user\x2ddirs\x2dupdate\x2dgtk@autostart.service: Skipped due to 'exec-condition'.
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.183638 addonmanager.cpp:204] Loaded addon wayland
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.185215 addonmanager.cpp:204] Loaded addon imselector
Nov 06 09:57:10 systemd[1688]: Condition check resulted in User folders update being skipped.
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]: Exporting variables to systemd user manager:
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   DISPLAY (already set)
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   ELECTRON_OZONE_PLATFORM_HINT (already set)
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   GDK_BACKEND (already set)
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   GDK_SCALE (already set)
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   GUM_CONFIRM_PROMPT_FOREGROUND (already set)
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   GUM_CONFIRM_SELECTED_BACKGROUND (already set)
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   GUM_CONFIRM_SELECTED_FOREGROUND (already set)
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   GUM_CONFIRM_UNSELECTED_BACKGROUND (already set)
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   GUM_CONFIRM_UNSELECTED_FOREGROUND (already set)
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   HYPRCURSOR_SIZE (already set)
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   HYPRLAND_CMD (already set)
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   HYPRLAND_INSTANCE_SIGNATURE (already set)
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   MANAGERPIDFDID (already set)
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   MOZ_ENABLE_WAYLAND (already set)
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   OZONE_PLATFORM (already set)
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   QT_QPA_PLATFORM (already set)
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   QT_STYLE_OVERRIDE (already set)
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   SDL_VIDEODRIVER (already set)
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   SHLVL (already set)
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   WAYLAND_DISPLAY (already set)
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   XCOMPOSEFILE (already set)
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   XCURSOR_SIZE (already set)
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   _JAVA_AWT_WM_NONREPARENTING (already set)
Nov 06 09:57:10 systemd[1688]: Started Print Queue Applet.
Nov 06 09:57:10 systemd[1688]: Created slice Slice /app/dbus-:1.16-org.a11y.atspi.Registry.
Nov 06 09:57:10 systemd[1688]: Started dbus-:1.16-org.a11y.atspi.Registry@0.service.
Nov 06 09:57:10 systemd[1688]: Started blueberry.
Nov 06 09:57:10 systemd[1688]: Started xapp-sn-watcher.
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]: Marking variables for later cleanup from systemd user manager on stop:
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   ELECTRON_OZONE_PLATFORM_HINT
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   GDK_BACKEND
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   GDK_SCALE
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   GUM_CONFIRM_PROMPT_FOREGROUND
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   GUM_CONFIRM_SELECTED_BACKGROUND
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   GUM_CONFIRM_SELECTED_FOREGROUND
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   GUM_CONFIRM_UNSELECTED_BACKGROUND
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   GUM_CONFIRM_UNSELECTED_FOREGROUND
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   HYPRCURSOR_SIZE
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   HYPRLAND_CMD
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   HYPRLAND_INSTANCE_SIGNATURE
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   MANAGERPIDFDID
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   MOZ_ENABLE_WAYLAND
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   OZONE_PLATFORM
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   QT_QPA_PLATFORM
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   QT_STYLE_OVERRIDE
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   SDL_VIDEODRIVER
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   SHLVL
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   XCOMPOSEFILE
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]:   _JAVA_AWT_WM_NONREPARENTING
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.208587 xcbconnection.cpp:199] Connecting to X11 display, display name::1.
Nov 06 09:57:10 uwsm_hyprland.desktop[1849]: Autoready: Unit for hyprland.desktop is already active, restricting notification access.
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.209336 xcbconnection.cpp:204] X11 display: :1 is xwayland.
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.209410 addonmanager.cpp:204] Loaded addon xcb
Nov 06 09:57:10 systemd[1688]: Started Bluetooth OBEX Agent.
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.214963 addonmanager.cpp:204] Loaded addon quickphrase
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.218369 addonmanager.cpp:204] Loaded addon waylandim
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.219236 keyboard.cpp:229] Attempting to load keyboard from: ["/usr/share/xkeyboard-config-2"] Rule: evdev
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.238016 addonmanager.cpp:204] Loaded addon keyboard
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.252415 addonmanager.cpp:204] Loaded addon clipboard
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.254378 addonmanager.cpp:204] Loaded addon unicode
Nov 06 09:57:10 at-spi2-registryd[2023]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Nov 06 09:57:10 uwsm_app-daemon[1989]: Launching app daemon
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.264946 addonmanager.cpp:204] Loaded addon dbus
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.268540 addonmanager.cpp:204] Loaded addon dbusfrontend
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.286153 addonmanager.cpp:204] Loaded addon fcitx4frontend
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.289799 addonmanager.cpp:204] Loaded addon ibusfrontend
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.296451 addonmanager.cpp:204] Loaded addon xim
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.338102 inputmethodmanager.cpp:210] Found 748 input method(s) in addon keyboard
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.339964 addonmanager.cpp:204] Loaded addon kimpanel
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.341591 addonmanager.cpp:204] Loaded addon virtualkeyboard
Nov 06 09:57:10 systemd[1688]: Starting Portal service...
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.417907 classicui.cpp:90] Created classicui for x11 display::1
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.417958 classicui.cpp:111] Created classicui for wayland display:
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.417975 addonmanager.cpp:204] Loaded addon classicui
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.419448 addonmanager.cpp:204] Loaded addon notificationitem
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.424477 addonmanager.cpp:204] Loaded addon notifications
Nov 06 09:57:10 systemd[1688]: Starting sandboxed app permission store...
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.444329 dbusmodule.cpp:841] Service name change: org.fcitx.Fcitx5  :1.20
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.444643 kimpanel.cpp:116] Kimpanel new owner:
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.444748 virtualkeyboard.cpp:218] VirtualKeyboard new owner:
Nov 06 09:57:10 systemd[1688]: Started sandboxed app permission store.
Nov 06 09:57:10 systemd[1688]: Starting flatpak document portal service...
Nov 06 09:57:10 systemd[1688]: Started flatpak document portal service.
Nov 06 09:57:10 systemd[1688]: Starting Portal service (GTK/GNOME implementation)...
Nov 06 09:57:10 systemd[1688]: Started Portal service (GTK/GNOME implementation).
Nov 06 09:57:10 systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Nov 06 09:57:10 systemd[1]: Started RealtimeKit Scheduling Policy Service.
Nov 06 09:57:10 rtkit-daemon[2086]: Successfully called chroot.
Nov 06 09:57:10 rtkit-daemon[2086]: Successfully dropped privileges.
Nov 06 09:57:10 rtkit-daemon[2086]: Successfully limited resources.
Nov 06 09:57:10 rtkit-daemon[2086]: Running.
Nov 06 09:57:10 rtkit-daemon[2086]: Watchdog thread running.
Nov 06 09:57:10 rtkit-daemon[2086]: Canary thread running.
Nov 06 09:57:10 rtkit-daemon[2086]: Supervising 0 threads of 0 processes of 0 users.
Nov 06 09:57:10 rtkit-daemon[2086]: Supervising 0 threads of 0 processes of 0 users.
Nov 06 09:57:10 rtkit-daemon[2086]: Supervising 0 threads of 0 processes of 0 users.
Nov 06 09:57:10 rtkit-daemon[2086]: Supervising 0 threads of 0 processes of 0 users.
Nov 06 09:57:10 rtkit-daemon[2086]: Supervising 0 threads of 0 processes of 0 users.
Nov 06 09:57:10 rtkit-daemon[2086]: Supervising 0 threads of 0 processes of 0 users.
Nov 06 09:57:10 systemd[1688]: Started PipeWire Multimedia Service.
Nov 06 09:57:10 systemd[1688]: Started Multimedia Service Session Manager.
Nov 06 09:57:10 rtkit-daemon[2086]: Supervising 0 threads of 0 processes of 0 users.
Nov 06 09:57:10 rtkit-daemon[2086]: Supervising 0 threads of 0 processes of 0 users.
Nov 06 09:57:10 rtkit-daemon[2086]: Supervising 0 threads of 0 processes of 0 users.
Nov 06 09:57:10 dropbox[1976]: dropbox: load fq extension '/opt/dropbox/cryptography.hazmat.bindings._openssl.abi3.so'
Nov 06 09:57:10 systemd[1688]: Starting Portal service (Hyprland implementation)...
Nov 06 09:57:10 dropbox[1976]: dropbox: load fq extension '/opt/dropbox/cryptography.hazmat.bindings._padding.abi3.so'
Nov 06 09:57:10 rtkit-daemon[2086]: Successfully made thread 2090 of process 2090 owned by '1000' high priority at nice level -11.
Nov 06 09:57:10 rtkit-daemon[2086]: Supervising 1 threads of 1 processes of 1 users.
Nov 06 09:57:10 dropbox[1976]: dropbox: load fq extension '/opt/dropbox/apex._apex.abi3.so'
Nov 06 09:57:10 systemd[1688]: Started Portal service (Hyprland implementation).
Nov 06 09:57:10 rtkit-daemon[2086]: Successfully made thread 2093 of process 2090 owned by '1000' RT at priority 20.
Nov 06 09:57:10 rtkit-daemon[2086]: Supervising 2 threads of 1 processes of 1 users.
Nov 06 09:57:10 rtkit-daemon[2086]: Supervising 2 threads of 1 processes of 1 users.
Nov 06 09:57:10 rtkit-daemon[2086]: Supervising 2 threads of 1 processes of 1 users.
Nov 06 09:57:10 rtkit-daemon[2086]: Supervising 2 threads of 1 processes of 1 users.
Nov 06 09:57:10 rtkit-daemon[2086]: Successfully made thread 2091 of process 2091 owned by '1000' high priority at nice level -11.
Nov 06 09:57:10 rtkit-daemon[2086]: Supervising 3 threads of 2 processes of 1 users.
Nov 06 09:57:10 rtkit-daemon[2086]: Supervising 3 threads of 2 processes of 1 users.
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.715758 portalsettingmonitor.cpp:97] A new portal show up, start a new query.
Nov 06 09:57:10 fcitx5[1981]: I2025-11-06 09:57:10.715812 portalsettingmonitor.cpp:97] A new portal show up, start a new query.
Nov 06 09:57:10 systemd[1688]: Started Portal service.
Nov 06 09:57:10 wireplumber[2091]: wp-event-dispatcher: wp_event_dispatcher_unregister_hook: assertion 'already_registered_dispatcher == self' failed
Nov 06 09:57:10 wireplumber[2091]: wp-event-dispatcher: wp_event_dispatcher_unregister_hook: assertion 'already_registered_dispatcher == self' failed
Nov 06 09:57:10 wireplumber[2091]: wp-event-dispatcher: wp_event_dispatcher_unregister_hook: assertion 'already_registered_dispatcher == self' failed
Nov 06 09:57:10 wireplumber[2091]: wp-event-dispatcher: wp_event_dispatcher_unregister_hook: assertion 'already_registered_dispatcher == self' failed
Nov 06 09:57:10 systemd[1]: Starting Power Profiles daemon...
Nov 06 09:57:10 rtkit-daemon[2086]: Successfully made thread 2102 of process 2091 owned by '1000' RT at priority 20.
Nov 06 09:57:10 rtkit-daemon[2086]: Supervising 4 threads of 2 processes of 1 users.
Nov 06 09:57:10 rtkit-daemon[2086]: Supervising 4 threads of 2 processes of 1 users.
Nov 06 09:57:10 rtkit-daemon[2086]: Supervising 4 threads of 2 processes of 1 users.
Nov 06 09:57:10 bluetoothd[826]: Failed to set mode: Failed (0x03)
Nov 06 09:57:10 blueberry-tray.py[2024]: gtk_widget_get_scale_factor: assertion 'GTK_IS_WIDGET (widget)' failed
Nov 06 09:57:10 systemd[1]: Started Power Profiles daemon.
Nov 06 09:57:10 dropbox[1976]: dropbox: load fq extension '/opt/dropbox/google._upb._message.cpython-38-x86_64-linux-gnu.so'
Nov 06 09:57:10 dropbox[1976]: dropbox: load fq extension '/opt/dropbox/psutil._psutil_linux.abi3.so'
Nov 06 09:57:10 dropbox[1976]: dropbox: load fq extension '/opt/dropbox/psutil._psutil_posix.abi3.so'
Nov 06 09:57:10 wg-quick[981]: Temporary failure in name resolution: `engage.cloudflareclient.com:2408'. Trying again in 2.07 seconds...
Nov 06 09:57:11 wireplumber[2091]: default: Failed to get percentage from UPower: org.freedesktop.DBus.Error.NameHasNoOwner
Nov 06 09:57:11 kernel: Bluetooth: RFCOMM TTY layer initialized
Nov 06 09:57:11 kernel: Bluetooth: RFCOMM socket layer initialized
Nov 06 09:57:11 kernel: Bluetooth: RFCOMM ver 1.11
Nov 06 09:57:11 bluetoothd[826]: Endpoint registered: sender=:1.46 path=/MediaEndpoint/A2DPSource/ldac
Nov 06 09:57:11 bluetoothd[826]: Endpoint registered: sender=:1.46 path=/MediaEndpoint/A2DPSink/aptx_hd
Nov 06 09:57:11 bluetoothd[826]: Endpoint registered: sender=:1.46 path=/MediaEndpoint/A2DPSource/aptx_hd
Nov 06 09:57:11 bluetoothd[826]: Endpoint registered: sender=:1.46 path=/MediaEndpoint/A2DPSink/aptx
Nov 06 09:57:11 bluetoothd[826]: Endpoint registered: sender=:1.46 path=/MediaEndpoint/A2DPSource/aptx
Nov 06 09:57:11 bluetoothd[826]: Endpoint registered: sender=:1.46 path=/MediaEndpoint/A2DPSink/aac
Nov 06 09:57:11 bluetoothd[826]: Endpoint registered: sender=:1.46 path=/MediaEndpoint/A2DPSource/aac
Nov 06 09:57:11 bluetoothd[826]: Endpoint registered: sender=:1.46 path=/MediaEndpoint/A2DPSink/opus_g
Nov 06 09:57:11 bluetoothd[826]: Endpoint registered: sender=:1.46 path=/MediaEndpoint/A2DPSource/opus_g
Nov 06 09:57:11 bluetoothd[826]: Endpoint registered: sender=:1.46 path=/MediaEndpoint/A2DPSink/sbc
Nov 06 09:57:11 bluetoothd[826]: Endpoint registered: sender=:1.46 path=/MediaEndpoint/A2DPSource/sbc
Nov 06 09:57:11 bluetoothd[826]: Endpoint registered: sender=:1.46 path=/MediaEndpoint/A2DPSource/aptx_ll_1
Nov 06 09:57:11 bluetoothd[826]: Endpoint registered: sender=:1.46 path=/MediaEndpoint/A2DPSource/aptx_ll_0
Nov 06 09:57:11 bluetoothd[826]: Endpoint registered: sender=:1.46 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_1
Nov 06 09:57:11 bluetoothd[826]: Endpoint registered: sender=:1.46 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_0
Nov 06 09:57:11 bluetoothd[826]: Endpoint registered: sender=:1.46 path=/MediaEndpoint/A2DPSource/faststream
Nov 06 09:57:11 bluetoothd[826]: Endpoint registered: sender=:1.46 path=/MediaEndpoint/A2DPSource/faststream_duplex
Nov 06 09:57:11 bluetoothd[826]: Endpoint registered: sender=:1.46 path=/MediaEndpoint/A2DPSink/opus_05
Nov 06 09:57:11 bluetoothd[826]: Endpoint registered: sender=:1.46 path=/MediaEndpoint/A2DPSource/opus_05
Nov 06 09:57:11 bluetoothd[826]: Endpoint registered: sender=:1.46 path=/MediaEndpoint/A2DPSink/opus_05_duplex
Nov 06 09:57:11 bluetoothd[826]: Endpoint registered: sender=:1.46 path=/MediaEndpoint/A2DPSource/opus_05_duplex
Nov 06 09:57:11 wireplumber[2091]: wp-device: SPA handle 'api.libcamera.enum.manager' could not be loaded; is it installed?
Nov 06 09:57:11 wireplumber[2091]: s-monitors-libcamera: PipeWire's libcamera SPA plugin is missing or broken. Some camera types may not be supported.
Nov 06 09:57:11 uwsm_app-daemon[1989]: received: app -- waybar
Nov 06 09:57:11 uwsm_app-daemon[1989]: sent: exec systemd-run --user --scope --slice=app-graphical.slice --unit=app-Hyprland-waybar-0d948617.scope --description=waybar --quiet --collect --same-dir -- waybar
Nov 06 09:57:11 uwsm_app-daemon[1989]: received: app -- walker --gapplication-service
Nov 06 09:57:11 uwsm_app-daemon[1989]: sent: exec systemd-run --user --scope --slice=app-graphical.slice --unit=app-Hyprland-walker-15b6c1df.scope --description=walker --quiet --collect --same-dir -- walker --gapplication-service
Nov 06 09:57:11 uwsm_app-daemon[1989]: received: app -- swayosd-server
Nov 06 09:57:11 uwsm_app-daemon[1989]: sent: exec systemd-run --user --scope --slice=app-graphical.slice '--unit=app-Hyprland-swayosd\x2dserver-045ea9f8.scope' --description=swayosd-server --quiet --collect --same-dir -- swayosd-server
Nov 06 09:57:11 systemd[1688]: Started waybar.
Nov 06 09:57:11 uwsm_app-daemon[1989]: received: app -- mako
Nov 06 09:57:11 uwsm_app-daemon[1989]: sent: exec systemd-run --user --scope --slice=app-graphical.slice --unit=app-Hyprland-mako-38a57bae.scope --description=mako --quiet --collect --same-dir -- mako
Nov 06 09:57:11 systemd[1688]: Started swayosd-server.
Nov 06 09:57:11 systemd[1688]: Started walker.
Nov 06 09:57:11 uwsm_app-daemon[1989]: received: app -- elephant
Nov 06 09:57:11 uwsm_app-daemon[1989]: sent: exec systemd-run --user --scope --slice=app-graphical.slice --unit=app-Hyprland-elephant-5e461140.scope --description=elephant --quiet --collect --same-dir -- elephant
Nov 06 09:57:11 systemd[1688]: Started mako.
Nov 06 09:57:11 uwsm_app-daemon[1989]: received: app -- fcitx5
Nov 06 09:57:11 uwsm_app-daemon[1989]: sent: exec systemd-run --user --scope --slice=app-graphical.slice --unit=app-Hyprland-fcitx5-25714910.scope --description=fcitx5 --quiet --collect --same-dir -- fcitx5
Nov 06 09:57:11 systemd[1688]: Started elephant.
Nov 06 09:57:11 uwsm_app-daemon[1989]: received: app -- hypridle
Nov 06 09:57:11 uwsm_app-daemon[1989]: sent: exec systemd-run --user --scope --slice=app-graphical.slice --unit=app-Hyprland-hypridle-6c11565e.scope --description=hypridle --quiet --collect --same-dir -- hypridle
Nov 06 09:57:11 uwsm_app-daemon[1989]: received: app -- swaybg -i /home/user/.config/omarchy/current/background -m fill
Nov 06 09:57:11 uwsm_app-daemon[1989]: sent: exec systemd-run --user --scope --slice=app-graphical.slice --unit=app-Hyprland-swaybg-da2e8281.scope --description=swaybg --quiet --collect --same-dir -- swaybg -i /home/user/.config/omarchy/current/background -m fill
Nov 06 09:57:11 systemd[1688]: Started fcitx5.
Nov 06 09:57:11 systemd[1688]: Started hypridle.
Nov 06 09:57:11 systemd[1688]: Started swaybg.
Nov 06 09:57:11 dhcpcd[835]: enp0s25: leased 192.168.1.76 for 86400 seconds
Nov 06 09:57:11 avahi-daemon[825]: Registering new address record for 192.168.1.76 on enp0s25.IPv4.
Nov 06 09:57:11 dhcpcd[835]: enp0s25: adding route to 192.168.1.0/24
Nov 06 09:57:11 dhcpcd[835]: enp0s25: adding default route via 192.168.1.1
Nov 06 09:57:11 systemd-timesyncd[503]: Network configuration changed, trying to establish connection.
Nov 06 09:57:11 dnsmasq[1149]: reading /etc/resolv.conf
Nov 06 09:57:11 dnsmasq[1149]: using nameserver 127.0.0.1#53
Nov 06 09:57:11 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 09:57:11 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 09:57:11 systemd[1]: Stopping Network Time Synchronization...
Nov 06 09:57:11 systemd[1688]: Started PipeWire PulseAudio.
Nov 06 09:57:11 systemd[1]: systemd-timesyncd.service: Deactivated successfully.
Nov 06 09:57:11 systemd[1]: Stopped Network Time Synchronization.
Nov 06 09:57:11 systemd[1]: Starting Network Time Synchronization...
Nov 06 09:57:11 rtkit-daemon[2086]: Successfully made thread 2270 of process 2270 owned by '1000' high priority at nice level -11.
Nov 06 09:57:11 rtkit-daemon[2086]: Supervising 5 threads of 3 processes of 1 users.
Nov 06 09:57:11 rtkit-daemon[2086]: Successfully made thread 2288 of process 2270 owned by '1000' RT at priority 20.
Nov 06 09:57:11 rtkit-daemon[2086]: Supervising 6 threads of 3 processes of 1 users.
Nov 06 09:57:11 systemd[1]: Started Network Time Synchronization.
Nov 06 09:57:11 systemd-timesyncd[2277]: Contacted time server 10.22.192.1:123 (10.22.192.1).
Nov 06 09:57:11 systemd-timesyncd[2277]: Initial clock synchronization to Thu 2025-11-06 09:57:11.460702 CET.
Nov 06 09:57:11 dropbox[1976]: <frozen zipimport>:259: UserWarning: google.protobuf.service module is deprecated. RPC implementations should provide code generator plugins which generate code specific to the RPC implementation. service.py will be removed in Jan 2025
Nov 06 09:57:12 systemd[1688]: Starting Virtual filesystem metadata service...
Nov 06 09:57:12 systemd[1688]: Started Virtual filesystem metadata service.
Nov 06 09:57:12 dropbox[1976]: dropbox: load fq extension '/opt/dropbox/tornado.speedups.abi3.so'
Nov 06 09:57:12 dhcpcd[835]: enp0s25: Router Advertisement from fe80::2e96:82ff:fefc:9188
Nov 06 09:57:12 dhcpcd[835]: enp0s25: no global addresses for default route
Nov 06 09:57:12 uwsm_app-daemon[1989]: received: app -- xdg-terminal-exec --dir=/home/user
Nov 06 09:57:12 uwsm_app-daemon[1989]: sent: exec systemd-run --user --scope --slice=app-graphical.slice '--unit=app-Hyprland-xdg\x2dterminal\x2dexec-78acfaa0.scope' --description=xdg-terminal-exec --quiet --collect --same-dir -- xdg-terminal-exec --dir=/home/user
Nov 06 09:57:12 systemd[1688]: Started xdg-terminal-exec.
Nov 06 09:57:13 wg-quick[955]: [#] ip -4 address add 172.16.0.2/32 dev wgcf-profile
Nov 06 09:57:13 wg-quick[955]: [#] ip -6 address add 2606:4700:110:8608:d3bb:21ee:95a:6669/128 dev wgcf-profile
Nov 06 09:57:13 dnsmasq[1149]: reading /etc/resolv.conf
Nov 06 09:57:13 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 09:57:13 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 09:57:13 wg-quick[955]: [#] ip link set mtu 1280 up dev wgcf-profile
Nov 06 09:57:13 dnsmasq[1149]: reading /etc/resolv.conf
Nov 06 09:57:13 dnsmasq[1149]: using nameserver 127.0.0.1#53
Nov 06 09:57:13 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 09:57:13 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 09:57:13 dhcpcd[835]: enp0s25: adding default route via fe80::2e96:82ff:fefc:9188
Nov 06 09:57:13 wg-quick[955]: [#] wg set wgcf-profile fwmark 51820
Nov 06 09:57:13 wg-quick[955]: [#] ip -6 rule add not fwmark 51820 table 51820
Nov 06 09:57:13 wg-quick[955]: [#] ip -6 rule add table main suppress_prefixlength 0
Nov 06 09:57:13 wg-quick[955]: [#] ip -6 route add ::/0 dev wgcf-profile table 51820
Nov 06 09:57:13 wg-quick[955]: [#] nft -f /dev/fd/63
Nov 06 09:57:13 wg-quick[955]: [#] ip -4 rule add not fwmark 51820 table 51820
Nov 06 09:57:13 wg-quick[955]: [#] ip -4 rule add table main suppress_prefixlength 0
Nov 06 09:57:13 wg-quick[955]: [#] ip -4 route add 0.0.0.0/0 dev wgcf-profile table 51820
Nov 06 09:57:13 wg-quick[955]: [#] sysctl -q net.ipv4.conf.all.src_valid_mark=1
Nov 06 09:57:13 wg-quick[955]: [#] nft -f /dev/fd/63
Nov 06 09:57:13 wg-quick[955]: [#] /usr/bin/resolvectl dns wgcf-profile 1.1.1.2 1.0.0.2 || true
Nov 06 09:57:13 dnsmasq[1149]: reading /etc/resolv.conf
Nov 06 09:57:13 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 09:57:13 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 09:57:13 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 09:57:13 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 09:57:13 systemd-resolved[515]: wgcf-profile: Bus client set DNS server list to: 1.1.1.2, 1.0.0.2
Nov 06 09:57:13 wg-quick[955]: [#] /usr/bin/resolvectl domain wgcf-profile "~." || true
Nov 06 09:57:13 systemd-resolved[515]: wgcf-profile: Bus client set search domain list to: ~.
Nov 06 09:57:13 dropbox[1976]: dropbox: load fq extension '/opt/dropbox/wrapt._wrappers.cpython-38-x86_64-linux-gnu.so'
Nov 06 09:57:17 fcitx5[1981]: I2025-11-06 09:57:17.220750 waylandmodule.cpp:636] Wayland self diagnose information
Nov 06 09:57:17 fcitx5[1981]: I2025-11-06 09:57:17.220830 waylandmodule.cpp:637] Using Wayland native input method protocol: 1
Nov 06 09:57:17 fcitx5[1981]: I2025-11-06 09:57:17.220849 waylandmodule.cpp:639] Toolkit specific environment variable detected by process:
Nov 06 09:57:17 fcitx5[1981]: I2025-11-06 09:57:17.220866 waylandmodule.cpp:641] GTK_IM_MODULE=
Nov 06 09:57:17 fcitx5[1981]: I2025-11-06 09:57:17.220881 waylandmodule.cpp:642] QT_IM_MODULE=fcitx
Nov 06 09:57:17 fcitx5[1981]: I2025-11-06 09:57:17.220896 waylandmodule.cpp:643] QT_IM_MODULES=
Nov 06 09:57:21 dhcpcd[835]: veth3d7581c: no IPv6 Routers available
Nov 06 09:57:21 dhcpcd[835]: vetha40cd74: no IPv6 Routers available
Nov 06 09:57:30 dropbox[2954]: dropbox: load fq extension '/tmp/.dropbox-dist-new-easpgyy9/.dropbox-dist/dropbox-lnx.x86_64-236.4.5918/cryptography.hazmat.bindings._openssl.abi3.so'
Nov 06 09:57:30 dropbox[2954]: dropbox: load fq extension '/tmp/.dropbox-dist-new-easpgyy9/.dropbox-dist/dropbox-lnx.x86_64-236.4.5918/cryptography.hazmat.bindings._padding.abi3.so'
Nov 06 09:57:30 dropbox[2954]: dropbox: load fq extension '/tmp/.dropbox-dist-new-easpgyy9/.dropbox-dist/dropbox-lnx.x86_64-236.4.5918/apex._apex.abi3.so'
Nov 06 09:57:30 dropbox[2954]: dropbox: load fq extension '/tmp/.dropbox-dist-new-easpgyy9/.dropbox-dist/dropbox-lnx.x86_64-236.4.5918/google._upb._message.cpython-38-x86_64-linux-gnu.so'
Nov 06 09:57:30 dropbox[2954]: dropbox: load fq extension '/tmp/.dropbox-dist-new-easpgyy9/.dropbox-dist/dropbox-lnx.x86_64-236.4.5918/psutil._psutil_linux.abi3.so'
Nov 06 09:57:30 dropbox[2954]: dropbox: load fq extension '/tmp/.dropbox-dist-new-easpgyy9/.dropbox-dist/dropbox-lnx.x86_64-236.4.5918/psutil._psutil_posix.abi3.so'
Nov 06 09:57:31 dropbox[2954]: <frozen zipimport>:259: UserWarning: google.protobuf.service module is deprecated. RPC implementations should provide code generator plugins which generate code specific to the RPC implementation. service.py will be removed in Jan 2025
Nov 06 09:57:31 dropbox[2954]: dropbox: load fq extension '/tmp/.dropbox-dist-new-easpgyy9/.dropbox-dist/dropbox-lnx.x86_64-236.4.5918/tornado.speedups.abi3.so'
Nov 06 09:57:32 dropbox[2954]: dropbox: load fq extension '/tmp/.dropbox-dist-new-easpgyy9/.dropbox-dist/dropbox-lnx.x86_64-236.4.5918/wrapt._wrappers.cpython-38-x86_64-linux-gnu.so'
Nov 06 09:57:33 systemd[1688]: app-dropbox@autostart.service: Main process exited, code=killed, status=9/KILL
Nov 06 09:57:33 dropbox[3058]: dropbox: load fq extension '/home/user/.dropbox-dist/dropbox-lnx.x86_64-236.4.5918/cryptography.hazmat.bindings._openssl.abi3.so'
Nov 06 09:57:33 dropbox[3058]: dropbox: load fq extension '/home/user/.dropbox-dist/dropbox-lnx.x86_64-236.4.5918/cryptography.hazmat.bindings._padding.abi3.so'
Nov 06 09:57:33 dropbox[3058]: dropbox: load fq extension '/home/user/.dropbox-dist/dropbox-lnx.x86_64-236.4.5918/apex._apex.abi3.so'
Nov 06 09:57:33 dropbox[3058]: dropbox: load fq extension '/home/user/.dropbox-dist/dropbox-lnx.x86_64-236.4.5918/google._upb._message.cpython-38-x86_64-linux-gnu.so'
Nov 06 09:57:33 dropbox[3058]: dropbox: load fq extension '/home/user/.dropbox-dist/dropbox-lnx.x86_64-236.4.5918/psutil._psutil_linux.abi3.so'
Nov 06 09:57:33 dropbox[3058]: dropbox: load fq extension '/home/user/.dropbox-dist/dropbox-lnx.x86_64-236.4.5918/psutil._psutil_posix.abi3.so'
Nov 06 09:57:33 dropbox[3058]: <frozen zipimport>:259: UserWarning: google.protobuf.service module is deprecated. RPC implementations should provide code generator plugins which generate code specific to the RPC implementation. service.py will be removed in Jan 2025
Nov 06 09:57:34 dropbox[3058]: dropbox: load fq extension '/home/user/.dropbox-dist/dropbox-lnx.x86_64-236.4.5918/tornado.speedups.abi3.so'
Nov 06 09:57:35 dropbox[3058]: dropbox: load fq extension '/home/user/.dropbox-dist/dropbox-lnx.x86_64-236.4.5918/wrapt._wrappers.cpython-38-x86_64-linux-gnu.so'
Nov 06 09:57:35 systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Nov 06 09:58:29 systemd-timesyncd[2277]: Timed out waiting for reply from 10.22.192.1:123 (10.22.192.1).
Nov 06 09:58:50 unix_chkpwd[3492]: password check failed for user (user)
Nov 06 09:58:50 sudo[3490]: pam_unix(sudo:auth): authentication failure; logname=user uid=1000 euid=0 tty=/dev/pts/0 ruser=user rhost=  user=user
Nov 06 09:59:06 sudo[3490]:    user : TTY=pts/0 ; PWD=/home/user ; USER=root ; COMMAND=/usr/bin/dmesg -HTw
Nov 06 09:59:06 sudo[3490]: pam_unix(sudo:session): session opened for user root(uid=0) by user(uid=1000)
Nov 06 09:59:11 systemd-timesyncd[2277]: Timed out waiting for reply from 10.22.192.1:123 (10.22.192.1).
Nov 06 09:59:21 sudo[3490]: pam_unix(sudo:session): session closed for user root
Nov 06 09:59:31 sudo[3552]:    user : TTY=pts/0 ; PWD=/home/user ; USER=root ; COMMAND=/usr/bin/dmesg -HTw
Nov 06 09:59:31 sudo[3552]: pam_unix(sudo:session): session opened for user root(uid=0) by user(uid=1000)
Nov 06 09:59:50 sudo[3552]: pam_unix(sudo:session): session closed for user root
Nov 06 09:59:55 sudo[3609]:    user : TTY=pts/0 ; PWD=/home/user ; USER=root ; COMMAND=/usr/bin/dmesg -HTw
Nov 06 09:59:55 sudo[3609]: pam_unix(sudo:session): session opened for user root(uid=0) by user(uid=1000)
Nov 06 10:00:00 systemd[1]: Started Timeline of Snapper Snapshots.
Nov 06 10:00:00 systemd[1]: Starting DBus interface for snapper...
Nov 06 10:00:00 systemd[1]: Started DBus interface for snapper.
Nov 06 10:00:00 systemd[1]: snapper-timeline.service: Deactivated successfully.
Nov 06 10:00:25 sudo[3609]: pam_unix(sudo:session): session closed for user root
Nov 06 10:00:26 systemd-timesyncd[2277]: Timed out waiting for reply from 10.22.192.1:123 (10.22.192.1).
Nov 06 10:00:34 uwsm_app-daemon[1989]: received: app -- helium-browser
Nov 06 10:00:34 uwsm_app-daemon[1989]: sent: exec systemd-run --user --scope --slice=app-graphical.slice '--unit=app-Hyprland-helium\x2dbrowser-b5208e98.scope' --description=helium-browser --quiet --collect --same-dir -- helium-browser
Nov 06 10:00:34 systemd[1688]: Started helium-browser.
Nov 06 10:00:35 systemd[1688]: Started app-org.chromium.Chromium-3698.scope.
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG] Initializing xdph...
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG] XDG_CURRENT_DESKTOP set to Hyprland
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG] Gathering exported interfaces
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: wl_seat (ver 9)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: wl_data_device_manager (ver 3)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: wl_compositor (ver 6)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: wl_subcompositor (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: wl_shm (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: wp_viewporter (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: wp_tearing_control_manager_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: wp_fractional_scale_manager_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: zxdg_output_manager_v1 (ver 3)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: wp_cursor_shape_manager_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: zwp_idle_inhibit_manager_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: zwp_relative_pointer_manager_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: zxdg_decoration_manager_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: wp_alpha_modifier_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: zwlr_gamma_control_manager_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: ext_foreign_toplevel_list_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: zwp_pointer_gestures_v1 (ver 3)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: zwlr_foreign_toplevel_manager_v1 (ver 3)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG] [toplevel] (activate) locks: 1
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: zwp_keyboard_shortcuts_inhibit_manager_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: zwp_text_input_manager_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: zwp_text_input_manager_v3 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: zwp_pointer_constraints_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: zwlr_output_power_manager_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: xdg_activation_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: ext_idle_notifier_v1 (ver 2)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: hyprland_lock_notifier_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: ext_session_lock_manager_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: zwp_input_method_manager_v2 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: zwp_virtual_keyboard_manager_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: zwlr_virtual_pointer_manager_v1 (ver 2)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: zwlr_output_manager_v1 (ver 4)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: org_kde_kwin_server_decoration_manager (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: hyprland_focus_grab_manager_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: zwp_tablet_manager_v2 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: zwlr_layer_shell_v1 (ver 5)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: wp_presentation (ver 2)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: xdg_wm_base (ver 7)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: zwlr_data_control_manager_v1 (ver 2)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: zwp_primary_selection_device_manager_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: xwayland_shell_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: zwlr_screencopy_manager_v1 (ver 3)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG] [pipewire] connected
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG] [screencopy] init successful
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: hyprland_toplevel_export_manager_v1 (ver 2)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: hyprland_toplevel_mapping_manager_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG] [toplevel mapping] registered manager
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: hyprland_global_shortcuts_manager_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG] [globalshortcuts] registered
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: xdg_wm_dialog_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: wp_single_pixel_buffer_manager_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: wp_security_context_manager_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: hyprland_ctm_control_manager_v1 (ver 2)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: hyprland_surface_manager_v1 (ver 2)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: wp_content_type_manager_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: xdg_toplevel_tag_manager_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: xdg_system_bell_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: ext_workspace_manager_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: ext_data_control_manager_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: wp_pointer_warp_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: wp_color_manager_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: wp_drm_lease_device_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: wp_linux_drm_syncobj_manager_v1 (ver 1)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: wl_drm (ver 2)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: zwp_linux_dmabuf_v1 (ver 5)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG]  | Got interface: wl_output (ver 4)
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG] [core] dmabufFeedbackMainDevice
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG] Found output name DP-1
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG] [toplevel] Activated, bound to 1, toplevels: 0
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG] [screencopy] Registered for toplevel export
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG] [screenshot] init successful
Nov 06 10:00:35 xdg-desktop-portal-hyprland[2097]: [LOG] [globalshortcuts] New session:
Nov 06 10:01:00 systemd[1]: snapperd.service: Deactivated successfully.
Nov 06 10:01:01 uwsm_app-daemon[1989]: received: app -- xdg-terminal-exec --dir=/home/user
Nov 06 10:01:01 uwsm_app-daemon[1989]: sent: exec systemd-run --user --scope --slice=app-graphical.slice '--unit=app-Hyprland-xdg\x2dterminal\x2dexec-d556a1c6.scope' --description=xdg-terminal-exec --quiet --collect --same-dir -- xdg-terminal-exec --dir=/home/user
Nov 06 10:01:01 systemd[1688]: Started xdg-terminal-exec.
Nov 06 10:01:04 chrome[3698]: [3698:3755:1106/100104.964971:INFO:chrome/browser/extensions/extension_garbage_collector.cc:188] Garbage collection for extensions on file thread is complete.
Nov 06 10:02:44 systemd-timesyncd[2277]: Timed out waiting for reply from 10.22.192.1:123 (10.22.192.1).
Nov 06 10:05:37 systemd[1]: Starting Daily Cleanup of Snapper Snapshots...
Nov 06 10:05:37 systemd[1]: Started Daily Cleanup of Snapper Snapshots.
Nov 06 10:05:37 systemd[1]: Starting DBus interface for snapper...
Nov 06 10:05:37 systemd[1]: Started DBus interface for snapper.
Nov 06 10:05:37 systemd-helper[4874]: Running cleanup for 'home'.
Nov 06 10:05:37 systemd-helper[4874]: Running number cleanup for 'home'.
Nov 06 10:05:37 systemd-helper[4874]: Deleting snapshot from home:
Nov 06 10:05:37 systemd-helper[4874]: 69
Nov 06 10:05:37 systemd-helper[4874]: Running timeline cleanup for 'home'.
Nov 06 10:05:37 systemd-helper[4874]: Running empty-pre-post cleanup for 'home'.
Nov 06 10:05:37 systemd-helper[4874]: Running cleanup for 'root'.
Nov 06 10:05:37 systemd-helper[4874]: Running number cleanup for 'root'.
Nov 06 10:05:37 systemd-helper[4874]: Deleting snapshot from root:
Nov 06 10:05:37 systemd-helper[4874]: 69
Nov 06 10:05:37 limine-snapper-watcher[931]: [EVENT] DELETE,ISDIR -> 69
Nov 06 10:05:37 limine-snapper-watcher[931]: [SKIP] Cleanup lock is active, skipping sync for snapshot ID: 69
Nov 06 10:05:37 systemd-helper[4874]: Running timeline cleanup for 'root'.
Nov 06 10:05:37 systemd-helper[4874]: Running empty-pre-post cleanup for 'root'.
Nov 06 10:05:37 systemd[1]: snapper-cleanup.service: Deactivated successfully.
Nov 06 10:05:37 systemd[1]: snapper-cleanup.service: Consumed 829ms CPU time, 117.5M memory peak.
Nov 06 10:06:37 systemd[1]: snapperd.service: Deactivated successfully.
Nov 06 10:07:11 systemd-timesyncd[2277]: Timed out waiting for reply from 10.22.192.1:123 (10.22.192.1).
Nov 06 10:07:12 dhcpcd[835]: enp0s25: changing default route via fe80::2e96:82ff:fefc:9188
Nov 06 10:07:12 dnsmasq[1149]: reading /etc/resolv.conf
Nov 06 10:07:12 dnsmasq[1149]: using nameserver 127.0.0.1#53
Nov 06 10:07:12 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:07:12 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:10:37 systemd[1]: Starting Cleanup of Temporary Directories...
Nov 06 10:10:37 systemd[1]: systemd-tmpfiles-clean.service: Deactivated successfully.
Nov 06 10:10:37 systemd[1]: Finished Cleanup of Temporary Directories.
Nov 06 10:15:53 systemd-timesyncd[2277]: Timed out waiting for reply from 10.22.192.1:123 (10.22.192.1).
Nov 06 10:17:12 dhcpcd[835]: enp0s25: fe80::2e96:82ff:fefc:9188: router expired
Nov 06 10:17:12 dhcpcd[835]: enp0s25: part of a Router Advertisement expired
Nov 06 10:17:12 dhcpcd[835]: enp0s25: deleting default route via fe80::2e96:82ff:fefc:9188
Nov 06 10:17:12 dhcpcd[835]: enp0s25: adding default route via fe80::2e96:82ff:fefc:9188
Nov 06 10:17:12 systemd-timesyncd[2277]: Network configuration changed, trying to establish connection.
Nov 06 10:17:12 dnsmasq[1149]: reading /etc/resolv.conf
Nov 06 10:17:12 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:17:12 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:17:12 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:17:12 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:17:12 dnsmasq[1149]: reading /etc/resolv.conf
Nov 06 10:17:12 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:17:12 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:17:12 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:17:12 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:17:12 dnsmasq[1149]: reading /etc/resolv.conf
Nov 06 10:17:12 dnsmasq[1149]: using nameserver 127.0.0.1#53
Nov 06 10:17:12 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:17:12 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:17:18 dhcpcd[835]: enp0s25: changing default route via fe80::2e96:82ff:fefc:9188
Nov 06 10:17:22 systemd-timesyncd[2277]: Timed out waiting for reply from 10.22.192.1:123 (10.22.192.1).
Nov 06 10:17:32 systemd-timesyncd[2277]: Timed out waiting for reply from 10.22.192.1:123 (10.22.192.1).
Nov 06 10:17:44 dhcpcd[835]: enp0s25: changing default route via fe80::2e96:82ff:fefc:9188
Nov 06 10:27:07 systemd[1]: Unmounting /mnt/legacy_hdd...
Nov 06 10:27:07 systemd[1]: mnt-legacy_hdd.mount: Mount process exited, code=exited, status=32/n/a
Nov 06 10:27:07 systemd[1]: Failed unmounting /mnt/legacy_hdd.
Nov 06 10:27:07 umount[7499]: umount: /mnt/legacy_hdd: target is busy.
Nov 06 10:27:07 (sd-expire[7498]: Failed to expire automount, ignoring: No such device
Nov 06 10:27:12 fcitx5[1981]: I2025-11-06 10:27:12.617763 instance.cpp:1248] Running autosave...
Nov 06 10:27:12 fcitx5[1981]: I2025-11-06 10:27:12.628947 instance.cpp:1250] End autosave
Nov 06 10:27:44 dhcpcd[835]: enp0s25: fe80::2e96:82ff:fefc:9188: router expired
Nov 06 10:27:44 dhcpcd[835]: enp0s25: part of a Router Advertisement expired
Nov 06 10:27:44 dhcpcd[835]: enp0s25: deleting default route via fe80::2e96:82ff:fefc:9188
Nov 06 10:27:44 dhcpcd[835]: enp0s25: adding default route via fe80::2e96:82ff:fefc:9188
Nov 06 10:27:44 systemd-timesyncd[2277]: Network configuration changed, trying to establish connection.
Nov 06 10:27:44 dnsmasq[1149]: reading /etc/resolv.conf
Nov 06 10:27:44 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:27:44 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:27:44 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:27:44 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:27:44 dnsmasq[1149]: reading /etc/resolv.conf
Nov 06 10:27:44 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:27:44 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:27:44 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:27:44 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:27:44 dnsmasq[1149]: reading /etc/resolv.conf
Nov 06 10:27:44 dnsmasq[1149]: using nameserver 127.0.0.1#53
Nov 06 10:27:44 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:27:44 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:27:54 systemd-timesyncd[2277]: Timed out waiting for reply from 10.22.192.1:123 (10.22.192.1).
Nov 06 10:28:05 systemd-timesyncd[2277]: Timed out waiting for reply from 10.22.192.1:123 (10.22.192.1).
Nov 06 10:29:27 systemd-coredump[8059]: Process 8058 (hyprctl) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Nov 06 10:29:27 systemd[1]: Created slice Slice /system/systemd-coredump.
Nov 06 10:29:27 systemd[1]: Started Process Core Dump (PID 8059/UID 0).
Nov 06 10:29:28 systemd-coredump[8060]: Process 8058 (hyprctl) of user 1000 dumped core.
                                              
                                              Stack trace of thread 8058:
                                              #0  0x00007fd58489894c n/a (libc.so.6 + 0x9894c)
                                              #1  0x00007fd58483e410 raise (libc.so.6 + 0x3e410)
                                              #2  0x00007fd58482557a abort (libc.so.6 + 0x2557a)
                                              #3  0x00007fd584c97bf6 _ZN9__gnu_cxx27__verbose_terminate_handlerEv (libstdc++.so.6 + 0x97bf6)
                                              #4  0x00007fd584cb1eba _ZN10__cxxabiv111__terminateEPFvvE (libstdc++.so.6 + 0xb1eba)
                                              #5  0x00007fd584c975d9 _ZSt9terminatev (libstdc++.so.6 + 0x975d9)
                                              #6  0x00007fd584cb2176 __cxa_throw (libstdc++.so.6 + 0xb2176)
                                              #7  0x00007fd584c9ccc4 _ZSt20__throw_system_errori (libstdc++.so.6 + 0x9ccc4)
                                              #8  0x000055a8dd2b54f2 n/a (/usr/bin/hyprctl + 0x44f2)
                                              #9  0x000055a8dd2c1f21 _Z7requestSt17basic_string_viewIcSt11char_traitsIcEEib (/usr/bin/hyprctl + 0x10f21)
                                              #10 0x000055a8dd2b8009 main (/usr/bin/hyprctl + 0x7009)
                                              #11 0x00007fd584827675 n/a (libc.so.6 + 0x27675)
                                              #12 0x00007fd584827729 __libc_start_main (libc.so.6 + 0x27729)
                                              #13 0x000055a8dd2b8455 _start (/usr/bin/hyprctl + 0x7455)
                                              ELF object binary architecture: AMD x86-64
Nov 06 10:29:28 systemd[1]: systemd-coredump@0-1-8059_8060-0.service: Deactivated successfully.
Nov 06 10:36:49 sudo[8798]:    user : TTY=pts/0 ; PWD=/home/user ; USER=root ; COMMAND=/usr/bin/dmesg -HTw
Nov 06 10:36:49 sudo[8798]: pam_unix(sudo:session): session opened for user root(uid=0) by user(uid=1000)
Nov 06 10:37:40 uwsm_app-daemon[1989]: received: app -- xdg-terminal-exec --dir=/home/user
Nov 06 10:37:40 uwsm_app-daemon[1989]: sent: exec systemd-run --user --scope --slice=app-graphical.slice '--unit=app-Hyprland-xdg\x2dterminal\x2dexec-92731f4b.scope' --description=xdg-terminal-exec --quiet --collect --same-dir -- xdg-terminal-exec --dir=/home/user
Nov 06 10:37:40 systemd[1688]: Started xdg-terminal-exec.
Nov 06 10:37:44 uwsm_app-daemon[1989]: received: app -- xdg-terminal-exec nvim
Nov 06 10:37:44 uwsm_app-daemon[1989]: sent: exec systemd-run --user --scope --slice=app-graphical.slice '--unit=app-Hyprland-xdg\x2dterminal\x2dexec-7bdb955e.scope' --description=xdg-terminal-exec --quiet --collect --same-dir -- xdg-terminal-exec nvim
Nov 06 10:37:44 systemd[1688]: Started xdg-terminal-exec.
Nov 06 10:37:44 dhcpcd[835]: enp0s25: pid 1 deleted default route via fe80::2e96:82ff:fefc:9188
Nov 06 10:37:44 dhcpcd[835]: enp0s25: fe80::2e96:82ff:fefc:9188: router expired
Nov 06 10:37:44 dhcpcd[835]: enp0s25: part of a Router Advertisement expired
Nov 06 10:37:45 systemd-timesyncd[2277]: Network configuration changed, trying to establish connection.
Nov 06 10:37:45 dnsmasq[1149]: reading /etc/resolv.conf
Nov 06 10:37:45 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:37:45 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:37:45 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:37:45 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:37:45 dnsmasq[1149]: reading /etc/resolv.conf
Nov 06 10:37:45 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:37:45 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:37:45 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:37:45 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:37:45 dnsmasq[1149]: reading /etc/resolv.conf
Nov 06 10:37:45 dnsmasq[1149]: using nameserver 127.0.0.1#53
Nov 06 10:37:45 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:37:45 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:37:55 systemd-timesyncd[2277]: Timed out waiting for reply from 10.22.192.1:123 (10.22.192.1).
Nov 06 10:38:05 systemd-timesyncd[2277]: Timed out waiting for reply from 10.22.192.1:123 (10.22.192.1).
Nov 06 10:38:24 systemd[1]: Starting Update the plocate database...
Nov 06 10:38:35 systemd[1]: plocate-updatedb.service: Deactivated successfully.
Nov 06 10:38:35 systemd[1]: Finished Update the plocate database.
Nov 06 10:38:35 systemd[1]: plocate-updatedb.service: Consumed 7.686s CPU time, 650.7M memory peak.
Nov 06 10:40:05 uwsm_app-daemon[1989]: received: app -- xdg-terminal-exec --dir=/home/user
Nov 06 10:40:05 uwsm_app-daemon[1989]: sent: exec systemd-run --user --scope --slice=app-graphical.slice '--unit=app-Hyprland-xdg\x2dterminal\x2dexec-2688b6b4.scope' --description=xdg-terminal-exec --quiet --collect --same-dir -- xdg-terminal-exec --dir=/home/user
Nov 06 10:40:05 systemd[1688]: Started xdg-terminal-exec.
Nov 06 10:43:20 uwsm_app-daemon[1989]: received: app -- xdg-terminal-exec --dir=/home/user
Nov 06 10:43:20 uwsm_app-daemon[1989]: sent: exec systemd-run --user --scope --slice=app-graphical.slice '--unit=app-Hyprland-xdg\x2dterminal\x2dexec-fa94744e.scope' --description=xdg-terminal-exec --quiet --collect --same-dir -- xdg-terminal-exec --dir=/home/user
Nov 06 10:43:20 systemd[1688]: Started xdg-terminal-exec.
Nov 06 10:45:59 sudo[8798]: pam_unix(sudo:session): session closed for user root
Nov 06 10:46:10 sudo[10644]:    user : TTY=pts/0 ; PWD=/home/user ; USER=root ; COMMAND=/usr/bin/dmesg -H
Nov 06 10:46:10 sudo[10644]: pam_unix(sudo:session): session opened for user root(uid=0) by user(uid=1000)
Nov 06 10:46:18 sudo[10644]: pam_unix(sudo:session): session closed for user root
Nov 06 10:46:28 sudo[10702]:    user : TTY=pts/0 ; PWD=/home/user ; USER=root ; COMMAND=/usr/bin/dmesg
Nov 06 10:46:28 sudo[10702]: pam_unix(sudo:session): session opened for user root(uid=0) by user(uid=1000)
Nov 06 10:46:28 sudo[10702]: pam_unix(sudo:session): session closed for user root
Nov 06 10:46:41 sudo[10768]:    user : TTY=pts/0 ; PWD=/home/user ; USER=root ; COMMAND=/usr/bin/dmesg
Nov 06 10:46:41 sudo[10768]: pam_unix(sudo:session): session opened for user root(uid=0) by user(uid=1000)
Nov 06 10:46:41 sudo[10768]: pam_unix(sudo:session): session closed for user root
Nov 06 10:47:07 systemd[1]: Unmounting /mnt/legacy_hdd...
Nov 06 10:47:07 umount[10814]: umount: /mnt/legacy_hdd: target is busy.
Nov 06 10:47:07 systemd[1]: mnt-legacy_hdd.mount: Mount process exited, code=exited, status=32/n/a
Nov 06 10:47:07 systemd[1]: Failed unmounting /mnt/legacy_hdd.
Nov 06 10:47:07 (sd-expire[10813]: Failed to expire automount, ignoring: No such device
Nov 06 10:47:45 dhcpcd[835]: enp0s25: fe80::2e96:82ff:fefc:9188: router expired
Nov 06 10:47:45 dhcpcd[835]: enp0s25: part of a Router Advertisement expired
Nov 06 10:47:45 dhcpcd[835]: enp0s25: deleting default route via fe80::2e96:82ff:fefc:9188
Nov 06 10:47:45 dhcpcd[835]: enp0s25: adding default route via fe80::2e96:82ff:fefc:9188
Nov 06 10:47:45 systemd-timesyncd[2277]: Network configuration changed, trying to establish connection.
Nov 06 10:47:45 dnsmasq[1149]: reading /etc/resolv.conf
Nov 06 10:47:45 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:47:45 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:47:45 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:47:45 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:47:45 dnsmasq[1149]: reading /etc/resolv.conf
Nov 06 10:47:45 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:47:45 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:47:45 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:47:45 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:47:45 dnsmasq[1149]: reading /etc/resolv.conf
Nov 06 10:47:45 dnsmasq[1149]: using nameserver 127.0.0.1#53
Nov 06 10:47:45 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:47:45 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:47:46 sudo[10905]:    user : TTY=pts/0 ; PWD=/home/user ; USER=root ; COMMAND=/usr/bin/dmesg
Nov 06 10:47:46 sudo[10905]: pam_unix(sudo:session): session opened for user root(uid=0) by user(uid=1000)
Nov 06 10:47:46 sudo[10905]: pam_unix(sudo:session): session closed for user root
Nov 06 10:47:55 systemd-timesyncd[2277]: Timed out waiting for reply from 10.22.192.1:123 (10.22.192.1).
Nov 06 10:48:05 systemd-timesyncd[2277]: Timed out waiting for reply from 10.22.192.1:123 (10.22.192.1).
Nov 06 10:49:00 systemd[1688]: app-Hyprland-xdg\x2dterminal\x2dexec-7bdb955e.scope: Consumed 13.114s CPU time, 226.1M memory peak.
Nov 06 10:49:01 uwsm_app-daemon[1989]: received: app -- xdg-terminal-exec --dir=/home/user
Nov 06 10:49:01 uwsm_app-daemon[1989]: sent: exec systemd-run --user --scope --slice=app-graphical.slice '--unit=app-Hyprland-xdg\x2dterminal\x2dexec-b88e30e0.scope' --description=xdg-terminal-exec --quiet --collect --same-dir -- xdg-terminal-exec --dir=/home/user
Nov 06 10:49:01 systemd[1688]: Started xdg-terminal-exec.
Nov 06 10:49:03 uwsm_hyprland.desktop[1847]: *** BUG ***
Nov 06 10:49:03 uwsm_hyprland.desktop[1847]: In pixman_region32_init_rect: Invalid rectangle passed
Nov 06 10:49:03 uwsm_hyprland.desktop[1847]: Set a breakpoint on '_pixman_log_error' to debug
Nov 06 10:49:03 uwsm_hyprland.desktop[1847]: *** BUG ***
Nov 06 10:49:03 uwsm_hyprland.desktop[1847]: In pixman_region32_init_rect: Invalid rectangle passed
Nov 06 10:49:03 uwsm_hyprland.desktop[1847]: Set a breakpoint on '_pixman_log_error' to debug
Nov 06 10:49:03 uwsm_hyprland.desktop[1847]: *** BUG ***
Nov 06 10:49:03 uwsm_hyprland.desktop[1847]: In pixman_region32_init_rect: Invalid rectangle passed
Nov 06 10:49:03 uwsm_hyprland.desktop[1847]: Set a breakpoint on '_pixman_log_error' to debug
Nov 06 10:49:03 uwsm_hyprland.desktop[1847]: *** BUG ***
Nov 06 10:49:03 uwsm_hyprland.desktop[1847]: In pixman_region32_init_rect: Invalid rectangle passed
Nov 06 10:49:03 uwsm_hyprland.desktop[1847]: Set a breakpoint on '_pixman_log_error' to debug
Nov 06 10:49:03 uwsm_hyprland.desktop[1847]: *** BUG ***
Nov 06 10:49:03 uwsm_hyprland.desktop[1847]: In pixman_region32_init_rect: Invalid rectangle passed
Nov 06 10:49:03 uwsm_hyprland.desktop[1847]: Set a breakpoint on '_pixman_log_error' to debug
Nov 06 10:49:03 uwsm_hyprland.desktop[1847]: *** BUG ***
Nov 06 10:49:03 uwsm_hyprland.desktop[1847]: In pixman_region32_init_rect: Invalid rectangle passed
Nov 06 10:49:03 uwsm_hyprland.desktop[1847]: Set a breakpoint on '_pixman_log_error' to debug
Nov 06 10:49:03 uwsm_hyprland.desktop[1847]: *** BUG ***
Nov 06 10:49:03 uwsm_hyprland.desktop[1847]: In pixman_region32_init_rect: Invalid rectangle passed
Nov 06 10:49:03 uwsm_hyprland.desktop[1847]: Set a breakpoint on '_pixman_log_error' to debug
Nov 06 10:49:03 uwsm_hyprland.desktop[1847]: *** BUG ***
Nov 06 10:49:03 uwsm_hyprland.desktop[1847]: In pixman_region32_init_rect: Invalid rectangle passed
Nov 06 10:49:03 uwsm_hyprland.desktop[1847]: Set a breakpoint on '_pixman_log_error' to debug
Nov 06 10:52:02 unix_chkpwd[11569]: password check failed for user (user)
Nov 06 10:52:02 sudo[11567]: pam_unix(sudo:auth): authentication failure; logname=user uid=1000 euid=0 tty=/dev/pts/1 ruser=user rhost=  user=user
Nov 06 10:52:10 sudo[11567]:    user : TTY=pts/1 ; PWD=/home/user ; USER=root ; COMMAND=/usr/bin/mv /etc/systemd/system/ddcci@.service /etc/systemd/system/ddcci@..bak
Nov 06 10:52:10 sudo[11567]: pam_unix(sudo:session): session opened for user root(uid=0) by user(uid=1000)
Nov 06 10:52:10 sudo[11567]: pam_unix(sudo:session): session closed for user root
Nov 06 10:57:45 dhcpcd[835]: enp0s25: fe80::2e96:82ff:fefc:9188: router expired
Nov 06 10:57:45 dhcpcd[835]: enp0s25: part of a Router Advertisement expired
Nov 06 10:57:45 dhcpcd[835]: enp0s25: deleting default route via fe80::2e96:82ff:fefc:9188
Nov 06 10:57:45 dhcpcd[835]: enp0s25: adding default route via fe80::2e96:82ff:fefc:9188
Nov 06 10:57:45 systemd-timesyncd[2277]: Network configuration changed, trying to establish connection.
Nov 06 10:57:45 dnsmasq[1149]: reading /etc/resolv.conf
Nov 06 10:57:45 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:57:45 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:57:45 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:57:45 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:57:45 dnsmasq[1149]: reading /etc/resolv.conf
Nov 06 10:57:45 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:57:45 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:57:45 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:57:45 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:57:45 dnsmasq[1149]: reading /etc/resolv.conf
Nov 06 10:57:45 dnsmasq[1149]: using nameserver 127.0.0.1#53
Nov 06 10:57:45 dnsmasq[1149]: using nameserver 1.1.1.2#53
Nov 06 10:57:45 dnsmasq[1149]: using nameserver 1.0.0.2#53
Nov 06 10:57:55 systemd-timesyncd[2277]: Timed out waiting for reply from 10.22.192.1:123 (10.22.192.1).
Nov 06 10:58:05 systemd-timesyncd[2277]: Timed out waiting for reply from 10.22.192.1:123 (10.22.192.1).
Nov 06 10:58:29 uwsm_hyprland.desktop[1847]: *** BUG ***
Nov 06 10:58:29 uwsm_hyprland.desktop[1847]: In pixman_region32_init_rect: Invalid rectangle passed
Nov 06 10:58:29 uwsm_hyprland.desktop[1847]: Set a breakpoint on '_pixman_log_error' to debug
Nov 06 10:58:29 uwsm_hyprland.desktop[1847]: *** BUG ***
Nov 06 10:58:29 uwsm_hyprland.desktop[1847]: In pixman_region32_init_rect: Invalid rectangle passed
Nov 06 10:58:29 uwsm_hyprland.desktop[1847]: Set a breakpoint on '_pixman_log_error' to debug
Nov 06 11:00:00 systemd[1]: Started Timeline of Snapper Snapshots.
Nov 06 11:00:00 systemd[1]: Starting DBus interface for snapper...
Nov 06 11:00:00 systemd[1]: Started DBus interface for snapper.
Nov 06 11:00:00 systemd[1]: snapper-timeline.service: Deactivated successfully.
...

udevadm info --export-db

...
P: /devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1/card1-DP-1
M: card1-DP-1
R: 1
J: +drm:card1-DP-1
U: drm
T: drm_connector
E: DEVPATH=/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1/card1-DP-1
E: DEVTYPE=drm_connector
E: SUBSYSTEM=drm
E: USEC_INITIALIZED=86864177
E: ID_PATH=pci-0000:01:00.0
E: ID_PATH_TAG=pci-0000_01_00_0
E: ID_FOR_SEAT=drm-pci-0000_01_00_0
E: TAGS=:seat:master-of-seat:
E: CURRENT_TAGS=:seat:master-of-seat:
...

I hope this is useful to someone at sometime and thanks to the folks over the Gitlab issues.

Last edited by letthiac (2025-11-06 16:46:06)

Offline

Board footer

Powered by FluxBB