You are not logged in.
Good day, Arch community,
I've been struggling for the past few days to get hibernation working on my laptop. When I press "Hibernate," the following happens:
The screen goes black, and the cursor remains visible for a moment.
The fans slow down, and the screen eventually turns off.
However, the laptop itself does not power off—it just stays on indefinitely.
I’ve left it in this state for over 30 minutes, but it never fully powers down.
System Information:
OS: Arch Linux x86_64
Host: 82XU LOQ 16APH8
Kernel: 6.14.4-arch1-2 (64-bit)
Shell: bash 5.2.37
Resolution: 1920x1200
CPU: AMD Ryzen 7 7840HS w/ Radeon 780M Graphics (16) @ 5.137GHz
GPU: AMD ATI 06:00.0 Phoenix1
GPU: NVIDIA GeForce RTX 4060 Max-Q / Mobile
Memory: 31270MiB
What I've Tried:
1. Verified that hibernation works on Windows, so this doesn't appear to be a hardware/platform issue.
2. Configured resume in both mkinitcpio.conf and GRUB_CMDLINE_LINUX_DEFAULT.
3. Ensured the swap partition is active (swapon --show confirms this).
swapon --show
NAME TYPE SIZE USED PRIO
/dev/nvme0n1p3 partition 30G 0B -2
~ [07:28:54]
Here is the output of:
journalctl -b -1
Mkinitcpio.conf:
# MODULES
# The following modules are loaded before any boot hooks are
# run. Advanced users may wish to specify all system modules
# in this array. For instance:
# MODULES=(vfio_pci vfio_iommu_type1 vfio usbhid xhci_hcd)
MODULES=(vfio_pci vfio_iommu_type1 vfio btrfs nvme nvidia nvidia_modeset nvidia_uvm nvidia_drm)
# BINARIES
# This setting includes any additional binaries a given user may
# wish into the CPIO image. This is run last, so it may be used to
# override the actual binaries included by a given hook
# BINARIES are dependency parsed, so you may safely ignore libraries
BINARIES=(/usr/bin/btrfs)
# FILES
# This setting is similar to BINARIES above, however, files are added
# as-is and are not parsed in any way. This is useful for config files.
FILES=()
# HOOKS
# This is the most important setting in this file. The HOOKS control the
# modules and scripts added to the image, and what happens at boot time.
# Order is important, and it is recommended that you do not change the
# order in which HOOKS are added. Run 'mkinitcpio -H <hook name>' for
# help on a given hook.
# 'base' is _required_ unless you know precisely what you are doing.
# 'udev' is _required_ in order to automatically load modules
# 'filesystems' is _required_ unless you specify your fs modules in MODULES
# Examples:
## This setup specifies all modules in the MODULES setting above.
## No RAID, lvm2, or encrypted root is needed.
# HOOKS=(base)
#
## This setup will autodetect all modules for your system and should
## work as a sane default
# HOOKS=(base udev autodetect modconf block filesystems fsck)
#
## This setup will generate a 'full' image which supports most systems.
## No autodetection is done.
# HOOKS=(base udev modconf block filesystems fsck)
#
## This setup assembles a mdadm array with an encrypted root file system.
## Note: See 'mkinitcpio -H mdadm_udev' for more information on RAID devices.
# HOOKS=(base udev modconf keyboard keymap consolefont block mdadm_udev encrypt filesystems fsck)
#
## This setup loads an lvm2 volume group.
# HOOKS=(base udev modconf block lvm2 filesystems fsck)
#
## This will create a systemd based initramfs which loads an encrypted root filesystem.
# HOOKS=(base systemd autodetect modconf kms keyboard sd-vconsole sd-encrypt block filesystems fsck)
#
## NOTE: If you have /usr on a separate partition, you MUST include the
# usr and fsck hooks.
HOOKS=(base udev autodetect microcode modconf kms keyboard keymap consolefont block filesystems resume fsck)
# COMPRESSION
# Use this to compress the initramfs image. By default, zstd compression
# is used for Linux ≥ 5.9 and gzip compression is used for Linux < 5.9.
# Use 'cat' to create an uncompressed image.
#COMPRESSION="zstd"
#COMPRESSION="gzip"
#COMPRESSION="bzip2"
#COMPRESSION="lzma"
#COMPRESSION="xz"
#COMPRESSION="lzop"
#COMPRESSION="lz4"
# COMPRESSION_OPTIONS
# Additional options for the compressor
#COMPRESSION_OPTIONS=()
# MODULES_DECOMPRESS
# Decompress loadable kernel modules and their firmware during initramfs
# creation. Switch (yes/no).
# Enable to allow further decreasing image size when using high compression
# (e.g. xz -9e or zstd --long --ultra -22) at the expense of increased RAM usage
# at early boot.
# Note that any compressed files will be placed in the uncompressed early CPIO
# to avoid double compression.
#MODULES_DECOMPRESS="no"
Grub config:
# GRUB boot loader configuration
GRUB_DEFAULT=0
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="Arch"
GRUB_CMDLINE_LINUX_DEFAULT="rd.driver.pre=vfio-pci iommu=pt loglevel=3 quiet nvidia-drm.modeset=1 nvidia_drm.fbdev=1 resume=UUID=bb693642-f4a1-49ba-828c-34c639d1d794"
GRUB_CMDLINE_LINUX="zswap.enabled=0 rootfstype=btrfs"
# Preload both GPT and MBR modules so that they are not missed
GRUB_PRELOAD_MODULES="part_gpt part_msdos"
# Uncomment to enable booting from LUKS encrypted devices
#GRUB_ENABLE_CRYPTODISK=y
# Set to 'countdown' or 'hidden' to change timeout behavior,
# press ESC key to display menu.
GRUB_TIMEOUT_STYLE=menu
# Uncomment to use basic console
GRUB_TERMINAL_INPUT=console
# Uncomment to disable graphical terminal
#GRUB_TERMINAL_OUTPUT=console
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `videoinfo'
GRUB_GFXMODE=auto
# Uncomment to allow the kernel use the same resolution used by grub
GRUB_GFXPAYLOAD_LINUX=keep
# Uncomment if you want GRUB to pass to the Linux kernel the old parameter
# format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
#GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries
GRUB_DISABLE_RECOVERY=true
# Uncomment and set to the desired menu colors. Used by normal and wallpaper
# modes only. Entries specified as foreground/background.
#GRUB_COLOR_NORMAL="light-blue/black"
#GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
# Uncomment one of them for the gfx desired, a image background or a gfxtheme
#GRUB_BACKGROUND="/path/to/wallpaper"
#GRUB_THEME="/path/to/gfxtheme"
# Uncomment to get a beep at GRUB start
#GRUB_INIT_TUNE="480 440 1"
# Uncomment to make GRUB remember the last selection. This requires
# setting 'GRUB_DEFAULT=saved' above.
#GRUB_SAVEDEFAULT=true
# Uncomment to disable submenus in boot menu
#GRUB_DISABLE_SUBMENU=y
# Probing for other operating systems is disabled for security reasons. Read
# documentation on GRUB_DISABLE_OS_PROBER, if still want to enable this
# functionality install os-prober and uncomment to detect and include other
# operating systems.
GRUB_DISABLE_OS_PROBER=false
I’m at a loss for what to try next. This is one of the last anoyances i have using arch daily.
Any guidance or troubleshooting tips would be greatly appreciated!
Thank you in advance for your help!
Offline
1. Verified that hibernation works on Windows, so this doesn't appear to be a hardware/platform issue.
3rd link below. Mandatory.
Disable it (it's NOT the BIOS setting!) and reboot windows and linux twice for voodo reasons.
In doubt try to lie about the OS:
acpi_osi=! acpi_osi="Windows 2015"
https://learn.microsoft.com/en-us/windo … inacpi-osi
Regular shutdown and reboot work, though?
Online
I ran
powercfg /H off
in windows then restarted windows twice like you mentioned.
Then restarted arch twice.
Then tried to hibernate, same result as before.
Then added the kernel parameters as seen bellow:
# GRUB boot loader configuration
GRUB_DEFAULT=0
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="Arch"
GRUB_CMDLINE_LINUX_DEFAULT="rd.driver.pre=vfio-pci iommu=pt loglevel=3 quiet nvidia-drm.modeset=1 nvidia_drm.fbdev=1 resume=UUID=bb693642-f4a1-49ba-828c-34c639d1d794 acpi_osi=! acpi_osi=\"Windows 2015\""
GRUB_CMDLINE_LINUX="zswap.enabled=0 rootfstype=btrfs"
# Preload both GPT and MBR modules so that they are not missed
GRUB_PRELOAD_MODULES="part_gpt part_msdos"
# Uncomment to enable booting from LUKS encrypted devices
#GRUB_ENABLE_CRYPTODISK=y
# Set to 'countdown' or 'hidden' to change timeout behavior,
# press ESC key to display menu.
GRUB_TIMEOUT_STYLE=menu
# Uncomment to use basic console
GRUB_TERMINAL_INPUT=console
# Uncomment to disable graphical terminal
#GRUB_TERMINAL_OUTPUT=console
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `videoinfo'
GRUB_GFXMODE=auto
# Uncomment to allow the kernel use the same resolution used by grub
GRUB_GFXPAYLOAD_LINUX=keep
# Uncomment if you want GRUB to pass to the Linux kernel the old parameter
# format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
#GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries
GRUB_DISABLE_RECOVERY=true
# Uncomment and set to the desired menu colors. Used by normal and wallpaper
# modes only. Entries specified as foreground/background.
#GRUB_COLOR_NORMAL="light-blue/black"
#GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
# Uncomment one of them for the gfx desired, a image background or a gfxtheme
#GRUB_BACKGROUND="/path/to/wallpaper"
#GRUB_THEME="/path/to/gfxtheme"
# Uncomment to get a beep at GRUB start
#GRUB_INIT_TUNE="480 440 1"
# Uncomment to make GRUB remember the last selection. This requires
# setting 'GRUB_DEFAULT=saved' above.
#GRUB_SAVEDEFAULT=true
# Uncomment to disable submenus in boot menu
#GRUB_DISABLE_SUBMENU=y
# Probing for other operating systems is disabled for security reasons. Read
# documentation on GRUB_DISABLE_OS_PROBER, if still want to enable this
# functionality install os-prober and uncomment to detect and include other
# operating systems.
GRUB_DISABLE_OS_PROBER=false
output of journalctl -b -1
May 05 16:49:20 archlinux kernel: Linux version 6.14.4-arch1-2 (linux@archlinux) (gcc (GCC) 15.1.1 20250425, GNU ld (GNU Binutils) 2.44.0) #1 SMP PREEMPT_DYNAMIC Tue, 29 Apr 2025 09:23:13 +0000
May 05 16:49:20 archlinux kernel: Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=f65d3ff4-e370-4ff0-8e10-e0daf66b7160 rw rootflags=subvol=@ zswap.enabled=0 rootfstype=btrfs rd.driver.pre=vfio-pci iommu=pt loglevel=3 quiet nvidia-drm.modeset=1 nvidia_drm.fbdev=1 resume=UUID=bb693642-f4a1-49ba-828c-34c639d1d794 acpi_osi=! "acpi_osi=Windows 2015"
May 05 16:49:20 archlinux kernel: BIOS-provided physical RAM map:
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000bffff] reserved
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000009afffff] usable
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x0000000009b00000-0x0000000009dfffff] reserved
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x0000000009e00000-0x0000000009efffff] usable
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x0000000009f00000-0x0000000009f3bfff] ACPI NVS
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x0000000009f3c000-0x00000000820d7fff] usable
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x00000000820d8000-0x00000000842d7fff] reserved
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x00000000842d8000-0x00000000842e0fff] usable
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x00000000842e1000-0x00000000842e3fff] reserved
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x00000000842e4000-0x00000000842ebfff] usable
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x00000000842ec000-0x00000000842ecfff] reserved
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x00000000842ed000-0x00000000842eefff] usable
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x00000000842ef000-0x00000000842effff] reserved
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x00000000842f0000-0x00000000904fefff] usable
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x00000000904ff000-0x0000000092cfefff] reserved
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x0000000092cff000-0x000000009acfefff] ACPI NVS
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x000000009acff000-0x000000009affefff] ACPI data
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x000000009afff000-0x000000009affffff] usable
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x000000009b000000-0x000000009bffffff] reserved
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x000000009d790000-0x000000009d7effff] reserved
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x000000009d7f5000-0x000000009fffffff] reserved
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x00000000c0300000-0x00000000c03fffff] reserved
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x00000000fed80000-0x00000000fed80fff] reserved
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x0000000100000000-0x000000083e2fffff] usable
May 05 16:49:20 archlinux kernel: BIOS-e820: [mem 0x0000000840000000-0x00000008801fffff] reserved
May 05 16:49:20 archlinux kernel: The simpledrm driver will not be probed
May 05 16:49:20 archlinux kernel: NX (Execute Disable) protection: active
May 05 16:49:20 archlinux kernel: APIC: Static calls initialized
May 05 16:49:20 archlinux kernel: e820: update [mem 0x80177018-0x8019bc57] usable ==> usable
May 05 16:49:20 archlinux kernel: e820: update [mem 0x80163018-0x80176057] usable ==> usable
May 05 16:49:20 archlinux kernel: e820: update [mem 0x842f3018-0x842f7257] usable ==> usable
May 05 16:49:20 archlinux kernel: extended physical RAM map:
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x000000000009f000-0x00000000000bffff] reserved
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x0000000000100000-0x0000000009afffff] usable
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x0000000009b00000-0x0000000009dfffff] reserved
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x0000000009e00000-0x0000000009efffff] usable
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x0000000009f00000-0x0000000009f3bfff] ACPI NVS
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x0000000009f3c000-0x0000000080163017] usable
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x0000000080163018-0x0000000080176057] usable
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x0000000080176058-0x0000000080177017] usable
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x0000000080177018-0x000000008019bc57] usable
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x000000008019bc58-0x00000000820d7fff] usable
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x00000000820d8000-0x00000000842d7fff] reserved
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x00000000842d8000-0x00000000842e0fff] usable
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x00000000842e1000-0x00000000842e3fff] reserved
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x00000000842e4000-0x00000000842ebfff] usable
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x00000000842ec000-0x00000000842ecfff] reserved
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x00000000842ed000-0x00000000842eefff] usable
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x00000000842ef000-0x00000000842effff] reserved
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x00000000842f0000-0x00000000842f3017] usable
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x00000000842f3018-0x00000000842f7257] usable
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x00000000842f7258-0x00000000904fefff] usable
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x00000000904ff000-0x0000000092cfefff] reserved
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x0000000092cff000-0x000000009acfefff] ACPI NVS
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x000000009acff000-0x000000009affefff] ACPI data
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x000000009afff000-0x000000009affffff] usable
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x000000009b000000-0x000000009bffffff] reserved
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x000000009d790000-0x000000009d7effff] reserved
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x000000009d7f5000-0x000000009fffffff] reserved
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x00000000c0300000-0x00000000c03fffff] reserved
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x00000000fed80000-0x00000000fed80fff] reserved
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x0000000100000000-0x000000083e2fffff] usable
May 05 16:49:20 archlinux kernel: reserve setup_data: [mem 0x0000000840000000-0x00000008801fffff] reserved
May 05 16:49:20 archlinux kernel: efi: EFI v2.8 by INSYDE Corp.
May 05 16:49:20 archlinux kernel: efi: ACPI=0x9affe000 ACPI 2.0=0x9affe014 TPMFinalLog=0x9acbf000 SMBIOS=0x91492000 SMBIOS 3.0=0x9148f000 MEMATTR=0x8b981018 ESRT=0x8cf77898 INITRD=0x842f8e18 RNG=0x9af70018 TPMEventLog=0x9af6f018
May 05 16:49:20 archlinux kernel: random: crng init done
May 05 16:49:20 archlinux kernel: efi: Remove mem65: MMIO range=[0xc0300000-0xc03fffff] (1MB) from e820 map
May 05 16:49:20 archlinux kernel: e820: remove [mem 0xc0300000-0xc03fffff] reserved
May 05 16:49:20 archlinux kernel: efi: Not removing mem66: MMIO range=[0xfed80000-0xfed80fff] (4KB) from e820 map
May 05 16:49:20 archlinux kernel: efi: Remove mem67: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
May 05 16:49:20 archlinux kernel: e820: remove [mem 0xff000000-0xffffffff] reserved
May 05 16:49:20 archlinux kernel: efi: Remove mem69: MMIO range=[0x860000000-0x8801fffff] (514MB) from e820 map
May 05 16:49:20 archlinux kernel: e820: remove [mem 0x860000000-0x8801fffff] reserved
May 05 16:49:20 archlinux kernel: SMBIOS 3.4.0 present.
May 05 16:49:20 archlinux kernel: DMI: LENOVO 82XU/LNVNB161216, BIOS LYCN45WW 04/01/2025
May 05 16:49:20 archlinux kernel: DMI: Memory slots populated: 2/2
May 05 16:49:20 archlinux kernel: tsc: Fast TSC calibration using PIT
May 05 16:49:20 archlinux kernel: tsc: Detected 3792.877 MHz processor
May 05 16:49:20 archlinux kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
May 05 16:49:20 archlinux kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
May 05 16:49:20 archlinux kernel: last_pfn = 0x83e300 max_arch_pfn = 0x400000000
May 05 16:49:20 archlinux kernel: MTRR map: 7 entries (3 fixed + 4 variable; max 20), built from 9 variable MTRRs
May 05 16:49:20 archlinux kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
May 05 16:49:20 archlinux kernel: last_pfn = 0x9b000 max_arch_pfn = 0x400000000
May 05 16:49:20 archlinux kernel: esrt: Reserving ESRT space from 0x000000008cf77898 to 0x000000008cf77920.
May 05 16:49:20 archlinux kernel: e820: update [mem 0x8cf77000-0x8cf77fff] usable ==> reserved
May 05 16:49:20 archlinux kernel: Using GB pages for direct mapping
May 05 16:49:20 archlinux kernel: Secure boot disabled
May 05 16:49:20 archlinux kernel: RAMDISK: [mem 0x6456a000-0x71ffefff]
May 05 16:49:20 archlinux kernel: ACPI: Early table checksum verification disabled
May 05 16:49:20 archlinux kernel: ACPI: RSDP 0x000000009AFFE014 000024 (v02 LENOVO)
May 05 16:49:20 archlinux kernel: ACPI: XSDT 0x000000009AF89228 0001BC (v01 LENOVO CB-01 00000001 01000013)
May 05 16:49:20 archlinux kernel: ACPI: FACP 0x000000009AFE9000 00010C (v05 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: DSDT 0x000000009AFC0000 022720 (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: FACS 0x000000009AC33000 000040
May 05 16:49:20 archlinux kernel: ACPI: UEFI 0x000000009ACFE000 000236 (v01 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AFFC000 000101 (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AFFB000 0009B2 (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AFFA000 000033 (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AFF8000 001003 (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AFEF000 008416 (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AFEE000 000471 (v01 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: TPM2 0x000000009AFED000 000034 (v04 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: MSDM 0x000000009AFEC000 000055 (v03 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: ASF! 0x000000009AFEB000 0000A5 (v32 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: BOOT 0x000000009AFEA000 000028 (v01 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: HPET 0x000000009AFE8000 000038 (v01 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: APIC 0x000000009AFE7000 000138 (v03 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: MCFG 0x000000009AFE6000 00003C (v01 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SLIC 0x000000009AFE5000 000176 (v01 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AFBF000 000099 (v01 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AFB6000 0084D4 (v01 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: VFCT 0x000000009AFB0000 004284 (v01 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AFFD000 0000F8 (v01 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AFAA000 00547E (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: CRAT 0x000000009AFA9000 000F10 (v01 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: CDIT 0x000000009AFA8000 000029 (v01 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AFA7000 000484 (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AFA6000 00077A (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AFA5000 000605 (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AFA3000 0015C8 (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AFA0000 002A9E (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AF9F000 000662 (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AF9D000 001BED (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AF93000 0098F6 (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: FPDT 0x000000009AF92000 000044 (v01 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: WSMT 0x000000009AF90000 000028 (v01 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AF8D000 002370 (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: IVRS 0x000000009AFE4000 000198 (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AFE3000 000BE8 (v01 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AF8C000 0006CB (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AF8B000 0006CB (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AF8A000 0005FE (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AF87000 0013C5 (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AFB5000 000CE0 (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AF86000 000609 (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AF85000 000703 (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AF84000 000FF7 (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AF7A000 0097E0 (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AF75000 004FE9 (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AF74000 000A18 (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AF73000 000968 (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AF72000 00008D (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: SSDT 0x000000009AF71000 000FF5 (v02 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: BGRT 0x000000009AF91000 000038 (v01 LENOVO CB-01 00000001 ACPI 00040000)
May 05 16:49:20 archlinux kernel: ACPI: Reserving FACP table memory at [mem 0x9afe9000-0x9afe910b]
May 05 16:49:20 archlinux kernel: ACPI: Reserving DSDT table memory at [mem 0x9afc0000-0x9afe271f]
May 05 16:49:20 archlinux kernel: ACPI: Reserving FACS table memory at [mem 0x9ac33000-0x9ac3303f]
May 05 16:49:20 archlinux kernel: ACPI: Reserving UEFI table memory at [mem 0x9acfe000-0x9acfe235]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9affc000-0x9affc100]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9affb000-0x9affb9b1]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9affa000-0x9affa032]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9aff8000-0x9aff9002]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9afef000-0x9aff7415]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9afee000-0x9afee470]
May 05 16:49:20 archlinux kernel: ACPI: Reserving TPM2 table memory at [mem 0x9afed000-0x9afed033]
May 05 16:49:20 archlinux kernel: ACPI: Reserving MSDM table memory at [mem 0x9afec000-0x9afec054]
May 05 16:49:20 archlinux kernel: ACPI: Reserving ASF! table memory at [mem 0x9afeb000-0x9afeb0a4]
May 05 16:49:20 archlinux kernel: ACPI: Reserving BOOT table memory at [mem 0x9afea000-0x9afea027]
May 05 16:49:20 archlinux kernel: ACPI: Reserving HPET table memory at [mem 0x9afe8000-0x9afe8037]
May 05 16:49:20 archlinux kernel: ACPI: Reserving APIC table memory at [mem 0x9afe7000-0x9afe7137]
May 05 16:49:20 archlinux kernel: ACPI: Reserving MCFG table memory at [mem 0x9afe6000-0x9afe603b]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SLIC table memory at [mem 0x9afe5000-0x9afe5175]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9afbf000-0x9afbf098]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9afb6000-0x9afbe4d3]
May 05 16:49:20 archlinux kernel: ACPI: Reserving VFCT table memory at [mem 0x9afb0000-0x9afb4283]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9affd000-0x9affd0f7]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9afaa000-0x9afaf47d]
May 05 16:49:20 archlinux kernel: ACPI: Reserving CRAT table memory at [mem 0x9afa9000-0x9afa9f0f]
May 05 16:49:20 archlinux kernel: ACPI: Reserving CDIT table memory at [mem 0x9afa8000-0x9afa8028]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9afa7000-0x9afa7483]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9afa6000-0x9afa6779]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9afa5000-0x9afa5604]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9afa3000-0x9afa45c7]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9afa0000-0x9afa2a9d]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9af9f000-0x9af9f661]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9af9d000-0x9af9ebec]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9af93000-0x9af9c8f5]
May 05 16:49:20 archlinux kernel: ACPI: Reserving FPDT table memory at [mem 0x9af92000-0x9af92043]
May 05 16:49:20 archlinux kernel: ACPI: Reserving WSMT table memory at [mem 0x9af90000-0x9af90027]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9af8d000-0x9af8f36f]
May 05 16:49:20 archlinux kernel: ACPI: Reserving IVRS table memory at [mem 0x9afe4000-0x9afe4197]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9afe3000-0x9afe3be7]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9af8c000-0x9af8c6ca]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9af8b000-0x9af8b6ca]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9af8a000-0x9af8a5fd]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9af87000-0x9af883c4]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9afb5000-0x9afb5cdf]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9af86000-0x9af86608]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9af85000-0x9af85702]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9af84000-0x9af84ff6]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9af7a000-0x9af837df]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9af75000-0x9af79fe8]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9af74000-0x9af74a17]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9af73000-0x9af73967]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9af72000-0x9af7208c]
May 05 16:49:20 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x9af71000-0x9af71ff4]
May 05 16:49:20 archlinux kernel: ACPI: Reserving BGRT table memory at [mem 0x9af91000-0x9af91037]
May 05 16:49:20 archlinux kernel: No NUMA configuration found
May 05 16:49:20 archlinux kernel: Faking a node at [mem 0x0000000000000000-0x000000083e2fffff]
May 05 16:49:20 archlinux kernel: NODE_DATA(0) allocated [mem 0x83e2d52c0-0x83e2fffff]
May 05 16:49:20 archlinux kernel: Zone ranges:
May 05 16:49:20 archlinux kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
May 05 16:49:20 archlinux kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
May 05 16:49:20 archlinux kernel: Normal [mem 0x0000000100000000-0x000000083e2fffff]
May 05 16:49:20 archlinux kernel: Device empty
May 05 16:49:20 archlinux kernel: Movable zone start for each node
May 05 16:49:20 archlinux kernel: Early memory node ranges
May 05 16:49:20 archlinux kernel: node 0: [mem 0x0000000000001000-0x000000000009efff]
May 05 16:49:20 archlinux kernel: node 0: [mem 0x0000000000100000-0x0000000009afffff]
May 05 16:49:20 archlinux kernel: node 0: [mem 0x0000000009e00000-0x0000000009efffff]
May 05 16:49:20 archlinux kernel: node 0: [mem 0x0000000009f3c000-0x00000000820d7fff]
May 05 16:49:20 archlinux kernel: node 0: [mem 0x00000000842d8000-0x00000000842e0fff]
May 05 16:49:20 archlinux kernel: node 0: [mem 0x00000000842e4000-0x00000000842ebfff]
May 05 16:49:20 archlinux kernel: node 0: [mem 0x00000000842ed000-0x00000000842eefff]
May 05 16:49:20 archlinux kernel: node 0: [mem 0x00000000842f0000-0x00000000904fefff]
May 05 16:49:20 archlinux kernel: node 0: [mem 0x000000009afff000-0x000000009affffff]
May 05 16:49:20 archlinux kernel: node 0: [mem 0x0000000100000000-0x000000083e2fffff]
May 05 16:49:20 archlinux kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000083e2fffff]
May 05 16:49:20 archlinux kernel: On node 0, zone DMA: 1 pages in unavailable ranges
May 05 16:49:20 archlinux kernel: On node 0, zone DMA: 97 pages in unavailable ranges
May 05 16:49:20 archlinux kernel: On node 0, zone DMA32: 768 pages in unavailable ranges
May 05 16:49:20 archlinux kernel: On node 0, zone DMA32: 60 pages in unavailable ranges
May 05 16:49:20 archlinux kernel: On node 0, zone DMA32: 8704 pages in unavailable ranges
May 05 16:49:20 archlinux kernel: On node 0, zone DMA32: 3 pages in unavailable ranges
May 05 16:49:20 archlinux kernel: On node 0, zone DMA32: 1 pages in unavailable ranges
May 05 16:49:20 archlinux kernel: On node 0, zone DMA32: 1 pages in unavailable ranges
May 05 16:49:20 archlinux kernel: On node 0, zone DMA32: 43776 pages in unavailable ranges
May 05 16:49:20 archlinux kernel: On node 0, zone Normal: 20480 pages in unavailable ranges
May 05 16:49:20 archlinux kernel: On node 0, zone Normal: 7424 pages in unavailable ranges
May 05 16:49:20 archlinux kernel: ACPI: PM-Timer IO Port: 0x408
May 05 16:49:20 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
May 05 16:49:20 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
May 05 16:49:20 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
May 05 16:49:20 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
May 05 16:49:20 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
May 05 16:49:20 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
May 05 16:49:20 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
May 05 16:49:20 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
May 05 16:49:20 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
May 05 16:49:20 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
May 05 16:49:20 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
May 05 16:49:20 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
May 05 16:49:20 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
May 05 16:49:20 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
May 05 16:49:20 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
May 05 16:49:20 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
May 05 16:49:20 archlinux kernel: IOAPIC[0]: apic_id 33, version 33, address 0xfec00000, GSI 0-23
May 05 16:49:20 archlinux kernel: IOAPIC[1]: apic_id 34, version 33, address 0xfec01000, GSI 24-55
May 05 16:49:20 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
May 05 16:49:20 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
May 05 16:49:20 archlinux kernel: ACPI: Using ACPI (MADT) for SMP configuration information
May 05 16:49:20 archlinux kernel: ACPI: HPET id: 0x10228210 base: 0xfed00000
May 05 16:49:20 archlinux kernel: e820: update [mem 0x8b9c0000-0x8bacefff] usable ==> reserved
May 05 16:49:20 archlinux kernel: CPU topo: Max. logical packages: 1
May 05 16:49:20 archlinux kernel: CPU topo: Max. logical dies: 1
May 05 16:49:20 archlinux kernel: CPU topo: Max. dies per package: 1
May 05 16:49:20 archlinux kernel: CPU topo: Max. threads per core: 2
May 05 16:49:20 archlinux kernel: CPU topo: Num. cores per package: 8
May 05 16:49:20 archlinux kernel: CPU topo: Num. threads per package: 16
May 05 16:49:20 archlinux kernel: CPU topo: Allowing 16 present CPUs plus 0 hotplug CPUs
May 05 16:49:20 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
May 05 16:49:20 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
May 05 16:49:20 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x09b00000-0x09dfffff]
May 05 16:49:20 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x09f00000-0x09f3bfff]
May 05 16:49:20 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x820d8000-0x842d7fff]
May 05 16:49:20 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x842e1000-0x842e3fff]
May 05 16:49:20 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x842ec000-0x842ecfff]
May 05 16:49:20 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x842ef000-0x842effff]
May 05 16:49:20 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x8b9c0000-0x8bacefff]
May 05 16:49:20 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x8cf77000-0x8cf77fff]
May 05 16:49:20 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x904ff000-0x9affefff]
May 05 16:49:20 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x9b000000-0xffffffff]
May 05 16:49:20 archlinux kernel: [mem 0xa0000000-0xfed7ffff] available for PCI devices
May 05 16:49:20 archlinux kernel: Booting paravirtualized kernel on bare hardware
May 05 16:49:20 archlinux kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
May 05 16:49:20 archlinux kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
May 05 16:49:20 archlinux kernel: percpu: Embedded 67 pages/cpu s237568 r8192 d28672 u524288
May 05 16:49:20 archlinux kernel: pcpu-alloc: s237568 r8192 d28672 u524288 alloc=1*2097152
May 05 16:49:20 archlinux kernel: pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07
May 05 16:49:20 archlinux kernel: pcpu-alloc: [0] 08 09 10 11 [0] 12 13 14 15
May 05 16:49:20 archlinux kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=f65d3ff4-e370-4ff0-8e10-e0daf66b7160 rw rootflags=subvol=@ zswap.enabled=0 rootfstype=btrfs rd.driver.pre=vfio-pci iommu=pt loglevel=3 quiet nvidia-drm.modeset=1 nvidia_drm.fbdev=1 resume=UUID=bb693642-f4a1-49ba-828c-34c639d1d794 acpi_osi=! "acpi_osi=Windows 2015"
May 05 16:49:20 archlinux kernel: Unknown kernel command line parameters "BOOT_IMAGE=/vmlinuz-linux", will be passed to user space.
May 05 16:49:20 archlinux kernel: printk: log buffer data + meta data: 131072 + 458752 = 589824 bytes
May 05 16:49:20 archlinux kernel: Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
May 05 16:49:20 archlinux kernel: Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
May 05 16:49:20 archlinux kernel: Fallback order for Node 0: 0
May 05 16:49:20 archlinux kernel: Built 1 zonelists, mobility grouping on. Total pages: 8176221
May 05 16:49:20 archlinux kernel: Policy zone: Normal
May 05 16:49:20 archlinux kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
May 05 16:49:20 archlinux kernel: software IO TLB: area num 16.
May 05 16:49:20 archlinux kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
May 05 16:49:20 archlinux kernel: ftrace: allocating 55524 entries in 217 pages
May 05 16:49:20 archlinux kernel: ftrace: allocated 217 pages with 5 groups
May 05 16:49:20 archlinux kernel: Dynamic Preempt: full
May 05 16:49:20 archlinux kernel: rcu: Preemptible hierarchical RCU implementation.
May 05 16:49:20 archlinux kernel: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=16.
May 05 16:49:20 archlinux kernel: rcu: RCU priority boosting: priority 1 delay 500 ms.
May 05 16:49:20 archlinux kernel: Trampoline variant of Tasks RCU enabled.
May 05 16:49:20 archlinux kernel: Rude variant of Tasks RCU enabled.
May 05 16:49:20 archlinux kernel: Tracing variant of Tasks RCU enabled.
May 05 16:49:20 archlinux kernel: rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
May 05 16:49:20 archlinux kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
May 05 16:49:20 archlinux kernel: RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
May 05 16:49:20 archlinux kernel: RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
May 05 16:49:20 archlinux kernel: RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=16.
May 05 16:49:20 archlinux kernel: NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
May 05 16:49:20 archlinux kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
May 05 16:49:20 archlinux kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
May 05 16:49:20 archlinux kernel: Console: colour dummy device 80x25
May 05 16:49:20 archlinux kernel: printk: legacy console [tty0] enabled
May 05 16:49:20 archlinux kernel: ACPI: Core revision 20240827
May 05 16:49:20 archlinux kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
May 05 16:49:20 archlinux kernel: APIC: Switch to symmetric I/O mode setup
May 05 16:49:20 archlinux kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR0, rdevid:0xa0
May 05 16:49:20 archlinux kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR1, rdevid:0xa0
May 05 16:49:20 archlinux kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR2, rdevid:0xa0
May 05 16:49:20 archlinux kernel: AMD-Vi: ivrs, add hid:AMDI0020, uid:\_SB.FUR3, rdevid:0xa0
May 05 16:49:20 archlinux kernel: AMD-Vi: Using global IVHD EFR:0x246577efa2054ada, EFR2:0x0
May 05 16:49:20 archlinux kernel: x2apic: IRQ remapping doesn't support X2APIC mode
May 05 16:49:20 archlinux kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
May 05 16:49:20 archlinux kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x6d581e7db98, max_idle_ns: 881590517229 ns
May 05 16:49:20 archlinux kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 7585.75 BogoMIPS (lpj=3792877)
May 05 16:49:20 archlinux kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
May 05 16:49:20 archlinux kernel: LVT offset 1 assigned for vector 0xf9
May 05 16:49:20 archlinux kernel: LVT offset 2 assigned for vector 0xf4
May 05 16:49:20 archlinux kernel: Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256
May 05 16:49:20 archlinux kernel: Last level dTLB entries: 4KB 3072, 2MB 3072, 4MB 1536, 1GB 0
May 05 16:49:20 archlinux kernel: process: using mwait in idle threads
May 05 16:49:20 archlinux kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
May 05 16:49:20 archlinux kernel: Spectre V2 : Mitigation: Enhanced / Automatic IBRS
May 05 16:49:20 archlinux kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
May 05 16:49:20 archlinux kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
May 05 16:49:20 archlinux kernel: Spectre V2 : User space: Mitigation: STIBP always-on protection
May 05 16:49:20 archlinux kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
May 05 16:49:20 archlinux kernel: Speculative Return Stack Overflow: Mitigation: Safe RET
May 05 16:49:20 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
May 05 16:49:20 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
May 05 16:49:20 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
May 05 16:49:20 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask'
May 05 16:49:20 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
May 05 16:49:20 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
May 05 16:49:20 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
May 05 16:49:20 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
May 05 16:49:20 archlinux kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
May 05 16:49:20 archlinux kernel: x86/fpu: xstate_offset[5]: 832, xstate_sizes[5]: 64
May 05 16:49:20 archlinux kernel: x86/fpu: xstate_offset[6]: 896, xstate_sizes[6]: 512
May 05 16:49:20 archlinux kernel: x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
May 05 16:49:20 archlinux kernel: x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]: 8
May 05 16:49:20 archlinux kernel: x86/fpu: xstate_offset[11]: 2440, xstate_sizes[11]: 16
May 05 16:49:20 archlinux kernel: x86/fpu: Enabled xstate features 0xae7, context size is 2456 bytes, using 'compacted' format.
May 05 16:49:20 archlinux kernel: Freeing SMP alternatives memory: 48K
May 05 16:49:20 archlinux kernel: pid_max: default: 32768 minimum: 301
May 05 16:49:20 archlinux kernel: LSM: initializing lsm=capability,landlock,lockdown,yama,bpf
May 05 16:49:20 archlinux kernel: landlock: Up and running.
May 05 16:49:20 archlinux kernel: Yama: becoming mindful.
May 05 16:49:20 archlinux kernel: LSM support for eBPF active
May 05 16:49:20 archlinux kernel: Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
May 05 16:49:20 archlinux kernel: Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
May 05 16:49:20 archlinux kernel: smpboot: CPU0: AMD Ryzen 7 7840HS w/ Radeon 780M Graphics (family: 0x19, model: 0x74, stepping: 0x1)
May 05 16:49:20 archlinux kernel: Performance Events: Fam17h+ 16-deep LBR, core perfctr, AMD PMU driver.
May 05 16:49:20 archlinux kernel: ... version: 2
May 05 16:49:20 archlinux kernel: ... bit width: 48
May 05 16:49:20 archlinux kernel: ... generic registers: 6
May 05 16:49:20 archlinux kernel: ... value mask: 0000ffffffffffff
May 05 16:49:20 archlinux kernel: ... max period: 00007fffffffffff
May 05 16:49:20 archlinux kernel: ... fixed-purpose events: 0
May 05 16:49:20 archlinux kernel: ... event mask: 000000000000003f
May 05 16:49:20 archlinux kernel: signal: max sigframe size: 3376
May 05 16:49:20 archlinux kernel: rcu: Hierarchical SRCU implementation.
May 05 16:49:20 archlinux kernel: rcu: Max phase no-delay instances is 400.
May 05 16:49:20 archlinux kernel: Timer migration: 2 hierarchy levels; 8 children per group; 2 crossnode level
May 05 16:49:20 archlinux kernel: MCE: In-kernel MCE decoding enabled.
May 05 16:49:20 archlinux kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
May 05 16:49:20 archlinux kernel: smp: Bringing up secondary CPUs ...
May 05 16:49:20 archlinux kernel: smpboot: x86: Booting SMP configuration:
May 05 16:49:20 archlinux kernel: .... node #0, CPUs: #2 #4 #6 #8 #10 #12 #14 #1 #3 #5 #7 #9 #11 #13 #15
May 05 16:49:20 archlinux kernel: Spectre V2 : Update user space SMT mitigation: STIBP always-on
May 05 16:49:20 archlinux kernel: smp: Brought up 1 node, 16 CPUs
May 05 16:49:20 archlinux kernel: smpboot: Total of 16 processors activated (121372.06 BogoMIPS)
May 05 16:49:20 archlinux kernel: Memory: 31761552K/32704884K available (19363K kernel code, 2903K rwdata, 16276K rodata, 4528K init, 5264K bss, 919676K reserved, 0K cma-reserved)
May 05 16:49:20 archlinux kernel: devtmpfs: initialized
May 05 16:49:20 archlinux kernel: x86/mm: Memory block size: 128MB
May 05 16:49:20 archlinux kernel: ACPI: PM: Registering ACPI NVS region [mem 0x09f00000-0x09f3bfff] (245760 bytes)
May 05 16:49:20 archlinux kernel: ACPI: PM: Registering ACPI NVS region [mem 0x92cff000-0x9acfefff] (134217728 bytes)
May 05 16:49:20 archlinux kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
May 05 16:49:20 archlinux kernel: futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
May 05 16:49:20 archlinux kernel: pinctrl core: initialized pinctrl subsystem
May 05 16:49:20 archlinux kernel: PM: RTC time: 16:49:13, date: 2025-05-05
May 05 16:49:20 archlinux kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
May 05 16:49:20 archlinux kernel: DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
May 05 16:49:20 archlinux kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
May 05 16:49:20 archlinux kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
May 05 16:49:20 archlinux kernel: audit: initializing netlink subsys (disabled)
May 05 16:49:20 archlinux kernel: audit: type=2000 audit(1746463753.163:1): state=initialized audit_enabled=0 res=1
May 05 16:49:20 archlinux kernel: thermal_sys: Registered thermal governor 'fair_share'
May 05 16:49:20 archlinux kernel: thermal_sys: Registered thermal governor 'bang_bang'
May 05 16:49:20 archlinux kernel: thermal_sys: Registered thermal governor 'step_wise'
May 05 16:49:20 archlinux kernel: thermal_sys: Registered thermal governor 'user_space'
May 05 16:49:20 archlinux kernel: thermal_sys: Registered thermal governor 'power_allocator'
May 05 16:49:20 archlinux kernel: cpuidle: using governor ladder
May 05 16:49:20 archlinux kernel: cpuidle: using governor menu
May 05 16:49:20 archlinux kernel: Simple Boot Flag at 0x44 set to 0x1
May 05 16:49:20 archlinux kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
May 05 16:49:20 archlinux kernel: PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
May 05 16:49:20 archlinux kernel: PCI: Using configuration type 1 for base access
May 05 16:49:20 archlinux kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
May 05 16:49:20 archlinux kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
May 05 16:49:20 archlinux kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
May 05 16:49:20 archlinux kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
May 05 16:49:20 archlinux kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
May 05 16:49:20 archlinux kernel: raid6: skipped pq benchmark and selected avx512x4
May 05 16:49:20 archlinux kernel: raid6: using avx512x2 recovery algorithm
May 05 16:49:20 archlinux kernel: ACPI: Disabled all _OSI OS vendors
May 05 16:49:20 archlinux kernel: ACPI: Added _OSI(Module Device)
May 05 16:49:20 archlinux kernel: ACPI: Added _OSI(Processor Device)
May 05 16:49:20 archlinux kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
May 05 16:49:20 archlinux kernel: ACPI: Added _OSI(Processor Aggregator Device)
May 05 16:49:20 archlinux kernel: ACPI: Added _OSI(Windows 2015)
May 05 16:49:20 archlinux kernel: ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.GP18.SATA], AE_NOT_FOUND (20240827/dswload2-162)
May 05 16:49:20 archlinux kernel: ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20240827/psobject-220)
May 05 16:49:20 archlinux kernel: ACPI: Skipping parse of AML opcode: Scope (0x0010)
May 05 16:49:20 archlinux kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.GPP6.WLAN._S0W], AE_ALREADY_EXISTS (20240827/dswload2-326)
May 05 16:49:20 archlinux kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
May 05 16:49:20 archlinux kernel: ACPI: Skipping parse of AML opcode: Method (0x0014)
May 05 16:49:20 archlinux kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.GPP6._S0W], AE_ALREADY_EXISTS (20240827/dswload2-326)
May 05 16:49:20 archlinux kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
May 05 16:49:20 archlinux kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.GPP6._PRW], AE_ALREADY_EXISTS (20240827/dswload2-326)
May 05 16:49:20 archlinux kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
May 05 16:49:20 archlinux kernel: ACPI: Skipping parse of AML opcode: Method (0x0014)
May 05 16:49:20 archlinux kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.GPP6.WLAN._S0W], AE_ALREADY_EXISTS (20240827/dswload2-326)
May 05 16:49:20 archlinux kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
May 05 16:49:20 archlinux kernel: ACPI: Skipping parse of AML opcode: Method (0x0014)
May 05 16:49:20 archlinux kernel: ACPI BIOS Error (bug): Failure creating named object [\_SB.I2CA.TPDD], AE_ALREADY_EXISTS (20240827/dswload2-326)
May 05 16:49:20 archlinux kernel: ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20240827/psobject-220)
May 05 16:49:20 archlinux kernel: ACPI: Skipping parse of AML opcode: Device (0x5B82)
May 05 16:49:20 archlinux kernel: ACPI: 35 ACPI AML tables successfully acquired and loaded
May 05 16:49:20 archlinux kernel: ACPI: EC: EC started
May 05 16:49:20 archlinux kernel: ACPI: EC: interrupt blocked
May 05 16:49:20 archlinux kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.LPC0.EC0_: Boot DSDT EC used to handle transactions
May 05 16:49:20 archlinux kernel: ACPI: Interpreter enabled
May 05 16:49:20 archlinux kernel: ACPI: PM: (supports S0 S4 S5)
May 05 16:49:20 archlinux kernel: ACPI: Using IOAPIC for interrupt routing
May 05 16:49:20 archlinux kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
May 05 16:49:20 archlinux kernel: PCI: Ignoring E820 reservations for host bridge windows
May 05 16:49:20 archlinux kernel: ACPI: Enabled 5 GPEs in block 00 to 1F
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.GPP0.PG00: New power resource
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.GPP2.P0WW: New power resource
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.GPP6.PWSR: New power resource
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.GPP6.WLAN.PRWL: New power resource
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.GPP7.P0NV: New power resource
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.GPP8.P0NV: New power resource
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.GP11.PWRS: New power resource
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.GP11.SWUS.PWRS: New power resource
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.GP12.PWRS: New power resource
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.GP12.SWUS.PWRS: New power resource
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.GP17.PWRS: New power resource
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.GP17.VGA_.PWRS: New power resource
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.GP17.ACP_.PWRS: New power resource
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.GP17.AZAL.PWRS: New power resource
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.GP17.HDAU.PWRS: New power resource
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.GP17.XHC0.PWRS: New power resource
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.GP17.XHC0.RHUB.PRT4.BRWL: New power resource
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.GP17.XHC1.PWRS: New power resource
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.GP19.XHC2.PWRS: New power resource
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.GP19.NHI0.PWRS: New power resource
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.GP19.XHC3.PWRS: New power resource
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.GP19.NHI1.PWRS: New power resource
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.GP19.XHC4.PWRS: New power resource
May 05 16:49:20 archlinux kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
May 05 16:49:20 archlinux kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
May 05 16:49:20 archlinux kernel: acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug AER]
May 05 16:49:20 archlinux kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR DPC]
May 05 16:49:20 archlinux kernel: PCI host bridge to bus 0000:00
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000cffff window]
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000effff window]
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0xa0000000-0xa1cfffff window]
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfec00000 window]
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0xfed45000-0xfed814ff window]
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0xfed81900-0xfed81fff window]
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0xfedc0000-0xfedc0fff window]
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0xfedc6000-0xfedc6fff window]
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x880200000-0x80dfffffff window]
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
May 05 16:49:20 archlinux kernel: pci 0000:00:00.0: [1022:14e8] type 00 class 0x060000 conventional PCI endpoint
May 05 16:49:20 archlinux kernel: pci 0000:00:00.2: [1022:14e9] type 00 class 0x080600 conventional PCI endpoint
May 05 16:49:20 archlinux kernel: pci 0000:00:01.0: [1022:14ea] type 00 class 0x060000 conventional PCI endpoint
May 05 16:49:20 archlinux kernel: pci 0000:00:01.1: [1022:14ed] type 01 class 0x060400 PCIe Root Port
May 05 16:49:20 archlinux kernel: pci 0000:00:01.1: PCI bridge to [bus 01]
May 05 16:49:20 archlinux kernel: pci 0000:00:01.1: bridge window [io 0x3000-0x3fff]
May 05 16:49:20 archlinux kernel: pci 0000:00:01.1: bridge window [mem 0xa0000000-0xa10fffff]
May 05 16:49:20 archlinux kernel: pci 0000:00:01.1: bridge window [mem 0x7e00000000-0x8001ffffff 64bit pref]
May 05 16:49:20 archlinux kernel: pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
May 05 16:49:20 archlinux kernel: pci 0000:00:02.0: [1022:14ea] type 00 class 0x060000 conventional PCI endpoint
May 05 16:49:20 archlinux kernel: pci 0000:00:02.1: [1022:14ee] type 01 class 0x060400 PCIe Root Port
May 05 16:49:20 archlinux kernel: pci 0000:00:02.1: PCI bridge to [bus 02]
May 05 16:49:20 archlinux kernel: pci 0000:00:02.1: bridge window [io 0x2000-0x2fff]
May 05 16:49:20 archlinux kernel: pci 0000:00:02.1: bridge window [mem 0xa1b00000-0xa1bfffff]
May 05 16:49:20 archlinux kernel: pci 0000:00:02.1: PME# supported from D0 D3hot D3cold
May 05 16:49:20 archlinux kernel: pci 0000:00:02.2: [1022:14ee] type 01 class 0x060400 PCIe Root Port
May 05 16:49:20 archlinux kernel: pci 0000:00:02.2: PCI bridge to [bus 03]
May 05 16:49:20 archlinux kernel: pci 0000:00:02.2: bridge window [mem 0x8002000000-0x80021fffff 64bit pref]
May 05 16:49:20 archlinux kernel: pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
May 05 16:49:20 archlinux kernel: pci 0000:00:02.3: [1022:14ed] type 01 class 0x060400 PCIe Root Port
May 05 16:49:20 archlinux kernel: pci 0000:00:02.3: PCI bridge to [bus 04]
May 05 16:49:20 archlinux kernel: pci 0000:00:02.3: bridge window [mem 0xa1a00000-0xa1afffff]
May 05 16:49:20 archlinux kernel: pci 0000:00:02.3: PME# supported from D0 D3hot D3cold
May 05 16:49:20 archlinux kernel: pci 0000:00:02.4: [1022:14ee] type 01 class 0x060400 PCIe Root Port
May 05 16:49:20 archlinux kernel: pci 0000:00:02.4: PCI bridge to [bus 05]
May 05 16:49:20 archlinux kernel: pci 0000:00:02.4: bridge window [mem 0xa1100000-0xa11fffff]
May 05 16:49:20 archlinux kernel: pci 0000:00:02.4: PME# supported from D0 D3hot D3cold
May 05 16:49:20 archlinux kernel: pci 0000:00:03.0: [1022:14ea] type 00 class 0x060000 conventional PCI endpoint
May 05 16:49:20 archlinux kernel: pci 0000:00:04.0: [1022:14ea] type 00 class 0x060000 conventional PCI endpoint
May 05 16:49:20 archlinux kernel: pci 0000:00:08.0: [1022:14ea] type 00 class 0x060000 conventional PCI endpoint
May 05 16:49:20 archlinux kernel: pci 0000:00:08.1: [1022:14eb] type 01 class 0x060400 PCIe Root Port
May 05 16:49:20 archlinux kernel: pci 0000:00:08.1: PCI bridge to [bus 06]
May 05 16:49:20 archlinux kernel: pci 0000:00:08.1: bridge window [io 0x1000-0x1fff]
May 05 16:49:20 archlinux kernel: pci 0000:00:08.1: bridge window [mem 0xa1200000-0xa17fffff]
May 05 16:49:20 archlinux kernel: pci 0000:00:08.1: bridge window [mem 0x8010000000-0x80207fffff 64bit pref]
May 05 16:49:20 archlinux kernel: pci 0000:00:08.1: enabling Extended Tags
May 05 16:49:20 archlinux kernel: pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
May 05 16:49:20 archlinux kernel: pci 0000:00:08.2: [1022:14eb] type 01 class 0x060400 PCIe Root Port
May 05 16:49:20 archlinux kernel: pci 0000:00:08.2: PCI bridge to [bus 07]
May 05 16:49:20 archlinux kernel: pci 0000:00:08.2: enabling Extended Tags
May 05 16:49:20 archlinux kernel: pci 0000:00:08.2: PME# supported from D0 D3hot D3cold
May 05 16:49:20 archlinux kernel: pci 0000:00:08.3: [1022:14eb] type 01 class 0x060400 PCIe Root Port
May 05 16:49:20 archlinux kernel: pci 0000:00:08.3: PCI bridge to [bus 08]
May 05 16:49:20 archlinux kernel: pci 0000:00:08.3: bridge window [mem 0xa1800000-0xa19fffff]
May 05 16:49:20 archlinux kernel: pci 0000:00:08.3: enabling Extended Tags
May 05 16:49:20 archlinux kernel: pci 0000:00:08.3: PME# supported from D0 D3hot D3cold
May 05 16:49:20 archlinux kernel: pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 conventional PCI endpoint
May 05 16:49:20 archlinux kernel: pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 conventional PCI endpoint
May 05 16:49:20 archlinux kernel: pci 0000:00:18.0: [1022:14f0] type 00 class 0x060000 conventional PCI endpoint
May 05 16:49:20 archlinux kernel: pci 0000:00:18.1: [1022:14f1] type 00 class 0x060000 conventional PCI endpoint
May 05 16:49:20 archlinux kernel: pci 0000:00:18.2: [1022:14f2] type 00 class 0x060000 conventional PCI endpoint
May 05 16:49:20 archlinux kernel: pci 0000:00:18.3: [1022:14f3] type 00 class 0x060000 conventional PCI endpoint
May 05 16:49:20 archlinux kernel: pci 0000:00:18.4: [1022:14f4] type 00 class 0x060000 conventional PCI endpoint
May 05 16:49:20 archlinux kernel: pci 0000:00:18.5: [1022:14f5] type 00 class 0x060000 conventional PCI endpoint
May 05 16:49:20 archlinux kernel: pci 0000:00:18.6: [1022:14f6] type 00 class 0x060000 conventional PCI endpoint
May 05 16:49:20 archlinux kernel: pci 0000:00:18.7: [1022:14f7] type 00 class 0x060000 conventional PCI endpoint
May 05 16:49:20 archlinux kernel: pci 0000:01:00.0: [10de:28e0] type 00 class 0x030000 PCIe Legacy Endpoint
May 05 16:49:20 archlinux kernel: pci 0000:01:00.0: BAR 0 [mem 0xa0000000-0xa0ffffff]
May 05 16:49:20 archlinux kernel: pci 0000:01:00.0: BAR 1 [mem 0x7e00000000-0x7fffffffff 64bit pref]
May 05 16:49:20 archlinux kernel: pci 0000:01:00.0: BAR 3 [mem 0x8000000000-0x8001ffffff 64bit pref]
May 05 16:49:20 archlinux kernel: pci 0000:01:00.0: BAR 5 [io 0x3000-0x307f]
May 05 16:49:20 archlinux kernel: pci 0000:01:00.0: ROM [mem 0xa1000000-0xa107ffff pref]
May 05 16:49:20 archlinux kernel: pci 0000:01:00.0: PME# supported from D0 D3hot
May 05 16:49:20 archlinux kernel: pci 0000:01:00.1: [10de:22be] type 00 class 0x040300 PCIe Endpoint
May 05 16:49:20 archlinux kernel: pci 0000:01:00.1: BAR 0 [mem 0xa1080000-0xa1083fff]
May 05 16:49:20 archlinux kernel: pci 0000:00:01.1: PCI bridge to [bus 01]
May 05 16:49:20 archlinux kernel: pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000 PCIe Endpoint
May 05 16:49:20 archlinux kernel: pci 0000:02:00.0: BAR 0 [io 0x2000-0x20ff]
May 05 16:49:20 archlinux kernel: pci 0000:02:00.0: BAR 2 [mem 0xa1b04000-0xa1b04fff 64bit]
May 05 16:49:20 archlinux kernel: pci 0000:02:00.0: BAR 4 [mem 0xa1b00000-0xa1b03fff 64bit]
May 05 16:49:20 archlinux kernel: pci 0000:02:00.0: supports D1 D2
May 05 16:49:20 archlinux kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
May 05 16:49:20 archlinux kernel: pci 0000:00:02.1: PCI bridge to [bus 02]
May 05 16:49:20 archlinux kernel: pci 0000:03:00.0: [14c3:7961] type 00 class 0x028000 PCIe Endpoint
May 05 16:49:20 archlinux kernel: pci 0000:03:00.0: BAR 0 [mem 0x8002000000-0x80020fffff 64bit pref]
May 05 16:49:20 archlinux kernel: pci 0000:03:00.0: BAR 2 [mem 0x8002100000-0x8002103fff 64bit pref]
May 05 16:49:20 archlinux kernel: pci 0000:03:00.0: BAR 4 [mem 0x8002104000-0x8002104fff 64bit pref]
May 05 16:49:20 archlinux kernel: pci 0000:03:00.0: supports D1 D2
May 05 16:49:20 archlinux kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
May 05 16:49:20 archlinux kernel: pci 0000:00:02.2: PCI bridge to [bus 03]
May 05 16:49:20 archlinux kernel: pci 0000:04:00.0: [144d:a80b] type 00 class 0x010802 PCIe Endpoint
May 05 16:49:20 archlinux kernel: pci 0000:04:00.0: BAR 0 [mem 0xa1a00000-0xa1a03fff 64bit]
May 05 16:49:20 archlinux kernel: pci 0000:04:00.0: PME# supported from D0 D3hot
May 05 16:49:20 archlinux kernel: pci 0000:00:02.3: PCI bridge to [bus 04]
May 05 16:49:20 archlinux kernel: pci 0000:05:00.0: [144d:a808] type 00 class 0x010802 PCIe Endpoint
May 05 16:49:20 archlinux kernel: pci 0000:05:00.0: BAR 0 [mem 0xa1100000-0xa1103fff 64bit]
May 05 16:49:20 archlinux kernel: pci 0000:00:02.4: PCI bridge to [bus 05]
May 05 16:49:20 archlinux kernel: pci 0000:06:00.0: [1002:15bf] type 00 class 0x030000 PCIe Legacy Endpoint
May 05 16:49:20 archlinux kernel: pci 0000:06:00.0: BAR 0 [mem 0x8010000000-0x801fffffff 64bit pref]
May 05 16:49:20 archlinux kernel: pci 0000:06:00.0: BAR 2 [mem 0xa1200000-0xa13fffff 64bit pref]
May 05 16:49:20 archlinux kernel: pci 0000:06:00.0: BAR 4 [io 0x1000-0x10ff]
May 05 16:49:20 archlinux kernel: pci 0000:06:00.0: BAR 5 [mem 0xa1700000-0xa177ffff]
May 05 16:49:20 archlinux kernel: pci 0000:06:00.0: enabling Extended Tags
May 05 16:49:20 archlinux kernel: pci 0000:06:00.0: PME# supported from D1 D2 D3hot D3cold
May 05 16:49:20 archlinux kernel: pci 0000:06:00.2: [1022:15c7] type 00 class 0x108000 PCIe Endpoint
May 05 16:49:20 archlinux kernel: pci 0000:06:00.2: BAR 2 [mem 0xa1600000-0xa16fffff]
May 05 16:49:20 archlinux kernel: pci 0000:06:00.2: BAR 5 [mem 0xa17c8000-0xa17c9fff]
May 05 16:49:20 archlinux kernel: pci 0000:06:00.2: enabling Extended Tags
May 05 16:49:20 archlinux kernel: pci 0000:06:00.3: [1022:15b9] type 00 class 0x0c0330 PCIe Endpoint
May 05 16:49:20 archlinux kernel: pci 0000:06:00.3: BAR 0 [mem 0xa1400000-0xa14fffff 64bit]
May 05 16:49:20 archlinux kernel: pci 0000:06:00.3: enabling Extended Tags
May 05 16:49:20 archlinux kernel: pci 0000:06:00.3: PME# supported from D0 D3hot D3cold
May 05 16:49:20 archlinux kernel: pci 0000:06:00.4: [1022:15ba] type 00 class 0x0c0330 PCIe Endpoint
May 05 16:49:20 archlinux kernel: pci 0000:06:00.4: BAR 0 [mem 0xa1500000-0xa15fffff 64bit]
May 05 16:49:20 archlinux kernel: pci 0000:06:00.4: enabling Extended Tags
May 05 16:49:20 archlinux kernel: pci 0000:06:00.4: PME# supported from D0 D3hot D3cold
May 05 16:49:20 archlinux kernel: pci 0000:06:00.5: [1022:15e2] type 00 class 0x048000 PCIe Endpoint
May 05 16:49:20 archlinux kernel: pci 0000:06:00.5: BAR 0 [mem 0xa1780000-0xa17bffff]
May 05 16:49:20 archlinux kernel: pci 0000:06:00.5: BAR 2 [mem 0x8020000000-0x80207fffff 64bit pref]
May 05 16:49:20 archlinux kernel: pci 0000:06:00.5: enabling Extended Tags
May 05 16:49:20 archlinux kernel: pci 0000:06:00.5: PME# supported from D0 D3hot D3cold
May 05 16:49:20 archlinux kernel: pci 0000:06:00.6: [1022:15e3] type 00 class 0x040300 PCIe Endpoint
May 05 16:49:20 archlinux kernel: pci 0000:06:00.6: BAR 0 [mem 0xa17c0000-0xa17c7fff]
May 05 16:49:20 archlinux kernel: pci 0000:06:00.6: enabling Extended Tags
May 05 16:49:20 archlinux kernel: pci 0000:06:00.6: PME# supported from D0 D3hot D3cold
May 05 16:49:20 archlinux kernel: pci 0000:00:08.1: PCI bridge to [bus 06]
May 05 16:49:20 archlinux kernel: pci 0000:07:00.0: [1022:14ec] type 00 class 0x130000 PCIe Endpoint
May 05 16:49:20 archlinux kernel: pci 0000:07:00.0: enabling Extended Tags
May 05 16:49:20 archlinux kernel: pci 0000:07:00.0: PME# supported from D3hot D3cold
May 05 16:49:20 archlinux kernel: pci 0000:00:08.2: PCI bridge to [bus 07]
May 05 16:49:20 archlinux kernel: pci 0000:08:00.0: [1022:14ec] type 00 class 0x130000 PCIe Endpoint
May 05 16:49:20 archlinux kernel: pci 0000:08:00.0: enabling Extended Tags
May 05 16:49:20 archlinux kernel: pci 0000:08:00.3: [1022:15c0] type 00 class 0x0c0330 PCIe Endpoint
May 05 16:49:20 archlinux kernel: pci 0000:08:00.3: BAR 0 [mem 0xa1800000-0xa18fffff 64bit]
May 05 16:49:20 archlinux kernel: pci 0000:08:00.3: enabling Extended Tags
May 05 16:49:20 archlinux kernel: pci 0000:08:00.3: PME# supported from D0 D3hot D3cold
May 05 16:49:20 archlinux kernel: pci 0000:08:00.4: [1022:15c1] type 00 class 0x0c0330 PCIe Endpoint
May 05 16:49:20 archlinux kernel: pci 0000:08:00.4: BAR 0 [mem 0xa1900000-0xa19fffff 64bit]
May 05 16:49:20 archlinux kernel: pci 0000:08:00.4: enabling Extended Tags
May 05 16:49:20 archlinux kernel: pci 0000:08:00.4: PME# supported from D0 D3hot D3cold
May 05 16:49:20 archlinux kernel: pci 0000:00:08.3: PCI bridge to [bus 08]
May 05 16:49:20 archlinux kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 0
May 05 16:49:20 archlinux kernel: ACPI: PCI: Interrupt link LNKA disabled
May 05 16:49:20 archlinux kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 0
May 05 16:49:20 archlinux kernel: ACPI: PCI: Interrupt link LNKB disabled
May 05 16:49:20 archlinux kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 0
May 05 16:49:20 archlinux kernel: ACPI: PCI: Interrupt link LNKC disabled
May 05 16:49:20 archlinux kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 0
May 05 16:49:20 archlinux kernel: ACPI: PCI: Interrupt link LNKD disabled
May 05 16:49:20 archlinux kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
May 05 16:49:20 archlinux kernel: ACPI: PCI: Interrupt link LNKE disabled
May 05 16:49:20 archlinux kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 0
May 05 16:49:20 archlinux kernel: ACPI: PCI: Interrupt link LNKF disabled
May 05 16:49:20 archlinux kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
May 05 16:49:20 archlinux kernel: ACPI: PCI: Interrupt link LNKG disabled
May 05 16:49:20 archlinux kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 0
May 05 16:49:20 archlinux kernel: ACPI: PCI: Interrupt link LNKH disabled
May 05 16:49:20 archlinux kernel: Low-power S0 idle used by default for system suspend
May 05 16:49:20 archlinux kernel: ACPI: EC: interrupt unblocked
May 05 16:49:20 archlinux kernel: ACPI: EC: event unblocked
May 05 16:49:20 archlinux kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
May 05 16:49:20 archlinux kernel: ACPI: EC: GPE=0x7
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.LPC0.EC0_: Boot DSDT EC initialization complete
May 05 16:49:20 archlinux kernel: ACPI: \_SB_.PCI0.LPC0.EC0_: EC: Used to handle transactions and events
May 05 16:49:20 archlinux kernel: iommu: Default domain type: Passthrough (set via kernel command line)
May 05 16:49:20 archlinux kernel: SCSI subsystem initialized
May 05 16:49:20 archlinux kernel: libata version 3.00 loaded.
May 05 16:49:20 archlinux kernel: ACPI: bus type USB registered
May 05 16:49:20 archlinux kernel: usbcore: registered new interface driver usbfs
May 05 16:49:20 archlinux kernel: usbcore: registered new interface driver hub
May 05 16:49:20 archlinux kernel: usbcore: registered new device driver usb
May 05 16:49:20 archlinux kernel: EDAC MC: Ver: 3.0.0
May 05 16:49:20 archlinux kernel: efivars: Registered efivars operations
May 05 16:49:20 archlinux kernel: NetLabel: Initializing
May 05 16:49:20 archlinux kernel: NetLabel: domain hash size = 128
May 05 16:49:20 archlinux kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
May 05 16:49:20 archlinux kernel: NetLabel: unlabeled traffic allowed by default
May 05 16:49:20 archlinux kernel: mctp: management component transport protocol core
May 05 16:49:20 archlinux kernel: NET: Registered PF_MCTP protocol family
May 05 16:49:20 archlinux kernel: PCI: Using ACPI for IRQ routing
May 05 16:49:20 archlinux kernel: PCI: pci_cache_line_size set to 64 bytes
May 05 16:49:20 archlinux kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
May 05 16:49:20 archlinux kernel: e820: reserve RAM buffer [mem 0x09b00000-0x0bffffff]
May 05 16:49:20 archlinux kernel: e820: reserve RAM buffer [mem 0x09f00000-0x0bffffff]
May 05 16:49:20 archlinux kernel: e820: reserve RAM buffer [mem 0x80163018-0x83ffffff]
May 05 16:49:20 archlinux kernel: e820: reserve RAM buffer [mem 0x80177018-0x83ffffff]
May 05 16:49:20 archlinux kernel: e820: reserve RAM buffer [mem 0x820d8000-0x83ffffff]
May 05 16:49:20 archlinux kernel: e820: reserve RAM buffer [mem 0x842e1000-0x87ffffff]
May 05 16:49:20 archlinux kernel: e820: reserve RAM buffer [mem 0x842ec000-0x87ffffff]
May 05 16:49:20 archlinux kernel: e820: reserve RAM buffer [mem 0x842ef000-0x87ffffff]
May 05 16:49:20 archlinux kernel: e820: reserve RAM buffer [mem 0x842f3018-0x87ffffff]
May 05 16:49:20 archlinux kernel: e820: reserve RAM buffer [mem 0x8b9c0000-0x8bffffff]
May 05 16:49:20 archlinux kernel: e820: reserve RAM buffer [mem 0x8cf77000-0x8fffffff]
May 05 16:49:20 archlinux kernel: e820: reserve RAM buffer [mem 0x904ff000-0x93ffffff]
May 05 16:49:20 archlinux kernel: e820: reserve RAM buffer [mem 0x9b000000-0x9bffffff]
May 05 16:49:20 archlinux kernel: e820: reserve RAM buffer [mem 0x83e300000-0x83fffffff]
May 05 16:49:20 archlinux kernel: pci 0000:01:00.0: vgaarb: setting as boot VGA device
May 05 16:49:20 archlinux kernel: pci 0000:01:00.0: vgaarb: bridge control possible
May 05 16:49:20 archlinux kernel: pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
May 05 16:49:20 archlinux kernel: pci 0000:06:00.0: vgaarb: setting as boot VGA device (overriding previous)
May 05 16:49:20 archlinux kernel: pci 0000:06:00.0: vgaarb: bridge control possible
May 05 16:49:20 archlinux kernel: pci 0000:06:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
May 05 16:49:20 archlinux kernel: vgaarb: loaded
May 05 16:49:20 archlinux kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
May 05 16:49:20 archlinux kernel: hpet0: 3 comparators, 32-bit 14.318180 MHz counter
May 05 16:49:20 archlinux kernel: clocksource: Switched to clocksource tsc-early
May 05 16:49:20 archlinux kernel: VFS: Disk quotas dquot_6.6.0
May 05 16:49:20 archlinux kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
May 05 16:49:20 archlinux kernel: pnp: PnP ACPI init
May 05 16:49:20 archlinux kernel: system 00:00: [mem 0xfec00000-0xfec01fff] could not be reserved
May 05 16:49:20 archlinux kernel: system 00:00: [mem 0xfee00000-0xfee00fff] has been reserved
May 05 16:49:20 archlinux kernel: system 00:03: [io 0x025c] has been reserved
May 05 16:49:20 archlinux kernel: system 00:03: [io 0x0400-0x04cf] has been reserved
May 05 16:49:20 archlinux kernel: system 00:03: [io 0x04d0-0x04d1] has been reserved
May 05 16:49:20 archlinux kernel: system 00:03: [io 0x04d6] has been reserved
May 05 16:49:20 archlinux kernel: system 00:03: [io 0x0700-0x0707] has been reserved
May 05 16:49:20 archlinux kernel: system 00:03: [io 0x0c00-0x0c01] has been reserved
May 05 16:49:20 archlinux kernel: system 00:03: [io 0x0c14] has been reserved
May 05 16:49:20 archlinux kernel: system 00:03: [io 0x0c50-0x0c52] has been reserved
May 05 16:49:20 archlinux kernel: system 00:03: [io 0x0c6c] has been reserved
May 05 16:49:20 archlinux kernel: system 00:03: [io 0x0c6f] has been reserved
May 05 16:49:20 archlinux kernel: system 00:03: [io 0x0cd0-0x0cdb] has been reserved
May 05 16:49:20 archlinux kernel: system 00:03: [io 0x0d00-0x0d07] has been reserved
May 05 16:49:20 archlinux kernel: system 00:04: [mem 0x000e0000-0x000fffff] could not be reserved
May 05 16:49:20 archlinux kernel: system 00:04: [mem 0xfe000000-0xffffffff] could not be reserved
May 05 16:49:20 archlinux kernel: pnp: PnP ACPI: found 5 devices
May 05 16:49:20 archlinux kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
May 05 16:49:20 archlinux kernel: NET: Registered PF_INET protocol family
May 05 16:49:20 archlinux kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
May 05 16:49:20 archlinux kernel: tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
May 05 16:49:20 archlinux kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
May 05 16:49:20 archlinux kernel: TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
May 05 16:49:20 archlinux kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
May 05 16:49:20 archlinux kernel: TCP: Hash tables configured (established 262144 bind 65536)
May 05 16:49:20 archlinux kernel: MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
May 05 16:49:20 archlinux kernel: UDP hash table entries: 16384 (order: 8, 1048576 bytes, linear)
May 05 16:49:20 archlinux kernel: UDP-Lite hash table entries: 16384 (order: 8, 1048576 bytes, linear)
May 05 16:49:20 archlinux kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
May 05 16:49:20 archlinux kernel: NET: Registered PF_XDP protocol family
May 05 16:49:20 archlinux kernel: pci 0000:00:01.1: PCI bridge to [bus 01]
May 05 16:49:20 archlinux kernel: pci 0000:00:01.1: bridge window [io 0x3000-0x3fff]
May 05 16:49:20 archlinux kernel: pci 0000:00:01.1: bridge window [mem 0xa0000000-0xa10fffff]
May 05 16:49:20 archlinux kernel: pci 0000:00:01.1: bridge window [mem 0x7e00000000-0x8001ffffff 64bit pref]
May 05 16:49:20 archlinux kernel: pci 0000:00:02.1: PCI bridge to [bus 02]
May 05 16:49:20 archlinux kernel: pci 0000:00:02.1: bridge window [io 0x2000-0x2fff]
May 05 16:49:20 archlinux kernel: pci 0000:00:02.1: bridge window [mem 0xa1b00000-0xa1bfffff]
May 05 16:49:20 archlinux kernel: pci 0000:00:02.2: PCI bridge to [bus 03]
May 05 16:49:20 archlinux kernel: pci 0000:00:02.2: bridge window [mem 0x8002000000-0x80021fffff 64bit pref]
May 05 16:49:20 archlinux kernel: pci 0000:00:02.3: PCI bridge to [bus 04]
May 05 16:49:20 archlinux kernel: pci 0000:00:02.3: bridge window [mem 0xa1a00000-0xa1afffff]
May 05 16:49:20 archlinux kernel: pci 0000:00:02.4: PCI bridge to [bus 05]
May 05 16:49:20 archlinux kernel: pci 0000:00:02.4: bridge window [mem 0xa1100000-0xa11fffff]
May 05 16:49:20 archlinux kernel: pci 0000:00:08.1: PCI bridge to [bus 06]
May 05 16:49:20 archlinux kernel: pci 0000:00:08.1: bridge window [io 0x1000-0x1fff]
May 05 16:49:20 archlinux kernel: pci 0000:00:08.1: bridge window [mem 0xa1200000-0xa17fffff]
May 05 16:49:20 archlinux kernel: pci 0000:00:08.1: bridge window [mem 0x8010000000-0x80207fffff 64bit pref]
May 05 16:49:20 archlinux kernel: pci 0000:00:08.2: PCI bridge to [bus 07]
May 05 16:49:20 archlinux kernel: pci 0000:00:08.3: PCI bridge to [bus 08]
May 05 16:49:20 archlinux kernel: pci 0000:00:08.3: bridge window [mem 0xa1800000-0xa19fffff]
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000cffff window]
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: resource 8 [mem 0x000d0000-0x000effff window]
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: resource 9 [mem 0xa0000000-0xa1cfffff window]
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: resource 10 [mem 0xf0000000-0xfec00000 window]
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: resource 11 [mem 0xfed45000-0xfed814ff window]
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: resource 12 [mem 0xfed81900-0xfed81fff window]
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: resource 13 [mem 0xfedc0000-0xfedc0fff window]
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: resource 14 [mem 0xfedc6000-0xfedc6fff window]
May 05 16:49:20 archlinux kernel: pci_bus 0000:00: resource 15 [mem 0x880200000-0x80dfffffff window]
May 05 16:49:20 archlinux kernel: pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
May 05 16:49:20 archlinux kernel: pci_bus 0000:01: resource 1 [mem 0xa0000000-0xa10fffff]
May 05 16:49:20 archlinux kernel: pci_bus 0000:01: resource 2 [mem 0x7e00000000-0x8001ffffff 64bit pref]
May 05 16:49:20 archlinux kernel: pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
May 05 16:49:20 archlinux kernel: pci_bus 0000:02: resource 1 [mem 0xa1b00000-0xa1bfffff]
May 05 16:49:20 archlinux kernel: pci_bus 0000:03: resource 2 [mem 0x8002000000-0x80021fffff 64bit pref]
May 05 16:49:20 archlinux kernel: pci_bus 0000:04: resource 1 [mem 0xa1a00000-0xa1afffff]
May 05 16:49:20 archlinux kernel: pci_bus 0000:05: resource 1 [mem 0xa1100000-0xa11fffff]
May 05 16:49:20 archlinux kernel: pci_bus 0000:06: resource 0 [io 0x1000-0x1fff]
May 05 16:49:20 archlinux kernel: pci_bus 0000:06: resource 1 [mem 0xa1200000-0xa17fffff]
May 05 16:49:20 archlinux kernel: pci_bus 0000:06: resource 2 [mem 0x8010000000-0x80207fffff 64bit pref]
May 05 16:49:20 archlinux kernel: pci_bus 0000:08: resource 1 [mem 0xa1800000-0xa19fffff]
May 05 16:49:20 archlinux kernel: pci 0000:01:00.1: extending delay after power-on from D3hot to 20 msec
May 05 16:49:20 archlinux kernel: pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
May 05 16:49:20 archlinux kernel: PCI: CLS 64 bytes, default 64
May 05 16:49:20 archlinux kernel: pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
May 05 16:49:20 archlinux kernel: Trying to unpack rootfs image as initramfs...
May 05 16:49:20 archlinux kernel: pci 0000:00:00.0: Adding to iommu group 0
May 05 16:49:20 archlinux kernel: pci 0000:00:01.0: Adding to iommu group 1
May 05 16:49:20 archlinux kernel: pci 0000:00:01.1: Adding to iommu group 2
May 05 16:49:20 archlinux kernel: pci 0000:00:02.0: Adding to iommu group 3
May 05 16:49:20 archlinux kernel: pci 0000:00:02.1: Adding to iommu group 4
May 05 16:49:20 archlinux kernel: pci 0000:00:02.2: Adding to iommu group 5
May 05 16:49:20 archlinux kernel: pci 0000:00:02.3: Adding to iommu group 6
May 05 16:49:20 archlinux kernel: pci 0000:00:02.4: Adding to iommu group 7
May 05 16:49:20 archlinux kernel: pci 0000:00:03.0: Adding to iommu group 8
May 05 16:49:20 archlinux kernel: pci 0000:00:04.0: Adding to iommu group 9
May 05 16:49:20 archlinux kernel: pci 0000:00:08.0: Adding to iommu group 10
May 05 16:49:20 archlinux kernel: pci 0000:00:08.1: Adding to iommu group 11
May 05 16:49:20 archlinux kernel: pci 0000:00:08.2: Adding to iommu group 12
May 05 16:49:20 archlinux kernel: pci 0000:00:08.3: Adding to iommu group 13
May 05 16:49:20 archlinux kernel: pci 0000:00:14.0: Adding to iommu group 14
May 05 16:49:20 archlinux kernel: pci 0000:00:14.3: Adding to iommu group 14
May 05 16:49:20 archlinux kernel: pci 0000:00:18.0: Adding to iommu group 15
May 05 16:49:20 archlinux kernel: pci 0000:00:18.1: Adding to iommu group 15
May 05 16:49:20 archlinux kernel: pci 0000:00:18.2: Adding to iommu group 15
May 05 16:49:20 archlinux kernel: pci 0000:00:18.3: Adding to iommu group 15
May 05 16:49:20 archlinux kernel: pci 0000:00:18.4: Adding to iommu group 15
May 05 16:49:20 archlinux kernel: pci 0000:00:18.5: Adding to iommu group 15
May 05 16:49:20 archlinux kernel: pci 0000:00:18.6: Adding to iommu group 15
May 05 16:49:20 archlinux kernel: pci 0000:00:18.7: Adding to iommu group 15
May 05 16:49:20 archlinux kernel: pci 0000:01:00.0: Adding to iommu group 16
May 05 16:49:20 archlinux kernel: pci 0000:01:00.1: Adding to iommu group 16
May 05 16:49:20 archlinux kernel: pci 0000:02:00.0: Adding to iommu group 17
May 05 16:49:20 archlinux kernel: pci 0000:03:00.0: Adding to iommu group 18
May 05 16:49:20 archlinux kernel: pci 0000:04:00.0: Adding to iommu group 19
May 05 16:49:20 archlinux kernel: pci 0000:05:00.0: Adding to iommu group 20
May 05 16:49:20 archlinux kernel: pci 0000:06:00.0: Adding to iommu group 21
May 05 16:49:20 archlinux kernel: pci 0000:06:00.2: Adding to iommu group 22
May 05 16:49:20 archlinux kernel: pci 0000:06:00.3: Adding to iommu group 23
May 05 16:49:20 archlinux kernel: pci 0000:06:00.4: Adding to iommu group 24
May 05 16:49:20 archlinux kernel: pci 0000:06:00.5: Adding to iommu group 25
May 05 16:49:20 archlinux kernel: pci 0000:06:00.6: Adding to iommu group 26
May 05 16:49:20 archlinux kernel: pci 0000:07:00.0: Adding to iommu group 27
May 05 16:49:20 archlinux kernel: pci 0000:08:00.0: Adding to iommu group 28
May 05 16:49:20 archlinux kernel: pci 0000:08:00.3: Adding to iommu group 29
May 05 16:49:20 archlinux kernel: pci 0000:08:00.4: Adding to iommu group 30
May 05 16:49:20 archlinux kernel: AMD-Vi: Extended features (0x246577efa2054ada, 0x0): PPR NX GT IA GA PC
May 05 16:49:20 archlinux kernel: AMD-Vi: Interrupt remapping enabled
May 05 16:49:20 archlinux kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
May 05 16:49:20 archlinux kernel: software IO TLB: mapped [mem 0x0000000086a02000-0x000000008aa02000] (64MB)
May 05 16:49:20 archlinux kernel: LVT offset 0 assigned for vector 0x400
May 05 16:49:20 archlinux kernel: perf: AMD IBS detected (0x00000bff)
May 05 16:49:20 archlinux kernel: perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
May 05 16:49:20 archlinux kernel: Initialise system trusted keyrings
May 05 16:49:20 archlinux kernel: Key type blacklist registered
May 05 16:49:20 archlinux kernel: workingset: timestamp_bits=36 max_order=23 bucket_order=0
May 05 16:49:20 archlinux kernel: fuse: init (API version 7.42)
May 05 16:49:20 archlinux kernel: integrity: Platform Keyring initialized
May 05 16:49:20 archlinux kernel: integrity: Machine keyring initialized
May 05 16:49:20 archlinux kernel: xor: automatically using best checksumming function avx
May 05 16:49:20 archlinux kernel: Key type asymmetric registered
May 05 16:49:20 archlinux kernel: Asymmetric key parser 'x509' registered
May 05 16:49:20 archlinux kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
May 05 16:49:20 archlinux kernel: io scheduler mq-deadline registered
May 05 16:49:20 archlinux kernel: io scheduler kyber registered
May 05 16:49:20 archlinux kernel: io scheduler bfq registered
May 05 16:49:20 archlinux kernel: ledtrig-cpu: registered to indicate activity on CPUs
May 05 16:49:20 archlinux kernel: pcieport 0000:00:01.1: PME: Signaling with IRQ 32
May 05 16:49:20 archlinux kernel: pcieport 0000:00:01.1: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
May 05 16:49:20 archlinux kernel: pcieport 0000:00:02.1: PME: Signaling with IRQ 33
May 05 16:49:20 archlinux kernel: pcieport 0000:00:02.2: PME: Signaling with IRQ 34
May 05 16:49:20 archlinux kernel: pcieport 0000:00:02.3: PME: Signaling with IRQ 35
May 05 16:49:20 archlinux kernel: pcieport 0000:00:02.4: PME: Signaling with IRQ 36
May 05 16:49:20 archlinux kernel: pcieport 0000:00:08.1: PME: Signaling with IRQ 37
May 05 16:49:20 archlinux kernel: pcieport 0000:00:08.2: PME: Signaling with IRQ 38
May 05 16:49:20 archlinux kernel: pcieport 0000:00:08.3: PME: Signaling with IRQ 39
May 05 16:49:20 archlinux kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
May 05 16:49:20 archlinux kernel: ACPI: AC: AC Adapter [ACAD] (off-line)
May 05 16:49:20 archlinux kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
May 05 16:49:20 archlinux kernel: ACPI: button: Power Button [PWRB]
May 05 16:49:20 archlinux kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
May 05 16:49:20 archlinux kernel: ACPI: button: Lid Switch [LID]
May 05 16:49:20 archlinux kernel: Monitor-Mwait will be used to enter C-1 state
May 05 16:49:20 archlinux kernel: Estimated ratio of average max frequency by base frequency (times 1024): 1204
May 05 16:49:20 archlinux kernel: thermal LNXTHERM:00: registered as thermal_zone0
May 05 16:49:20 archlinux kernel: ACPI: thermal: Thermal Zone [TZ01] (62 C)
May 05 16:49:20 archlinux kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
May 05 16:49:20 archlinux kernel: Non-volatile memory driver v1.3
May 05 16:49:20 archlinux kernel: Linux agpgart interface v0.103
May 05 16:49:20 archlinux kernel: tpm_crb MSFT0101:00: Disabling hwrng
May 05 16:49:20 archlinux kernel: ACPI: bus type drm_connector registered
May 05 16:49:20 archlinux kernel: xhci_hcd 0000:06:00.3: xHCI Host Controller
May 05 16:49:20 archlinux kernel: xhci_hcd 0000:06:00.3: new USB bus registered, assigned bus number 1
May 05 16:49:20 archlinux kernel: xhci_hcd 0000:06:00.3: hcc params 0x0128ffc5 hci version 0x120 quirks 0x0000000200000010
May 05 16:49:20 archlinux kernel: xhci_hcd 0000:06:00.3: xHCI Host Controller
May 05 16:49:20 archlinux kernel: xhci_hcd 0000:06:00.3: new USB bus registered, assigned bus number 2
May 05 16:49:20 archlinux kernel: xhci_hcd 0000:06:00.3: Host supports USB 3.1 Enhanced SuperSpeed
May 05 16:49:20 archlinux kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.14
May 05 16:49:20 archlinux kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 05 16:49:20 archlinux kernel: usb usb1: Product: xHCI Host Controller
May 05 16:49:20 archlinux kernel: usb usb1: Manufacturer: Linux 6.14.4-arch1-2 xhci-hcd
May 05 16:49:20 archlinux kernel: usb usb1: SerialNumber: 0000:06:00.3
May 05 16:49:20 archlinux kernel: hub 1-0:1.0: USB hub found
May 05 16:49:20 archlinux kernel: hub 1-0:1.0: 5 ports detected
May 05 16:49:20 archlinux kernel: usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
May 05 16:49:20 archlinux kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.14
May 05 16:49:20 archlinux kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 05 16:49:20 archlinux kernel: usb usb2: Product: xHCI Host Controller
May 05 16:49:20 archlinux kernel: usb usb2: Manufacturer: Linux 6.14.4-arch1-2 xhci-hcd
May 05 16:49:20 archlinux kernel: usb usb2: SerialNumber: 0000:06:00.3
May 05 16:49:20 archlinux kernel: hub 2-0:1.0: USB hub found
May 05 16:49:20 archlinux kernel: hub 2-0:1.0: 2 ports detected
May 05 16:49:20 archlinux kernel: xhci_hcd 0000:06:00.4: xHCI Host Controller
May 05 16:49:20 archlinux kernel: xhci_hcd 0000:06:00.4: new USB bus registered, assigned bus number 3
May 05 16:49:20 archlinux kernel: xhci_hcd 0000:06:00.4: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000010
May 05 16:49:20 archlinux kernel: xhci_hcd 0000:06:00.4: xHCI Host Controller
May 05 16:49:20 archlinux kernel: xhci_hcd 0000:06:00.4: new USB bus registered, assigned bus number 4
May 05 16:49:20 archlinux kernel: xhci_hcd 0000:06:00.4: Host supports USB 3.1 Enhanced SuperSpeed
May 05 16:49:20 archlinux kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.14
May 05 16:49:20 archlinux kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 05 16:49:20 archlinux kernel: usb usb3: Product: xHCI Host Controller
May 05 16:49:20 archlinux kernel: usb usb3: Manufacturer: Linux 6.14.4-arch1-2 xhci-hcd
May 05 16:49:20 archlinux kernel: usb usb3: SerialNumber: 0000:06:00.4
May 05 16:49:20 archlinux kernel: hub 3-0:1.0: USB hub found
May 05 16:49:20 archlinux kernel: hub 3-0:1.0: 1 port detected
May 05 16:49:20 archlinux kernel: usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
May 05 16:49:20 archlinux kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.14
May 05 16:49:20 archlinux kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 05 16:49:20 archlinux kernel: usb usb4: Product: xHCI Host Controller
May 05 16:49:20 archlinux kernel: usb usb4: Manufacturer: Linux 6.14.4-arch1-2 xhci-hcd
May 05 16:49:20 archlinux kernel: usb usb4: SerialNumber: 0000:06:00.4
May 05 16:49:20 archlinux kernel: hub 4-0:1.0: USB hub found
May 05 16:49:20 archlinux kernel: hub 4-0:1.0: 1 port detected
May 05 16:49:20 archlinux kernel: xhci_hcd 0000:08:00.3: xHCI Host Controller
May 05 16:49:20 archlinux kernel: xhci_hcd 0000:08:00.3: new USB bus registered, assigned bus number 5
May 05 16:49:20 archlinux kernel: xhci_hcd 0000:08:00.3: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000010
May 05 16:49:20 archlinux kernel: xhci_hcd 0000:08:00.3: xHCI Host Controller
May 05 16:49:20 archlinux kernel: xhci_hcd 0000:08:00.3: new USB bus registered, assigned bus number 6
May 05 16:49:20 archlinux kernel: xhci_hcd 0000:08:00.3: Host supports USB 3.1 Enhanced SuperSpeed
May 05 16:49:20 archlinux kernel: usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.14
May 05 16:49:20 archlinux kernel: usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 05 16:49:20 archlinux kernel: usb usb5: Product: xHCI Host Controller
May 05 16:49:20 archlinux kernel: usb usb5: Manufacturer: Linux 6.14.4-arch1-2 xhci-hcd
May 05 16:49:20 archlinux kernel: usb usb5: SerialNumber: 0000:08:00.3
May 05 16:49:20 archlinux kernel: hub 5-0:1.0: USB hub found
May 05 16:49:20 archlinux kernel: hub 5-0:1.0: 1 port detected
May 05 16:49:20 archlinux kernel: usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
May 05 16:49:20 archlinux kernel: usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.14
May 05 16:49:20 archlinux kernel: usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 05 16:49:20 archlinux kernel: usb usb6: Product: xHCI Host Controller
May 05 16:49:20 archlinux kernel: usb usb6: Manufacturer: Linux 6.14.4-arch1-2 xhci-hcd
May 05 16:49:20 archlinux kernel: usb usb6: SerialNumber: 0000:08:00.3
May 05 16:49:20 archlinux kernel: hub 6-0:1.0: USB hub found
May 05 16:49:20 archlinux kernel: hub 6-0:1.0: 1 port detected
May 05 16:49:20 archlinux kernel: xhci_hcd 0000:08:00.4: xHCI Host Controller
May 05 16:49:20 archlinux kernel: xhci_hcd 0000:08:00.4: new USB bus registered, assigned bus number 7
May 05 16:49:20 archlinux kernel: xhci_hcd 0000:08:00.4: hcc params 0x0110ffc5 hci version 0x120 quirks 0x0000000200000010
May 05 16:49:20 archlinux kernel: xhci_hcd 0000:08:00.4: xHCI Host Controller
May 05 16:49:20 archlinux kernel: xhci_hcd 0000:08:00.4: new USB bus registered, assigned bus number 8
May 05 16:49:20 archlinux kernel: xhci_hcd 0000:08:00.4: Host supports USB 3.1 Enhanced SuperSpeed
May 05 16:49:20 archlinux kernel: usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.14
May 05 16:49:20 archlinux kernel: usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 05 16:49:20 archlinux kernel: usb usb7: Product: xHCI Host Controller
May 05 16:49:20 archlinux kernel: usb usb7: Manufacturer: Linux 6.14.4-arch1-2 xhci-hcd
May 05 16:49:20 archlinux kernel: usb usb7: SerialNumber: 0000:08:00.4
May 05 16:49:20 archlinux kernel: hub 7-0:1.0: USB hub found
May 05 16:49:20 archlinux kernel: hub 7-0:1.0: 1 port detected
May 05 16:49:20 archlinux kernel: usb usb8: We don't know the algorithms for LPM for this host, disabling LPM.
May 05 16:49:20 archlinux kernel: usb usb8: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.14
May 05 16:49:20 archlinux kernel: usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
May 05 16:49:20 archlinux kernel: usb usb8: Product: xHCI Host Controller
May 05 16:49:20 archlinux kernel: usb usb8: Manufacturer: Linux 6.14.4-arch1-2 xhci-hcd
May 05 16:49:20 archlinux kernel: usb usb8: SerialNumber: 0000:08:00.4
May 05 16:49:20 archlinux kernel: hub 8-0:1.0: USB hub found
May 05 16:49:20 archlinux kernel: hub 8-0:1.0: 1 port detected
May 05 16:49:20 archlinux kernel: usbcore: registered new interface driver usbserial_generic
May 05 16:49:20 archlinux kernel: usbserial: USB Serial support registered for generic
May 05 16:49:20 archlinux kernel: rtc_cmos 00:01: RTC can wake from S4
May 05 16:49:20 archlinux kernel: rtc_cmos 00:01: registered as rtc0
May 05 16:49:20 archlinux kernel: rtc_cmos 00:01: setting system clock to 2025-05-05T16:49:13 UTC (1746463753)
May 05 16:49:20 archlinux kernel: rtc_cmos 00:01: alarms up to one month, 114 bytes nvram
May 05 16:49:20 archlinux kernel: efifb: probing for efifb
May 05 16:49:20 archlinux kernel: efifb: showing boot graphics
May 05 16:49:20 archlinux kernel: efifb: framebuffer at 0x8010000000, using 9000k, total 9000k
May 05 16:49:20 archlinux kernel: efifb: mode is 1920x1200x32, linelength=7680, pages=1
May 05 16:49:20 archlinux kernel: efifb: scrolling: redraw
May 05 16:49:20 archlinux kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
May 05 16:49:20 archlinux kernel: fbcon: Deferring console take-over
May 05 16:49:20 archlinux kernel: fb0: EFI VGA frame buffer device
May 05 16:49:20 archlinux kernel: hid: raw HID events driver (C) Jiri Kosina
May 05 16:49:20 archlinux kernel: drop_monitor: Initializing network drop monitor service
May 05 16:49:20 archlinux kernel: NET: Registered PF_INET6 protocol family
May 05 16:49:20 archlinux kernel: Freeing initrd memory: 223828K
May 05 16:49:20 archlinux kernel: Segment Routing with IPv6
May 05 16:49:20 archlinux kernel: RPL Segment Routing with IPv6
May 05 16:49:20 archlinux kernel: In-situ OAM (IOAM) with IPv6
May 05 16:49:20 archlinux kernel: NET: Registered PF_PACKET protocol family
May 05 16:49:20 archlinux kernel: microcode: Current revision: 0x0a70410a
May 05 16:49:20 archlinux kernel: resctrl: L3 allocation detected
May 05 16:49:20 archlinux kernel: resctrl: MB allocation detected
May 05 16:49:20 archlinux kernel: resctrl: SMBA allocation detected
May 05 16:49:20 archlinux kernel: resctrl: L3 monitoring detected
May 05 16:49:20 archlinux kernel: IPI shorthand broadcast: enabled
May 05 16:49:20 archlinux kernel: sched_clock: Marking stable (536844750, 1428550)->(576639806, -38366506)
May 05 16:49:20 archlinux kernel: registered taskstats version 1
May 05 16:49:20 archlinux kernel: Loading compiled-in X.509 certificates
May 05 16:49:20 archlinux kernel: Loaded X.509 cert 'Build time autogenerated kernel key: d420fbec0236d1ec50e54aee913e1161f8fe7710'
May 05 16:49:20 archlinux kernel: Demotion targets for Node 0: null
May 05 16:49:20 archlinux kernel: Key type .fscrypt registered
May 05 16:49:20 archlinux kernel: Key type fscrypt-provisioning registered
May 05 16:49:20 archlinux kernel: Btrfs loaded, zoned=yes, fsverity=yes
May 05 16:49:20 archlinux kernel: PM: Magic number: 9:852:842
May 05 16:49:20 archlinux kernel: ACPI: battery: Slot [BAT1] (battery present)
May 05 16:49:20 archlinux kernel: RAS: Correctable Errors collector initialized.
May 05 16:49:20 archlinux kernel: clk: Disabling unused clocks
May 05 16:49:20 archlinux kernel: PM: genpd: Disabling unused power domains
May 05 16:49:20 archlinux kernel: Freeing unused decrypted memory: 2028K
May 05 16:49:20 archlinux kernel: Freeing unused kernel image (initmem) memory: 4528K
May 05 16:49:20 archlinux kernel: Write protecting the kernel read-only data: 36864k
May 05 16:49:20 archlinux kernel: Freeing unused kernel image (text/rodata gap) memory: 1116K
May 05 16:49:20 archlinux kernel: Freeing unused kernel image (rodata/data gap) memory: 108K
May 05 16:49:20 archlinux kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
May 05 16:49:20 archlinux kernel: rodata_test: all tests were successful
May 05 16:49:20 archlinux kernel: Run /init as init process
May 05 16:49:20 archlinux kernel: with arguments:
May 05 16:49:20 archlinux kernel: /init
May 05 16:49:20 archlinux kernel: with environment:
May 05 16:49:20 archlinux kernel: HOME=/
May 05 16:49:20 archlinux kernel: TERM=linux
May 05 16:49:20 archlinux kernel: BOOT_IMAGE=/vmlinuz-linux
May 05 16:49:20 archlinux kernel: VFIO - User Level meta-driver version: 0.3
May 05 16:49:20 archlinux kernel: nvme 0000:04:00.0: platform quirk: setting simple suspend
May 05 16:49:20 archlinux kernel: nvme 0000:05:00.0: platform quirk: setting simple suspend
May 05 16:49:20 archlinux kernel: nvme nvme0: pci function 0000:04:00.0
May 05 16:49:20 archlinux kernel: nvme nvme1: pci function 0000:05:00.0
May 05 16:49:20 archlinux kernel: nvme nvme1: missing or invalid SUBNQN field.
May 05 16:49:20 archlinux kernel: nvme nvme1: D3 entry latency set to 8 seconds
May 05 16:49:20 archlinux kernel: nvme nvme0: D3 entry latency set to 8 seconds
May 05 16:49:20 archlinux kernel: usb 1-2: new full-speed USB device number 2 using xhci_hcd
May 05 16:49:20 archlinux kernel: nvme nvme1: 16/0/0 default/read/poll queues
May 05 16:49:20 archlinux kernel: nvme1n1: p1 p2 p3
May 05 16:49:20 archlinux kernel: nvme nvme0: allocated 64 MiB host memory buffer (16 segments).
May 05 16:49:20 archlinux kernel: nvme nvme0: 16/0/0 default/read/poll queues
May 05 16:49:20 archlinux kernel: nvme nvme0: Ignoring bogus Namespace Identifiers
May 05 16:49:20 archlinux kernel: nvme0n1: p1 p2 p3 p4
May 05 16:49:20 archlinux kernel: usb 1-2: New USB device found, idVendor=046d, idProduct=c53f, bcdDevice=44.01
May 05 16:49:20 archlinux kernel: usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
May 05 16:49:20 archlinux kernel: usb 1-2: Product: USB Receiver
May 05 16:49:20 archlinux kernel: usb 1-2: Manufacturer: Logitech
May 05 16:49:20 archlinux kernel: usbcore: registered new interface driver usbhid
May 05 16:49:20 archlinux kernel: usbhid: USB HID core driver
May 05 16:49:20 archlinux kernel: input: Logitech USB Receiver as /devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-2/1-2:1.0/0003:046D:C53F.0001/input/input2
May 05 16:49:20 archlinux kernel: hid-generic 0003:046D:C53F.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:06:00.3-2/input0
May 05 16:49:20 archlinux kernel: input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-2/1-2:1.1/0003:046D:C53F.0002/input/input3
May 05 16:49:20 archlinux kernel: input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-2/1-2:1.1/0003:046D:C53F.0002/input/input4
May 05 16:49:20 archlinux kernel: usb 1-3: new high-speed USB device number 3 using xhci_hcd
May 05 16:49:20 archlinux kernel: input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-2/1-2:1.1/0003:046D:C53F.0002/input/input5
May 05 16:49:20 archlinux kernel: hid-generic 0003:046D:C53F.0002: input,hiddev96,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:06:00.3-2/input1
May 05 16:49:20 archlinux kernel: hid-generic 0003:046D:C53F.0003: hiddev97,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:06:00.3-2/input2
May 05 16:49:20 archlinux kernel: logitech-djreceiver 0003:046D:C53F.0001: hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:06:00.3-2/input0
May 05 16:49:20 archlinux kernel: usb 1-3: New USB device found, idVendor=30c9, idProduct=00a7, bcdDevice= 0.13
May 05 16:49:20 archlinux kernel: usb 1-3: New USB device strings: Mfr=3, Product=1, SerialNumber=2
May 05 16:49:20 archlinux kernel: usb 1-3: Product: Integrated Camera
May 05 16:49:20 archlinux kernel: usb 1-3: Manufacturer: 8SSC21K12327V1SR35721JH
May 05 16:49:20 archlinux kernel: usb 1-3: SerialNumber: 200901010001
May 05 16:49:20 archlinux kernel: logitech-djreceiver 0003:046D:C53F.0002: hiddev96,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:06:00.3-2/input1
May 05 16:49:20 archlinux kernel: logitech-djreceiver 0003:046D:C53F.0003: hiddev97,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:06:00.3-2/input2
May 05 16:49:20 archlinux kernel: usb 1-4: new high-speed USB device number 4 using xhci_hcd
May 05 16:49:20 archlinux kernel: nvidia: loading out-of-tree module taints kernel.
May 05 16:49:20 archlinux kernel: nvidia: module license 'NVIDIA' taints kernel.
May 05 16:49:20 archlinux kernel: Disabling lock debugging due to kernel taint
May 05 16:49:20 archlinux kernel: nvidia: module verification failed: signature and/or required key missing - tainting kernel
May 05 16:49:20 archlinux kernel: nvidia: module license taints kernel.
May 05 16:49:20 archlinux kernel: logitech-djreceiver 0003:046D:C53F.0003: device of type eQUAD Lightspeed 1.1 (0x0d) connected on slot 1
May 05 16:49:20 archlinux kernel: input: Logitech Wireless Mouse PID:4074 Keyboard as /devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-2/1-2:1.2/0003:046D:C53F.0003/0003:046D:4074.0004/input/input7
May 05 16:49:20 archlinux kernel: input: Logitech Wireless Mouse PID:4074 Mouse as /devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-2/1-2:1.2/0003:046D:C53F.0003/0003:046D:4074.0004/input/input8
May 05 16:49:20 archlinux kernel: hid-generic 0003:046D:4074.0004: input,hidraw3: USB HID v1.11 Keyboard [Logitech Wireless Mouse PID:4074] on usb-0000:06:00.3-2/input2:1
May 05 16:49:20 archlinux kernel: usb 1-4: New USB device found, idVendor=0489, idProduct=e0cd, bcdDevice= 1.00
May 05 16:49:20 archlinux kernel: usb 1-4: New USB device strings: Mfr=5, Product=6, SerialNumber=7
May 05 16:49:20 archlinux kernel: usb 1-4: Product: Wireless_Device
May 05 16:49:20 archlinux kernel: usb 1-4: Manufacturer: MediaTek Inc.
May 05 16:49:20 archlinux kernel: usb 1-4: SerialNumber: 000000000
May 05 16:49:20 archlinux kernel: input: Logitech G305 as /devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-2/1-2:1.2/0003:046D:C53F.0003/0003:046D:4074.0004/input/input12
May 05 16:49:20 archlinux kernel: tsc: Refined TSC clocksource calibration: 3792.840 MHz
May 05 16:49:20 archlinux kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x6d57d86fa9f, max_idle_ns: 881590856157 ns
May 05 16:49:20 archlinux kernel: clocksource: Switched to clocksource tsc
May 05 16:49:20 archlinux kernel: logitech-hidpp-device 0003:046D:4074.0004: input,hidraw3: USB HID v1.11 Keyboard [Logitech G305] on usb-0000:06:00.3-2/input2:1
May 05 16:49:20 archlinux kernel: usb 1-5: new high-speed USB device number 5 using xhci_hcd
May 05 16:49:20 archlinux kernel: usb 1-5: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=61.60
May 05 16:49:20 archlinux kernel: usb 1-5: New USB device strings: Mfr=0, Product=1, SerialNumber=0
May 05 16:49:20 archlinux kernel: usb 1-5: Product: USB2.0 Hub
May 05 16:49:20 archlinux kernel: hub 1-5:1.0: USB hub found
May 05 16:49:20 archlinux kernel: hub 1-5:1.0: 2 ports detected
May 05 16:49:20 archlinux kernel: nvidia-nvlink: Nvlink Core is being initialized, major device number 236
May 05 16:49:20 archlinux kernel:
May 05 16:49:20 archlinux kernel: nvidia 0000:01:00.0: enabling device (0000 -> 0003)
May 05 16:49:20 archlinux kernel: nvidia 0000:01:00.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=none:owns=none
May 05 16:49:20 archlinux kernel: NVRM: loading NVIDIA UNIX x86_64 Kernel Module 570.144 Thu Apr 10 20:33:29 UTC 2025
May 05 16:49:20 archlinux kernel: ACPI: video: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
May 05 16:49:20 archlinux kernel: ACPI: video: Video Device [PEGP] (multi-head: yes rom: no post: no)
May 05 16:49:20 archlinux kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input13
May 05 16:49:20 archlinux kernel: ACPI: video: Video Device [VGA] (multi-head: yes rom: no post: no)
May 05 16:49:20 archlinux kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:18/LNXVIDEO:01/input/input14
May 05 16:49:20 archlinux kernel: nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms 570.144 Thu Apr 10 20:03:03 UTC 2025
May 05 16:49:20 archlinux kernel: nvidia_uvm: module uses symbols nvUvmInterfaceDisableAccessCntr from proprietary module nvidia, inheriting taint.
May 05 16:49:20 archlinux kernel: nvidia_drm: unknown parameter 'NVreg_PreserveVideoMemoryAllocations' ignored
May 05 16:49:20 archlinux kernel: nvidia_drm: unknown parameter 'NVreg_TemporaryFilePath' ignored
May 05 16:49:20 archlinux kernel: [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
May 05 16:49:20 archlinux kernel: usb 1-5.1: new full-speed USB device number 6 using xhci_hcd
May 05 16:49:20 archlinux kernel: usb 1-5.1: New USB device found, idVendor=048d, idProduct=c986, bcdDevice= 9.00
May 05 16:49:20 archlinux kernel: usb 1-5.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
May 05 16:49:20 archlinux kernel: usb 1-5.1: Product: ITE Device(8176)
May 05 16:49:20 archlinux kernel: usb 1-5.1: Manufacturer: ITE Tech. Inc.
May 05 16:49:20 archlinux kernel: input: ITE Tech. Inc. ITE Device(8176) Keyboard as /devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-5/1-5.1/1-5.1:1.0/0003:048D:C986.0005/input/input15
May 05 16:49:20 archlinux kernel: input: ITE Tech. Inc. ITE Device(8176) Wireless Radio Control as /devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-5/1-5.1/1-5.1:1.0/0003:048D:C986.0005/input/input16
May 05 16:49:20 archlinux kernel: hid-generic 0003:048D:C986.0005: input,hiddev98,hidraw4: USB HID v1.10 Keyboard [ITE Tech. Inc. ITE Device(8176)] on usb-0000:06:00.3-5.1/input0
May 05 16:49:20 archlinux kernel: ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.GPP0.PEGP.GPS.NVD1], AE_NOT_FOUND (20240827/psargs-332)
May 05 16:49:20 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP0.PEGP.GPS due to previous error (AE_NOT_FOUND) (20240827/psparse-529)
May 05 16:49:20 archlinux kernel: ACPI Error: Aborting method \_SB.PCI0.GPP0.PEGP._DSM due to previous error (AE_NOT_FOUND) (20240827/psparse-529)
May 05 16:49:20 archlinux kernel: nvidia-modeset: nvidia-modeset: ACPI reported no NVIDIA native backlight available; attempting to use ACPI backlight.
May 05 16:49:20 archlinux kernel: [drm] Initialized nvidia-drm 0.0.0 for 0000:01:00.0 on minor 0
May 05 16:49:20 archlinux kernel: nvidia 0000:01:00.0: [drm] Cannot find any crtc or sizes
May 05 16:49:20 archlinux kernel: i8042: PNP: PS/2 Controller [PNP0303:KBC0] at 0x60,0x64 irq 1
May 05 16:49:20 archlinux kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
May 05 16:49:20 archlinux kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
May 05 16:49:20 archlinux kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input17
May 05 16:49:20 archlinux kernel: [drm] amdgpu kernel modesetting enabled.
May 05 16:49:20 archlinux kernel: amdgpu: vga_switcheroo: detected switching method \_SB_.PCI0.GP17.VGA_.ATPX handle
May 05 16:49:20 archlinux kernel: amdgpu: ATPX version 1, functions 0x00000001
May 05 16:49:20 archlinux kernel: amdgpu: ATPX Hybrid Graphics
May 05 16:49:20 archlinux kernel: amdgpu: Virtual CRAT table created for CPU
May 05 16:49:20 archlinux kernel: amdgpu: Topology: Add CPU node
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: enabling device (0006 -> 0007)
May 05 16:49:20 archlinux kernel: [drm] initializing kernel modesetting (IP DISCOVERY 0x1002:0x15BF 0x17AA:0x3C93 0xC2).
May 05 16:49:20 archlinux kernel: [drm] register mmio base: 0xA1700000
May 05 16:49:20 archlinux kernel: [drm] register mmio size: 524288
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: detected ip block number 0 <soc21_common>
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: detected ip block number 1 <gmc_v11_0>
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: detected ip block number 2 <ih_v6_0>
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: detected ip block number 3 <psp>
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: detected ip block number 4 <smu>
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: detected ip block number 5 <dm>
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: detected ip block number 6 <gfx_v11_0>
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: detected ip block number 7 <sdma_v6_0>
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: detected ip block number 8 <vcn_v4_0>
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: detected ip block number 9 <jpeg_v4_0>
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: detected ip block number 10 <mes_v11_0>
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: Fetched VBIOS from VFCT
May 05 16:49:20 archlinux kernel: amdgpu: ATOM BIOS: 113-PHXGENERIC-001
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: vgaarb: deactivate vga console
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: Trusted Memory Zone (TMZ) feature enabled
May 05 16:49:20 archlinux kernel: [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: VRAM: 512M 0x0000008000000000 - 0x000000801FFFFFFF (512M used)
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: GART: 512M 0x00007FFF00000000 - 0x00007FFF1FFFFFFF
May 05 16:49:20 archlinux kernel: [drm] Detected VRAM RAM=512M, BAR=512M
May 05 16:49:20 archlinux kernel: [drm] RAM width 128bits DDR5
May 05 16:49:20 archlinux kernel: [drm] amdgpu: 512M of VRAM memory ready
May 05 16:49:20 archlinux kernel: [drm] amdgpu: 15633M of GTT memory ready.
May 05 16:49:20 archlinux kernel: [drm] GART: num cpu pages 131072, num gpu pages 131072
May 05 16:49:20 archlinux kernel: [drm] PCIE GART of 512M enabled (table at 0x0000008000900000).
May 05 16:49:20 archlinux kernel: [drm] Loading DMUB firmware via PSP: version=0x08004E00
May 05 16:49:20 archlinux kernel: [drm] Found VCN firmware Version ENC: 1.23 DEC: 9 VEP: 0 Revision: 15
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: reserve 0x4000000 from 0x8018000000 for PSP TMR
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: RAS: optional ras ta ucode is not available
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: RAP: optional rap ta ucode is not available
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: SMU is initialized successfully!
May 05 16:49:20 archlinux kernel: [drm] Seamless boot condition check passed
May 05 16:49:20 archlinux kernel: [drm] Display Core v3.2.316 initialized on DCN 3.1.4
May 05 16:49:20 archlinux kernel: [drm] DP-HDMI FRL PCON supported
May 05 16:49:20 archlinux kernel: [drm] DMUB hardware initialized: version=0x08004E00
May 05 16:49:20 archlinux kernel: [drm] PSR support 0, DC PSR ver -1, sink PSR ver 0 DPCD caps 0x2a su_y_granularity 0
May 05 16:49:20 archlinux kernel: kfd kfd: amdgpu: Allocated 3969056 bytes on gart
May 05 16:49:20 archlinux kernel: kfd kfd: amdgpu: Total number of KFD nodes to be created: 1
May 05 16:49:20 archlinux kernel: amdgpu: Virtual CRAT table created for GPU
May 05 16:49:20 archlinux kernel: amdgpu: Topology: Add dGPU node [0x15bf:0x1002]
May 05 16:49:20 archlinux kernel: kfd kfd: amdgpu: added device 1002:15bf
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: SE 1, SH per SE 2, CU per SH 6, active_cu_number 12
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 6 on hub 0
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 7 on hub 0
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 8 on hub 0
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 9 on hub 0
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 10 on hub 0
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 11 on hub 0
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: ring vcn_unified_0 uses VM inv eng 0 on hub 8
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: ring jpeg_dec uses VM inv eng 1 on hub 8
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: ring mes_kiq_3.1.0 uses VM inv eng 13 on hub 0
May 05 16:49:20 archlinux kernel: [drm] ring gfx_32768.1.1 was added
May 05 16:49:20 archlinux kernel: [drm] ring compute_32768.2.2 was added
May 05 16:49:20 archlinux kernel: [drm] ring sdma_32768.3.3 was added
May 05 16:49:20 archlinux kernel: [drm] ring gfx_32768.1.1 ib test pass
May 05 16:49:20 archlinux kernel: [drm] ring compute_32768.2.2 ib test pass
May 05 16:49:20 archlinux kernel: [drm] ring sdma_32768.3.3 ib test pass
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: Runtime PM not available
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: amdgpu: [drm] Skipping amdgpu DM backlight registration
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: [drm] Registered 4 planes with drm panic
May 05 16:49:20 archlinux kernel: [drm] Initialized amdgpu 3.61.0 for 0000:06:00.0 on minor 1
May 05 16:49:20 archlinux kernel: fbcon: amdgpudrmfb (fb0) is primary device
May 05 16:49:20 archlinux kernel: fbcon: Deferring console take-over
May 05 16:49:20 archlinux kernel: amdgpu 0000:06:00.0: [drm] fb0: amdgpudrmfb frame buffer device
May 05 16:49:20 archlinux kernel: fbcon: Taking over console
May 05 16:49:20 archlinux kernel: [drm] pre_validate_dsc:1601 MST_DSC dsc precompute is not needed
May 05 16:49:20 archlinux kernel: PM: Image not found (code -22)
May 05 16:49:20 archlinux kernel: BTRFS: device fsid f65d3ff4-e370-4ff0-8e10-e0daf66b7160 devid 1 transid 22253 /dev/nvme1n1p2 (259:2) scanned by mount (381)
May 05 16:49:20 archlinux kernel: BTRFS info (device nvme1n1p2): first mount of filesystem f65d3ff4-e370-4ff0-8e10-e0daf66b7160
May 05 16:49:20 archlinux kernel: BTRFS info (device nvme1n1p2): using crc32c (crc32c-x86) checksum algorithm
May 05 16:49:20 archlinux kernel: BTRFS info (device nvme1n1p2): using free-space-tree
May 05 16:49:20 archlinux systemd[1]: RTC configured in localtime, applying delta of 120 minutes to system time.
May 05 16:49:20 archlinux kernel: Console: switching to colour frame buffer device 240x75
May 05 16:49:20 archlinux systemd[1]: systemd 257.5-2-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)
May 05 16:49:20 archlinux systemd[1]: Detected architecture x86-64.
May 05 16:49:20 archlinux systemd[1]: bpf-restrict-fs: LSM BPF program attached
May 05 16:49:20 archlinux kernel: zram: Added device: zram0
May 05 16:49:20 archlinux systemd[1]: Queued start job for default target Graphical Interface.
May 05 16:49:20 archlinux systemd[1]: Unnecessary job was removed for /dev/zram0.
May 05 16:49:20 archlinux systemd[1]: Created slice Slice /system/dirmngr.
May 05 16:49:20 archlinux systemd[1]: Created slice Slice /system/getty.
May 05 16:49:20 archlinux systemd[1]: Created slice Slice /system/gpg-agent.
May 05 16:49:20 archlinux systemd[1]: Created slice Slice /system/gpg-agent-browser.
May 05 16:49:20 archlinux systemd[1]: Created slice Slice /system/gpg-agent-extra.
May 05 16:49:20 archlinux systemd[1]: Created slice Slice /system/gpg-agent-ssh.
May 05 16:49:20 archlinux systemd[1]: Created slice Slice /system/keyboxd.
May 05 16:49:20 archlinux systemd[1]: Created slice Slice /system/modprobe.
May 05 16:49:20 archlinux systemd[1]: Created slice User and Session Slice.
May 05 16:49:20 archlinux systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
May 05 16:49:20 archlinux systemd[1]: Started Forward Password Requests to Wall Directory Watch.
May 05 16:49:20 archlinux systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
May 05 16:49:20 archlinux systemd[1]: Expecting device /dev/disk/by-uuid/69FE-7BB5...
May 05 16:49:20 archlinux systemd[1]: Expecting device /dev/disk/by-uuid/bb693642-f4a1-49ba-828c-34c639d1d794...
May 05 16:49:20 archlinux systemd[1]: Expecting device /dev/disk/by-uuid/f65d3ff4-e370-4ff0-8e10-e0daf66b7160...
May 05 16:49:20 archlinux systemd[1]: Reached target Local Encrypted Volumes.
May 05 16:49:20 archlinux systemd[1]: Reached target Login Prompts.
May 05 16:49:20 archlinux systemd[1]: Reached target Local Integrity Protected Volumes.
May 05 16:49:20 archlinux systemd[1]: Reached target Path Units.
May 05 16:49:20 archlinux systemd[1]: Reached target Slice Units.
May 05 16:49:20 archlinux systemd[1]: Reached target Local Verity Protected Volumes.
May 05 16:49:20 archlinux systemd[1]: Listening on Device-mapper event daemon FIFOs.
May 05 16:49:20 archlinux systemd[1]: Listening on Process Core Dump Socket.
May 05 16:49:20 archlinux systemd[1]: Listening on Credential Encryption/Decryption.
May 05 16:49:20 archlinux systemd[1]: Listening on Journal Socket (/dev/log).
May 05 16:49:20 archlinux systemd[1]: Listening on Journal Sockets.
May 05 16:49:20 archlinux systemd[1]: TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 05 16:49:20 archlinux systemd[1]: Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 05 16:49:20 archlinux systemd[1]: Listening on udev Control Socket.
May 05 16:49:20 archlinux systemd[1]: Listening on udev Kernel Socket.
May 05 16:49:20 archlinux systemd[1]: Listening on User Database Manager Socket.
May 05 16:49:20 archlinux systemd[1]: Mounting /dev/hugepages...
May 05 16:49:20 archlinux systemd[1]: Mounting POSIX Message Queue File System...
May 05 16:49:20 archlinux systemd[1]: Mounting Kernel Debug File System...
May 05 16:49:20 archlinux systemd[1]: Mounting Kernel Trace File System...
May 05 16:49:20 archlinux systemd[1]: Starting Create List of Static Device Nodes...
May 05 16:49:20 archlinux systemd[1]: Starting Load Kernel Module configfs...
May 05 16:49:20 archlinux systemd[1]: Starting Load Kernel Module dm_mod...
May 05 16:49:20 archlinux systemd[1]: Starting Load Kernel Module drm...
May 05 16:49:20 archlinux systemd[1]: Starting Load Kernel Module fuse...
May 05 16:49:20 archlinux systemd[1]: Starting Load Kernel Module loop...
May 05 16:49:20 archlinux 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).
May 05 16:49:20 archlinux systemd[1]: Starting Journal Service...
May 05 16:49:20 archlinux systemd[1]: Starting Load Kernel Modules...
May 05 16:49:20 archlinux systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 05 16:49:20 archlinux systemd[1]: Starting Remount Root and Kernel File Systems...
May 05 16:49:20 archlinux systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 05 16:49:20 archlinux systemd[1]: Starting Load udev Rules from Credentials...
May 05 16:49:20 archlinux systemd[1]: Starting Coldplug All udev Devices...
May 05 16:49:20 archlinux systemd[1]: Mounted POSIX Message Queue File System.
May 05 16:49:20 archlinux systemd[1]: Mounted Kernel Debug File System.
May 05 16:49:20 archlinux systemd[1]: Mounted Kernel Trace File System.
May 05 16:49:20 archlinux systemd[1]: Finished Create List of Static Device Nodes.
May 05 16:49:20 archlinux systemd[1]: modprobe@configfs.service: Deactivated successfully.
May 05 16:49:20 archlinux systemd[1]: Finished Load Kernel Module configfs.
May 05 16:49:20 archlinux systemd[1]: modprobe@drm.service: Deactivated successfully.
May 05 16:49:20 archlinux systemd[1]: Finished Load Kernel Module drm.
May 05 16:49:20 archlinux kernel: loop: module loaded
May 05 16:49:20 archlinux systemd[1]: modprobe@fuse.service: Deactivated successfully.
May 05 16:49:20 archlinux systemd[1]: Finished Load Kernel Module fuse.
May 05 16:49:20 archlinux systemd[1]: modprobe@loop.service: Deactivated successfully.
May 05 16:49:20 archlinux systemd[1]: Finished Load Kernel Module loop.
May 05 16:49:20 archlinux systemd[1]: Mounting FUSE Control File System...
May 05 16:49:20 archlinux kernel: device-mapper: uevent: version 1.0.3
May 05 16:49:20 archlinux kernel: device-mapper: ioctl: 4.49.0-ioctl (2025-01-17) initialised: dm-devel@lists.linux.dev
May 05 16:49:20 archlinux systemd[1]: Mounting Kernel Configuration File System...
May 05 16:49:20 archlinux systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
May 05 16:49:20 archlinux systemd[1]: Starting User Database Manager...
May 05 16:49:20 archlinux systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
May 05 16:49:20 archlinux systemd[1]: Finished Load Kernel Module dm_mod.
May 05 16:49:20 archlinux systemd-journald[449]: Collecting audit messages is disabled.
May 05 16:49:20 archlinux systemd[1]: Finished Load udev Rules from Credentials.
May 05 16:49:20 archlinux systemd[1]: Mounted FUSE Control File System.
May 05 16:49:20 archlinux systemd[1]: Mounted Kernel Configuration File System.
May 05 16:49:20 archlinux systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
May 05 16:49:20 archlinux kernel: i2c_dev: i2c /dev entries driver
May 05 16:49:20 archlinux kernel: kvmfr: creating 1 static devices
May 05 16:49:20 archlinux kernel: kvmfr: kvmfr_module_init: module loaded
May 05 16:49:20 archlinux kernel: Asymmetric key parser 'pkcs8' registered
May 05 16:49:20 archlinux systemd[1]: Finished Load Kernel Modules.
May 05 16:49:20 archlinux systemd[1]: Starting Apply Kernel Variables...
May 05 16:49:20 archlinux systemd-journald[449]: Journal started
May 05 16:49:20 archlinux systemd-journald[449]: Runtime Journal (/run/log/journal/194d448e2e6a4d9e9d1fe7fd99c14e77) is 8M, max 1.5G, 1.5G free.
May 05 16:49:20 archlinux systemd-modules-load[450]: Inserted module 'crypto_user'
May 05 16:49:20 archlinux systemd[1]: Started Journal Service.
May 05 16:49:20 archlinux systemd-modules-load[450]: Inserted module 'sg'
May 05 16:49:20 archlinux systemd-modules-load[450]: Inserted module 'i2c_dev'
May 05 16:49:20 archlinux systemd-modules-load[450]: Inserted module 'kvmfr'
May 05 16:49:20 archlinux systemd-modules-load[450]: Inserted module 'pkcs8_key_parser'
May 05 16:49:21 archlinux systemd[1]: Finished Coldplug All udev Devices.
May 05 16:49:21 archlinux kernel: BTRFS info (device nvme1n1p2 state M): use zstd compression, level 3
May 05 16:49:21 archlinux systemd[1]: Finished Remount Root and Kernel File Systems.
May 05 16:49:21 archlinux systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
May 05 16:49:21 archlinux systemd[1]: Starting Load/Save OS Random Seed...
May 05 16:49:21 archlinux systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 05 16:49:21 archlinux systemd[1]: Started User Database Manager.
May 05 16:49:21 archlinux systemd[1]: Mounted /dev/hugepages.
May 05 16:49:21 archlinux systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
May 05 16:49:21 archlinux systemd[1]: Create System Users was skipped because no trigger condition checks were met.
May 05 16:49:21 archlinux systemd[1]: Starting Network Time Synchronization...
May 05 16:49:21 archlinux systemd[1]: Starting Create Static Device Nodes in /dev...
May 05 16:49:21 archlinux systemd[1]: Finished Load/Save OS Random Seed.
May 05 16:49:21 archlinux systemd[1]: Finished Create Static Device Nodes in /dev.
May 05 16:49:21 archlinux systemd[1]: Reached target Preparation for Local File Systems.
May 05 16:49:21 archlinux systemd[1]: Starting Rule-based Manager for Device Events and Files...
May 05 16:49:21 archlinux systemd-timesyncd[488]: The system is configured to read the RTC time in the local time zone. This mode cannot be fully supported. All system time to RTC updates are disabled.
May 05 16:49:21 archlinux systemd[1]: Started Network Time Synchronization.
May 05 16:49:21 archlinux systemd[1]: Reached target System Time Set.
May 05 16:49:21 archlinux systemd-udevd[497]: Using default interface naming scheme 'v257'.
May 05 16:49:21 archlinux systemd[1]: Started Rule-based Manager for Device Events and Files.
May 05 16:49:21 archlinux systemd[1]: Condition check resulted in /dev/tpmrm0 being skipped.
May 05 16:49:21 archlinux systemd[1]: Reached target Trusted Platform Module.
May 05 16:49:21 archlinux mtp-probe[555]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-2"
May 05 16:49:21 archlinux mtp-probe[556]: checking bus 1, device 6: "/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-5/1-5.1"
May 05 16:49:21 archlinux mtp-probe[555]: bus: 1, device: 2 was not an MTP device
May 05 16:49:21 archlinux mtp-probe[556]: bus: 1, device: 6 was not an MTP device
May 05 16:49:21 archlinux kernel: mousedev: PS/2 mouse device common for all mice
May 05 16:49:21 archlinux mtp-probe[568]: checking bus 1, device 4: "/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-4"
May 05 16:49:21 archlinux kernel: ccp 0000:06:00.2: enabling device (0000 -> 0002)
May 05 16:49:21 archlinux kernel: ccp 0000:06:00.2: tee enabled
May 05 16:49:21 archlinux kernel: ccp 0000:06:00.2: psp enabled
May 05 16:49:21 archlinux mtp-probe[569]: checking bus 1, device 3: "/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-3"
May 05 16:49:21 archlinux systemd[1]: Found device Samsung SSD 970 EVO 1TB 1.
May 05 16:49:21 archlinux mtp-probe[569]: bus: 1, device: 3 was not an MTP device
May 05 16:49:21 archlinux kernel: input: PC Speaker as /devices/platform/pcspkr/input/input18
May 05 16:49:21 archlinux kernel: mc: Linux media interface: v0.10
May 05 16:49:21 archlinux systemd[1]: Found device Samsung SSD 970 EVO 1TB primary.
May 05 16:49:21 archlinux kernel: RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
May 05 16:49:21 archlinux kernel: RAPL PMU: hw unit of domain package 2^-16 Joules
May 05 16:49:21 archlinux kernel: RAPL PMU: hw unit of domain core 2^-16 Joules
May 05 16:49:21 archlinux mtp-probe[568]: bus: 1, device: 4 was not an MTP device
May 05 16:49:21 archlinux kernel: cryptd: max_cpu_qlen set to 1000
May 05 16:49:21 archlinux systemd[1]: Found device Samsung SSD 970 EVO 1TB 2.
May 05 16:49:21 archlinux systemd[1]: Activating swap /dev/disk/by-uuid/bb693642-f4a1-49ba-828c-34c639d1d794...
May 05 16:49:21 archlinux kernel: Bluetooth: Core ver 2.22
May 05 16:49:21 archlinux kernel: NET: Registered PF_BLUETOOTH protocol family
May 05 16:49:21 archlinux kernel: Bluetooth: HCI device and connection manager initialized
May 05 16:49:21 archlinux kernel: Bluetooth: HCI socket layer initialized
May 05 16:49:21 archlinux kernel: Bluetooth: L2CAP socket layer initialized
May 05 16:49:21 archlinux kernel: Bluetooth: SCO socket layer initialized
May 05 16:49:21 archlinux kernel: Adding 31449084k swap on /dev/nvme1n1p3. Priority:-2 extents:1 across:31449084k SS
May 05 16:49:21 archlinux systemd[1]: Activated swap /dev/disk/by-uuid/bb693642-f4a1-49ba-828c-34c639d1d794.
May 05 16:49:21 archlinux systemd[1]: Reached target Swaps.
May 05 16:49:21 archlinux systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
May 05 16:49:21 archlinux systemd[1]: Starting Virtual Console Setup...
May 05 16:49:21 archlinux kernel: input: FOCA0001:00 2808:0106 Mouse as /devices/platform/AMDI0010:00/i2c-0/i2c-FOCA0001:00/0018:2808:0106.0006/input/input19
May 05 16:49:21 archlinux kernel: input: FOCA0001:00 2808:0106 Touchpad as /devices/platform/AMDI0010:00/i2c-0/i2c-FOCA0001:00/0018:2808:0106.0006/input/input20
May 05 16:49:21 archlinux kernel: hid-generic 0018:2808:0106.0006: input,hidraw5: I2C HID v1.00 Mouse [FOCA0001:00 2808:0106] on i2c-FOCA0001:00
May 05 16:49:21 archlinux systemd[1]: Finished Apply Kernel Variables.
May 05 16:49:21 archlinux systemd[1]: Created slice Slice /system/systemd-backlight.
May 05 16:49:21 archlinux kernel: piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
May 05 16:49:21 archlinux kernel: piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
May 05 16:49:21 archlinux kernel: AES CTR mode by8 optimization enabled
May 05 16:49:21 archlinux kernel: piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
May 05 16:49:21 archlinux kernel: i2c i2c-26: Successfully instantiated SPD at 0x50
May 05 16:49:21 archlinux kernel: i2c i2c-26: Successfully instantiated SPD at 0x51
May 05 16:49:21 archlinux systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:nvidia_wmi_ec_backlight...
May 05 16:49:21 archlinux kernel: input: Ideapad extra buttons as /devices/pci0000:00/0000:00:14.3/PNP0C09:00/VPC2004:00/input/input22
May 05 16:49:21 archlinux kernel: sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
May 05 16:49:21 archlinux kernel: sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
May 05 16:49:21 archlinux kernel: sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
May 05 16:49:21 archlinux kernel: videodev: Linux video capture interface: v2.00
May 05 16:49:21 archlinux kernel: usbcore: registered new interface driver btusb
May 05 16:49:21 archlinux kernel: r8169 0000:02:00.0 eth0: RTL8168h/8111h, 08:8f:c3:fe:eb:3e, XID 541, IRQ 91
May 05 16:49:21 archlinux kernel: r8169 0000:02:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
May 05 16:49:21 archlinux kernel: Bluetooth: hci0: HW/SW Version: 0x008a008a, Build Time: 20241106151414
May 05 16:49:21 archlinux kernel: r8169 0000:02:00.0 enp2s0: renamed from eth0
May 05 16:49:21 archlinux systemd[1]: Finished Virtual Console Setup.
May 05 16:49:21 archlinux systemd[1]: Starting Load Kernel Module dm_mod...
May 05 16:49:21 archlinux systemd[1]: Starting Load Kernel Module loop...
May 05 16:49:21 archlinux 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).
May 05 16:49:21 archlinux systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
May 05 16:49:21 archlinux systemd[1]: TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 05 16:49:21 archlinux systemd[1]: Starting Load/Save RF Kill Switch Status...
May 05 16:49:21 archlinux systemd[1]: Create System Users was skipped because no trigger condition checks were met.
May 05 16:49:21 archlinux systemd[1]: Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 05 16:49:21 archlinux systemd[1]: TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 05 16:49:21 archlinux systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:nvidia_wmi_ec_backlight.
May 05 16:49:21 archlinux systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
May 05 16:49:21 archlinux systemd[1]: Finished Load Kernel Module dm_mod.
May 05 16:49:21 archlinux systemd[1]: modprobe@loop.service: Deactivated successfully.
May 05 16:49:21 archlinux systemd[1]: Finished Load Kernel Module loop.
May 05 16:49:21 archlinux systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
May 05 16:49:21 archlinux systemd[1]: Started Load/Save RF Kill Switch Status.
May 05 16:49:21 archlinux kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
May 05 16:49:21 archlinux kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
May 05 16:49:21 archlinux kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
May 05 16:49:21 archlinux kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
May 05 16:49:21 archlinux kernel: cfg80211: failed to load regulatory.db
May 05 16:49:21 archlinux kernel: usb 1-3: Found UVC 1.50 device Integrated Camera (30c9:00a7)
May 05 16:49:21 archlinux kernel: usbcore: registered new interface driver uvcvideo
May 05 16:49:21 archlinux kernel: input: FOCA0001:00 2808:0106 Mouse as /devices/platform/AMDI0010:00/i2c-0/i2c-FOCA0001:00/0018:2808:0106.0006/input/input23
May 05 16:49:21 archlinux kernel: input: FOCA0001:00 2808:0106 Touchpad as /devices/platform/AMDI0010:00/i2c-0/i2c-FOCA0001:00/0018:2808:0106.0006/input/input24
May 05 16:49:21 archlinux kernel: hid-multitouch 0018:2808:0106.0006: input,hidraw5: I2C HID v1.00 Mouse [FOCA0001:00 2808:0106] on i2c-FOCA0001:00
May 05 16:49:21 archlinux kernel: ideapad_acpi VPC2004:00: DYTC interface is not available
May 05 16:49:21 archlinux systemd[1]: Starting Load/Save Screen Backlight Brightness of leds:platform::kbd_backlight...
May 05 16:49:21 archlinux kernel: snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
May 05 16:49:21 archlinux kernel: snd_hda_intel 0000:01:00.1: Disabling MSI
May 05 16:49:21 archlinux kernel: snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
May 05 16:49:21 archlinux kernel: snd_hda_intel 0000:06:00.6: enabling device (0000 -> 0002)
May 05 16:49:21 archlinux kernel: kvm_amd: TSC scaling supported
May 05 16:49:21 archlinux kernel: kvm_amd: Nested Virtualization enabled
May 05 16:49:21 archlinux kernel: kvm_amd: Nested Paging enabled
May 05 16:49:21 archlinux kernel: kvm_amd: LBR virtualization supported
May 05 16:49:21 archlinux kernel: kvm_amd: Virtual GIF supported
May 05 16:49:21 archlinux kernel: kvm_amd: Virtual NMI enabled
May 05 16:49:21 archlinux kernel: input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/0000:01:00.1/sound/card0/input26
May 05 16:49:21 archlinux kernel: input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.1/0000:01:00.1/sound/card0/input27
May 05 16:49:21 archlinux kernel: input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.1/0000:01:00.1/sound/card0/input28
May 05 16:49:21 archlinux kernel: input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.1/0000:01:00.1/sound/card0/input29
May 05 16:49:21 archlinux systemd[1]: Reached target Sound Card.
May 05 16:49:21 archlinux systemd[1]: Finished Load/Save Screen Backlight Brightness of leds:platform::kbd_backlight.
May 05 16:49:21 archlinux kernel: mt7921e 0000:03:00.0: enabling device (0000 -> 0002)
May 05 16:49:21 archlinux kernel: snd_hda_codec_realtek hdaudioC1D0: ALC257: picked fixup for PCI SSID 17aa:3870
May 05 16:49:21 archlinux kernel: snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC257: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
May 05 16:49:21 archlinux kernel: snd_hda_codec_realtek hdaudioC1D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
May 05 16:49:21 archlinux kernel: snd_hda_codec_realtek hdaudioC1D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
May 05 16:49:21 archlinux kernel: snd_hda_codec_realtek hdaudioC1D0: mono: mono_out=0x0
May 05 16:49:21 archlinux kernel: snd_hda_codec_realtek hdaudioC1D0: inputs:
May 05 16:49:21 archlinux kernel: snd_hda_codec_realtek hdaudioC1D0: Internal Mic=0x12
May 05 16:49:21 archlinux kernel: snd_hda_codec_realtek hdaudioC1D0: Mic=0x19
May 05 16:49:21 archlinux kernel: snd_pci_ps 0000:06:00.5: enabling device (0000 -> 0002)
May 05 16:49:21 archlinux kernel: mt7921e 0000:03:00.0: ASIC revision: 79610010
May 05 16:49:21 archlinux kernel: intel_rapl_common: Found RAPL domain package
May 05 16:49:21 archlinux kernel: intel_rapl_common: Found RAPL domain core
May 05 16:49:21 archlinux kernel: amd_atl: AMD Address Translation Library initialized
May 05 16:49:21 archlinux kernel: input: HD-Audio Generic Mic as /devices/pci0000:00/0000:00:08.1/0000:06:00.6/sound/card1/input30
May 05 16:49:21 archlinux kernel: input: HD-Audio Generic Headphone as /devices/pci0000:00/0000:00:08.1/0000:06:00.6/sound/card1/input31
May 05 16:49:21 archlinux kernel: mt7921e 0000:03:00.0: HW/SW Version: 0x8a108a10, Build Time: 20241106151007a
May 05 16:49:21 archlinux kernel: mt7921e 0000:03:00.0: WM Firmware Version: ____010000, Build Time: 20241106151045
May 05 16:49:21 archlinux systemd[1]: Mounting /.snapshots...
May 05 16:49:21 archlinux systemd[1]: Mounting /boot...
May 05 16:49:21 archlinux systemd[1]: Mounting /home...
May 05 16:49:21 archlinux systemd[1]: Mounting Temporary Directory /tmp...
May 05 16:49:21 archlinux systemd[1]: Mounting /var/cache/pacman/pkg...
May 05 16:49:21 archlinux systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
May 05 16:49:21 archlinux systemd[1]: Listening on Disk Image Download Service Socket.
May 05 16:49:21 archlinux systemd-timesyncd[488]: Network configuration changed, trying to establish connection.
May 05 16:49:21 archlinux systemd[1]: Mounting /var/log...
May 05 16:49:21 archlinux systemd[1]: Mounted Temporary Directory /tmp.
May 05 16:49:21 archlinux systemd[1]: Mounted /.snapshots.
May 05 16:49:21 archlinux systemd[1]: Mounted /var/cache/pacman/pkg.
May 05 16:49:21 archlinux systemd[1]: Mounted /var/log.
May 05 16:49:21 archlinux systemd[1]: Starting Flush Journal to Persistent Storage...
May 05 16:49:21 archlinux systemd[1]: Mounted /home.
May 05 16:49:21 archlinux kernel: FAT-fs (nvme1n1p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
May 05 16:49:21 archlinux systemd-journald[449]: Time spent on flushing to /var/log/journal/194d448e2e6a4d9e9d1fe7fd99c14e77 is 10.454ms for 1432 entries.
May 05 16:49:21 archlinux systemd-journald[449]: System Journal (/var/log/journal/194d448e2e6a4d9e9d1fe7fd99c14e77) is 816M, max 4G, 3.2G free.
May 05 16:49:22 archlinux systemd-journald[449]: Received client request to flush runtime journal.
May 05 16:49:22 archlinux systemd-journald[449]: File /var/log/journal/194d448e2e6a4d9e9d1fe7fd99c14e77/system.journal corrupted or uncleanly shut down, renaming and replacing.
May 05 16:49:21 archlinux systemd[1]: Mounted /boot.
May 05 16:49:21 archlinux systemd[1]: Reached target Local File Systems.
May 05 16:49:21 archlinux systemd[1]: Listening on Boot Entries Service Socket.
May 05 16:49:21 archlinux systemd-timesyncd[488]: Network configuration changed, trying to establish connection.
May 05 16:49:21 archlinux systemd[1]: Listening on System Extension Image Management.
May 05 16:49:21 archlinux systemd-timesyncd[488]: Network configuration changed, trying to establish connection.
May 05 16:49:21 archlinux systemd[1]: Starting Set Up Additional Binary Formats...
May 05 16:49:21 archlinux systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
May 05 16:49:21 archlinux systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 652 (systemd-binfmt)
May 05 16:49:22 archlinux systemd[1]: Finished Flush Journal to Persistent Storage.
May 05 16:49:22 archlinux systemd[1]: Starting Create System Files and Directories...
May 05 16:49:22 archlinux systemd-timesyncd[488]: Network configuration changed, trying to establish connection.
May 05 16:49:22 archlinux systemd-timesyncd[488]: Network configuration changed, trying to establish connection.
May 05 16:49:22 archlinux systemd-timesyncd[488]: Network configuration changed, trying to establish connection.
May 05 16:49:22 archlinux systemd[1]: Finished Create System Files and Directories.
May 05 16:49:22 archlinux systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
May 05 16:49:22 archlinux systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 05 16:49:22 archlinux systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
May 05 16:49:22 archlinux systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
May 05 16:49:22 archlinux systemd[1]: Save Transient machine-id to Disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
May 05 16:49:22 archlinux systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
May 05 16:49:22 archlinux systemd[1]: Starting Record System Boot/Shutdown in UTMP...
May 05 16:49:22 archlinux systemd[1]: Finished Record System Boot/Shutdown in UTMP.
May 05 16:49:22 archlinux systemd[1]: Mounting Arbitrary Executable File Formats File System...
May 05 16:49:22 archlinux systemd[1]: Mounted Arbitrary Executable File Formats File System.
May 05 16:49:22 archlinux systemd[1]: Finished Set Up Additional Binary Formats.
May 05 16:49:22 archlinux systemd[1]: Reached target System Initialization.
May 05 16:49:22 archlinux systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
May 05 16:49:22 archlinux systemd[1]: Started Refresh Pacman mirrorlist weekly with Reflector..
May 05 16:49:22 archlinux systemd[1]: Started Daily verification of password and group files.
May 05 16:49:22 archlinux systemd[1]: Started Daily Cleanup of Temporary Directories.
May 05 16:49:22 archlinux systemd[1]: Reached target Timer Units.
May 05 16:49:22 archlinux systemd[1]: Listening on D-Bus System Message Bus Socket.
May 05 16:49:22 archlinux systemd[1]: Listening on GnuPG network certificate management daemon for /etc/pacman.d/gnupg.
May 05 16:49:22 archlinux systemd[1]: Starting Docker Socket for the API...
May 05 16:49:22 archlinux systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers) for /etc/pacman.d/gnupg.
May 05 16:49:22 archlinux systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache (restricted) for /etc/pacman.d/gnupg.
May 05 16:49:22 archlinux systemd[1]: Listening on GnuPG cryptographic agent (ssh-agent emulation) for /etc/pacman.d/gnupg.
May 05 16:49:22 archlinux systemd[1]: Listening on GnuPG cryptographic agent and passphrase cache for /etc/pacman.d/gnupg.
May 05 16:49:22 archlinux systemd[1]: Listening on GnuPG public key management service for /etc/pacman.d/gnupg.
May 05 16:49:22 archlinux systemd[1]: Listening on libvirt legacy monolithic daemon socket.
May 05 16:49:22 archlinux systemd[1]: Listening on libvirt legacy monolithic daemon admin socket.
May 05 16:49:22 archlinux systemd[1]: Listening on libvirt legacy monolithic daemon read-only socket.
May 05 16:49:22 archlinux systemd[1]: Listening on OpenSSH Server Socket (systemd-ssh-generator, AF_UNIX Local).
May 05 16:49:22 archlinux systemd[1]: Listening on Hostname Service Socket.
May 05 16:49:22 archlinux systemd[1]: Starting D-Bus System Message Bus...
May 05 16:49:22 archlinux systemd[1]: TPM PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 05 16:49:22 archlinux systemd[1]: Listening on Docker Socket for the API.
May 05 16:49:22 archlinux systemd[1]: Reached target Socket Units.
May 05 16:49:23 archlinux systemd[1]: Started D-Bus System Message Bus.
May 05 16:49:23 archlinux systemd[1]: Reached target Basic System.
May 05 16:49:23 archlinux systemd[1]: System is tainted: local-hwclock
May 05 16:49:23 archlinux systemd[1]: Starting Network Manager...
May 05 16:49:23 archlinux systemd[1]: Starting Bluetooth service...
May 05 16:49:23 archlinux systemd[1]: Starting User Login Management...
May 05 16:49:23 archlinux dbus-broker-launch[674]: Ready
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.0478] NetworkManager (version 1.52.0-1) is starting... (boot:4d34d274-9617-48bd-8222-1c1ed5985ade)
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.0478] Read config: /etc/NetworkManager/NetworkManager.conf, /usr/lib/NetworkManager/conf.d/20-connectivity.conf, /etc/NetworkManager/conf.d/wgpia.conf
May 05 16:49:23 archlinux bluetoothd[677]: Bluetooth daemon 5.82
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.0520] manager[0x5c3bb727f500]: monitoring kernel firmware directory '/lib/firmware'.
May 05 16:49:23 archlinux systemd[1]: Started Bluetooth service.
May 05 16:49:23 archlinux bluetoothd[677]: Starting SDP server
May 05 16:49:23 archlinux systemd[1]: Reached target Bluetooth Support.
May 05 16:49:23 archlinux systemd[1]: Starting Hostname Service...
May 05 16:49:23 archlinux kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
May 05 16:49:23 archlinux kernel: Bluetooth: BNEP filters: protocol multicast
May 05 16:49:23 archlinux kernel: Bluetooth: BNEP socket layer initialized
May 05 16:49:23 archlinux bluetoothd[677]: Bluetooth management interface 1.23 initialized
May 05 16:49:23 archlinux systemd-logind[678]: New seat seat0.
May 05 16:49:23 archlinux systemd-logind[678]: Watching system buttons on /dev/input/event0 (Power Button)
May 05 16:49:23 archlinux systemd-logind[678]: Watching system buttons on /dev/input/event1 (Lid Switch)
May 05 16:49:23 archlinux systemd-logind[678]: Watching system buttons on /dev/input/event2 (Logitech G305)
May 05 16:49:23 archlinux systemd-logind[678]: Watching system buttons on /dev/input/event5 (ITE Tech. Inc. ITE Device(8176) Keyboard)
May 05 16:49:23 archlinux systemd-logind[678]: Watching system buttons on /dev/input/event7 (AT Translated Set 2 keyboard)
May 05 16:49:23 archlinux systemd[1]: Started User Login Management.
May 05 16:49:23 archlinux systemd[1]: Started Hostname Service.
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1104] hostname: hostname: using hostnamed
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1105] hostname: static hostname changed from (none) to "archlinux"
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1109] dns-mgr: init: dns=default,systemd-resolved rc-manager=symlink
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1140] rfkill3: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:02.2/0000:03:00.0/ieee80211/phy0/rfkill3) (driver mt7921e)
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1145] rfkill1: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:14.3/PNP0C09:00/VPC2004:00/rfkill/rfkill1) (platform driver ideapad_acpi)
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1252] manager[0x5c3bb727f500]: rfkill: Wi-Fi hardware radio set enabled
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1253] manager[0x5c3bb727f500]: rfkill: WWAN hardware radio set enabled
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1284] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.52.0-1/libnm-device-plugin-adsl.so)
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1328] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.52.0-1/libnm-device-plugin-bluetooth.so)
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1342] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.52.0-1/libnm-device-plugin-ovs.so)
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1539] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.52.0-1/libnm-device-plugin-team.so)
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1555] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.52.0-1/libnm-device-plugin-wifi.so)
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1559] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.52.0-1/libnm-device-plugin-wwan.so)
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1561] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1562] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1562] manager: Networking is enabled by state file
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1567] settings: Loaded settings plugin: keyfile (internal)
May 05 16:49:23 archlinux systemd[1]: Starting Network Manager Script Dispatcher Service...
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1603] dhcp: init: Using DHCP client 'internal'
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1605] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1)
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1610] device (lo): state change: unmanaged -> unavailable (reason 'connection-assumed', managed-type: 'external')
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1612] device (lo): state change: unavailable -> disconnected (reason 'connection-assumed', managed-type: 'external')
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1615] device (lo): Activation: starting connection 'lo' (53417198-465b-4ed8-b929-4c7c608d9e0a)
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1619] manager: (enp2s0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1624] settings: (enp2s0): created default wired connection 'Wired connection 1'
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.1624] device (enp2s0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
May 05 16:49:23 archlinux kernel: Generic FE-GE Realtek PHY r8169-0-200:00: attached PHY driver (mii_bus:phy_addr=r8169-0-200:00, irq=MAC)
May 05 16:49:23 archlinux systemd[1]: Started Network Manager Script Dispatcher Service.
May 05 16:49:23 archlinux kernel: r8169 0000:02:00.0 enp2s0: Link is Down
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.3527] device (wlan0): driver supports Access Point (AP) mode
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.3531] manager: (wlan0): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/3)
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.3532] device (wlan0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.9210] device (wlan0): set-hw-addr: set MAC address to CA:9E:93:73:A3:AF (scanning)
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.9457] manager: (Ubuntu): new WireGuard device (/org/freedesktop/NetworkManager/Devices/4)
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.9461] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.9468] ovsdb: disconnected from ovsdb
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.9468] device (lo): state change: disconnected -> prepare (reason 'none', managed-type: 'external')
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.9469] device (lo): state change: prepare -> config (reason 'none', managed-type: 'external')
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.9470] device (lo): state change: config -> ip-config (reason 'none', managed-type: 'external')
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.9473] device (lo): state change: ip-config -> ip-check (reason 'none', managed-type: 'external')
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.9479] device (lo): state change: ip-check -> secondaries (reason 'none', managed-type: 'external')
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.9480] device (lo): state change: secondaries -> activated (reason 'none', managed-type: 'external')
May 05 16:49:23 archlinux NetworkManager[676]: <info> [1746456563.9482] device (lo): Activation: successful, device activated.
May 05 16:49:23 archlinux systemd[1]: Started Network Manager.
May 05 16:49:23 archlinux systemd[1]: Starting Network Manager Wait Online...
May 05 16:49:23 archlinux systemd[1]: Starting WPA supplicant...
May 05 16:49:23 archlinux wpa_supplicant[718]: Successfully initialized wpa_supplicant
May 05 16:49:23 archlinux systemd[1]: Started WPA supplicant.
May 05 16:49:23 archlinux systemd[1]: Reached target Network.
May 05 16:49:23 archlinux systemd[1]: Starting containerd container runtime...
May 05 16:49:23 archlinux systemd[1]: Started Private Internet Access daemon.
May 05 16:49:24 archlinux NetworkManager[676]: <info> [1746456564.0302] device (wlan0): supplicant interface state: internal-starting -> disconnected
May 05 16:49:24 archlinux NetworkManager[676]: <info> [1746456564.0303] Wi-Fi P2P device controlled by interface wlan0 created
May 05 16:49:24 archlinux NetworkManager[676]: <info> [1746456564.0305] manager: (p2p-dev-wlan0): new 802.11 Wi-Fi P2P device (/org/freedesktop/NetworkManager/Devices/5)
May 05 16:49:24 archlinux NetworkManager[676]: <info> [1746456564.0306] device (p2p-dev-wlan0): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
May 05 16:49:24 archlinux NetworkManager[676]: <info> [1746456564.0308] device (wlan0): state change: unavailable -> disconnected (reason 'supplicant-available', managed-type: 'full')
May 05 16:49:24 archlinux NetworkManager[676]: <info> [1746456564.0313] device (p2p-dev-wlan0): state change: unavailable -> disconnected (reason 'none', managed-type: 'full')
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.063238240+02:00" level=info msg="starting containerd" revision=fb4c30d4ede3531652d86197bf3fc9515e5276d9.m version=v2.0.5
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.068828423+02:00" level=info msg="loading plugin" id=io.containerd.image-verifier.v1.bindir type=io.containerd.image-verifier.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.068872096+02:00" level=info msg="loading plugin" id=io.containerd.internal.v1.opt type=io.containerd.internal.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.068929644+02:00" level=info msg="loading plugin" id=io.containerd.warning.v1.deprecations type=io.containerd.warning.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.068942879+02:00" level=info msg="loading plugin" id=io.containerd.content.v1.content type=io.containerd.content.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.069378300+02:00" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.blockfile type=io.containerd.snapshotter.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.069413326+02: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
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.069421210+02:00" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.btrfs type=io.containerd.snapshotter.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.069654580+02:00" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.devmapper type=io.containerd.snapshotter.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.069683354+02:00" level=info msg="skip loading plugin" error="devmapper not configured: skip plugin" id=io.containerd.snapshotter.v1.devmapper type=io.containerd.snapshotter.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.069689356+02:00" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.native type=io.containerd.snapshotter.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.069713892+02:00" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.overlayfs type=io.containerd.snapshotter.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.069818219+02:00" level=info msg="loading plugin" id=io.containerd.snapshotter.v1.zfs type=io.containerd.snapshotter.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.069846251+02: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
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.069853836+02:00" level=info msg="loading plugin" id=io.containerd.event.v1.exchange type=io.containerd.event.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.069876448+02:00" level=info msg="loading plugin" id=io.containerd.monitor.task.v1.cgroups type=io.containerd.monitor.task.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.070043162+02:00" level=info msg="loading plugin" id=io.containerd.metadata.v1.bolt type=io.containerd.metadata.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.070064974+02:00" level=info msg="metadata content store policy set" policy=shared
May 05 16:49:24 archlinux kernel: fs-verity: sha256 using implementation "sha256-ni"
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.078920260+02:00" level=info msg="loading plugin" id=io.containerd.gc.v1.scheduler type=io.containerd.gc.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.078958001+02:00" level=info msg="loading plugin" id=io.containerd.differ.v1.walking type=io.containerd.differ.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.078970224+02:00" level=info msg="loading plugin" id=io.containerd.lease.v1.manager type=io.containerd.lease.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.078981185+02:00" level=info msg="loading plugin" id=io.containerd.service.v1.containers-service type=io.containerd.service.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.078991244+02:00" level=info msg="loading plugin" id=io.containerd.service.v1.content-service type=io.containerd.service.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079004529+02:00" level=info msg="loading plugin" id=io.containerd.service.v1.diff-service type=io.containerd.service.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079015018+02:00" level=info msg="loading plugin" id=io.containerd.service.v1.images-service type=io.containerd.service.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079024977+02:00" level=info msg="loading plugin" id=io.containerd.service.v1.introspection-service type=io.containerd.service.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079035016+02:00" level=info msg="loading plugin" id=io.containerd.service.v1.namespaces-service type=io.containerd.service.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079044805+02:00" level=info msg="loading plugin" id=io.containerd.service.v1.snapshots-service type=io.containerd.service.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079051868+02:00" level=info msg="loading plugin" id=io.containerd.shim.v1.manager type=io.containerd.shim.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079061666+02:00" level=info msg="loading plugin" id=io.containerd.runtime.v2.task type=io.containerd.runtime.v2
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079133682+02:00" level=info msg="loading plugin" id=io.containerd.service.v1.tasks-service type=io.containerd.service.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079147057+02:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.containers type=io.containerd.grpc.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079159581+02:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.content type=io.containerd.grpc.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079193535+02:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.diff type=io.containerd.grpc.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079205277+02:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.events type=io.containerd.grpc.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079214625+02:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.images type=io.containerd.grpc.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079226266+02:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.introspection type=io.containerd.grpc.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079236165+02:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.leases type=io.containerd.grpc.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079245964+02:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.namespaces type=io.containerd.grpc.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079254540+02:00" level=info msg="loading plugin" id=io.containerd.sandbox.store.v1.local type=io.containerd.sandbox.store.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079262475+02:00" level=info msg="loading plugin" id=io.containerd.cri.v1.images type=io.containerd.cri.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079309854+02:00" level=info msg="Get image filesystem path \"/var/lib/containerd/io.containerd.snapshotter.v1.overlayfs\" for snapshotter \"overlayfs\""
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079320354+02:00" level=info msg="Start snapshots syncer"
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079336524+02:00" level=info msg="loading plugin" id=io.containerd.cri.v1.runtime type=io.containerd.cri.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079511734+02: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,\"baseRuntimeSpec\":\"\",\"cniConfDir\":\"\",\"cniMaxConfNum\":0,\"snapshotter\":\"\",\"sandboxer\":\"podsandbox\",\"io_type\":\"\"}},\"ignoreBlockIONotEnabledErrors\":false,\"ignoreRdtNotEnabledErrors\":false},\"cni\":{\"binDir\":\"/opt/cni/bin\",\"confDir\":\"/etc/cni/net.d\",\"maxConfNum\":1,\"setupSerially\":false,\"confTemplate\":\"\",\"ipPref\":\"\",\"useInternalLoopback\":false},\"enableSelinux\":false,\"selinuxCategoryRange\":1024,\"maxContainerLogSize\":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\"}"
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079554044+02:00" level=info msg="loading plugin" id=io.containerd.podsandbox.controller.v1.podsandbox type=io.containerd.podsandbox.controller.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079627773+02:00" level=info msg="loading plugin" id=io.containerd.sandbox.controller.v1.shim type=io.containerd.sandbox.controller.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079685011+02:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.sandbox-controllers type=io.containerd.grpc.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079698226+02:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.sandboxes type=io.containerd.grpc.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079706541+02:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.snapshots type=io.containerd.grpc.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079716981+02:00" level=info msg="loading plugin" id=io.containerd.streaming.v1.manager type=io.containerd.streaming.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079840384+02:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.streaming type=io.containerd.grpc.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079880429+02:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.tasks type=io.containerd.grpc.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.079891360+02:00" level=info msg="loading plugin" id=io.containerd.transfer.v1.local type=io.containerd.transfer.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.080027156+02:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.transfer type=io.containerd.grpc.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.080038317+02:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.version type=io.containerd.grpc.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.080050800+02:00" level=info msg="loading plugin" id=io.containerd.monitor.container.v1.restart type=io.containerd.monitor.container.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.080084614+02:00" level=info msg="loading plugin" id=io.containerd.tracing.processor.v1.otlp type=io.containerd.tracing.processor.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.080097689+02: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
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.080105834+02:00" level=info msg="loading plugin" id=io.containerd.internal.v1.tracing type=io.containerd.internal.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.080117326+02: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
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.080133767+02:00" level=info msg="loading plugin" id=io.containerd.ttrpc.v1.otelttrpc type=io.containerd.ttrpc.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.080143104+02:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.healthcheck type=io.containerd.grpc.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.080154977+02:00" level=info msg="loading plugin" id=io.containerd.nri.v1.nri type=io.containerd.nri.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.080172600+02:00" level=info msg="runtime interface created"
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.080177058+02:00" level=info msg="created NRI interface"
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.080186586+02:00" level=info msg="loading plugin" id=io.containerd.grpc.v1.cri type=io.containerd.grpc.v1
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.080193870+02:00" level=info msg="Connect containerd service"
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.080220229+02:00" level=info msg="using experimental NRI integration - disable nri plugin to prevent this"
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.081335912+02: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"
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.104180118+02:00" level=info msg="Start subscribing containerd event"
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.104276780+02:00" level=info msg="Start recovering state"
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.104412656+02:00" level=info msg=serving... address=/run/containerd/containerd.sock.ttrpc
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.104433055+02:00" level=info msg="Start event monitor"
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.104448063+02:00" level=info msg="Start cni network conf syncer for default"
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.104464574+02:00" level=info msg=serving... address=/run/containerd/containerd.sock
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.104466037+02:00" level=info msg="Start streaming server"
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.104503868+02:00" level=info msg="Registered namespace \"k8s.io\" with NRI"
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.104515700+02:00" level=info msg="runtime interface starting up..."
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.104525980+02:00" level=info msg="starting plugins..."
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.104544274+02:00" level=info msg="Synchronizing NRI (plugin) with current runtime state"
May 05 16:49:24 archlinux containerd[725]: time="2025-05-05T16:49:24.104704747+02:00" level=info msg="containerd successfully booted in 0.042075s"
May 05 16:49:24 archlinux systemd[1]: Started containerd container runtime.
May 05 16:49:24 archlinux kernel: Bluetooth: hci0: Device setup in 2623715 usecs
May 05 16:49:24 archlinux kernel: Bluetooth: hci0: HCI Enhanced Setup Synchronous Connection command is advertised, but not supported.
May 05 16:49:24 archlinux kernel: Bluetooth: hci0: AOSP extensions version v1.00
May 05 16:49:24 archlinux kernel: Bluetooth: hci0: AOSP quality report is supported
May 05 16:49:24 archlinux kernel: Bluetooth: MGMT ver 1.23
May 05 16:49:24 archlinux bluetoothd[677]: Battery Provider Manager created
May 05 16:49:24 archlinux kernel: NET: Registered PF_ALG protocol family
May 05 16:49:24 archlinux bluetoothd[677]: src/device.c:device_set_wake_support() Unable to set wake_support without RPA resolution
May 05 16:49:24 archlinux bluetoothd[677]: src/device.c:device_set_wake_support() Unable to set wake_support without RPA resolution
May 05 16:49:24 archlinux NetworkManager[676]: <info> [1746456564.3549] manager: (B4:05:A1:CF:30:89): new Bluetooth device (/org/freedesktop/NetworkManager/Devices/6)
May 05 16:49:24 archlinux NetworkManager[676]: <info> [1746456564.3551] device (B4:05:A1:CF:30:89): state change: unmanaged -> unavailable (reason 'managed', managed-type: 'external')
May 05 16:49:24 archlinux NetworkManager[676]: <info> [1746456564.3553] device (B4:05:A1:CF:30:89): state change: unavailable -> disconnected (reason 'none', managed-type: 'full')
May 05 16:49:24 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=BEACON_HINT type=UNKNOWN
May 05 16:49:24 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-REGDOM-BEACON-HINT before freq=5200 max_tx_power=2000 no_ir=1
May 05 16:49:24 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-REGDOM-BEACON-HINT after freq=5200 max_tx_power=2000
May 05 16:49:24 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=BEACON_HINT type=UNKNOWN
May 05 16:49:24 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-REGDOM-BEACON-HINT before freq=5200 max_tx_power=2000 no_ir=1
May 05 16:49:24 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-REGDOM-BEACON-HINT after freq=5200 max_tx_power=2000
May 05 16:49:24 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=BEACON_HINT type=UNKNOWN
May 05 16:49:24 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-REGDOM-BEACON-HINT before freq=5220 max_tx_power=2000 no_ir=1
May 05 16:49:24 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-REGDOM-BEACON-HINT after freq=5220 max_tx_power=2000
May 05 16:49:24 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=BEACON_HINT type=UNKNOWN
May 05 16:49:24 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-REGDOM-BEACON-HINT before freq=5220 max_tx_power=2000 no_ir=1
May 05 16:49:24 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-REGDOM-BEACON-HINT after freq=5220 max_tx_power=2000
May 05 16:49:24 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=BEACON_HINT type=UNKNOWN
May 05 16:49:24 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-REGDOM-BEACON-HINT before freq=5240 max_tx_power=2000 no_ir=1
May 05 16:49:24 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-REGDOM-BEACON-HINT after freq=5240 max_tx_power=2000
May 05 16:49:24 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=BEACON_HINT type=UNKNOWN
May 05 16:49:24 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-REGDOM-BEACON-HINT before freq=5240 max_tx_power=2000 no_ir=1
May 05 16:49:24 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-REGDOM-BEACON-HINT after freq=5240 max_tx_power=2000
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.2190] policy: auto-activating connection 'PlantenCamera6' (dadd802f-f413-41db-b9df-69b7731c4b73)
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.2192] device (wlan0): Activation: starting connection 'PlantenCamera6' (dadd802f-f413-41db-b9df-69b7731c4b73)
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.2192] device (wlan0): state change: disconnected -> prepare (reason 'none', managed-type: 'full')
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.2193] manager: NetworkManager state is now CONNECTING
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.2473] device (wlan0): set-hw-addr: reset MAC address to CC:5E:F8:1C:1C:0B (preserve)
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.2585] device (wlan0): state change: prepare -> config (reason 'none', managed-type: 'full')
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.2587] device (wlan0): Activation: (wifi) access point 'PlantenCamera6' has security, but secrets are required.
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.2587] device (wlan0): state change: config -> need-auth (reason 'none', managed-type: 'full')
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.2588] sup-iface[64e89637316aa77d,0,wlan0]: wps: type pbc start...
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.2590] device (wlan0): supplicant interface state: disconnected -> interface_disabled
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.2590] device (p2p-dev-wlan0): supplicant management interface state: disconnected -> interface_disabled
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.2594] device (wlan0): state change: need-auth -> prepare (reason 'none', managed-type: 'full')
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.2595] device (wlan0): state change: prepare -> config (reason 'none', managed-type: 'full')
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.2596] device (wlan0): Activation: (wifi) connection 'PlantenCamera6' has security, and secrets exist. No new secrets needed.
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.2596] Config: added 'ssid' value 'PlantenCamera6'
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.2596] Config: added 'scan_ssid' value '1'
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.2596] Config: added 'bgscan' value 'simple:30:-65:300'
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.2596] Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 FT-PSK SAE FT-SAE'
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.2596] Config: added 'psk' value '<hidden>'
May 05 16:49:26 archlinux wpa_supplicant[718]: wlan0: WPS-CANCEL
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.2727] device (wlan0): supplicant interface state: interface_disabled -> inactive
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.2727] device (p2p-dev-wlan0): supplicant management interface state: interface_disabled -> inactive
May 05 16:49:26 archlinux wpa_supplicant[718]: MBO: Disable MBO/OCE due to misbehaving AP not having enabled PMF
May 05 16:49:26 archlinux wpa_supplicant[718]: wlan0: SME: Trying to authenticate with 9a:fe:ce:14:75:bc (SSID='PlantenCamera6' freq=5220 MHz)
May 05 16:49:26 archlinux kernel: wlan0: authenticate with 9a:fe:ce:14:75:bc (local address=cc:5e:f8:1c:1c:0b)
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.4529] device (wlan0): supplicant interface state: inactive -> authenticating
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.4530] device (p2p-dev-wlan0): supplicant management interface state: inactive -> authenticating
May 05 16:49:26 archlinux kernel: wlan0: send auth to 9a:fe:ce:14:75:bc (try 1/3)
May 05 16:49:26 archlinux wpa_supplicant[718]: wlan0: Trying to associate with 9a:fe:ce:14:75:bc (SSID='PlantenCamera6' freq=5220 MHz)
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.4540] device (wlan0): supplicant interface state: authenticating -> associating
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.4540] device (p2p-dev-wlan0): supplicant management interface state: authenticating -> associating
May 05 16:49:26 archlinux kernel: wlan0: authenticated
May 05 16:49:26 archlinux kernel: wlan0: associate with 9a:fe:ce:14:75:bc (try 1/3)
May 05 16:49:26 archlinux kernel: wlan0: RX AssocResp from 9a:fe:ce:14:75:bc (capab=0x1011 status=0 aid=19)
May 05 16:49:26 archlinux kernel: wlan0: associated
May 05 16:49:26 archlinux wpa_supplicant[718]: wlan0: Associated with 9a:fe:ce:14:75:bc
May 05 16:49:26 archlinux wpa_supplicant[718]: MBO: Disable MBO/OCE due to misbehaving AP not having enabled PMF
May 05 16:49:26 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.4706] device (wlan0): supplicant interface state: associating -> associated
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.4706] device (p2p-dev-wlan0): supplicant management interface state: associating -> associated
May 05 16:49:26 archlinux wpa_supplicant[718]: wlan0: WPA: Key negotiation completed with 9a:fe:ce:14:75:bc [PTK=CCMP GTK=CCMP]
May 05 16:49:26 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-CONNECTED - Connection to 9a:fe:ce:14:75:bc completed [id=0 id_str=]
May 05 16:49:26 archlinux kernel: wlan0: Limiting TX power to 30 (30 - 0) dBm as advertised by 9a:fe:ce:14:75:bc
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.7269] device (wlan0): supplicant interface state: associated -> completed
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.7270] device (wlan0): Activation: (wifi) Stage 2 of 5 (Device Configure) successful. Connected to wireless network "PlantenCamera6"
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.7270] device (p2p-dev-wlan0): supplicant management interface state: associated -> completed
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.7270] device (wlan0): state change: config -> ip-config (reason 'none', managed-type: 'full')
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.7272] dhcp4 (wlan0): activation: beginning transaction (timeout in 45 seconds)
May 05 16:49:26 archlinux NetworkManager[676]: <info> [1746456566.8559] dhcp4 (wlan0): state changed new lease, address=192.168.178.170, acd pending
May 05 16:49:27 archlinux NetworkManager[676]: <info> [1746456567.0122] dhcp4 (wlan0): state changed new lease, address=192.168.178.170
May 05 16:49:27 archlinux NetworkManager[676]: <info> [1746456567.0137] policy: set 'PlantenCamera6' (wlan0) as default for IPv4 routing and DNS
May 05 16:49:27 archlinux dbus-broker-launch[674]: Activation request for 'org.freedesktop.resolve1' failed: The systemd unit 'dbus-org.freedesktop.resolve1.service' could not be found.
May 05 16:49:27 archlinux NetworkManager[676]: <info> [1746456567.0413] device (wlan0): state change: ip-config -> ip-check (reason 'none', managed-type: 'full')
May 05 16:49:27 archlinux NetworkManager[676]: <info> [1746456567.0424] device (wlan0): state change: ip-check -> secondaries (reason 'none', managed-type: 'full')
May 05 16:49:27 archlinux NetworkManager[676]: <info> [1746456567.0425] device (wlan0): state change: secondaries -> activated (reason 'none', managed-type: 'full')
May 05 16:49:27 archlinux NetworkManager[676]: <info> [1746456567.0428] manager: NetworkManager state is now CONNECTED_SITE
May 05 16:49:27 archlinux NetworkManager[676]: <info> [1746456567.0430] device (wlan0): Activation: successful, device activated.
May 05 16:49:27 archlinux NetworkManager[676]: <info> [1746456567.1351] manager: NetworkManager state is now CONNECTED_GLOBAL
May 05 16:49:27 archlinux systemd[1]: systemd-rfkill.service: Deactivated successfully.
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.3532] manager: startup complete
May 05 16:49:29 archlinux systemd[1]: Finished Network Manager Wait Online.
May 05 16:49:29 archlinux systemd[1]: Reached target Network is Online.
May 05 16:49:29 archlinux systemd[1]: Mounting TrueNAS GameSaves Mount...
May 05 16:49:29 archlinux systemd[1]: Starting Docker Application Container Engine...
May 05 16:49:29 archlinux systemd[1]: Starting Samba NMB Daemon...
May 05 16:49:29 archlinux systemd[1]: Starting Refresh Pacman mirrorlist with Reflector....
May 05 16:49:29 archlinux kernel: netfs: FS-Cache loaded
May 05 16:49:29 archlinux kernel: Key type dns_resolver registered
May 05 16:49:29 archlinux dockerd[2518]: time="2025-05-05T16:49:29.466470937+02:00" level=info msg="Starting up"
May 05 16:49:29 archlinux dockerd[2518]: time="2025-05-05T16:49:29.466965970+02:00" level=info msg="OTEL tracing is not configured, using no-op tracer provider"
May 05 16:49:29 archlinux dockerd[2518]: time="2025-05-05T16:49:29.477425409+02:00" level=info msg="Creating a containerd client" address=/run/containerd/containerd.sock timeout=1m0s
May 05 16:49:29 archlinux nmbd[2519]: [2025/05/05 16:49:29.483213, 0] ../../source3/nmbd/nmbd.c:901(main)
May 05 16:49:29 archlinux nmbd[2519]: nmbd version 4.22.1 started.
May 05 16:49:29 archlinux nmbd[2519]: Copyright Andrew Tridgell and the Samba Team 1992-2025
May 05 16:49:29 archlinux nmbd[2519]: [2025/05/05 16:49:29.484039, 0] ../../lib/util/debug.c:1254(reopen_one_log)
May 05 16:49:29 archlinux nmbd[2519]: reopen_one_log: Unable to open new log file '/usr/local/samba/var/log.nmbd': No such file or directory
May 05 16:49:29 archlinux nmbd[2519]: [2025/05/05 16:49:29.484140, 0] ../../lib/util/debug.c:1254(reopen_one_log)
May 05 16:49:29 archlinux nmbd[2519]: reopen_one_log: Unable to open new log file '/usr/local/samba/var/log.nmbd': No such file or directory
May 05 16:49:29 archlinux systemd[1]: Started Samba NMB Daemon.
May 05 16:49:29 archlinux systemd[1]: Starting Samba SMB Daemon...
May 05 16:49:29 archlinux smbd[2560]: [2025/05/05 16:49:29.561817, 0] ../../lib/util/debug.c:1254(reopen_one_log)
May 05 16:49:29 archlinux smbd[2560]: reopen_one_log: Unable to open new log file '/usr/local/samba/var/log.smbd': No such file or directory
May 05 16:49:29 archlinux smbd[2560]: [2025/05/05 16:49:29.561853, 0] ../../source3/smbd/server.c:1971(main)
May 05 16:49:29 archlinux smbd[2560]: smbd version 4.22.1 started.
May 05 16:49:29 archlinux smbd[2560]: Copyright Andrew Tridgell and the Samba Team 1992-2025
May 05 16:49:29 archlinux smbd[2560]: [2025/05/05 16:49:29.562496, 0] ../../lib/util/debug.c:1254(reopen_one_log)
May 05 16:49:29 archlinux smbd[2560]: reopen_one_log: Unable to open new log file '/usr/local/samba/var/log.smbd': No such file or directory
May 05 16:49:29 archlinux smbd[2560]: [2025/05/05 16:49:29.562522, 0] ../../lib/util/debug.c:1254(reopen_one_log)
May 05 16:49:29 archlinux smbd[2560]: reopen_one_log: Unable to open new log file '/usr/local/samba/var/log.smbd': No such file or directory
May 05 16:49:29 archlinux smbd[2560]: [2025/05/05 16:49:29.562718, 0] ../../lib/util/debug.c:1254(reopen_one_log)
May 05 16:49:29 archlinux smbd[2560]: reopen_one_log: Unable to open new log file '/usr/local/samba/var/log.smbd': No such file or directory
May 05 16:49:29 archlinux smbd[2560]: [2025/05/05 16:49:29.562735, 0] ../../lib/util/debug.c:1254(reopen_one_log)
May 05 16:49:29 archlinux smbd[2560]: reopen_one_log: Unable to open new log file '/usr/local/samba/var/log.smbd': No such file or directory
May 05 16:49:29 archlinux smbd[2560]: [2025/05/05 16:49:29.562751, 0] ../../lib/util/debug.c:1254(reopen_one_log)
May 05 16:49:29 archlinux smbd[2560]: reopen_one_log: Unable to open new log file '/usr/local/samba/var/log.smbd': No such file or directory
May 05 16:49:29 archlinux smbd[2560]: [2025/05/05 16:49:29.562764, 0] ../../lib/util/debug.c:1254(reopen_one_log)
May 05 16:49:29 archlinux smbd[2560]: reopen_one_log: Unable to open new log file '/usr/local/samba/var/log.smbd': No such file or directory
May 05 16:49:29 archlinux dockerd[2518]: time="2025-05-05T16:49:29.566482072+02:00" level=info msg="[graphdriver] using prior storage driver: overlay2"
May 05 16:49:29 archlinux kernel: Key type cifs.spnego registered
May 05 16:49:29 archlinux kernel: Key type cifs.idmap registered
May 05 16:49:29 archlinux kernel: CIFS: No dialect specified on mount. Default has changed to a more secure dialect, SMB2.1 or later (e.g. SMB3.1.1), from CIFS (SMB1). To use the less secure SMB1 dialect to access old servers which do not support SMB3.1.1 (or even SMB3 or SMB2.1) specify vers=1.0 on mount.
May 05 16:49:29 archlinux kernel: CIFS: enabling forceuid mount option implicitly because uid= option is specified
May 05 16:49:29 archlinux kernel: CIFS: enabling forcegid mount option implicitly because gid= option is specified
May 05 16:49:29 archlinux kernel: CIFS: Attempting to mount //truenas/personal/GameSaves
May 05 16:49:29 archlinux smbd[2575]: [2025/05/05 16:49:29.574010, 0] ../../lib/util/debug.c:1254(reopen_one_log)
May 05 16:49:29 archlinux smbd[2575]: reopen_one_log: Unable to open new log file '/usr/local/samba/var/log.smbd': No such file or directory
May 05 16:49:29 archlinux smbd[2575]: [2025/05/05 16:49:29.574079, 0] ../../lib/util/debug.c:1254(reopen_one_log)
May 05 16:49:29 archlinux smbd[2575]: reopen_one_log: Unable to open new log file '/usr/local/samba/var/log.smbd': No such file or directory
May 05 16:49:29 archlinux systemd[1]: Started Samba SMB Daemon.
May 05 16:49:29 archlinux dbus-broker-launch[674]: Activation request for 'org.freedesktop.Avahi' failed: The systemd unit 'dbus-org.freedesktop.Avahi.service' could not be found.
May 05 16:49:29 archlinux dockerd[2518]: time="2025-05-05T16:49:29.594855206+02:00" level=info msg="Loading containers: start."
May 05 16:49:29 archlinux systemd[1]: reflector.service: Deactivated successfully.
May 05 16:49:29 archlinux systemd[1]: Finished Refresh Pacman mirrorlist with Reflector..
May 05 16:49:29 archlinux systemd[1]: Mounted TrueNAS GameSaves Mount.
May 05 16:49:29 archlinux systemd[1]: Reached target Remote File Systems.
May 05 16:49:29 archlinux systemd[1]: TPM PCR Barrier (User) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
May 05 16:49:29 archlinux systemd[1]: Starting Permit User Sessions...
May 05 16:49:29 archlinux systemd[1]: Finished Permit User Sessions.
May 05 16:49:29 archlinux systemd[1]: Started Simple Desktop Display Manager.
May 05 16:49:29 archlinux kernel: Initializing XFRM netlink socket
May 05 16:49:29 archlinux sddm[2593]: Initializing...
May 05 16:49:29 archlinux sddm[2593]: Starting...
May 05 16:49:29 archlinux sddm[2593]: Logind interface found
May 05 16:49:29 archlinux sddm[2593]: Adding new display...
May 05 16:49:29 archlinux sddm[2593]: Loaded empty theme configuration
May 05 16:49:29 archlinux sddm[2593]: Xauthority path: "/run/sddm/xauth_XCWmuF"
May 05 16:49:29 archlinux sddm[2593]: Using VT 2
May 05 16:49:29 archlinux sddm[2593]: Display server starting...
May 05 16:49:29 archlinux sddm[2593]: Writing cookie to "/run/sddm/xauth_XCWmuF"
May 05 16:49:29 archlinux sddm[2593]: Running: /usr/bin/X -nolisten tcp -background none -seat seat0 vt2 -auth /run/sddm/xauth_XCWmuF -noreset -displayfd 16
May 05 16:49:29 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-31 noise=9999 txrate=960700
May 05 16:49:29 archlinux kernel: bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.8711] manager: (br-03a1f9f50b5a): new Bridge device (/org/freedesktop/NetworkManager/Devices/7)
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9086] device (br-03a1f9f50b5a): state change: unmanaged -> unavailable (reason 'connection-assumed', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9088] device (br-03a1f9f50b5a): state change: unavailable -> disconnected (reason 'connection-assumed', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9091] device (br-03a1f9f50b5a): Activation: starting connection 'br-03a1f9f50b5a' (22b4d87a-a276-441c-b2d4-b38cd75b8fcb)
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9092] device (br-03a1f9f50b5a): state change: disconnected -> prepare (reason 'none', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9092] device (br-03a1f9f50b5a): state change: prepare -> config (reason 'none', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9093] device (br-03a1f9f50b5a): state change: config -> ip-config (reason 'none', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9096] manager: (br-b07042479d1b): new Bridge device (/org/freedesktop/NetworkManager/Devices/8)
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9097] device (br-03a1f9f50b5a): state change: ip-config -> ip-check (reason 'none', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9104] device (br-03a1f9f50b5a): state change: ip-check -> secondaries (reason 'none', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9105] device (br-03a1f9f50b5a): state change: secondaries -> activated (reason 'none', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9106] device (br-03a1f9f50b5a): Activation: successful, device activated.
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9309] device (br-b07042479d1b): state change: unmanaged -> unavailable (reason 'connection-assumed', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9312] device (br-b07042479d1b): state change: unavailable -> disconnected (reason 'connection-assumed', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9314] device (br-b07042479d1b): Activation: starting connection 'br-b07042479d1b' (9c682edc-bbe0-4a48-aca8-fa350badd812)
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9315] device (br-b07042479d1b): state change: disconnected -> prepare (reason 'none', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9316] device (br-b07042479d1b): state change: prepare -> config (reason 'none', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9316] device (br-b07042479d1b): state change: config -> ip-config (reason 'none', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9320] manager: (br-cf2600fa56df): new Bridge device (/org/freedesktop/NetworkManager/Devices/9)
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9325] device (br-b07042479d1b): state change: ip-config -> ip-check (reason 'none', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9332] device (br-b07042479d1b): state change: ip-check -> secondaries (reason 'none', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9332] device (br-b07042479d1b): state change: secondaries -> activated (reason 'none', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9334] device (br-b07042479d1b): Activation: successful, device activated.
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9563] device (br-cf2600fa56df): state change: unmanaged -> unavailable (reason 'connection-assumed', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9565] device (br-cf2600fa56df): state change: unavailable -> disconnected (reason 'connection-assumed', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9568] device (br-cf2600fa56df): Activation: starting connection 'br-cf2600fa56df' (2a4741c7-9b95-49fb-acb7-7d4c8ef1619a)
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9569] device (br-cf2600fa56df): state change: disconnected -> prepare (reason 'none', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9570] device (br-cf2600fa56df): state change: prepare -> config (reason 'none', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9571] device (br-cf2600fa56df): state change: config -> ip-config (reason 'none', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9574] manager: (docker0): new Bridge device (/org/freedesktop/NetworkManager/Devices/10)
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9576] device (br-cf2600fa56df): state change: ip-config -> ip-check (reason 'none', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9582] device (br-cf2600fa56df): state change: ip-check -> secondaries (reason 'none', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9582] device (br-cf2600fa56df): state change: secondaries -> activated (reason 'none', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9584] device (br-cf2600fa56df): Activation: successful, device activated.
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9797] device (docker0): state change: unmanaged -> unavailable (reason 'connection-assumed', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9799] device (docker0): state change: unavailable -> disconnected (reason 'connection-assumed', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9801] device (docker0): Activation: starting connection 'docker0' (9225db3a-b2b6-47f6-a2aa-fab7a90630bc)
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9803] device (docker0): state change: disconnected -> prepare (reason 'none', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9803] device (docker0): state change: prepare -> config (reason 'none', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9804] device (docker0): state change: config -> ip-config (reason 'none', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9807] manager: (br-d6c0dbd4c829): new Bridge device (/org/freedesktop/NetworkManager/Devices/11)
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9808] device (docker0): state change: ip-config -> ip-check (reason 'none', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9815] device (docker0): state change: ip-check -> secondaries (reason 'none', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9815] device (docker0): state change: secondaries -> activated (reason 'none', managed-type: 'external')
May 05 16:49:29 archlinux NetworkManager[676]: <info> [1746456569.9817] device (docker0): Activation: successful, device activated.
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0034] device (br-d6c0dbd4c829): state change: unmanaged -> unavailable (reason 'connection-assumed', managed-type: 'external')
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0036] device (br-d6c0dbd4c829): state change: unavailable -> disconnected (reason 'connection-assumed', managed-type: 'external')
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0039] device (br-d6c0dbd4c829): Activation: starting connection 'br-d6c0dbd4c829' (444d13be-a953-4786-ace2-8fb463914378)
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0041] device (br-d6c0dbd4c829): state change: disconnected -> prepare (reason 'none', managed-type: 'external')
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0042] device (br-d6c0dbd4c829): state change: prepare -> config (reason 'none', managed-type: 'external')
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0042] device (br-d6c0dbd4c829): state change: config -> ip-config (reason 'none', managed-type: 'external')
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0046] manager: (br-dcd82f386015): new Bridge device (/org/freedesktop/NetworkManager/Devices/12)
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0047] device (br-d6c0dbd4c829): state change: ip-config -> ip-check (reason 'none', managed-type: 'external')
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0054] device (br-d6c0dbd4c829): state change: ip-check -> secondaries (reason 'none', managed-type: 'external')
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0054] device (br-d6c0dbd4c829): state change: secondaries -> activated (reason 'none', managed-type: 'external')
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0056] device (br-d6c0dbd4c829): Activation: successful, device activated.
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0261] device (br-dcd82f386015): state change: unmanaged -> unavailable (reason 'connection-assumed', managed-type: 'external')
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0264] device (br-dcd82f386015): state change: unavailable -> disconnected (reason 'connection-assumed', managed-type: 'external')
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0266] device (br-dcd82f386015): Activation: starting connection 'br-dcd82f386015' (73ff0fb9-c414-4b03-b380-cf4159aba276)
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0267] device (br-dcd82f386015): state change: disconnected -> prepare (reason 'none', managed-type: 'external')
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0268] device (br-dcd82f386015): state change: prepare -> config (reason 'none', managed-type: 'external')
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0269] device (br-dcd82f386015): state change: config -> ip-config (reason 'none', managed-type: 'external')
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0272] manager: (br-f7288b496a72): new Bridge device (/org/freedesktop/NetworkManager/Devices/13)
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0273] device (br-dcd82f386015): state change: ip-config -> ip-check (reason 'none', managed-type: 'external')
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0280] device (br-dcd82f386015): state change: ip-check -> secondaries (reason 'none', managed-type: 'external')
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0282] device (br-dcd82f386015): state change: secondaries -> activated (reason 'none', managed-type: 'external')
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0284] device (br-dcd82f386015): Activation: successful, device activated.
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0507] device (br-f7288b496a72): state change: unmanaged -> unavailable (reason 'connection-assumed', managed-type: 'external')
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0509] device (br-f7288b496a72): state change: unavailable -> disconnected (reason 'connection-assumed', managed-type: 'external')
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0512] device (br-f7288b496a72): Activation: starting connection 'br-f7288b496a72' (3cc6311a-bfa1-45bb-840d-bfe078509719)
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0513] device (br-f7288b496a72): state change: disconnected -> prepare (reason 'none', managed-type: 'external')
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0514] device (br-f7288b496a72): state change: prepare -> config (reason 'none', managed-type: 'external')
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0514] device (br-f7288b496a72): state change: config -> ip-config (reason 'none', managed-type: 'external')
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0515] device (br-f7288b496a72): state change: ip-config -> ip-check (reason 'none', managed-type: 'external')
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0520] device (br-f7288b496a72): state change: ip-check -> secondaries (reason 'none', managed-type: 'external')
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0520] device (br-f7288b496a72): state change: secondaries -> activated (reason 'none', managed-type: 'external')
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.0522] device (br-f7288b496a72): Activation: successful, device activated.
May 05 16:49:30 archlinux dockerd[2518]: time="2025-05-05T16:49:30.103696244+02:00" level=info msg="Removing stale sandbox fab1e374ed1a20ac09acd12fa8008f5cf9d6bd4dddaf265574127c0e72de9bbf (e0ef488dd6cb635737ebd1f0ed2351b2dc71b683e9bb10853f84a1beaaaf4203)"
May 05 16:49:30 archlinux dockerd[2518]: time="2025-05-05T16:49:30.144789177+02:00" level=warning msg="Failed deleting service host entries to the running container: open : no such file or directory"
May 05 16:49:30 archlinux dockerd[2518]: time="2025-05-05T16:49:30.144864108+02:00" level=warning msg="Error (Unable to complete atomic operation, key modified) deleting object [endpoint d527d5ba0e4c4e6b2a8a7c398b17192866f2a7f220c672d6d71be920c75504c4 26d6ea486b377147db60c4c01fdc8656136c8f550542cebe9fa802748c441869], retrying...."
May 05 16:49:30 archlinux dockerd[2518]: time="2025-05-05T16:49:30.169218580+02:00" level=info msg="Removing stale sandbox 76cdb9ea69874d963d4a221ee30173b72d83896763d5050d87bc4d07c27521cd (a873c438563cb74a5fbc4ee7fa07cf54e95c8c836b2cba0ec52e412c161bd356)"
May 05 16:49:30 archlinux dockerd[2518]: time="2025-05-05T16:49:30.195214685+02:00" level=warning msg="Failed deleting service host entries to the running container: open : no such file or directory"
May 05 16:49:30 archlinux dockerd[2518]: time="2025-05-05T16:49:30.195273266+02:00" level=warning msg="Error (Unable to complete atomic operation, key modified) deleting object [endpoint d6c0dbd4c829a764b5c74c573cd5c36f91ec7031d2bfed6c41bc868a991c734b 70d501f59389a8b052d9dee6aa72b9a247da56001ba0bf95573a9cb4bef941ac], retrying...."
May 05 16:49:30 archlinux dockerd[2518]: time="2025-05-05T16:49:30.215795406+02:00" level=info msg="Removing stale sandbox a5d140ce55f8fc5423b865eccb7be3e0c28997beb5e3b24ba06b533201d8914d (f8059c8f5002402206e4ade90214f020c920bc8befffc2f35fe04f0e93166e56)"
May 05 16:49:30 archlinux dockerd[2518]: time="2025-05-05T16:49:30.243122620+02:00" level=warning msg="Failed deleting service host entries to the running container: open : no such file or directory"
May 05 16:49:30 archlinux dockerd[2518]: time="2025-05-05T16:49:30.243258616+02:00" level=warning msg="Error (Unable to complete atomic operation, key modified) deleting object [endpoint d6c0dbd4c829a764b5c74c573cd5c36f91ec7031d2bfed6c41bc868a991c734b f5e6ed5e2416b4d34171e52b2abe3614dadf49603ae25f5561f84936b68736a5], retrying...."
May 05 16:49:30 archlinux dockerd[2518]: time="2025-05-05T16:49:30.306306780+02:00" level=warning msg="Error (Unable to complete atomic operation, key modified) deleting object [endpoint_count d527d5ba0e4c4e6b2a8a7c398b17192866f2a7f220c672d6d71be920c75504c4], retrying...."
May 05 16:49:30 archlinux dockerd[2518]: time="2025-05-05T16:49:30.369851810+02:00" level=warning msg="error locating sandbox id fab1e374ed1a20ac09acd12fa8008f5cf9d6bd4dddaf265574127c0e72de9bbf: sandbox fab1e374ed1a20ac09acd12fa8008f5cf9d6bd4dddaf265574127c0e72de9bbf not found"
May 05 16:49:30 archlinux dockerd[2518]: time="2025-05-05T16:49:30.369904550+02:00" level=warning msg="error locating sandbox id a5d140ce55f8fc5423b865eccb7be3e0c28997beb5e3b24ba06b533201d8914d: sandbox a5d140ce55f8fc5423b865eccb7be3e0c28997beb5e3b24ba06b533201d8914d not found"
May 05 16:49:30 archlinux dockerd[2518]: time="2025-05-05T16:49:30.369921391+02:00" level=warning msg="error locating sandbox id 76cdb9ea69874d963d4a221ee30173b72d83896763d5050d87bc4d07c27521cd: sandbox 76cdb9ea69874d963d4a221ee30173b72d83896763d5050d87bc4d07c27521cd not found"
May 05 16:49:30 archlinux containerd[725]: time="2025-05-05T16:49:30.454315959+02:00" level=info msg="connecting to shim f8059c8f5002402206e4ade90214f020c920bc8befffc2f35fe04f0e93166e56" address="unix:///run/containerd/s/24ec4ab8a9cfbbf959f1151b0aa18fdc88edbec2055954c203aad619cbfdb7a8" namespace=moby protocol=ttrpc version=3
May 05 16:49:30 archlinux containerd[725]: time="2025-05-05T16:49:30.466155719+02:00" level=info msg="connecting to shim e0ef488dd6cb635737ebd1f0ed2351b2dc71b683e9bb10853f84a1beaaaf4203" address="unix:///run/containerd/s/d9f0b36fe3d7ab146dbd7b015015b93ab94d44dd09548f7a744f8f0906e8f7ad" namespace=moby protocol=ttrpc version=3
May 05 16:49:30 archlinux containerd[725]: time="2025-05-05T16:49:30.472133804+02:00" level=info msg="connecting to shim a873c438563cb74a5fbc4ee7fa07cf54e95c8c836b2cba0ec52e412c161bd356" address="unix:///run/containerd/s/6435d6dc9d1e5c433c3c26f87eebc923c8bb8bd33e91e8995df3069129bb21d0" namespace=moby protocol=ttrpc version=3
May 05 16:49:30 archlinux systemd[1]: Started libcontainer container f8059c8f5002402206e4ade90214f020c920bc8befffc2f35fe04f0e93166e56.
May 05 16:49:30 archlinux systemd[1]: Started libcontainer container a873c438563cb74a5fbc4ee7fa07cf54e95c8c836b2cba0ec52e412c161bd356.
May 05 16:49:30 archlinux systemd[1]: Started libcontainer container e0ef488dd6cb635737ebd1f0ed2351b2dc71b683e9bb10853f84a1beaaaf4203.
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.5097] manager: (veth4272a22): new Veth device (/org/freedesktop/NetworkManager/Devices/14)
May 05 16:49:30 archlinux kernel: br-d6c0dbd4c829: port 1(veth4272a22) entered blocking state
May 05 16:49:30 archlinux kernel: br-d6c0dbd4c829: port 1(veth4272a22) entered disabled state
May 05 16:49:30 archlinux kernel: veth4272a22: entered allmulticast mode
May 05 16:49:30 archlinux kernel: veth4272a22: entered promiscuous mode
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.5103] manager: (vethb802a6a): new Veth device (/org/freedesktop/NetworkManager/Devices/15)
May 05 16:49:30 archlinux kernel: docker0: port 1(vethb802a6a) entered blocking state
May 05 16:49:30 archlinux kernel: docker0: port 1(vethb802a6a) entered disabled state
May 05 16:49:30 archlinux kernel: vethb802a6a: entered allmulticast mode
May 05 16:49:30 archlinux kernel: vethb802a6a: entered promiscuous mode
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.5419] manager: (veth977fef0): new Veth device (/org/freedesktop/NetworkManager/Devices/16)
May 05 16:49:30 archlinux kernel: br-d6c0dbd4c829: port 2(veth977fef0) entered blocking state
May 05 16:49:30 archlinux kernel: br-d6c0dbd4c829: port 2(veth977fef0) entered disabled state
May 05 16:49:30 archlinux kernel: veth977fef0: entered allmulticast mode
May 05 16:49:30 archlinux kernel: veth977fef0: entered promiscuous mode
May 05 16:49:30 archlinux kernel: eth0: renamed from vethe9e1a97
May 05 16:49:30 archlinux kernel: docker0: port 1(vethb802a6a) entered blocking state
May 05 16:49:30 archlinux kernel: docker0: port 1(vethb802a6a) entered forwarding state
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.5452] device (vethb802a6a): carrier: link connected
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.5453] device (docker0): carrier: link connected
May 05 16:49:30 archlinux kernel: eth0: renamed from veth5041163
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.5529] device (veth4272a22): carrier: link connected
May 05 16:49:30 archlinux kernel: br-d6c0dbd4c829: port 1(veth4272a22) entered blocking state
May 05 16:49:30 archlinux kernel: br-d6c0dbd4c829: port 1(veth4272a22) entered forwarding state
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.5531] device (br-d6c0dbd4c829): carrier: link connected
May 05 16:49:30 archlinux kernel: eth0: renamed from veth8484607
May 05 16:49:30 archlinux kernel: br-d6c0dbd4c829: port 2(veth977fef0) entered blocking state
May 05 16:49:30 archlinux kernel: br-d6c0dbd4c829: port 2(veth977fef0) entered forwarding state
May 05 16:49:30 archlinux NetworkManager[676]: <info> [1746456570.6063] device (veth977fef0): carrier: link connected
May 05 16:49:30 archlinux sddm[2593]: Setting default cursor
May 05 16:49:30 archlinux sddm[2593]: Could not setup default cursor
May 05 16:49:30 archlinux sddm[2593]: Running display setup script "/usr/share/sddm/scripts/Xsetup"
May 05 16:49:30 archlinux sddm[2593]: Display server started.
May 05 16:49:30 archlinux sddm[2593]: Socket server starting...
May 05 16:49:30 archlinux sddm[2593]: Socket server started.
May 05 16:49:30 archlinux sddm[2593]: Loading theme configuration from "/usr/share/sddm/themes/sequoia_2/theme.conf"
May 05 16:49:30 archlinux sddm[2593]: Greeter starting...
May 05 16:49:30 archlinux sddm-helper[3638]: [PAM] Starting...
May 05 16:49:30 archlinux sddm-helper[3638]: [PAM] Authenticating...
May 05 16:49:30 archlinux sddm-helper[3638]: [PAM] returning.
May 05 16:49:30 archlinux sddm-helper[3638]: pam_unix(sddm-greeter:session): session opened for user sddm(uid=960) by (uid=0)
May 05 16:49:30 archlinux systemd-logind[678]: New session c1 of user sddm.
May 05 16:49:30 archlinux systemd[1]: Created slice User Slice of UID 960.
May 05 16:49:30 archlinux systemd[1]: Starting User Runtime Directory /run/user/960...
May 05 16:49:30 archlinux dockerd[2518]: time="2025-05-05T16:49:30.705706103+02:00" level=info msg="Loading containers: done."
May 05 16:49:30 archlinux systemd[1]: Finished User Runtime Directory /run/user/960.
May 05 16:49:30 archlinux systemd[1]: Starting User Manager for UID 960...
May 05 16:49:30 archlinux dbus-broker-launch[674]: Activation request for 'org.freedesktop.home1' failed: The systemd unit 'dbus-org.freedesktop.home1.service' could not be found.
May 05 16:49:30 archlinux dockerd[2518]: time="2025-05-05T16:49:30.745357549+02: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
May 05 16:49:30 archlinux dockerd[2518]: time="2025-05-05T16:49:30.745501851+02:00" level=info msg="Docker daemon" commit=01f442b84d containerd-snapshotter=false storage-driver=overlay2 version=28.1.1
May 05 16:49:30 archlinux dockerd[2518]: time="2025-05-05T16:49:30.745560572+02:00" level=info msg="Initializing buildkit"
May 05 16:49:30 archlinux (systemd)[3688]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[sddm] ruser=[<unknown>] rhost=[<unknown>]
May 05 16:49:30 archlinux (systemd)[3688]: pam_unix(systemd-user:session): session opened for user sddm(uid=960) by sddm(uid=0)
May 05 16:49:30 archlinux systemd-logind[678]: New session 1 of user sddm.
May 05 16:49:30 archlinux dockerd[2518]: time="2025-05-05T16:49:30.750148577+02:00" level=info msg="Completed buildkit initialization"
May 05 16:49:30 archlinux dockerd[2518]: time="2025-05-05T16:49:30.755753258+02:00" level=info msg="Daemon has completed initialization"
May 05 16:49:30 archlinux dockerd[2518]: time="2025-05-05T16:49:30.755803573+02:00" level=info msg="API listen on /run/docker.sock"
May 05 16:49:30 archlinux systemd[1]: Started Docker Application Container Engine.
May 05 16:49:30 archlinux systemd[1]: Reached target Multi-User System.
May 05 16:49:30 archlinux systemd[1]: Reached target Graphical Interface.
May 05 16:49:30 archlinux systemd[1]: Started Screen lock hibernation service.
May 05 16:49:30 archlinux systemd[3688]: Queued start job for default target Main User Target.
May 05 16:49:30 archlinux systemd[3688]: Created slice User Application Slice.
May 05 16:49:30 archlinux systemd[3688]: Started Submitting pending crash events (file monitor).
May 05 16:49:30 archlinux systemd[3688]: Cleanup lingering KCrash metadata was skipped because of an unmet condition check (ConditionPathExistsGlob=/var/lib/sddm/.cache/kcrash-metadata/*.ini).
May 05 16:49:30 archlinux systemd[3688]: Submitting pending crash events was skipped because of an unmet condition check (ConditionPathExistsGlob=/var/lib/sddm/.cache/drkonqi/sentry-envelopes/*).
May 05 16:49:30 archlinux systemd[3688]: Reached target Paths.
May 05 16:49:30 archlinux systemd[3688]: Reached target Timers.
May 05 16:49:30 archlinux systemd[3688]: Starting D-Bus User Message Bus Socket...
May 05 16:49:30 archlinux systemd[3688]: Listening on GnuPG network certificate management daemon.
May 05 16:49:30 archlinux systemd[3688]: Socket to launch DrKonqi for a systemd-coredump crash was skipped because of an unmet condition check (ConditionUser=!@system).
May 05 16:49:30 archlinux systemd[3688]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
May 05 16:49:30 archlinux systemd[3688]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
May 05 16:49:30 archlinux systemd[3688]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
May 05 16:49:30 archlinux systemd[3688]: Listening on GnuPG cryptographic agent and passphrase cache.
May 05 16:49:30 archlinux systemd[3688]: Listening on GnuPG public key management service.
May 05 16:49:30 archlinux systemd[3688]: Listening on p11-kit server.
May 05 16:49:30 archlinux systemd[3688]: Listening on PipeWire PulseAudio.
May 05 16:49:30 archlinux systemd[3688]: Listening on PipeWire Multimedia System Sockets.
May 05 16:49:30 archlinux systemd[3688]: Listening on D-Bus User Message Bus Socket.
May 05 16:49:30 archlinux systemd[3688]: Reached target Sockets.
May 05 16:49:30 archlinux systemd[3688]: Reached target Basic System.
May 05 16:49:30 archlinux systemd[3688]: Cleanup lingering KCrash metadata was skipped because of an unmet condition check (ConditionPathExistsGlob=/var/lib/sddm/.cache/kcrash-metadata/*.ini).
May 05 16:49:30 archlinux systemd[1]: Started User Manager for UID 960.
May 05 16:49:30 archlinux systemd[3688]: Starting Update XDG user dir configuration...
May 05 16:49:30 archlinux systemd[1]: Started Session c1 of User sddm.
May 05 16:49:30 archlinux systemd[1]: Startup finished in 5.979s (firmware) + 3.232s (loader) + 6.869s (kernel) + 11.051s (userspace) = 27.133s.
May 05 16:49:30 archlinux sddm-helper[3638]: Writing cookie to "/tmp/xauth_LQOemS"
May 05 16:49:30 archlinux sddm-helper[3638]: Starting X11 session: "" "/usr/bin/sddm-greeter-qt6 --socket /tmp/sddm-:0-hzHHEF --theme /usr/share/sddm/themes/sequoia_2"
May 05 16:49:30 archlinux systemd[3688]: Finished Update XDG user dir configuration.
May 05 16:49:30 archlinux systemd[3688]: Reached target Main User Target.
May 05 16:49:30 archlinux systemd[3688]: Startup finished in 179ms.
May 05 16:49:30 archlinux sddm[2593]: Greeter session started successfully
May 05 16:49:30 archlinux sddm-greeter-qt6[3752]: High-DPI autoscaling Enabled
May 05 16:49:31 archlinux sddm-greeter-qt6[3752]: Reading from "/usr/local/share/wayland-sessions/hyprland-uwsm.desktop"
May 05 16:49:31 archlinux sddm-greeter-qt6[3752]: Reading from "/usr/share/wayland-sessions/hyprland-uwsm.desktop"
May 05 16:49:31 archlinux sddm-greeter-qt6[3752]: Reading from "/usr/local/share/wayland-sessions/hyprland.desktop"
May 05 16:49:31 archlinux sddm-greeter-qt6[3752]: Reading from "/usr/share/wayland-sessions/hyprland.desktop"
May 05 16:49:31 archlinux sddm-greeter-qt6[3752]: Reading from "/usr/local/share/wayland-sessions/plasma.desktop"
May 05 16:49:31 archlinux sddm-greeter-qt6[3752]: Reading from "/usr/share/wayland-sessions/plasma.desktop"
May 05 16:49:31 archlinux sddm-greeter-qt6[3752]: Reading from "/usr/local/share/xsessions/plasmax11.desktop"
May 05 16:49:31 archlinux sddm-greeter-qt6[3752]: Reading from "/usr/share/xsessions/plasmax11.desktop"
May 05 16:49:31 archlinux sddm-greeter-qt6[3752]: Loading theme configuration from "/usr/share/sddm/themes/sequoia_2/theme.conf"
May 05 16:49:31 archlinux systemd[3688]: Created slice User Core Session Slice.
May 05 16:49:31 archlinux systemd[3688]: Starting D-Bus User Message Bus...
May 05 16:49:31 archlinux dbus-broker-launch[3774]: Invalid D-Bus name 'hyprpolkitagent' in service file '/usr/share//dbus-1/services/hyprpolkitagent.service'
May 05 16:49:31 archlinux dbus-broker-launch[3774]: Service file '/usr/share//dbus-1/services/org.erikreider.swaync.service' is not named after the D-Bus name 'org.freedesktop.Notifications'.
May 05 16:49:31 archlinux dbus-broker-launch[3774]: Service file '/usr/share//dbus-1/services/org.kde.dolphin.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
May 05 16:49:31 archlinux dbus-broker-launch[3774]: Service file '/usr/share//dbus-1/services/org.kde.kscreen.service' is not named after the D-Bus name 'org.kde.KScreen'.
May 05 16:49:31 archlinux dbus-broker-launch[3774]: Service file '/usr/share//dbus-1/services/org.kde.plasma.Notifications.service' is not named after the D-Bus name 'org.freedesktop.Notifications'.
May 05 16:49:31 archlinux dbus-broker-launch[3774]: Ignoring duplicate name 'org.freedesktop.Notifications' in service file '/usr/share//dbus-1/services/org.kde.plasma.Notifications.service'
May 05 16:49:31 archlinux dbus-broker-launch[3774]: Service file '/usr/share//dbus-1/services/org.xfce.Thunar.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
May 05 16:49:31 archlinux dbus-broker-launch[3774]: Ignoring duplicate name 'org.freedesktop.FileManager1' in service file '/usr/share//dbus-1/services/org.xfce.Thunar.FileManager1.service'
May 05 16:49:31 archlinux dbus-broker-launch[3774]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
May 05 16:49:31 archlinux dbus-broker-launch[3774]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
May 05 16:49:31 archlinux dbus-broker-launch[3774]: Service file '/usr/share//dbus-1/services/org.xfce.Tumbler.Cache1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Cache1'.
May 05 16:49:31 archlinux dbus-broker-launch[3774]: Service file '/usr/share//dbus-1/services/org.xfce.Tumbler.Manager1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Manager1'.
May 05 16:49:31 archlinux dbus-broker-launch[3774]: Service file '/usr/share//dbus-1/services/org.xfce.Tumbler.Thumbnailer1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Thumbnailer1'.
May 05 16:49:31 archlinux systemd[3688]: Started D-Bus User Message Bus.
May 05 16:49:31 archlinux dbus-broker-launch[3774]: Ready
May 05 16:49:31 archlinux sddm-greeter-qt6[3752]: Connected to the daemon.
May 05 16:49:31 archlinux sddm[2593]: Message received from greeter: Connect
May 05 16:49:31 archlinux sddm-greeter-qt6[3752]: Loading file:///usr/share/sddm/themes/sequoia_2/Main.qml...
May 05 16:49:31 archlinux sddm-greeter-qt6[3752]: QFont::setPointSizeF: Point size <= 0 (0.000000), must be greater than 0
May 05 16:49:31 archlinux sddm-greeter-qt6[3752]: QFont::setPointSizeF: Point size <= 0 (0.000000), must be greater than 0
May 05 16:49:31 archlinux sddm-greeter-qt6[3752]: Adding view for "eDP-1" QRect(0,0 1920x1200)
May 05 16:49:31 archlinux sddm-greeter-qt6[3752]: Message received from daemon: Capabilities
May 05 16:49:31 archlinux sddm-greeter-qt6[3752]: Message received from daemon: HostName
May 05 16:49:32 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-31 noise=9999 txrate=1200900
May 05 16:49:33 archlinux systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
May 05 16:49:35 archlinux sddm-greeter-qt6[3752]: Reading from "/usr/share/wayland-sessions/plasma.desktop"
May 05 16:49:35 archlinux sddm[2593]: Message received from greeter: Login
May 05 16:49:35 archlinux sddm[2593]: Reading from "/usr/share/wayland-sessions/plasma.desktop"
May 05 16:49:35 archlinux sddm[2593]: Session "/usr/share/wayland-sessions/plasma.desktop" selected, command: "/usr/lib/plasma-dbus-run-session-if-needed /usr/bin/startplasma-wayland" for VT 1
May 05 16:49:35 archlinux sddm-helper[4196]: [PAM] Starting...
May 05 16:49:35 archlinux sddm-helper[4196]: [PAM] Authenticating...
May 05 16:49:35 archlinux sddm-helper[4196]: [PAM] Preparing to converse...
May 05 16:49:35 archlinux sddm-helper[4196]: [PAM] Conversation with 1 messages
May 05 16:49:35 archlinux sddm-helper[4196]: pam_kwallet5(sddm:auth): pam_kwallet5: pam_sm_authenticate
May 05 16:49:35 archlinux sddm-helper[4196]: [PAM] returning.
May 05 16:49:35 archlinux sddm[2593]: Authentication for user "enrique" successful
May 05 16:49:35 archlinux sddm-greeter-qt6[3752]: Message received from daemon: LoginSucceeded
May 05 16:49:35 archlinux sddm-helper[4196]: pam_kwallet5(sddm:setcred): pam_kwallet5: pam_sm_setcred
May 05 16:49:35 archlinux sddm-helper[4196]: pam_unix(sddm:session): session opened for user enrique(uid=1000) by enrique(uid=0)
May 05 16:49:35 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-34 noise=9999 txrate=960700
May 05 16:49:35 archlinux systemd[1]: Created slice User Slice of UID 1000.
May 05 16:49:35 archlinux systemd[1]: Starting User Runtime Directory /run/user/1000...
May 05 16:49:35 archlinux systemd-logind[678]: New session 2 of user enrique.
May 05 16:49:35 archlinux systemd[1]: Finished User Runtime Directory /run/user/1000.
May 05 16:49:35 archlinux systemd[1]: Starting User Manager for UID 1000...
May 05 16:49:35 archlinux sddm-helper[3638]: [PAM] Closing session
May 05 16:49:35 archlinux sddm-helper[3638]: pam_unix(sddm-greeter:session): session closed for user sddm
May 05 16:49:35 archlinux sddm-helper[3638]: [PAM] Ended.
May 05 16:49:35 archlinux (systemd)[4216]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[enrique] ruser=[<unknown>] rhost=[<unknown>]
May 05 16:49:35 archlinux sddm[2593]: Auth: sddm-helper exited successfully
May 05 16:49:35 archlinux systemd[1]: session-c1.scope: Deactivated successfully.
May 05 16:49:35 archlinux sddm[2593]: Greeter stopped. SDDM::Auth::HELPER_SUCCESS
May 05 16:49:35 archlinux systemd[1]: session-c1.scope: Consumed 460ms CPU time, 138.1M memory peak.
May 05 16:49:35 archlinux systemd-logind[678]: Session c1 logged out. Waiting for processes to exit.
May 05 16:49:35 archlinux systemd-logind[678]: Removed session c1.
May 05 16:49:35 archlinux (systemd)[4216]: pam_unix(systemd-user:session): session opened for user enrique(uid=1000) by enrique(uid=0)
May 05 16:49:35 archlinux systemd-logind[678]: New session 3 of user enrique.
May 05 16:49:35 archlinux systemd[4216]: Queued start job for default target Main User Target.
May 05 16:49:35 archlinux systemd-journald[449]: File /var/log/journal/194d448e2e6a4d9e9d1fe7fd99c14e77/user-1000.journal corrupted or uncleanly shut down, renaming and replacing.
May 05 16:49:35 archlinux systemd[4216]: Created slice User Application Slice.
May 05 16:49:35 archlinux systemd[4216]: Created slice User Core Session Slice.
May 05 16:49:35 archlinux systemd[4216]: Started Submitting pending crash events (file monitor).
May 05 16:49:35 archlinux systemd[4216]: Cleanup lingering KCrash metadata was skipped because of an unmet condition check (ConditionPathExistsGlob=/home/enrique/.cache/kcrash-metadata/*.ini).
May 05 16:49:35 archlinux systemd[4216]: Submitting pending crash events was skipped because of an unmet condition check (ConditionPathExistsGlob=/home/enrique/.cache/drkonqi/sentry-envelopes/*).
May 05 16:49:35 archlinux systemd[4216]: Reached target Paths.
May 05 16:49:35 archlinux systemd[4216]: Reached target Timers.
May 05 16:49:35 archlinux systemd[4216]: Starting D-Bus User Message Bus Socket...
May 05 16:49:35 archlinux systemd[4216]: Listening on GnuPG network certificate management daemon.
May 05 16:49:35 archlinux systemd[4216]: Listening on Socket to launch DrKonqi for a systemd-coredump crash.
May 05 16:49:35 archlinux systemd[4216]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
May 05 16:49:35 archlinux systemd[4216]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
May 05 16:49:35 archlinux systemd[4216]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
May 05 16:49:35 archlinux systemd[4216]: Listening on GnuPG cryptographic agent and passphrase cache.
May 05 16:49:35 archlinux systemd[4216]: Listening on GnuPG public key management service.
May 05 16:49:35 archlinux systemd[4216]: Listening on p11-kit server.
May 05 16:49:35 archlinux systemd[4216]: Listening on PipeWire PulseAudio.
May 05 16:49:35 archlinux systemd[4216]: Listening on PipeWire Multimedia System Sockets.
May 05 16:49:35 archlinux systemd[4216]: Listening on D-Bus User Message Bus Socket.
May 05 16:49:35 archlinux systemd[4216]: Reached target Sockets.
May 05 16:49:35 archlinux systemd[4216]: Starting D-Bus User Message Bus...
May 05 16:49:36 archlinux dbus-broker-launch[4226]: Invalid D-Bus name 'hyprpolkitagent' in service file '/usr/share//dbus-1/services/hyprpolkitagent.service'
May 05 16:49:36 archlinux dbus-broker-launch[4226]: Service file '/usr/share//dbus-1/services/org.erikreider.swaync.service' is not named after the D-Bus name 'org.freedesktop.Notifications'.
May 05 16:49:36 archlinux dbus-broker-launch[4226]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
May 05 16:49:36 archlinux dbus-broker-launch[4226]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
May 05 16:49:36 archlinux dbus-broker-launch[4226]: Service file '/usr/share//dbus-1/services/org.kde.dolphin.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
May 05 16:49:36 archlinux dbus-broker-launch[4226]: Service file '/usr/share//dbus-1/services/org.kde.kscreen.service' is not named after the D-Bus name 'org.kde.KScreen'.
May 05 16:49:36 archlinux dbus-broker-launch[4226]: Service file '/usr/share//dbus-1/services/org.kde.plasma.Notifications.service' is not named after the D-Bus name 'org.freedesktop.Notifications'.
May 05 16:49:36 archlinux dbus-broker-launch[4226]: Ignoring duplicate name 'org.freedesktop.Notifications' in service file '/usr/share//dbus-1/services/org.kde.plasma.Notifications.service'
May 05 16:49:36 archlinux dbus-broker-launch[4226]: Service file '/usr/share//dbus-1/services/org.xfce.Thunar.FileManager1.service' is not named after the D-Bus name 'org.freedesktop.FileManager1'.
May 05 16:49:36 archlinux dbus-broker-launch[4226]: Ignoring duplicate name 'org.freedesktop.FileManager1' in service file '/usr/share//dbus-1/services/org.xfce.Thunar.FileManager1.service'
May 05 16:49:36 archlinux dbus-broker-launch[4226]: Service file '/usr/share//dbus-1/services/org.xfce.Tumbler.Cache1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Cache1'.
May 05 16:49:36 archlinux dbus-broker-launch[4226]: Service file '/usr/share//dbus-1/services/org.xfce.Tumbler.Manager1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Manager1'.
May 05 16:49:36 archlinux dbus-broker-launch[4226]: Service file '/usr/share//dbus-1/services/org.xfce.Tumbler.Thumbnailer1.service' is not named after the D-Bus name 'org.freedesktop.thumbnails.Thumbnailer1'.
May 05 16:49:36 archlinux systemd[4216]: Started D-Bus User Message Bus.
May 05 16:49:36 archlinux systemd[4216]: Reached target Basic System.
May 05 16:49:36 archlinux systemd[4216]: Cleanup lingering KCrash metadata was skipped because of an unmet condition check (ConditionPathExistsGlob=/home/enrique/.cache/kcrash-metadata/*.ini).
May 05 16:49:36 archlinux systemd[1]: Started User Manager for UID 1000.
May 05 16:49:36 archlinux dbus-broker-launch[4226]: Ready
May 05 16:49:36 archlinux systemd[4216]: Started PipeWire Multimedia Service.
May 05 16:49:36 archlinux systemd[1]: Started Session 2 of User enrique.
May 05 16:49:36 archlinux systemd[4216]: Started Multimedia Service Session Manager.
May 05 16:49:36 archlinux sddm-helper[4196]: pam_kwallet5(sddm:session): pam_kwallet5: pam_sm_open_session
May 05 16:49:36 archlinux systemd[4216]: Started PipeWire PulseAudio.
May 05 16:49:36 archlinux systemd[4216]: Starting Update XDG user dir configuration...
May 05 16:49:36 archlinux systemd[4216]: Finished Update XDG user dir configuration.
May 05 16:49:36 archlinux systemd[4216]: Reached target Main User Target.
May 05 16:49:36 archlinux systemd[4216]: Startup finished in 213ms.
May 05 16:49:36 archlinux systemd[1]: Starting RealtimeKit Scheduling Policy Service...
May 05 16:49:36 archlinux wireplumber[4230]: wp-internal-comp-loader: Loading profile 'main'
May 05 16:49:36 archlinux sddm-helper[4244]: pam_kwallet5: final socket path: /run/user/1000/kwallet5.socket
May 05 16:49:36 archlinux sddm-helper[4196]: Starting Wayland user session: "/usr/share/sddm/scripts/wayland-session" "/usr/lib/plasma-dbus-run-session-if-needed /usr/bin/startplasma-wayland"
May 05 16:49:36 archlinux sddm-helper[4249]: Jumping to VT 1
May 05 16:49:36 archlinux sddm-helper[4249]: VT mode didn't need to be fixed
May 05 16:49:36 archlinux systemd[1]: Started RealtimeKit Scheduling Policy Service.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Successfully called chroot.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Successfully dropped privileges.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Successfully limited resources.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Running.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Canary thread running.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Watchdog thread running.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Supervising 0 threads of 0 processes of 0 users.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Supervising 0 threads of 0 processes of 0 users.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Supervising 0 threads of 0 processes of 0 users.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Supervising 0 threads of 0 processes of 0 users.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Supervising 0 threads of 0 processes of 0 users.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Supervising 0 threads of 0 processes of 0 users.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Supervising 0 threads of 0 processes of 0 users.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Supervising 0 threads of 0 processes of 0 users.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Supervising 0 threads of 0 processes of 0 users.
May 05 16:49:36 archlinux systemd[1]: Starting Authorization Manager...
May 05 16:49:36 archlinux wireplumber[4230]: wp-device: SPA handle 'api.libcamera.enum.manager' could not be loaded; is it installed?
May 05 16:49:36 archlinux wireplumber[4230]: s-monitors-libcamera: PipeWire's libcamera SPA plugin is missing or broken. Some camera types may not be supported.
May 05 16:49:36 archlinux polkitd[4252]: Started polkitd version 126
May 05 16:49:36 archlinux polkitd[4252]: Loading rules from directory /etc/polkit-1/rules.d
May 05 16:49:36 archlinux polkitd[4252]: Loading rules from directory /run/polkit-1/rules.d
May 05 16:49:36 archlinux polkitd[4252]: Error opening rules directory: Error opening directory “/run/polkit-1/rules.d”: No such file or directory (g-file-error-quark, 4)
May 05 16:49:36 archlinux polkitd[4252]: Loading rules from directory /usr/local/share/polkit-1/rules.d
May 05 16:49:36 archlinux polkitd[4252]: Error opening rules directory: Error opening directory “/usr/local/share/polkit-1/rules.d”: No such file or directory (g-file-error-quark, 4)
May 05 16:49:36 archlinux polkitd[4252]: Loading rules from directory /usr/share/polkit-1/rules.d
May 05 16:49:36 archlinux polkitd[4252]: Finished loading, compiling and executing 8 rules
May 05 16:49:36 archlinux systemd[1]: Started Authorization Manager.
May 05 16:49:36 archlinux polkitd[4252]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
May 05 16:49:36 archlinux rtkit-daemon[4241]: Successfully made thread 4231 of process 4231 owned by '1000' high priority at nice level -11.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Supervising 1 threads of 1 processes of 1 users.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Successfully made thread 4242 of process 4231 owned by '1000' RT at priority 20.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Supervising 2 threads of 1 processes of 1 users.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Successfully made thread 4230 of process 4230 owned by '1000' high priority at nice level -11.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Supervising 3 threads of 2 processes of 1 users.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Successfully made thread 4248 of process 4230 owned by '1000' RT at priority 20.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Supervising 4 threads of 2 processes of 1 users.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Successfully made thread 4229 of process 4229 owned by '1000' high priority at nice level -11.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Supervising 5 threads of 3 processes of 1 users.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Successfully made thread 4240 of process 4229 owned by '1000' RT at priority 20.
May 05 16:49:36 archlinux rtkit-daemon[4241]: Supervising 6 threads of 3 processes of 1 users.
May 05 16:49:36 archlinux sddm[2593]: Session started true
May 05 16:49:36 archlinux systemd[1]: Starting Locale Service...
May 05 16:49:36 archlinux systemd[1]: Started Locale Service.
May 05 16:49:36 archlinux systemd[4216]: Reload requested from client PID 4249 ('startplasma-way')...
May 05 16:49:36 archlinux systemd[4216]: Reloading...
May 05 16:49:36 archlinux wireplumber[4230]: default: Failed to get percentage from UPower: org.freedesktop.DBus.Error.NameHasNoOwner
May 05 16:49:36 archlinux systemd[4216]: Reloading finished in 106 ms.
May 05 16:49:36 archlinux systemd[4216]: Created slice Slice /app/dbus-:1.1-org.kde.KSplash.
May 05 16:49:36 archlinux systemd[4216]: Started dbus-:1.1-org.kde.KSplash@0.service.
May 05 16:49:36 archlinux systemd[4216]: Created slice User Background Tasks Slice.
May 05 16:49:36 archlinux systemd[4216]: Submitting pending crash events was skipped because of an unmet condition check (ConditionPathExistsGlob=/home/enrique/.cache/drkonqi/sentry-envelopes/*).
May 05 16:49:36 archlinux systemd[4216]: Reached target Session services which should run early before the graphical session is brought up.
May 05 16:49:36 archlinux systemd[4216]: Starting KDE Global Shortcuts Server...
May 05 16:49:36 archlinux systemd[4216]: Starting KDE Window Manager...
May 05 16:49:36 archlinux systemd[4216]: Starting Baloo File Indexer Daemon...
May 05 16:49:36 archlinux kde-systemd-start-condition[4302]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:36 archlinux plasma_waitforname[4299]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:36 archlinux kwin_wayland_wrapper[4301]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:36 archlinux systemd[4216]: Started KDE Window Manager.
May 05 16:49:36 archlinux systemd[4216]: Starting KDE Config Module Initialization...
May 05 16:49:36 archlinux systemd[4216]: Starting Splash screen shown during boot...
May 05 16:49:36 archlinux kcminit_startup[4310]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:36 archlinux baloo_file[4305]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:36 archlinux systemd[4216]: Starting Portal service...
May 05 16:49:36 archlinux systemd[4216]: Started Baloo File Indexer Daemon.
May 05 16:49:36 archlinux systemd[4216]: Started KDE Global Shortcuts Server.
May 05 16:49:36 archlinux systemd[1]: Starting Disk Manager...
May 05 16:49:36 archlinux kernel: Bluetooth: RFCOMM TTY layer initialized
May 05 16:49:36 archlinux kernel: Bluetooth: RFCOMM socket layer initialized
May 05 16:49:36 archlinux kernel: Bluetooth: RFCOMM ver 1.11
May 05 16:49:36 archlinux bluetoothd[677]: Endpoint registered: sender=:1.39 path=/MediaEndpoint/A2DPSource/ldac
May 05 16:49:36 archlinux bluetoothd[677]: Endpoint registered: sender=:1.39 path=/MediaEndpoint/A2DPSink/aptx_hd
May 05 16:49:36 archlinux bluetoothd[677]: Endpoint registered: sender=:1.39 path=/MediaEndpoint/A2DPSource/aptx_hd
May 05 16:49:36 archlinux bluetoothd[677]: Endpoint registered: sender=:1.39 path=/MediaEndpoint/A2DPSink/aptx
May 05 16:49:36 archlinux bluetoothd[677]: Endpoint registered: sender=:1.39 path=/MediaEndpoint/A2DPSource/aptx
May 05 16:49:36 archlinux bluetoothd[677]: Endpoint registered: sender=:1.39 path=/MediaEndpoint/A2DPSink/aac
May 05 16:49:36 archlinux bluetoothd[677]: Endpoint registered: sender=:1.39 path=/MediaEndpoint/A2DPSource/aac
May 05 16:49:36 archlinux bluetoothd[677]: Endpoint registered: sender=:1.39 path=/MediaEndpoint/A2DPSink/opus_g
May 05 16:49:36 archlinux bluetoothd[677]: Endpoint registered: sender=:1.39 path=/MediaEndpoint/A2DPSource/opus_g
May 05 16:49:36 archlinux bluetoothd[677]: Endpoint registered: sender=:1.39 path=/MediaEndpoint/A2DPSink/sbc
May 05 16:49:36 archlinux bluetoothd[677]: Endpoint registered: sender=:1.39 path=/MediaEndpoint/A2DPSource/sbc
May 05 16:49:36 archlinux bluetoothd[677]: Endpoint registered: sender=:1.39 path=/MediaEndpoint/A2DPSource/aptx_ll_1
May 05 16:49:36 archlinux bluetoothd[677]: Endpoint registered: sender=:1.39 path=/MediaEndpoint/A2DPSource/aptx_ll_0
May 05 16:49:36 archlinux bluetoothd[677]: Endpoint registered: sender=:1.39 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_1
May 05 16:49:36 archlinux systemd[4216]: Starting sandboxed app permission store...
May 05 16:49:36 archlinux bluetoothd[677]: Endpoint registered: sender=:1.39 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_0
May 05 16:49:36 archlinux bluetoothd[677]: Endpoint registered: sender=:1.39 path=/MediaEndpoint/A2DPSource/faststream
May 05 16:49:36 archlinux bluetoothd[677]: Endpoint registered: sender=:1.39 path=/MediaEndpoint/A2DPSource/faststream_duplex
May 05 16:49:36 archlinux bluetoothd[677]: Endpoint registered: sender=:1.39 path=/MediaEndpoint/A2DPSink/opus_05
May 05 16:49:36 archlinux bluetoothd[677]: Endpoint registered: sender=:1.39 path=/MediaEndpoint/A2DPSource/opus_05
May 05 16:49:36 archlinux bluetoothd[677]: Endpoint registered: sender=:1.39 path=/MediaEndpoint/A2DPSink/opus_05_duplex
May 05 16:49:36 archlinux bluetoothd[677]: Endpoint registered: sender=:1.39 path=/MediaEndpoint/A2DPSource/opus_05_duplex
May 05 16:49:36 archlinux udisksd[4317]: udisks daemon version 2.10.1 starting
May 05 16:49:36 archlinux systemd[4216]: Started sandboxed app permission store.
May 05 16:49:36 archlinux systemd[4216]: Starting flatpak document portal service...
May 05 16:49:36 archlinux ksplashqml[4309]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:36 archlinux systemd[4216]: Started flatpak document portal service.
May 05 16:49:36 archlinux kernel: nvme nvme0: using unchecked data buffer
May 05 16:49:36 archlinux xdg-desktop-por[4313]: Choosing gtk.portal for org.freedesktop.impl.portal.Lockdown as a last-resort fallback
May 05 16:49:36 archlinux kwin_wayland[4306]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:36 archlinux kwin_wayland[4306]: No backend specified, automatically choosing drm
May 05 16:49:36 archlinux systemd[1]: Started Disk Manager.
May 05 16:49:36 archlinux systemd[1]: Starting Daemon for power management...
May 05 16:49:36 archlinux udisksd[4317]: Acquired the name org.freedesktop.UDisks2 on the system message bus
May 05 16:49:37 archlinux systemd[1]: Started Daemon for power management.
May 05 16:49:37 archlinux kcminit_startup[4310]: Initializing "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_fonts.so"
May 05 16:49:37 archlinux baloo_file[4305]: qt.dbus.integration: QDBusConnection: name 'org.freedesktop.UDisks2' had owner '' but we thought it was ':1.44'
May 05 16:49:37 archlinux baloo_file[4305]: qt.dbus.integration: QDBusConnection: name 'org.freedesktop.UPower' had owner '' but we thought it was ':1.46'
May 05 16:49:37 archlinux kwin_wayland_wrapper[4427]: The XKEYBOARD keymap compiler (xkbcomp) reports:
May 05 16:49:37 archlinux kwin_wayland_wrapper[4427]: > Warning: Could not resolve keysym XF86RefreshRateToggle
May 05 16:49:37 archlinux kwin_wayland_wrapper[4427]: > Warning: Could not resolve keysym XF86Accessibility
May 05 16:49:37 archlinux kwin_wayland_wrapper[4427]: > Warning: Could not resolve keysym XF86DoNotDisturb
May 05 16:49:37 archlinux kwin_wayland_wrapper[4427]: Errors from xkbcomp are not fatal to the X server
May 05 16:49:37 archlinux kwin_wayland_wrapper[4440]: The XKEYBOARD keymap compiler (xkbcomp) reports:
May 05 16:49:37 archlinux kwin_wayland_wrapper[4440]: > Warning: Unsupported maximum keycode 708, clipping.
May 05 16:49:37 archlinux kwin_wayland_wrapper[4440]: > X11 cannot support keycodes above 255.
May 05 16:49:37 archlinux kwin_wayland_wrapper[4440]: > Warning: Could not resolve keysym XF86RefreshRateToggle
May 05 16:49:37 archlinux kwin_wayland_wrapper[4440]: > Warning: Could not resolve keysym XF86Accessibility
May 05 16:49:37 archlinux kwin_wayland_wrapper[4440]: > Warning: Could not resolve keysym XF86DoNotDisturb
May 05 16:49:37 archlinux systemd[4216]: Starting Accessibility services bus...
May 05 16:49:37 archlinux kwin_wayland_wrapper[4440]: Errors from xkbcomp are not fatal to the X server
May 05 16:49:37 archlinux kcminit[4442]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:37 archlinux kcminit_startup[4310]: Initializing "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_style.so"
May 05 16:49:37 archlinux systemd[4216]: Started Accessibility services bus.
May 05 16:49:37 archlinux dbus-broker-launch[4454]: Ready
May 05 16:49:37 archlinux kcminit[4442]: Initializing "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_fonts.so"
May 05 16:49:37 archlinux kcminit[4442]: Initializing "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_style.so"
May 05 16:49:37 archlinux kcminit_startup[4310]: Initializing "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_mouse.so"
May 05 16:49:37 archlinux systemd[4216]: Started KDE Config Module Initialization.
May 05 16:49:37 archlinux systemd[4216]: Starting KDE Session Management Server...
May 05 16:49:37 archlinux systemd[4216]: Started Unlock kwallet from pam credentials.
May 05 16:49:37 archlinux systemd[4216]: Starting KDE Daemon 6...
May 05 16:49:37 archlinux pam_kwallet_init[4467]: 2025/05/05 16:49:37 socat[4467] W address is opened in read-write mode but only supports read-only
May 05 16:49:37 archlinux kwalletd6[4246]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:37 archlinux kded6[4465]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:37 archlinux ksmserver[4463]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:37 archlinux systemd[4216]: Started KDE Daemon 6.
May 05 16:49:37 archlinux systemd[4216]: Starting KDE Configuration Module Initialization (Phase 1)...
May 05 16:49:37 archlinux systemd[4216]: Starting User preferences database...
May 05 16:49:37 archlinux systemd[4216]: Started KDE Session Management Server.
May 05 16:49:37 archlinux systemd[4216]: Starting KDE Plasma Workspace...
May 05 16:49:37 archlinux systemd[4216]: Created slice Slice /app/dbus-:1.22-org.a11y.atspi.Registry.
May 05 16:49:37 archlinux systemd[4216]: Started dbus-:1.22-org.a11y.atspi.Registry@0.service.
May 05 16:49:37 archlinux qdbus[4509]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:37 archlinux systemd[4216]: Started User preferences database.
May 05 16:49:37 archlinux kcminit_startup[4310]: Initializing "/usr/lib/qt6/plugins/plasma/kcms/systemsettings_qwidgets/kcm_kgamma.so"
May 05 16:49:37 archlinux kcminit_startup[4310]: Initializing "/usr/lib/qt6/plugins/plasma/kcms/systemsettings/kcm_touchpad.so"
May 05 16:49:37 archlinux systemd[4216]: Finished KDE Configuration Module Initialization (Phase 1).
May 05 16:49:37 archlinux at-spi2-registryd[4519]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
May 05 16:49:37 archlinux kded6[4465]: org.kde.colorcorrectlocationupdater: Geolocator stopped
May 05 16:49:37 archlinux kded6[4465]: QDBusObjectPath: invalid path "/modules/oom-notifier"
May 05 16:49:37 archlinux kded6[4465]: kf.dbusaddons: The kded module name "oom-notifier" is invalid!
May 05 16:49:37 archlinux kded6[4465]: QDBusObjectPath: invalid path "/modules/plasma-session-shortcuts"
May 05 16:49:37 archlinux kded6[4465]: kf.dbusaddons: The kded module name "plasma-session-shortcuts" is invalid!
May 05 16:49:37 archlinux kded6[4465]: org.kde.kameleon: found no RGB LED devices
May 05 16:49:37 archlinux plasmashell[4518]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:37 archlinux NetworkManager[676]: <info> [1746456577.6889] agent-manager: agent[94e85e2557366390,:1.47/org.kde.plasma.networkmanagement/1000]: agent registered
May 05 16:49:37 archlinux kded6[4465]: org.kde.libkbolt: Failed to connect to Bolt manager DBus interface:
May 05 16:49:37 archlinux kded6[4465]: org.kde.bolt.kded: Couldn't connect to Bolt DBus daemon
May 05 16:49:37 archlinux kded6[4465]: QDBusObjectPath: invalid path "/modules/kded_plasma-welcome"
May 05 16:49:37 archlinux kded6[4465]: kf.dbusaddons: The kded module name "kded_plasma-welcome" is invalid!
May 05 16:49:37 archlinux systemd[4216]: Starting KActivityManager Activity manager Service...
May 05 16:49:37 archlinux kded6[4465]: org.kde.plasma.printmanager.kded: unable to register service to dbus
May 05 16:49:37 archlinux kded6[4465]: QDBusObjectPath: invalid path "/modules/wpad-detector"
May 05 16:49:37 archlinux kded6[4465]: kf.dbusaddons: The kded module name "wpad-detector" is invalid!
May 05 16:49:37 archlinux kactivitymanagerd[4551]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:37 archlinux kconf_update[4552]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:37 archlinux kconf_update[4552]: kf.config.kconf_update: /usr/share/kconf_update/ark.upd defined Version=5 but Version=6 was expected
May 05 16:49:37 archlinux kconf_update[4552]: kf.config.kconf_update: /usr/share/kconf_update/dolphin_directorysizemode.upd defined Version=5 but Version=6 was expected
May 05 16:49:37 archlinux kconf_update[4552]: kf.config.kconf_update: /usr/share/kconf_update/filepicker.upd defined Version=5 but Version=6 was expected
May 05 16:49:37 archlinux kconf_update[4552]: kf.config.kconf_update: /usr/share/kconf_update/konsole.upd defined Version=5 but Version=6 was expected
May 05 16:49:37 archlinux kactivitymanagerd[4551]: kf.windowsystem: virtual void KX11Extras::connectNotify(const QMetaMethod&) may only be used on X11
May 05 16:49:37 archlinux kactivitymanagerd[4551]: kf.windowsystem: virtual void KX11Extras::connectNotify(const QMetaMethod&) may only be used on X11
May 05 16:49:37 archlinux systemd[4216]: Started KActivityManager Activity manager Service.
May 05 16:49:37 archlinux systemd[4216]: Started KDE Plasma Workspace.
May 05 16:49:37 archlinux systemd[4216]: Reached target KDE Plasma Workspace Core.
May 05 16:49:37 archlinux systemd[4216]: Started Consume pending crashes using DrKonqi.
May 05 16:49:37 archlinux systemd[4216]: Started Proxies GTK DBus menus to a Plasma readable format.
May 05 16:49:37 archlinux systemd[4216]: Started KAccess.
May 05 16:49:37 archlinux systemd[4216]: Starting KDE PolicyKit Authentication Agent...
May 05 16:49:37 archlinux systemd[4216]: Starting Powerdevil...
May 05 16:49:37 archlinux dbus-broker-launch[674]: Activation request for 'org.freedesktop.ModemManager1' failed: The systemd unit 'dbus-org.freedesktop.ModemManager1.service' could not be found.
May 05 16:49:37 archlinux kded6[4465]: kf.modemmanagerqt: Failed enumerating MM objects: "org.freedesktop.DBus.Error.NameHasNoOwner"
"Could not activate remote peer 'org.freedesktop.ModemManager1': activation request failed: unknown unit"
May 05 16:49:37 archlinux systemd[4216]: Started Handle legacy xembed system tray icons.
May 05 16:49:37 archlinux drkonqi-coredump-processor[4579]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:37 archlinux gmenudbusmenuproxy[4580]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:37 archlinux xembedsniproxy[4584]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:37 archlinux kded6[4596]: xsettingsd: Loaded 14 settings from /home/enrique/.config/xsettingsd/xsettingsd.conf
May 05 16:49:37 archlinux kded6[4596]: xsettingsd: Created window 0x800001 on screen 0 with timestamp 24796
May 05 16:49:37 archlinux kded6[4596]: xsettingsd: Selection _XSETTINGS_S0 is owned by 0x0
May 05 16:49:37 archlinux kded6[4596]: xsettingsd: Took ownership of selection _XSETTINGS_S0
May 05 16:49:37 archlinux kaccess[4581]: Xlib XKB extension major= 1 minor= 0
May 05 16:49:37 archlinux kaccess[4581]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:37 archlinux systemd[1]: Created slice Slice /system/dbus-:1.2-org.kde.kded.smart.
May 05 16:49:37 archlinux systemd[1]: Started dbus-:1.2-org.kde.kded.smart@0.service.
May 05 16:49:37 archlinux polkit-kde-authentication-agent-1[4582]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:37 archlinux kded6[4465]: Known activities: QList("fa2af379-dd8f-4cdc-bd84-e9ccbabadde2")
May 05 16:49:37 archlinux kded6[4465]: Known activities: QList("fa2af379-dd8f-4cdc-bd84-e9ccbabadde2")
May 05 16:49:37 archlinux kded6[4465]: kf.bluezqt: PendingCall Error: "The name is not activatable"
May 05 16:49:37 archlinux org_kde_powerdevil[4583]: Starting libddcutil. library built Not set at Not set. stdout_stderr_redirected=true
May 05 16:49:37 archlinux org_kde_powerdevil[4583]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:37 archlinux polkit-kde-authentication-agent-1[4582]: New PolkitAgentListener 0x5ed2bb666db0
May 05 16:49:37 archlinux polkit-kde-authentication-agent-1[4582]: Adding new listener PolkitQt1::Agent::Listener(0x5ed2bb666b50) for 0x5ed2bb666db0
May 05 16:49:37 archlinux systemd[4216]: Started KDE PolicyKit Authentication Agent.
May 05 16:49:37 archlinux polkit-kde-authentication-agent-1[4582]: Listener online
May 05 16:49:37 archlinux polkitd[4252]: Registered Authentication Agent for unix-session:2 (system bus name :1.58 [/usr/lib/polkit-kde-authentication-agent-1], object path /org/kde/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
May 05 16:49:37 archlinux polkit-kde-authentication-agent-1[4582]: Authentication agent result: true
May 05 16:49:37 archlinux kaccess[4581]: X server XKB extension major= 1 minor= 0
May 05 16:49:37 archlinux org_kde_powerdevil[4583]: Initializing libddcutil. ddcutil version: 2.2.0, shared library: /usr/lib/libddcutil.so.5.2.0
May 05 16:49:37 archlinux org_kde_powerdevil[4583]: [ 4583] Options passed from client:
May 05 16:49:37 archlinux org_kde_powerdevil[4583]: [ 4583] Applying combined libddcutil options:
May 05 16:49:37 archlinux plasmashell[4518]: kf.plasma.quick: Applet preload policy set to 1
May 05 16:49:37 archlinux plasmashell[4518]: file:///usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/main.qml:178:25: QML FolderViewDropArea (parent or ancestor of QQuickLayoutAttached): Binding loop detected for property "minimumWidth":
file:///usr/share/plasma/plasmoids/org.kde.desktopcontainment/contents/ui/main.qml:201:9
May 05 16:49:37 archlinux org_kde_powerdevil[4583]: [ 4583] is_sysfs_reliable_for_busno(2) returned false and session type != X11. Assuming not asleep
May 05 16:49:38 archlinux plasmashell[4518]: Toolbox not loading, toolbox package is either invalid or disabled.
May 05 16:49:38 archlinux org_kde_powerdevil[4583]: [ 4583] is_sysfs_reliable_for_busno(3) returned false and session type != X11. Assuming not asleep
May 05 16:49:38 archlinux kioworker[4682]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:38 archlinux org_kde_powerdevil[4583]: [ 4583] is_sysfs_reliable_for_busno(4) returned false and session type != X11. Assuming not asleep
May 05 16:49:38 archlinux org_kde_powerdevil[4583]: [ 4583] is_sysfs_reliable_for_busno(5) returned false and session type != X11. Assuming not asleep
May 05 16:49:38 archlinux plasmashell[4518]: file:///usr/share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/main.qml:310:13: QML Image: Cannot open: file:///usr/share/plasma/plasmoids/org.kde.plasma.kickoff/contents/ui/start-here-kde-symbolic
May 05 16:49:38 archlinux org_kde_powerdevil[4583]: Library initialization complete.
May 05 16:49:38 archlinux org_kde_powerdevil[4583]: [ 4583] Watching for display connection changes, resolved watch mode = Watch_Mode_Xevent, poll loop interval = 100 millisec
May 05 16:49:38 archlinux org_kde_powerdevil[4583]: [ 4583] extra_stabilization_millisec: 0, stabilization_poll_millisec: 100
May 05 16:49:38 archlinux org_kde_powerdevil[4583]: [ 4583] libddcutil recheck thread (nil) started
May 05 16:49:38 archlinux org_kde_powerdevil[4583]: [ 4583] libddcutil watch thread 0x626f2bf24ce0 started
May 05 16:49:38 archlinux systemd[1]: Created slice Slice /system/dbus-:1.2-org.kde.powerdevil.discretegpuhelper.
May 05 16:49:38 archlinux systemd[1]: Started dbus-:1.2-org.kde.powerdevil.discretegpuhelper@0.service.
May 05 16:49:38 archlinux systemd[1]: Created slice Slice /system/dbus-:1.2-org.kde.powerdevil.chargethresholdhelper.
May 05 16:49:38 archlinux systemd[1]: Started dbus-:1.2-org.kde.powerdevil.chargethresholdhelper@0.service.
May 05 16:49:38 archlinux systemd[1]: Created slice Slice /system/dbus-:1.2-org.kde.powerdevil.backlighthelper.
May 05 16:49:38 archlinux systemd[1]: Started dbus-:1.2-org.kde.powerdevil.backlighthelper@0.service.
May 05 16:49:38 archlinux rtkit-daemon[4241]: Supervising 6 threads of 3 processes of 1 users.
May 05 16:49:38 archlinux rtkit-daemon[4241]: Supervising 6 threads of 3 processes of 1 users.
May 05 16:49:38 archlinux rtkit-daemon[4241]: Supervising 6 threads of 3 processes of 1 users.
May 05 16:49:38 archlinux org_kde_powerdevil[4583]: org.kde.powerdevil: org.kde.powerdevil.chargethresholdhelper.getthreshold failed "Charge thresholds are not supported by the kernel for this hardware"
May 05 16:49:38 archlinux systemd[4216]: Started Powerdevil.
May 05 16:49:38 archlinux systemd[4216]: Reached target KDE Plasma Workspace.
May 05 16:49:38 archlinux systemd[4216]: Reached target Current graphical user session.
May 05 16:49:38 archlinux systemd[4216]: Reached target plasma-workspace-wayland.target.
May 05 16:49:38 archlinux systemd[4216]: Starting AT-SPI D-Bus Bus...
May 05 16:49:38 archlinux systemd[4216]: Starting Blueman Applet...
May 05 16:49:38 archlinux systemd[4216]: Starting NetworkManager Applet...
May 05 16:49:38 archlinux org_kde_powerdevil[4583]: [ 4722] (dw_recheck_displays_func) Recheck interval: Slept for 200 millisec
May 05 16:49:38 archlinux systemd[4216]: Starting Discover...
May 05 16:49:38 archlinux systemd[4216]: Starting KDE Connect...
May 05 16:49:38 archlinux systemd[4216]: Starting Plasma Session Restore...
May 05 16:49:38 archlinux systemd[4216]: Starting Vesktop...
May 05 16:49:38 archlinux org_kde_powerdevil[4583]: org.kde.powerdevil: Handle button events action could not check for screen configuration
May 05 16:49:38 archlinux systemd[4216]: Starting KSplash "ready" Stage...
May 05 16:49:38 archlinux systemd[4216]: Starting KDE Session Restoration...
May 05 16:49:38 archlinux systemd[4216]: Starting Portal service (GTK/GNOME implementation)...
May 05 16:49:38 archlinux systemd[4216]: Started KDE Connect.
May 05 16:49:38 archlinux org_kde_powerdevil[4583]: org.kde.powerdevil: org.kde.powerdevil.chargethresholdhelper.getthreshold failed "Charge thresholds are not supported by the kernel for this hardware"
May 05 16:49:38 archlinux systemd[4216]: Started Blueman Applet.
May 05 16:49:38 archlinux systemd[4216]: Started Vesktop.
May 05 16:49:38 archlinux systemd[4216]: app-at\x2dspi\x2ddbus\x2dbus@autostart.service: Skipped due to 'exec-condition'.
May 05 16:49:38 archlinux systemd[4216]: Condition check resulted in AT-SPI D-Bus Bus being skipped.
May 05 16:49:38 archlinux systemd[4216]: app-nm\x2dapplet@autostart.service: Skipped due to 'exec-condition'.
May 05 16:49:38 archlinux systemd[4216]: Condition check resulted in NetworkManager Applet being skipped.
May 05 16:49:38 archlinux systemd[4216]: Finished KSplash "ready" Stage.
May 05 16:49:38 archlinux systemd[4216]: Started Plasma Session Restore.
May 05 16:49:38 archlinux systemd[4216]: Started Discover.
May 05 16:49:38 archlinux systemd[4216]: Reached target Startup of XDG autostart applications.
May 05 16:49:38 archlinux qdbus[4770]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:38 archlinux systemd[4216]: Started /opt/zen-browser-bin/zen.
May 05 16:49:38 archlinux systemd[4216]: Finished KDE Session Restoration.
May 05 16:49:38 archlinux plasma-fallback-session-restore[4777]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:38 archlinux kdeconnectd[4762]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:38 archlinux DiscoverNotifier[4776]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:38 archlinux xdg-desktop-por[4771]: Locale not supported by C library.
Using the fallback 'C' locale.
May 05 16:49:38 archlinux systemd[4216]: Started Thunar.
May 05 16:49:38 archlinux systemd[4216]: Finished Splash screen shown during boot.
May 05 16:49:38 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=1200900
May 05 16:49:38 archlinux systemd[4216]: Starting Xfce configuration service...
May 05 16:49:38 archlinux systemd[4216]: Started Xfce configuration service.
May 05 16:49:38 archlinux Thunar[4788]: Locale not supported by C library.
Using the fallback 'C' locale.
May 05 16:49:38 archlinux systemd[4216]: Started Portal service (GTK/GNOME implementation).
May 05 16:49:38 archlinux zen[4781]: [4781, Main Thread] WARNING: Locale not supported by C library.
May 05 16:49:38 archlinux zen[4781]: Using the fallback 'C' locale.: 'glib warning', file /home/ubuntu/actions-runner/_work/desktop/desktop/engine/toolkit/xre/nsSigHandlers.cpp:201
May 05 16:49:38 archlinux zen[4781]: Locale not supported by C library.
Using the fallback 'C' locale.
May 05 16:49:38 archlinux rtkit-daemon[4241]: Supervising 6 threads of 3 processes of 1 users.
May 05 16:49:38 archlinux rtkit-daemon[4241]: Supervising 6 threads of 3 processes of 1 users.
May 05 16:49:38 archlinux rtkit-daemon[4241]: Supervising 6 threads of 3 processes of 1 users.
May 05 16:49:38 archlinux systemd[4216]: Starting Xdg Desktop Portal For KDE...
May 05 16:49:38 archlinux DiscoverNotifier[4776]: couldn't load "/usr/lib/qt6/plugins/discover-notifier/DiscoverPackageKitNotifier.so" because "Cannot load library /usr/lib/qt6/plugins/discover-notifier/DiscoverPackageKitNotifier.so: libpackagekitqt6.so.1: cannot open shared object file: No such file or directory"
May 05 16:49:38 archlinux systemd[4216]: Started Visual Studio Code - Text Editor.
May 05 16:49:38 archlinux systemd[4216]: Started Zed - Text Editor.
May 05 16:49:38 archlinux systemd[4216]: Started kitty - Terminal emulator.
May 05 16:49:38 archlinux systemd[4216]: Started Lutris.
May 05 16:49:38 archlinux systemd[4216]: Started Dolphin - File Manager.
May 05 16:49:38 archlinux systemd[4216]: Started System Monitor.
May 05 16:49:38 archlinux systemd[4216]: Started Spotify - Music Player.
May 05 16:49:38 archlinux kernel: warning: `kdeconnectd' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
May 05 16:49:38 archlinux lutris[4869]: Unsupported locale setting: unsupported locale setting
May 05 16:49:38 archlinux plasma-systemmonitor[4871]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:38 archlinux xdg-desktop-portal-kde[4861]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:39 archlinux blueman-applet[4759]: Locale not supported by C library.
Using the fallback 'C' locale.
May 05 16:49:39 archlinux dolphin[4870]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:39 archlinux systemd[4216]: Started Xdg Desktop Portal For KDE.
May 05 16:49:39 archlinux rtkit-daemon[4241]: Supervising 6 threads of 3 processes of 1 users.
May 05 16:49:39 archlinux rtkit-daemon[4241]: Supervising 6 threads of 3 processes of 1 users.
May 05 16:49:39 archlinux rtkit-daemon[4241]: Supervising 6 threads of 3 processes of 1 users.
May 05 16:49:39 archlinux systemd[4216]: Started Portal service.
May 05 16:49:39 archlinux python3[4869]: Locale not supported by C library.
Using the fallback 'C' locale.
May 05 16:49:39 archlinux kitty[4867]: [0.207] Failed to set locale with LANG: en_US.UTF-8
May 05 16:49:39 archlinux kitty[4867]: [0.207] Failed to set locale with no LANG
May 05 16:49:39 archlinux blueman-applet[4759]: blueman-applet 16.49.39 WARNING PluginManager:93 load_plugin: Failed to start plugin GameControllerWakelock: Only X11 platform is supported
May 05 16:49:39 archlinux blueman-applet[4759]: blueman-applet 16.49.39 WARNING PluginManager:153 __load_plugin: Not loading DhcpClient because its conflict has higher priority
May 05 16:49:39 archlinux blueman-applet[4759]: blueman-applet 16.49.39 WARNING PluginManager:153 __load_plugin: Not loading PPPSupport because its conflict has higher priority
May 05 16:49:39 archlinux systemd[4216]: Started kitty child process: 5058 launched by: 4867.
May 05 16:49:39 archlinux kioworker[5078]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:39 archlinux kioworker[5102]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:39 archlinux kioworker[5098]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:39 archlinux kitty[4867]: [0.390] [glfw error 65544]: Notify: Failed to get server capabilities error: [org.freedesktop.DBus.Error.NoReply] Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
May 05 16:49:39 archlinux vesktop[4764]: APPIMAGE env is not defined, current application is not an AppImage
May 05 16:49:39 archlinux vesktop[4764]: Vesktop v1.5.6
May 05 16:49:39 archlinux blueman-tray[5044]: Locale not supported by C library.
Using the fallback 'C' locale.
May 05 16:49:39 archlinux kded6[4465]: Registering ":1.64/org/blueman/sni" to system tray
May 05 16:49:39 archlinux spotify[4872]: libayatana-appindicator is deprecated. Please use libayatana-appindicator-glib in newly written code.
May 05 16:49:39 archlinux kded6[4465]: Registering ":1.72/org/ayatana/NotificationItem/spotify_client" to system tray
May 05 16:49:39 archlinux kbuildsycoca6[5326]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:39 archlinux kwin_wayland[4306]: kf.windowsystem: static bool KX11Extras::mapViewport() may only be used on X11
May 05 16:49:39 archlinux systemd[1]: Starting Time & Date Service...
May 05 16:49:39 archlinux kioworker[5439]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:39 archlinux systemd[1]: Started Time & Date Service.
May 05 16:49:39 archlinux vesktop[4764]: checkForUpdatesAndNotify called, downloadPromise is null
May 05 16:49:39 archlinux lutris[4869]: 2025-05-05 16:49:39,707: The Battle.net source is unavailable because Google protobuf could not be loaded: No module named 'google'
May 05 16:49:39 archlinux systemd[4216]: Starting Track hardware statistics...
May 05 16:49:39 archlinux ksystemstats[5554]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:39 archlinux kwin_wayland[4306]: kf.windowsystem: static bool KX11Extras::mapViewport() may only be used on X11
May 05 16:49:39 archlinux kwin_wayland[4306]: kwin_scene_opengl: 0x2: GL_INVALID_VALUE in glTexStorage2D(width, height or depth < 1)
May 05 16:49:39 archlinux kwin_wayland[4306]: kwin_scene_opengl: Invalid framebuffer status: "GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT"
May 05 16:49:39 archlinux kwin_wayland[4306]: kwin_scene_opengl: 0x2: GL_INVALID_OPERATION in glBindFramebuffer(non-gen name)
May 05 16:49:39 archlinux kwin_wayland[4306]: kwin_scene_opengl: 0x2: GL_INVALID_FRAMEBUFFER_OPERATION in glClear(incomplete framebuffer)
May 05 16:49:39 archlinux kwin_wayland[4306]: kwin_core: Cannot grant a token to KWin::ClientConnection(0x6299d7aa4270)
May 05 16:49:39 archlinux kwin_wayland[4306]: kwin_core: Cannot grant a token to KWin::ClientConnection(0x6299d7aa4270)
May 05 16:49:39 archlinux vesktop[4764]: [arRPC > ipc] listening at /run/user/1000/discord-ipc-0
May 05 16:49:39 archlinux vesktop[4764]: [arRPC > websocket] listening on 6463
May 05 16:49:39 archlinux vesktop[4764]: [arRPC > process] started
May 05 16:49:40 archlinux kded6[4465]: Registering ":1.80/StatusNotifierItem" to system tray
May 05 16:49:40 archlinux NetworkManager[676]: <info> [1746456580.0704] audit: op="statistics" interface="enp2s0" ifindex=2 args="500" pid=5554 uid=1000 result="success"
May 05 16:49:40 archlinux NetworkManager[676]: <info> [1746456580.0769] audit: op="statistics" interface="wlan0" ifindex=3 args="500" pid=5554 uid=1000 result="success"
May 05 16:49:40 archlinux systemd[4216]: Started Track hardware statistics.
May 05 16:49:40 archlinux NetworkManager[676]: <info> [1746456580.0865] audit: op="statistics" interface="B4:05:A1:CF:30:89" args="500" pid=5554 uid=1000 result="success"
May 05 16:49:40 archlinux NetworkManager[676]: <info> [1746456580.0997] audit: op="statistics" interface="wlan0" ifindex=3 args="500" pid=5554 uid=1000 result="success"
May 05 16:49:40 archlinux NetworkManager[676]: <info> [1746456580.1083] audit: op="statistics" interface="wlan0" ifindex=3 args="500" pid=5554 uid=1000 result="success"
May 05 16:49:40 archlinux xdg-desktop-portal-kde[4861]: qt.dbus.integration: QDBusConnection: couldn't handle call to CreateMonitor, no slot matched
May 05 16:49:40 archlinux xdg-desktop-portal-kde[4861]: qt.dbus.integration: QDBusConnection: couldn't handle call to CreateMonitor, no slot matched
May 05 16:49:40 archlinux xdg-desktop-portal-kde[4861]: qt.dbus.integration: Could not find slot InhibitPortal::CreateMonitor
May 05 16:49:40 archlinux xdg-desktop-por[4313]: A backend call failed: No such method 'CreateMonitor' in interface 'org.freedesktop.impl.portal.Inhibit' at object path '/org/freedesktop/portal/desktop' (signature 'ooss')
May 05 16:49:40 archlinux xdg-desktop-por[4313]: Failed to close session implementation: GDBus.Error:org.freedesktop.DBus.Error.UnknownObject: No such object path '/org/freedesktop/portal/desktop/session/1_58/gtk2132233505'
May 05 16:49:40 archlinux vesktop[5565]: [5565:0505/164940.254174:ERROR:angle_platform_impl.cc(49)] ImageEGL.cpp:112 (operator()): eglCreateImage failed with 0x00003003
May 05 16:49:40 archlinux vesktop[5565]: ERR: ImageEGL.cpp:112 (operator()): eglCreateImage failed with 0x00003003
May 05 16:49:40 archlinux vesktop[5565]: [5565:0505/164940.255586:ERROR:scoped_egl_image.cc(23)] Failed to create EGLImage: EGL_SUCCESS
May 05 16:49:40 archlinux vesktop[5565]: [5565:0505/164940.255677:ERROR:native_pixmap_egl_binding.cc(114)] Unable to initialize binding from pixmap
May 05 16:49:40 archlinux vesktop[5565]: [5565:0505/164940.255749:ERROR:ozone_image_backing.cc(319)] OzoneImageBacking::ProduceSkiaGanesh failed to create GL representation
May 05 16:49:40 archlinux vesktop[5565]: [5565:0505/164940.255819:ERROR:shared_image_manager.cc(408)] SharedImageManager::ProduceSkia: Trying to produce a Skia representation from an incompatible backing: OzoneImageBacking
May 05 16:49:40 archlinux vesktop[5565]: [5565:0505/164940.256074:ERROR:gpu_service_impl.cc(1182)] Exiting GPU process because some drivers can't recover from errors. GPU process will restart shortly.
May 05 16:49:40 archlinux lutris[4869]: 2025-05-05 16:49:40,262: Starting Lutris 0.5.19
May 05 16:49:40 archlinux vesktop[4764]: [4764:0505/164940.276685:ERROR:gpu_process_host.cc(953)] GPU process exited unexpectedly: exit_code=8704
May 05 16:49:40 archlinux lutris[4869]: 2025-05-05 16:49:40,302: "card1" is AMD Radeon 780M (1002:15bf 17aa:3c93 amdgpu) Driver 25.0.4
May 05 16:49:40 archlinux rtkit-daemon[4241]: Supervising 6 threads of 3 processes of 1 users.
May 05 16:49:40 archlinux rtkit-daemon[4241]: Supervising 6 threads of 3 processes of 1 users.
May 05 16:49:40 archlinux kernel: traps: ThreadPoolForeg[5841] trap int3 ip:559a4262c258 sp:74263e9f8390 error:0 in electron[64cf258,559a3da50000+96f7000]
May 05 16:49:40 archlinux rtkit-daemon[4241]: Supervising 6 threads of 3 processes of 1 users.
May 05 16:49:40 archlinux rtkit-daemon[4241]: Supervising 6 threads of 3 processes of 1 users.
May 05 16:49:40 archlinux systemd-coredump[5866]: Process 5841 (ThreadPoolForeg) of user 1000 terminated abnormally with signal 5/TRAP, processing...
May 05 16:49:40 archlinux systemd[1]: Created slice Slice /system/drkonqi-coredump-processor.
May 05 16:49:40 archlinux systemd[1]: Created slice Slice /system/systemd-coredump.
May 05 16:49:40 archlinux systemd[1]: Started Process Core Dump (PID 5866/UID 0).
May 05 16:49:40 archlinux systemd[1]: Started Pass systemd-coredump journal entries to relevant user for potential DrKonqi handling.
May 05 16:49:40 archlinux rtkit-daemon[4241]: Successfully made thread 5869 of process 4781 owned by '1000' RT at priority 10.
May 05 16:49:40 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:49:40 archlinux vesktop[5738]: [5738:0505/164940.523884:ERROR:command_buffer_proxy_impl.cc(125)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
May 05 16:49:40 archlinux vesktop[5798]: [5798:0505/164940.533267:ERROR:angle_platform_impl.cc(49)] ImageEGL.cpp:112 (operator()): eglCreateImage failed with 0x00003003
May 05 16:49:40 archlinux vesktop[5798]: ERR: ImageEGL.cpp:112 (operator()): eglCreateImage failed with 0x00003003
May 05 16:49:40 archlinux vesktop[5798]: [5798:0505/164940.533367:ERROR:scoped_egl_image.cc(23)] Failed to create EGLImage: EGL_SUCCESS
May 05 16:49:40 archlinux vesktop[5798]: [5798:0505/164940.533409:ERROR:native_pixmap_egl_binding.cc(114)] Unable to initialize binding from pixmap
May 05 16:49:40 archlinux vesktop[5798]: [5798:0505/164940.533459:ERROR:ozone_image_backing.cc(319)] OzoneImageBacking::ProduceSkiaGanesh failed to create GL representation
May 05 16:49:40 archlinux vesktop[5798]: [5798:0505/164940.533496:ERROR:shared_image_manager.cc(408)] SharedImageManager::ProduceSkia: Trying to produce a Skia representation from an incompatible backing: OzoneImageBacking
May 05 16:49:40 archlinux vesktop[5798]: [5798:0505/164940.533567:ERROR:gpu_service_impl.cc(1182)] Exiting GPU process because some drivers can't recover from errors. GPU process will restart shortly.
May 05 16:49:40 archlinux vesktop[5738]: [5738:0505/164940.539586:ERROR:command_buffer_proxy_impl.cc(125)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
May 05 16:49:40 archlinux vesktop[4764]: [4764:0505/164940.543221:ERROR:gpu_process_host.cc(953)] GPU process exited unexpectedly: exit_code=8704
May 05 16:49:40 archlinux lutris[4869]: 2025-05-05 16:49:40,544: "card0" is NVIDIA GeForce RTX 4060 Laptop GPU (10de:28e0 17aa:3c93 nvidia) Driver 570.144
May 05 16:49:40 archlinux xdg-desktop-portal-kde[4861]: xdp-kde-settings: Namespace "org.gnome.desktop.interface" is not supported
May 05 16:49:40 archlinux xdg-desktop-portal-kde[4861]: xdp-kde-settings: Namespace "org.gnome.desktop.interface" is not supported
May 05 16:49:40 archlinux vesktop[5924]: [5924:0505/164940.797306:ERROR:angle_platform_impl.cc(49)] ImageEGL.cpp:112 (operator()): eglCreateImage failed with 0x00003003
May 05 16:49:40 archlinux vesktop[5924]: ERR: ImageEGL.cpp:112 (operator()): eglCreateImage failed with 0x00003003
May 05 16:49:40 archlinux vesktop[5924]: [5924:0505/164940.797417:ERROR:scoped_egl_image.cc(23)] Failed to create EGLImage: EGL_SUCCESS
May 05 16:49:40 archlinux vesktop[5924]: [5924:0505/164940.797573:ERROR:native_pixmap_egl_binding.cc(114)] Unable to initialize binding from pixmap
May 05 16:49:40 archlinux vesktop[5924]: [5924:0505/164940.797648:ERROR:ozone_image_backing.cc(319)] OzoneImageBacking::ProduceSkiaGanesh failed to create GL representation
May 05 16:49:40 archlinux vesktop[5924]: [5924:0505/164940.797681:ERROR:shared_image_manager.cc(408)] SharedImageManager::ProduceSkia: Trying to produce a Skia representation from an incompatible backing: OzoneImageBacking
May 05 16:49:40 archlinux vesktop[5924]: [5924:0505/164940.797742:ERROR:gpu_service_impl.cc(1182)] Exiting GPU process because some drivers can't recover from errors. GPU process will restart shortly.
May 05 16:49:40 archlinux vesktop[4764]: [4764:0505/164940.805912:ERROR:gpu_process_host.cc(953)] GPU process exited unexpectedly: exit_code=8704
May 05 16:49:40 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:49:40 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:49:40 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:49:40 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:49:40 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:49:40 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:49:40 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:49:40 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:49:40 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:49:40 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:49:40 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:49:40 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:49:41 archlinux vesktop[5608]: [5608:0505/164941.015848:ERROR:command_buffer_proxy_impl.cc(125)] ContextResult::kTransientFailure: Failed to send GpuControl.CreateCommandBuffer.
May 05 16:49:41 archlinux kwin_wayland[4306]: kwin_core: Cannot grant a token to KWin::ClientConnection(0x6299d79e3960)
May 05 16:49:41 archlinux kwin_wayland[4306]: kwin_core: Cannot grant a token to KWin::ClientConnection(0x6299d797bef0)
May 05 16:49:41 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:49:41 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:49:41 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=1200900
May 05 16:49:41 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:49:41 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:49:42 archlinux kded6[4465]: org.kde.colorcorrectlocationupdater: Geolocator stopped
May 05 16:49:42 archlinux systemd-coredump[5872]: Process 5841 (ThreadPoolForeg) of user 1000 dumped core.
Stack trace of thread 5841:
#0 0x0000559a4262c258 n/a (/usr/lib/electron35/electron + 0x64d0258)
#1 0x0000559a4262c201 close (/usr/lib/electron35/electron + 0x64d0201)
#2 0x0000559a427b415f n/a (/usr/lib/electron35/electron + 0x665815f)
#3 0x0000559a427b46ab n/a (/usr/lib/electron35/electron + 0x66586ab)
#4 0x0000559a4264756c n/a (/usr/lib/electron35/electron + 0x64eb56c)
#5 0x0000559a426473ef n/a (/usr/lib/electron35/electron + 0x64eb3ef)
#6 0x0000559a4262c257 n/a (/usr/lib/electron35/electron + 0x64d0257)
#7 0x0000559a4262c201 close (/usr/lib/electron35/electron + 0x64d0201)
#8 0x0000742646b64296 n/a (libglib-2.0.so.0 + 0xbc296)
#9 0x0000742646b65d60 n/a (libglib-2.0.so.0 + 0xbdd60)
#10 0x0000742646b67ed1 n/a (libglib-2.0.so.0 + 0xbfed1)
#11 0x0000742646b2bbdc g_spawn_sync (libglib-2.0.so.0 + 0x83bdc)
#12 0x00007425b4ea222c spd_open2 (libspeechd.so.2 + 0x622c)
#13 0x00007425b4ea275e spd_open (libspeechd.so.2 + 0x675e)
#14 0x0000559a414cdc75 n/a (/usr/lib/electron35/electron + 0x5371c75)
#15 0x0000559a414cd55e n/a (/usr/lib/electron35/electron + 0x537155e)
#16 0x0000559a425c43b5 n/a (/usr/lib/electron35/electron + 0x64683b5)
#17 0x0000559a425f701d n/a (/usr/lib/electron35/electron + 0x649b01d)
#18 0x0000559a425f6619 n/a (/usr/lib/electron35/electron + 0x649a619)
#19 0x0000559a425f61c9 n/a (/usr/lib/electron35/electron + 0x649a1c9)
#20 0x0000559a4260cfdb n/a (/usr/lib/electron35/electron + 0x64b0fdb)
#21 0x0000559a4260caaa n/a (/usr/lib/electron35/electron + 0x64b0aaa)
#22 0x0000559a4260c941 n/a (/usr/lib/electron35/electron + 0x64b0941)
#23 0x0000559a4262be97 n/a (/usr/lib/electron35/electron + 0x64cfe97)
#24 0x00007426449737eb n/a (libc.so.6 + 0x957eb)
#25 0x00007426449f718c n/a (libc.so.6 + 0x11918c)
ELF object binary architecture: AMD x86-64
May 05 16:49:42 archlinux drkonqi-coredump-processor[5873]: "/usr/lib/electron35/electron" 5841 "/var/lib/systemd/coredump/core.ThreadPoolForeg.1000.4d34d274961748bd82221c1ed5985ade.5841.1746456580000000.zst"
May 05 16:49:42 archlinux systemd[1]: systemd-coredump@0-5866-0.service: Deactivated successfully.
May 05 16:49:42 archlinux systemd[1]: systemd-coredump@0-5866-0.service: Consumed 1.644s CPU time, 916.6M memory peak.
May 05 16:49:42 archlinux systemd[1]: drkonqi-coredump-processor@0-5866-0.service: Deactivated successfully.
May 05 16:49:42 archlinux systemd[1]: drkonqi-coredump-processor@0-5866-0.service: Consumed 232ms CPU time, 623.5M memory peak.
May 05 16:49:42 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 5873/UID 0).
May 05 16:49:42 archlinux drkonqi-coredump-launcher[6593]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:42 archlinux drkonqi-coredump-launcher[6593]: Unable to find file for pid 5841 expected at "kcrash-metadata/electron.4d34d274961748bd82221c1ed5985ade.5841.ini"
May 05 16:49:42 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:49:42 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:49:42 archlinux drkonqi-coredump-launcher[6593]: Nothing handled the dump :O
May 05 16:49:42 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:49:42 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:49:42 archlinux kwin_wayland[4306]: kwin_core: Cannot grant a token to KWin::ClientConnection(0x6299d7aa4270)
May 05 16:49:42 archlinux kwin_wayland[4306]: kwin_core: Cannot grant a token to KWin::ClientConnection(0x6299d7aa4270)
May 05 16:49:42 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:49:42 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:49:42 archlinux plasma-browser-integration-host[6728]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:44 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=1200900
May 05 16:49:45 archlinux spotify[5970]: *** stack smashing detected ***: terminated
May 05 16:49:45 archlinux systemd-coredump[6864]: Process 5970 (spotify) of user 1000 terminated abnormally with signal 6/ABRT, processing...
May 05 16:49:45 archlinux systemd[1]: Started Process Core Dump (PID 6864/UID 0).
May 05 16:49:45 archlinux systemd[1]: Started Pass systemd-coredump journal entries to relevant user for potential DrKonqi handling.
May 05 16:49:45 archlinux systemd[1]: Stopping User Manager for UID 960...
May 05 16:49:45 archlinux systemd[3688]: Activating special unit Exit the Session...
May 05 16:49:45 archlinux systemd[3688]: Stopped target Main User Target.
May 05 16:49:45 archlinux systemd[3688]: Stopped target Basic System.
May 05 16:49:45 archlinux systemd[3688]: Stopped target Paths.
May 05 16:49:45 archlinux systemd[3688]: Stopped Submitting pending crash events (file monitor).
May 05 16:49:45 archlinux systemd[3688]: Stopped target Sockets.
May 05 16:49:45 archlinux systemd[3688]: Stopped target Timers.
May 05 16:49:45 archlinux systemd[3688]: Closed GnuPG network certificate management daemon.
May 05 16:49:45 archlinux systemd[3688]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
May 05 16:49:45 archlinux systemd[3688]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
May 05 16:49:45 archlinux systemd[3688]: Closed GnuPG cryptographic agent (ssh-agent emulation).
May 05 16:49:45 archlinux systemd[3688]: Closed GnuPG cryptographic agent and passphrase cache.
May 05 16:49:45 archlinux systemd[3688]: Closed GnuPG public key management service.
May 05 16:49:45 archlinux systemd[3688]: Closed p11-kit server.
May 05 16:49:45 archlinux systemd[3688]: Closed PipeWire PulseAudio.
May 05 16:49:45 archlinux systemd[3688]: Closed PipeWire Multimedia System Sockets.
May 05 16:49:45 archlinux dbus-broker[3775]: Dispatched 197 messages @ 1(±2)μs / message.
May 05 16:49:45 archlinux systemd[3688]: Stopping D-Bus User Message Bus...
May 05 16:49:45 archlinux systemd[3688]: Stopped D-Bus User Message Bus.
May 05 16:49:45 archlinux systemd[3688]: Removed slice User Core Session Slice.
May 05 16:49:45 archlinux systemd[3688]: Closed D-Bus User Message Bus Socket.
May 05 16:49:45 archlinux systemd[3688]: Removed slice User Application Slice.
May 05 16:49:45 archlinux systemd[3688]: Reached target Shutdown.
May 05 16:49:45 archlinux systemd[3688]: Finished Exit the Session.
May 05 16:49:45 archlinux systemd[3688]: Reached target Exit the Session.
May 05 16:49:45 archlinux (sd-pam)[3712]: pam_unix(systemd-user:session): session closed for user sddm
May 05 16:49:45 archlinux systemd-logind[678]: Removed session 1.
May 05 16:49:45 archlinux systemd[1]: user@960.service: Deactivated successfully.
May 05 16:49:45 archlinux systemd[1]: Stopped User Manager for UID 960.
May 05 16:49:45 archlinux systemd[1]: Stopping User Runtime Directory /run/user/960...
May 05 16:49:45 archlinux systemd-coredump[6865]: Process 5970 (spotify) of user 1000 dumped core.
Stack trace of thread 5970:
#0 0x00007e6009fdd74c n/a (libc.so.6 + 0x9774c)
#1 0x00007e6009f83dc0 raise (libc.so.6 + 0x3ddc0)
#2 0x00007e6009f6b57a abort (libc.so.6 + 0x2557a)
#3 0x00007e6009f6c5c9 n/a (libc.so.6 + 0x265c9)
#4 0x00007e600a06aa09 __fortify_fail (libc.so.6 + 0x124a09)
#5 0x00007e600a06bd34 __stack_chk_fail (libc.so.6 + 0x125d34)
#6 0x000060773c3ac0b3 n/a (/opt/spotify/spotify + 0xd8f0b3)
#7 0x00007e6009f6d6b5 n/a (libc.so.6 + 0x276b5)
#8 0x00007e6009f6d769 __libc_start_main (libc.so.6 + 0x27769)
#9 0x000060773c3aaa6e _start (/opt/spotify/spotify + 0xd8da6e)
Stack trace of thread 5973:
#0 0x00007e6009fe3e22 n/a (libc.so.6 + 0x9de22)
#1 0x00007e6009fd7fda n/a (libc.so.6 + 0x91fda)
#2 0x00007e6009fd864c n/a (libc.so.6 + 0x9264c)
#3 0x00007e6009fdad1e pthread_cond_wait (libc.so.6 + 0x94d1e)
#4 0x00007e6011fa4226 n/a (libcef.so + 0x6da4226)
#5 0x00007e6011fcd0e3 n/a (libcef.so + 0x6dcd0e3)
#6 0x00007e6011f4ed6d n/a (libcef.so + 0x6d4ed6d)
#7 0x00007e6011f87fed n/a (libcef.so + 0x6d87fed)
#8 0x00007e6011f88a23 n/a (libcef.so + 0x6d88a23)
#9 0x00007e6011f886ed n/a (libcef.so + 0x6d886ed)
#10 0x00007e6011f88603 n/a (libcef.so + 0x6d88603)
#11 0x00007e6011fa4a42 n/a (libcef.so + 0x6da4a42)
#12 0x00007e6009fdb7eb n/a (libc.so.6 + 0x957eb)
#13 0x00007e600a05f18c n/a (libc.so.6 + 0x11918c)
Stack trace of thread 5971:
#0 0x00007e6009fe3e22 n/a (libc.so.6 + 0x9de22)
#1 0x00007e6009fd7fda n/a (libc.so.6 + 0x91fda)
#2 0x00007e6009fd864c n/a (libc.so.6 + 0x9264c)
#3 0x00007e6009fdaf28 pthread_cond_timedwait (libc.so.6 + 0x94f28)
#4 0x00007e6011fa4348 n/a (libcef.so + 0x6da4348)
#5 0x00007e6011fcd10d n/a (libcef.so + 0x6dcd10d)
#6 0x00007e6011f4ed6d n/a (libcef.so + 0x6d4ed6d)
#7 0x00007e6011f8c0bd n/a (libcef.so + 0x6d8c0bd)
#8 0x00007e6011f8c244 n/a (libcef.so + 0x6d8c244)
#9 0x00007e6011fa4a42 n/a (libcef.so + 0x6da4a42)
#10 0x00007e6009fdb7eb n/a (libc.so.6 + 0x957eb)
#11 0x00007e600a05f18c n/a (libc.so.6 + 0x11918c)
Stack trace of thread 5974:
#0 0x00007e6009fe3e22 n/a (libc.so.6 + 0x9de22)
#1 0x00007e6009fd7fda n/a (libc.so.6 + 0x91fda)
#2 0x00007e6009fd864c n/a (libc.so.6 + 0x9264c)
#3 0x00007e6009fdad1e pthread_cond_wait (libc.so.6 + 0x94d1e)
#4 0x00007e6011fa4226 n/a (libcef.so + 0x6da4226)
#5 0x00007e6011fcd0e3 n/a (libcef.so + 0x6dcd0e3)
#6 0x00007e6011f4ed6d n/a (libcef.so + 0x6d4ed6d)
#7 0x00007e6011f87fed n/a (libcef.so + 0x6d87fed)
#8 0x00007e6011f88a23 n/a (libcef.so + 0x6d88a23)
#9 0x00007e6011f886ed n/a (libcef.so + 0x6d886ed)
#10 0x00007e6011f88603 n/a (libcef.so + 0x6d88603)
#11 0x00007e6011fa4a42 n/a (libcef.so + 0x6da4a42)
#12 0x00007e6009fdb7eb n/a (libc.so.6 + 0x957eb)
#13 0x00007e600a05f18c n/a (libc.so.6 + 0x11918c)
ELF object binary architecture: AMD x86-64
May 05 16:49:45 archlinux systemd[1]: run-user-960.mount: Deactivated successfully.
May 05 16:49:45 archlinux systemd[1]: user-runtime-dir@960.service: Deactivated successfully.
May 05 16:49:45 archlinux systemd[1]: Stopped User Runtime Directory /run/user/960.
May 05 16:49:45 archlinux systemd[1]: Removed slice User Slice of UID 960.
May 05 16:49:45 archlinux systemd[1]: user-960.slice: Consumed 642ms CPU time, 147.5M memory peak.
May 05 16:49:45 archlinux systemd[1]: systemd-coredump@1-6864-0.service: Deactivated successfully.
May 05 16:49:45 archlinux systemd[1]: systemd-coredump@1-6864-0.service: Consumed 255ms CPU time, 128.5M memory peak.
May 05 16:49:46 archlinux drkonqi-coredump-processor[6866]: "/opt/spotify/spotify" 5970 "/var/lib/systemd/coredump/core.spotify.1000.4d34d274961748bd82221c1ed5985ade.5970.1746456585000000.zst"
May 05 16:49:46 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 6866/UID 0).
May 05 16:49:46 archlinux systemd[1]: drkonqi-coredump-processor@1-6864-0.service: Deactivated successfully.
May 05 16:49:46 archlinux drkonqi-coredump-launcher[6960]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:49:46 archlinux drkonqi-coredump-launcher[6960]: Unable to find file for pid 5970 expected at "kcrash-metadata/spotify.4d34d274961748bd82221c1ed5985ade.5970.ini"
May 05 16:49:46 archlinux drkonqi-coredump-launcher[6960]: Nothing handled the dump :O
May 05 16:49:47 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=1200900
May 05 16:49:48 archlinux systemd[1]: dbus-:1.2-org.kde.kded.smart@0.service: Deactivated successfully.
May 05 16:49:48 archlinux systemd[1]: dbus-:1.2-org.kde.powerdevil.discretegpuhelper@0.service: Deactivated successfully.
May 05 16:49:49 archlinux systemd[1]: dbus-:1.2-org.kde.powerdevil.chargethresholdhelper@0.service: Deactivated successfully.
May 05 16:49:49 archlinux systemd[1]: dbus-:1.2-org.kde.powerdevil.backlighthelper@0.service: Deactivated successfully.
May 05 16:49:50 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-30 noise=9999 txrate=1200900
May 05 16:49:51 archlinux systemd-timesyncd[488]: Contacted time server 193.123.38.172:123 (2.arch.pool.ntp.org).
May 05 16:49:51 archlinux systemd-timesyncd[488]: Initial clock synchronization to Mon 2025-05-05 16:49:51.163099 CEST.
May 05 16:49:51 archlinux kdeconnectd[4762]: 2025-05-05T16:49:51 default: new capabilities for "DESKTOP-ODTUUAT"
May 05 16:49:51 archlinux kdeconnectd[4762]: 2025-05-05T16:49:51 default: Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
May 05 16:49:51 archlinux kdeconnectd[4762]: 2025-05-05T16:49:51 kf.modemmanagerqt: Failed enumerating MM objects: "org.freedesktop.DBus.Error.NameHasNoOwner"
"Could not activate remote peer 'org.freedesktop.ModemManager1': activation request failed: unknown unit"
May 05 16:49:51 archlinux kdeconnectd[4762]: 2025-05-05T16:49:51 default: Clearing existing entries 0
May 05 16:49:51 archlinux kdeconnectd[4762]: 2025-05-05T16:49:51 default: discarding unsupported packet "kdeconnect.notification.request" for "DESKTOP-ODTUUAT"
May 05 16:49:51 archlinux kdeconnectd[4762]: 2025-05-05T16:49:51 kdeconnect.plugin.clipboard: Ignoring clipboard without timestamp
May 05 16:49:52 archlinux kdeconnectd[4762]: 2025-05-05T16:49:52 default: DataControlOffer: timeout reading from pipe
May 05 16:49:52 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=1200900
May 05 16:49:53 archlinux kdeconnectd[4762]: 2025-05-05T16:49:53 default: DataControlOffer: timeout reading from pipe
May 05 16:49:55 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-35 noise=9999 txrate=1200900
May 05 16:49:57 archlinux systemd[1]: Reached target User and Group Name Lookups.
May 05 16:49:57 archlinux systemd[1]: Starting Accounts Service...
May 05 16:49:57 archlinux accounts-daemon[7103]: started daemon version 23.13.0
May 05 16:49:57 archlinux systemd[1]: Started Accounts Service.
May 05 16:49:57 archlinux kded6[4465]: Registering ":1.98/StatusNotifierItem" to system tray
May 05 16:49:58 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-31 noise=9999 txrate=960700
May 05 16:50:01 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-31 noise=9999 txrate=1200900
May 05 16:50:02 archlinux systemd[4216]: app-dev.zed.Zed@4161a9c11ba24fea865c0eab9ebae7a8.service: Consumed 4.045s CPU time, 836M memory peak.
May 05 16:50:04 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-31 noise=9999 txrate=1200900
May 05 16:50:04 archlinux systemd[4216]: Started kitty - Terminal emulator.
May 05 16:50:04 archlinux kitty[7178]: [0.042] Failed to set locale with LANG: en_US.UTF-8
May 05 16:50:04 archlinux kitty[7178]: [0.042] Failed to set locale with no LANG
May 05 16:50:05 archlinux systemd[4216]: Started kitty child process: 7198 launched by: 7178.
May 05 16:50:07 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-35 noise=9999 txrate=1200900
May 05 16:50:08 archlinux systemd[1]: systemd-timedated.service: Deactivated successfully.
May 05 16:50:08 archlinux systemd[1]: systemd-hostnamed.service: Deactivated successfully.
May 05 16:50:10 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-31 noise=9999 txrate=1200900
May 05 16:50:10 archlinux sudo[7261]: enrique : TTY=pts/4 ; PWD=/home/enrique ; USER=root ; COMMAND=/usr/bin/zeditor /etc/default/grub
May 05 16:50:10 archlinux sudo[7261]: pam_unix(sudo:session): session opened for user root(uid=0) by enrique(uid=1000)
May 05 16:50:11 archlinux kwin_wayland[4306]: kf.windowsystem: static bool KX11Extras::mapViewport() may only be used on X11
May 05 16:50:11 archlinux sudo[7261]: pam_unix(sudo:session): session closed for user root
May 05 16:50:13 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=1200900
May 05 16:50:16 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-31 noise=9999 txrate=1200900
May 05 16:50:19 archlinux plasmashell[4518]: Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
May 05 16:50:19 archlinux kioworker[7483]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:19 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-29 noise=9999 txrate=1200900
May 05 16:50:19 archlinux systemd[4216]: Starting KRunner provider for baloo file indexer...
May 05 16:50:19 archlinux baloorunner[7485]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:19 archlinux systemd[4216]: Started KRunner provider for baloo file indexer.
May 05 16:50:20 archlinux systemd[4216]: Started KDE Connect - Device Synchronization.
May 05 16:50:20 archlinux kdeconnect-app[7521]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:21 archlinux kdeconnect-app[7521]: qrc:/qt/qml/org/kde/kdeconnect/app/WelcomePage.qml:13:1: QML WelcomePage: Created graphical object was not placed in the graphics scene.
May 05 16:50:22 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-31 noise=9999 txrate=1200900
May 05 16:50:23 archlinux kdeconnect-app[7521]: qrc:/qt/qml/org/kde/kdeconnect/app/Main.qml:29:9: QML DevicePage: Created graphical object was not placed in the graphics scene.
May 05 16:50:25 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=1200900
May 05 16:50:27 archlinux systemd[1]: systemd-localed.service: Deactivated successfully.
May 05 16:50:28 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-37 noise=9999 txrate=288200
May 05 16:50:31 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=1200900
May 05 16:50:34 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=1200900
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 4483 "/var/lib/systemd/coredump/core.spotify.1000.c5932d7883aa4c01add91bea7e077218.4483.1745262613000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6773 "/var/lib/systemd/coredump/core.spotify.1000.c5932d7883aa4c01add91bea7e077218.6773.1745262693000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 7191 "/var/lib/systemd/coredump/core.spotify.1000.c5932d7883aa4c01add91bea7e077218.7191.1745262726000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 4668 "/var/lib/systemd/coredump/core.spotify.1000.c80eedfdc804435092f304347bb21b86.4668.1745262815000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 4466 "/var/lib/systemd/coredump/core.spotify.1000.6ccbbedafe304cee9b32f161c6cfd87f.4466.1745262962000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 7452 "/var/lib/systemd/coredump/core.spotify.1000.6ccbbedafe304cee9b32f161c6cfd87f.7452.1745263076000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 4641 "/var/lib/systemd/coredump/core.spotify.1000.4367e5ec833f4d62b8eac7adec82881d.4641.1745263265000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6728 "/var/lib/systemd/coredump/core.spotify.1000.4367e5ec833f4d62b8eac7adec82881d.6728.1745263378000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 4700 "/var/lib/systemd/coredump/core.spotify.1000.33e9681e8a574d8896882ba1c1082503.4700.1745263578000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6568 "/var/lib/systemd/coredump/core.spotify.1000.33e9681e8a574d8896882ba1c1082503.6568.1745263692000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 4904 "/var/lib/systemd/coredump/core.spotify.1000.a4fb907f2b694848af177659fb54f095.4904.1745263839000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6577 "/var/lib/systemd/coredump/core.spotify.1000.f45268846fdb45c7aadd8469dd03adfa.6577.1745315191000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6570 "/var/lib/systemd/coredump/core.spotify.1000.f45268846fdb45c7aadd8469dd03adfa.6570.1745315191000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6590 "/var/lib/systemd/coredump/core.spotify.1000.f45268846fdb45c7aadd8469dd03adfa.6590.1745315191000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6597 "/var/lib/systemd/coredump/core.spotify.1000.f45268846fdb45c7aadd8469dd03adfa.6597.1745315191000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6610 "/var/lib/systemd/coredump/core.spotify.1000.f45268846fdb45c7aadd8469dd03adfa.6610.1745315191000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6617 "/var/lib/systemd/coredump/core.spotify.1000.f45268846fdb45c7aadd8469dd03adfa.6617.1745315191000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 7425 "/var/lib/systemd/coredump/core.spotify.1000.f45268846fdb45c7aadd8469dd03adfa.7425.1745315251000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8120 "/var/lib/systemd/coredump/core.spotify.1000.09a3883409674272a2b4a080eb08d3f7.8120.1745317578000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9356 "/var/lib/systemd/coredump/core.spotify.1000.7b870a12f9b74ff896a4234c65e51af6.9356.1745320000000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8316 "/var/lib/systemd/coredump/core.spotify.1000.a847e80ab2054d65bb7f8a18fd0b7873.8316.1745321555000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8701 "/var/lib/systemd/coredump/core.spotify.1000.bef048878bc94ee4a5da28854dfaf4e6.8701.1745323874000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6275 "/var/lib/systemd/coredump/core.spotify.1000.6076763da6ce493ba7b62b4e009eeaa0.6275.1745333393000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8267 "/var/lib/systemd/coredump/core.spotify.1000.6076763da6ce493ba7b62b4e009eeaa0.8267.1745333443000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8274 "/var/lib/systemd/coredump/core.spotify.1000.6076763da6ce493ba7b62b4e009eeaa0.8274.1745333443000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9046 "/var/lib/systemd/coredump/core.spotify.1000.6076763da6ce493ba7b62b4e009eeaa0.9046.1745333503000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 12544 "/var/lib/systemd/coredump/core.spotify.1000.6076763da6ce493ba7b62b4e009eeaa0.12544.1745333701000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6198 "/var/lib/systemd/coredump/core.spotify.1000.96b04feb5c094e0e91c2c0ec4c87a544.6198.1745340070000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9341 "/var/lib/systemd/coredump/core.spotify.1000.96b04feb5c094e0e91c2c0ec4c87a544.9341.1745340184000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 30371 "/var/lib/systemd/coredump/core.spotify.1000.96b04feb5c094e0e91c2c0ec4c87a544.30371.1745342109000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 36394 "/var/lib/systemd/coredump/core.spotify.1000.96b04feb5c094e0e91c2c0ec4c87a544.36394.1745342829000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 41701 "/var/lib/systemd/coredump/core.spotify.1000.96b04feb5c094e0e91c2c0ec4c87a544.41701.1745343549000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 47102 "/var/lib/systemd/coredump/core.spotify.1000.96b04feb5c094e0e91c2c0ec4c87a544.47102.1745344269000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 51211 "/var/lib/systemd/coredump/core.spotify.1000.96b04feb5c094e0e91c2c0ec4c87a544.51211.1745344869000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 61333 "/var/lib/systemd/coredump/core.spotify.1000.96b04feb5c094e0e91c2c0ec4c87a544.61333.1745346430000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 78408 "/var/lib/systemd/coredump/core.spotify.1000.96b04feb5c094e0e91c2c0ec4c87a544.78408.1745348830000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 96976 "/var/lib/systemd/coredump/core.spotify.1000.96b04feb5c094e0e91c2c0ec4c87a544.96976.1745351470000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 7241 "/var/lib/systemd/coredump/core.spotify.1000.fbb7c55f834a402aaf58de44751b19d8.7241.1745394997000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8886 "/var/lib/systemd/coredump/core.spotify.1000.fbb7c55f834a402aaf58de44751b19d8.8886.1745395047000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8879 "/var/lib/systemd/coredump/core.spotify.1000.fbb7c55f834a402aaf58de44751b19d8.8879.1745395047000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8899 "/var/lib/systemd/coredump/core.spotify.1000.fbb7c55f834a402aaf58de44751b19d8.8899.1745395047000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8906 "/var/lib/systemd/coredump/core.spotify.1000.fbb7c55f834a402aaf58de44751b19d8.8906.1745395047000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9451 "/var/lib/systemd/coredump/core.spotify.1000.fbb7c55f834a402aaf58de44751b19d8.9451.1745395107000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6192 "/var/lib/systemd/coredump/core.spotify.1000.67908741afd146ae8d4f776c5ff06843.6192.1745395350000000.zst"
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9803 "/var/lib/systemd/coredump/core.spotify.1000.67908741afd146ae8d4f776c5ff06843.9803.1745395464000000.zst"
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: socket state unexpectedly QLocalSocket::UnconnectedState aborting crash processing
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/usr/lib/electron34/electron" 4931 "/var/lib/systemd/coredump/core.electron.1000.67908741afd146ae8d4f776c5ff06843.4931.1745396200000000.zst"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7659]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7661]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7662]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7660]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7659]: Unable to find file for pid 4700 expected at "kcrash-metadata/spotify.33e9681e8a574d8896882ba1c1082503.4700.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7661]: Unable to find file for pid 4904 expected at "kcrash-metadata/spotify.a4fb907f2b694848af177659fb54f095.4904.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7660]: Unable to find file for pid 6568 expected at "kcrash-metadata/spotify.33e9681e8a574d8896882ba1c1082503.6568.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7662]: Unable to find file for pid 6577 expected at "kcrash-metadata/spotify.f45268846fdb45c7aadd8469dd03adfa.6577.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7663]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7665]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7664]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7663]: Unable to find file for pid 6570 expected at "kcrash-metadata/spotify.f45268846fdb45c7aadd8469dd03adfa.6570.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7665]: Unable to find file for pid 6597 expected at "kcrash-metadata/spotify.f45268846fdb45c7aadd8469dd03adfa.6597.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7664]: Unable to find file for pid 6590 expected at "kcrash-metadata/spotify.f45268846fdb45c7aadd8469dd03adfa.6590.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7666]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7667]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7668]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7666]: Unable to find file for pid 6610 expected at "kcrash-metadata/spotify.f45268846fdb45c7aadd8469dd03adfa.6610.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7667]: Unable to find file for pid 4483 expected at "kcrash-metadata/spotify.c5932d7883aa4c01add91bea7e077218.4483.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7668]: Unable to find file for pid 6773 expected at "kcrash-metadata/spotify.c5932d7883aa4c01add91bea7e077218.6773.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7669]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7669]: Unable to find file for pid 7191 expected at "kcrash-metadata/spotify.c5932d7883aa4c01add91bea7e077218.7191.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7673]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7673]: Unable to find file for pid 4668 expected at "kcrash-metadata/spotify.c80eedfdc804435092f304347bb21b86.4668.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7675]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7675]: Unable to find file for pid 4466 expected at "kcrash-metadata/spotify.6ccbbedafe304cee9b32f161c6cfd87f.4466.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7676]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7676]: Unable to find file for pid 7452 expected at "kcrash-metadata/spotify.6ccbbedafe304cee9b32f161c6cfd87f.7452.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7677]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7677]: Unable to find file for pid 4641 expected at "kcrash-metadata/spotify.4367e5ec833f4d62b8eac7adec82881d.4641.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7681]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7681]: Unable to find file for pid 6728 expected at "kcrash-metadata/spotify.4367e5ec833f4d62b8eac7adec82881d.6728.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7707]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/usr/lib/chromium/chromium" 42472 "/var/lib/systemd/coredump/core.chromium.1000.67908741afd146ae8d4f776c5ff06843.42472.1745399036000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7707]: Unable to find file for pid 4931 expected at "kcrash-metadata/electron.67908741afd146ae8d4f776c5ff06843.4931.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7708]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 84969 "/var/lib/systemd/coredump/core.spotify.1000.67908741afd146ae8d4f776c5ff06843.84969.1745403266000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 86218 "/var/lib/systemd/coredump/core.spotify.1000.67908741afd146ae8d4f776c5ff06843.86218.1745403349000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 86834 "/var/lib/systemd/coredump/core.spotify.1000.67908741afd146ae8d4f776c5ff06843.86834.1745403358000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 87480 "/var/lib/systemd/coredump/core.spotify.1000.67908741afd146ae8d4f776c5ff06843.87480.1745403363000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 111483 "/var/lib/systemd/coredump/core.spotify.1000.67908741afd146ae8d4f776c5ff06843.111483.1745405554000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7708]: Unable to find file for pid 42472 expected at "kcrash-metadata/chromium.67908741afd146ae8d4f776c5ff06843.42472.ini"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 117823 "/var/lib/systemd/coredump/core.spotify.1000.67908741afd146ae8d4f776c5ff06843.117823.1745406459000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 141320 "/var/lib/systemd/coredump/core.spotify.1000.67908741afd146ae8d4f776c5ff06843.141320.1745410349000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 164197 "/var/lib/systemd/coredump/core.spotify.1000.67908741afd146ae8d4f776c5ff06843.164197.1745413409000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 164177 "/var/lib/systemd/coredump/core.spotify.1000.67908741afd146ae8d4f776c5ff06843.164177.1745413409000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 164190 "/var/lib/systemd/coredump/core.spotify.1000.67908741afd146ae8d4f776c5ff06843.164190.1745413409000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 164170 "/var/lib/systemd/coredump/core.spotify.1000.67908741afd146ae8d4f776c5ff06843.164170.1745413409000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/usr/lib/electron34/electron" 4922 "/var/lib/systemd/coredump/core.electron.1000.214c1e8e968e477a92a43f97528278fd.4922.1745420152000000.zst"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7713]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7715]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7714]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7716]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7717]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7715]: Unable to find file for pid 86834 expected at "kcrash-metadata/spotify.67908741afd146ae8d4f776c5ff06843.86834.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7714]: Unable to find file for pid 86218 expected at "kcrash-metadata/spotify.67908741afd146ae8d4f776c5ff06843.86218.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7713]: Unable to find file for pid 84969 expected at "kcrash-metadata/spotify.67908741afd146ae8d4f776c5ff06843.84969.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7716]: Unable to find file for pid 87480 expected at "kcrash-metadata/spotify.67908741afd146ae8d4f776c5ff06843.87480.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7717]: Unable to find file for pid 111483 expected at "kcrash-metadata/spotify.67908741afd146ae8d4f776c5ff06843.111483.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7718]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7718]: Unable to find file for pid 117823 expected at "kcrash-metadata/spotify.67908741afd146ae8d4f776c5ff06843.117823.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7719]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7720]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7719]: Unable to find file for pid 141320 expected at "kcrash-metadata/spotify.67908741afd146ae8d4f776c5ff06843.141320.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7720]: Unable to find file for pid 164197 expected at "kcrash-metadata/spotify.67908741afd146ae8d4f776c5ff06843.164197.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7721]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7721]: Unable to find file for pid 164177 expected at "kcrash-metadata/spotify.67908741afd146ae8d4f776c5ff06843.164177.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7722]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7722]: Unable to find file for pid 164190 expected at "kcrash-metadata/spotify.67908741afd146ae8d4f776c5ff06843.164190.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7723]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7723]: Unable to find file for pid 164170 expected at "kcrash-metadata/spotify.67908741afd146ae8d4f776c5ff06843.164170.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7726]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/usr/lib/electron34/electron" 11877 "/var/lib/systemd/coredump/core.electron.1000.214c1e8e968e477a92a43f97528278fd.11877.1745420216000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7726]: Unable to find file for pid 4922 expected at "kcrash-metadata/electron.214c1e8e968e477a92a43f97528278fd.4922.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7749]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 14869 "/var/lib/systemd/coredump/core.spotify.1000.214c1e8e968e477a92a43f97528278fd.14869.1745420243000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7749]: Unable to find file for pid 11877 expected at "kcrash-metadata/electron.214c1e8e968e477a92a43f97528278fd.11877.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 7628 "/var/lib/systemd/coredump/core.spotify.1000.cd661cc22a424f7693e5a9306928340c.7628.1745420385000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 10033 "/var/lib/systemd/coredump/core.spotify.1000.cd661cc22a424f7693e5a9306928340c.10033.1745420419000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 12101 "/var/lib/systemd/coredump/core.spotify.1000.cd661cc22a424f7693e5a9306928340c.12101.1745420499000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 17581 "/var/lib/systemd/coredump/core.spotify.1000.cd661cc22a424f7693e5a9306928340c.17581.1745421211000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 31390 "/var/lib/systemd/coredump/core.spotify.1000.cd661cc22a424f7693e5a9306928340c.31390.1745423731000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 36485 "/var/lib/systemd/coredump/core.spotify.1000.cd661cc22a424f7693e5a9306928340c.36485.1745424571000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 55294 "/var/lib/systemd/coredump/core.spotify.1000.cd661cc22a424f7693e5a9306928340c.55294.1745427811000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 63859 "/var/lib/systemd/coredump/core.spotify.1000.cd661cc22a424f7693e5a9306928340c.63859.1745429251000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 69177 "/var/lib/systemd/coredump/core.spotify.1000.cd661cc22a424f7693e5a9306928340c.69177.1745429971000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 80515 "/var/lib/systemd/coredump/core.spotify.1000.cd661cc22a424f7693e5a9306928340c.80515.1745431891000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 85226 "/var/lib/systemd/coredump/core.spotify.1000.cd661cc22a424f7693e5a9306928340c.85226.1745432731000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 90423 "/var/lib/systemd/coredump/core.spotify.1000.cd661cc22a424f7693e5a9306928340c.90423.1745433451000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 94001 "/var/lib/systemd/coredump/core.spotify.1000.cd661cc22a424f7693e5a9306928340c.94001.1745434051000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 7880 "/var/lib/systemd/coredump/core.spotify.1000.f4e3696c54ea424cb8f97a9c5ccc7022.7880.1745511319000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 7887 "/var/lib/systemd/coredump/core.spotify.1000.f4e3696c54ea424cb8f97a9c5ccc7022.7887.1745511319000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 7900 "/var/lib/systemd/coredump/core.spotify.1000.f4e3696c54ea424cb8f97a9c5ccc7022.7900.1745511319000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 7907 "/var/lib/systemd/coredump/core.spotify.1000.f4e3696c54ea424cb8f97a9c5ccc7022.7907.1745511319000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 7920 "/var/lib/systemd/coredump/core.spotify.1000.f4e3696c54ea424cb8f97a9c5ccc7022.7920.1745511319000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 7927 "/var/lib/systemd/coredump/core.spotify.1000.f4e3696c54ea424cb8f97a9c5ccc7022.7927.1745511319000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 7947 "/var/lib/systemd/coredump/core.spotify.1000.f4e3696c54ea424cb8f97a9c5ccc7022.7947.1745511319000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 7940 "/var/lib/systemd/coredump/core.spotify.1000.f4e3696c54ea424cb8f97a9c5ccc7022.7940.1745511319000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8487 "/var/lib/systemd/coredump/core.spotify.1000.f4e3696c54ea424cb8f97a9c5ccc7022.8487.1745511381000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 7831 "/var/lib/systemd/coredump/core.spotify.1000.efddf25b08634dcca449277943b3d4eb.7831.1745514587000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8255 "/var/lib/systemd/coredump/core.spotify.1000.22ebd6adfdd14f86975f19775e0642ea.8255.1745517115000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6860 "/var/lib/systemd/coredump/core.spotify.1000.0450602b19944693b158546440f709f5.6860.1745523699000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 7846 "/var/lib/systemd/coredump/core.spotify.1000.0450602b19944693b158546440f709f5.7846.1745523813000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6572 "/var/lib/systemd/coredump/core.spotify.1000.9a2bf96b9da14263893ab353fc5938ed.6572.1745523986000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8985 "/var/lib/systemd/coredump/core.spotify.1000.9a2bf96b9da14263893ab353fc5938ed.8985.1745524100000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 15556 "/var/lib/systemd/coredump/core.spotify.1000.9a2bf96b9da14263893ab353fc5938ed.15556.1745525426000000.zst"
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/home/enrique/.local/share/Steam/ubuntu12_64/fossilize_replay" 20961 "/var/lib/systemd/coredump/core.fossilize_repla.1000.9a2bf96b9da14263893ab353fc5938ed.20961.1745526106000000.zst"
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: socket state unexpectedly QLocalSocket::UnconnectedState aborting crash processing
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/home/enrique/.local/share/Steam/ubuntu12_64/fossilize_replay" 20964 "/var/lib/systemd/coredump/core.fossilize_repla.1000.9a2bf96b9da14263893ab353fc5938ed.20964.1745526106000000.zst"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7752]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7752]: Unable to find file for pid 14869 expected at "kcrash-metadata/spotify.214c1e8e968e477a92a43f97528278fd.14869.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7755]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7756]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7756]: Unable to find file for pid 10033 expected at "kcrash-metadata/spotify.cd661cc22a424f7693e5a9306928340c.10033.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7755]: Unable to find file for pid 7628 expected at "kcrash-metadata/spotify.cd661cc22a424f7693e5a9306928340c.7628.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7758]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7757]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7758]: Unable to find file for pid 17581 expected at "kcrash-metadata/spotify.cd661cc22a424f7693e5a9306928340c.17581.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7757]: Unable to find file for pid 12101 expected at "kcrash-metadata/spotify.cd661cc22a424f7693e5a9306928340c.12101.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7759]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7760]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7759]: Unable to find file for pid 31390 expected at "kcrash-metadata/spotify.cd661cc22a424f7693e5a9306928340c.31390.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7760]: Unable to find file for pid 36485 expected at "kcrash-metadata/spotify.cd661cc22a424f7693e5a9306928340c.36485.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7762]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7762]: Unable to find file for pid 55294 expected at "kcrash-metadata/spotify.cd661cc22a424f7693e5a9306928340c.55294.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7763]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7763]: Unable to find file for pid 63859 expected at "kcrash-metadata/spotify.cd661cc22a424f7693e5a9306928340c.63859.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7764]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7764]: Unable to find file for pid 69177 expected at "kcrash-metadata/spotify.cd661cc22a424f7693e5a9306928340c.69177.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7765]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7765]: Unable to find file for pid 80515 expected at "kcrash-metadata/spotify.cd661cc22a424f7693e5a9306928340c.80515.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7767]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7769]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7767]: Unable to find file for pid 85226 expected at "kcrash-metadata/spotify.cd661cc22a424f7693e5a9306928340c.85226.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7769]: Unable to find file for pid 90423 expected at "kcrash-metadata/spotify.cd661cc22a424f7693e5a9306928340c.90423.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7770]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7770]: Unable to find file for pid 94001 expected at "kcrash-metadata/spotify.cd661cc22a424f7693e5a9306928340c.94001.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7773]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7773]: Unable to find file for pid 7880 expected at "kcrash-metadata/spotify.f4e3696c54ea424cb8f97a9c5ccc7022.7880.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7776]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7776]: Unable to find file for pid 7887 expected at "kcrash-metadata/spotify.f4e3696c54ea424cb8f97a9c5ccc7022.7887.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7802]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/home/enrique/.local/share/Steam/ubuntu12_64/fossilize_replay" 20967 "/var/lib/systemd/coredump/core.fossilize_repla.1000.9a2bf96b9da14263893ab353fc5938ed.20967.1745526106000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7802]: Unable to find file for pid 20964 expected at "kcrash-metadata/fossilize_replay.9a2bf96b9da14263893ab353fc5938ed.20964.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7803]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/home/enrique/.local/share/Steam/ubuntu12_64/fossilize_replay" 20960 "/var/lib/systemd/coredump/core.fossilize_repla.1000.9a2bf96b9da14263893ab353fc5938ed.20960.1745526106000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7803]: Unable to find file for pid 20967 expected at "kcrash-metadata/fossilize_replay.9a2bf96b9da14263893ab353fc5938ed.20967.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7808]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/home/enrique/.local/share/Steam/ubuntu12_64/fossilize_replay" 20971 "/var/lib/systemd/coredump/core.fossilize_repla.1000.9a2bf96b9da14263893ab353fc5938ed.20971.1745526106000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7808]: Unable to find file for pid 20960 expected at "kcrash-metadata/fossilize_replay.9a2bf96b9da14263893ab353fc5938ed.20960.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7811]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/home/enrique/.local/share/Steam/ubuntu12_64/fossilize_replay" 20966 "/var/lib/systemd/coredump/core.fossilize_repla.1000.9a2bf96b9da14263893ab353fc5938ed.20966.1745526106000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7811]: Unable to find file for pid 20971 expected at "kcrash-metadata/fossilize_replay.9a2bf96b9da14263893ab353fc5938ed.20971.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7814]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/home/enrique/.local/share/Steam/ubuntu12_64/fossilize_replay" 20962 "/var/lib/systemd/coredump/core.fossilize_repla.1000.9a2bf96b9da14263893ab353fc5938ed.20962.1745526106000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7814]: Unable to find file for pid 20966 expected at "kcrash-metadata/fossilize_replay.9a2bf96b9da14263893ab353fc5938ed.20966.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7817]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/home/enrique/.local/share/Steam/ubuntu12_64/fossilize_replay" 20959 "/var/lib/systemd/coredump/core.fossilize_repla.1000.9a2bf96b9da14263893ab353fc5938ed.20959.1745526106000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7817]: Unable to find file for pid 20962 expected at "kcrash-metadata/fossilize_replay.9a2bf96b9da14263893ab353fc5938ed.20962.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7818]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 23172 "/var/lib/systemd/coredump/core.spotify.1000.9a2bf96b9da14263893ab353fc5938ed.23172.1745526266000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7818]: Unable to find file for pid 20959 expected at "kcrash-metadata/fossilize_replay.9a2bf96b9da14263893ab353fc5938ed.20959.ini"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6605 "/var/lib/systemd/coredump/core.spotify.1000.64127b8ef65a421890c3550e8596051d.6605.1745601533000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9235 "/var/lib/systemd/coredump/core.spotify.1000.64127b8ef65a421890c3550e8596051d.9235.1745601567000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9910 "/var/lib/systemd/coredump/core.spotify.1000.64127b8ef65a421890c3550e8596051d.9910.1745601587000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9903 "/var/lib/systemd/coredump/core.spotify.1000.64127b8ef65a421890c3550e8596051d.9903.1745601587000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9942 "/var/lib/systemd/coredump/core.spotify.1000.64127b8ef65a421890c3550e8596051d.9942.1745601587000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9935 "/var/lib/systemd/coredump/core.spotify.1000.64127b8ef65a421890c3550e8596051d.9935.1745601587000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 11437 "/var/lib/systemd/coredump/core.spotify.1000.64127b8ef65a421890c3550e8596051d.11437.1745601647000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 12582 "/var/lib/systemd/coredump/core.spotify.1000.64127b8ef65a421890c3550e8596051d.12582.1745601687000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 13462 "/var/lib/systemd/coredump/core.spotify.1000.64127b8ef65a421890c3550e8596051d.13462.1745601763000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 14818 "/var/lib/systemd/coredump/core.spotify.1000.64127b8ef65a421890c3550e8596051d.14818.1745601877000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 36428 "/var/lib/systemd/coredump/core.spotify.1000.64127b8ef65a421890c3550e8596051d.36428.1745604763000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6573 "/var/lib/systemd/coredump/core.spotify.1000.27125eed50114ae6b2494dc6c29a595b.6573.1745605379000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6604 "/var/lib/systemd/coredump/core.spotify.1000.50ced126cee64d9ea4cce55222c5c64d.6604.1745605578000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 7099 "/var/lib/systemd/coredump/core.spotify.1000.539c292b4b6743eba26f85d73d96f609.7099.1745605915000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9899 "/var/lib/systemd/coredump/core.spotify.1000.539c292b4b6743eba26f85d73d96f609.9899.1745606028000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6693 "/var/lib/systemd/coredump/core.spotify.1000.fc1f94fe1324497280f81d97813ccee6.6693.1745668512000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 7931 "/var/lib/systemd/coredump/core.spotify.1000.fc1f94fe1324497280f81d97813ccee6.7931.1745668566000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 7924 "/var/lib/systemd/coredump/core.spotify.1000.fc1f94fe1324497280f81d97813ccee6.7924.1745668566000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8476 "/var/lib/systemd/coredump/core.spotify.1000.fc1f94fe1324497280f81d97813ccee6.8476.1745668626000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6612 "/var/lib/systemd/coredump/core.spotify.1000.f0d962cbac0d4505bf0040c550b80ac3.6612.1745669219000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 22531 "/var/lib/systemd/coredump/core.spotify.1000.f0d962cbac0d4505bf0040c550b80ac3.22531.1745669333000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6610 "/var/lib/systemd/coredump/core.spotify.1000.59ae86cc54fd4af5bc1bbbd0f9d94f4c.6610.1745669418000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6471 "/var/lib/systemd/coredump/core.spotify.1000.7098ec89ba704076bd43f8d42a8da9aa.6471.1745669700000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8559 "/var/lib/systemd/coredump/core.spotify.1000.7098ec89ba704076bd43f8d42a8da9aa.8559.1745669814000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6440 "/var/lib/systemd/coredump/core.spotify.1000.17a29b58669d4cf1b745fdeee680ef76.6440.1745670024000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6379 "/var/lib/systemd/coredump/core.spotify.1000.43c912c6a33546579f2f4fd7fb27fb8c.6379.1745670194000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6459 "/var/lib/systemd/coredump/core.spotify.1000.524a4e2ce6714be091f8ae2a8ace57f5.6459.1745670309000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6185 "/var/lib/systemd/coredump/core.spotify.1000.b8a221d132a1444ba24a4290c3ae771e.6185.1745670470000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8279 "/var/lib/systemd/coredump/core.spotify.1000.b8a221d132a1444ba24a4290c3ae771e.8279.1745670584000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6478 "/var/lib/systemd/coredump/core.spotify.1000.e47c38ad9abb40b18548e62a89867672.6478.1745670697000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6681 "/var/lib/systemd/coredump/core.spotify.1000.96377aef1e634a31928a5b8494b12120.6681.1745670969000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8125 "/var/lib/systemd/coredump/core.spotify.1000.96377aef1e634a31928a5b8494b12120.8125.1745671023000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8132 "/var/lib/systemd/coredump/core.spotify.1000.96377aef1e634a31928a5b8494b12120.8132.1745671023000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9546 "/var/lib/systemd/coredump/core.spotify.1000.96377aef1e634a31928a5b8494b12120.9546.1745671083000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6572 "/var/lib/systemd/coredump/core.spotify.1000.387d0bb542f74f25abce0723fc605a17.6572.1745672229000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6943 "/var/lib/systemd/coredump/core.spotify.1000.95f2a5ba68304c389e520c0a8dbe0361.6943.1745672723000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9189 "/var/lib/systemd/coredump/core.spotify.1000.95f2a5ba68304c389e520c0a8dbe0361.9189.1745672837000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 23960 "/var/lib/systemd/coredump/core.spotify.1000.95f2a5ba68304c389e520c0a8dbe0361.23960.1745674055000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/home/enrique/.local/share/Steam/ubuntu12_64/fossilize_replay" 45408 "/var/lib/systemd/coredump/core.fossilize_repla.1000.95f2a5ba68304c389e520c0a8dbe0361.45408.1745676555000000.zst"
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: QAbstractSocket::waitForBytesWritten() is not allowed in UnconnectedState
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/home/enrique/.local/share/Steam/ubuntu12_64/fossilize_replay" 45401 "/var/lib/systemd/coredump/core.fossilize_repla.1000.95f2a5ba68304c389e520c0a8dbe0361.45401.1745676555000000.zst"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7824]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7823]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7823]: Unable to find file for pid 23172 expected at "kcrash-metadata/spotify.9a2bf96b9da14263893ab353fc5938ed.23172.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7824]: Unable to find file for pid 6605 expected at "kcrash-metadata/spotify.64127b8ef65a421890c3550e8596051d.6605.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7825]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7825]: Unable to find file for pid 9235 expected at "kcrash-metadata/spotify.64127b8ef65a421890c3550e8596051d.9235.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7826]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7826]: Unable to find file for pid 9910 expected at "kcrash-metadata/spotify.64127b8ef65a421890c3550e8596051d.9910.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7827]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7827]: Unable to find file for pid 9903 expected at "kcrash-metadata/spotify.64127b8ef65a421890c3550e8596051d.9903.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7828]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7828]: Unable to find file for pid 9942 expected at "kcrash-metadata/spotify.64127b8ef65a421890c3550e8596051d.9942.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7829]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7829]: Unable to find file for pid 9935 expected at "kcrash-metadata/spotify.64127b8ef65a421890c3550e8596051d.9935.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7830]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7830]: Unable to find file for pid 11437 expected at "kcrash-metadata/spotify.64127b8ef65a421890c3550e8596051d.11437.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7831]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7832]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7831]: Unable to find file for pid 12582 expected at "kcrash-metadata/spotify.64127b8ef65a421890c3550e8596051d.12582.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7832]: Unable to find file for pid 13462 expected at "kcrash-metadata/spotify.64127b8ef65a421890c3550e8596051d.13462.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7834]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7834]: Unable to find file for pid 14818 expected at "kcrash-metadata/spotify.64127b8ef65a421890c3550e8596051d.14818.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7836]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7836]: Unable to find file for pid 36428 expected at "kcrash-metadata/spotify.64127b8ef65a421890c3550e8596051d.36428.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7839]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7839]: Unable to find file for pid 6573 expected at "kcrash-metadata/spotify.27125eed50114ae6b2494dc6c29a595b.6573.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7841]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7841]: Unable to find file for pid 6604 expected at "kcrash-metadata/spotify.50ced126cee64d9ea4cce55222c5c64d.6604.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7842]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7842]: Unable to find file for pid 7099 expected at "kcrash-metadata/spotify.539c292b4b6743eba26f85d73d96f609.7099.ini"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7845]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7845]: Unable to find file for pid 9899 expected at "kcrash-metadata/spotify.539c292b4b6743eba26f85d73d96f609.9899.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7871]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/home/enrique/.local/share/Steam/ubuntu12_64/fossilize_replay" 45407 "/var/lib/systemd/coredump/core.fossilize_repla.1000.95f2a5ba68304c389e520c0a8dbe0361.45407.1745676555000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7871]: Unable to find file for pid 45401 expected at "kcrash-metadata/fossilize_replay.95f2a5ba68304c389e520c0a8dbe0361.45401.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7874]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:36 archlinux drkonqi-coredump-processor[4579]: "/home/enrique/.local/share/Steam/ubuntu12_64/fossilize_replay" 45411 "/var/lib/systemd/coredump/core.fossilize_repla.1000.95f2a5ba68304c389e520c0a8dbe0361.45411.1745676555000000.zst"
May 05 16:50:36 archlinux drkonqi-coredump-launcher[7874]: Unable to find file for pid 45407 expected at "kcrash-metadata/fossilize_replay.95f2a5ba68304c389e520c0a8dbe0361.45407.ini"
May 05 16:50:36 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:37 archlinux drkonqi-coredump-launcher[7877]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:37 archlinux drkonqi-coredump-processor[4579]: "/home/enrique/.local/share/Steam/ubuntu12_64/fossilize_replay" 45399 "/var/lib/systemd/coredump/core.fossilize_repla.1000.95f2a5ba68304c389e520c0a8dbe0361.45399.1745676555000000.zst"
May 05 16:50:37 archlinux drkonqi-coredump-launcher[7877]: Unable to find file for pid 45411 expected at "kcrash-metadata/fossilize_replay.95f2a5ba68304c389e520c0a8dbe0361.45411.ini"
May 05 16:50:37 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:37 archlinux drkonqi-coredump-launcher[7878]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:37 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6644 "/var/lib/systemd/coredump/core.spotify.1000.60c04afc66104b40b9db9b9bfc0cdc8a.6644.1745687369000000.zst"
May 05 16:50:37 archlinux drkonqi-coredump-launcher[7878]: Unable to find file for pid 45399 expected at "kcrash-metadata/fossilize_replay.95f2a5ba68304c389e520c0a8dbe0361.45399.ini"
May 05 16:50:37 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8957 "/var/lib/systemd/coredump/core.spotify.1000.60c04afc66104b40b9db9b9bfc0cdc8a.8957.1745687423000000.zst"
May 05 16:50:37 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8950 "/var/lib/systemd/coredump/core.spotify.1000.60c04afc66104b40b9db9b9bfc0cdc8a.8950.1745687423000000.zst"
May 05 16:50:37 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9827 "/var/lib/systemd/coredump/core.spotify.1000.60c04afc66104b40b9db9b9bfc0cdc8a.9827.1745687483000000.zst"
May 05 16:50:37 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6673 "/var/lib/systemd/coredump/core.spotify.1000.afdcd853b0f14f5ea71968b3acdd3c56.6673.1745687794000000.zst"
May 05 16:50:37 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6870 "/var/lib/systemd/coredump/core.spotify.1000.c760165da27943648ddf6651cb6f70d7.6870.1745687988000000.zst"
May 05 16:50:37 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6402 "/var/lib/systemd/coredump/core.spotify.1000.69ab6c13c55346c9a5b81325e5339690.6402.1745688158000000.zst"
May 05 16:50:37 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9462 "/var/lib/systemd/coredump/core.spotify.1000.69ab6c13c55346c9a5b81325e5339690.9462.1745688279000000.zst"
May 05 16:50:37 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9527 "/var/lib/systemd/coredump/core.spotify.1000.69ab6c13c55346c9a5b81325e5339690.9527.1745688279000000.zst"
May 05 16:50:37 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 11019 "/var/lib/systemd/coredump/core.spotify.1000.69ab6c13c55346c9a5b81325e5339690.11019.1745688377000000.zst"
May 05 16:50:37 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6706 "/var/lib/systemd/coredump/core.spotify.1000.1e70501d08b541928f28ed8c87655f1e.6706.1745688655000000.zst"
May 05 16:50:37 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6588 "/var/lib/systemd/coredump/core.spotify.1000.e7cd56353aea49ad9db924c6b7fb2b08.6588.1745688816000000.zst"
May 05 16:50:37 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9293 "/var/lib/systemd/coredump/core.spotify.1000.e7cd56353aea49ad9db924c6b7fb2b08.9293.1745688931000000.zst"
May 05 16:50:37 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6292 "/var/lib/systemd/coredump/core.spotify.1000.3a6fee86d13f4c7aa122b881960b1164.6292.1745689196000000.zst"
May 05 16:50:37 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6622 "/var/lib/systemd/coredump/core.spotify.1000.04db344d1d3143c9859dc6bf6b6565d8.6622.1745689464000000.zst"
May 05 16:50:37 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8943 "/var/lib/systemd/coredump/core.spotify.1000.04db344d1d3143c9859dc6bf6b6565d8.8943.1745689578000000.zst"
May 05 16:50:37 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6351 "/var/lib/systemd/coredump/core.spotify.1000.b6c4f7f9f3974874a7437f437edc0f5d.6351.1745689788000000.zst"
May 05 16:50:37 archlinux drkonqi-coredump-processor[4579]: "/usr/lib/electron34/electron" 4972 "/var/lib/systemd/coredump/core.electron.1000.a2b27e7227b349f78d5fe84ac2c92cb3.4972.1745690041000000.zst"
May 05 16:50:37 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:37 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:37 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:37 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:37 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:37 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:37 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:37 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:37 archlinux drkonqi-coredump-launcher[7883]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:37 archlinux drkonqi-coredump-launcher[7885]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:37 archlinux drkonqi-coredump-launcher[7884]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:37 archlinux drkonqi-coredump-launcher[7885]: Unable to find file for pid 8950 expected at "kcrash-metadata/spotify.60c04afc66104b40b9db9b9bfc0cdc8a.8950.ini"
May 05 16:50:37 archlinux drkonqi-coredump-launcher[7884]: Unable to find file for pid 8957 expected at "kcrash-metadata/spotify.60c04afc66104b40b9db9b9bfc0cdc8a.8957.ini"
May 05 16:50:37 archlinux drkonqi-coredump-launcher[7883]: Unable to find file for pid 6644 expected at "kcrash-metadata/spotify.60c04afc66104b40b9db9b9bfc0cdc8a.6644.ini"
May 05 16:50:37 archlinux drkonqi-coredump-launcher[7886]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:37 archlinux drkonqi-coredump-launcher[7887]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:37 archlinux drkonqi-coredump-launcher[7886]: Unable to find file for pid 9827 expected at "kcrash-metadata/spotify.60c04afc66104b40b9db9b9bfc0cdc8a.9827.ini"
May 05 16:50:37 archlinux drkonqi-coredump-launcher[7887]: Unable to find file for pid 6673 expected at "kcrash-metadata/spotify.afdcd853b0f14f5ea71968b3acdd3c56.6673.ini"
May 05 16:50:37 archlinux drkonqi-coredump-launcher[7888]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:37 archlinux drkonqi-coredump-launcher[7888]: Unable to find file for pid 6870 expected at "kcrash-metadata/spotify.c760165da27943648ddf6651cb6f70d7.6870.ini"
May 05 16:50:37 archlinux drkonqi-coredump-launcher[7889]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:37 archlinux drkonqi-coredump-launcher[7889]: Unable to find file for pid 6402 expected at "kcrash-metadata/spotify.69ab6c13c55346c9a5b81325e5339690.6402.ini"
May 05 16:50:37 archlinux drkonqi-coredump-launcher[7890]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:37 archlinux drkonqi-coredump-launcher[7890]: Unable to find file for pid 9462 expected at "kcrash-metadata/spotify.69ab6c13c55346c9a5b81325e5339690.9462.ini"
May 05 16:50:37 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=1200900
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7911]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7908]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7909]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7910]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7911]: Unable to find file for pid 6588 expected at "kcrash-metadata/spotify.e7cd56353aea49ad9db924c6b7fb2b08.6588.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7909]: Unable to find file for pid 11019 expected at "kcrash-metadata/spotify.69ab6c13c55346c9a5b81325e5339690.11019.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7910]: Unable to find file for pid 6706 expected at "kcrash-metadata/spotify.1e70501d08b541928f28ed8c87655f1e.6706.ini"
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7908]: Unable to find file for pid 9527 expected at "kcrash-metadata/spotify.69ab6c13c55346c9a5b81325e5339690.9527.ini"
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7921]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7921]: Unable to find file for pid 9293 expected at "kcrash-metadata/spotify.e7cd56353aea49ad9db924c6b7fb2b08.9293.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7922]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7922]: Unable to find file for pid 6292 expected at "kcrash-metadata/spotify.3a6fee86d13f4c7aa122b881960b1164.6292.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7923]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7923]: Unable to find file for pid 6622 expected at "kcrash-metadata/spotify.04db344d1d3143c9859dc6bf6b6565d8.6622.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7924]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7924]: Unable to find file for pid 8943 expected at "kcrash-metadata/spotify.04db344d1d3143c9859dc6bf6b6565d8.8943.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7925]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7925]: Unable to find file for pid 6351 expected at "kcrash-metadata/spotify.b6c4f7f9f3974874a7437f437edc0f5d.6351.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7926]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 7383 "/var/lib/systemd/coredump/core.spotify.1000.bb63b58b274948f38f21a91dd34d5581.7383.1745709830000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 7762 "/var/lib/systemd/coredump/core.spotify.1000.bb63b58b274948f38f21a91dd34d5581.7762.1745709885000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 7769 "/var/lib/systemd/coredump/core.spotify.1000.bb63b58b274948f38f21a91dd34d5581.7769.1745709885000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7926]: Unable to find file for pid 4972 expected at "kcrash-metadata/electron.a2b27e7227b349f78d5fe84ac2c92cb3.4972.ini"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 12132 "/var/lib/systemd/coredump/core.spotify.1000.bb63b58b274948f38f21a91dd34d5581.12132.1745710097000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 13071 "/var/lib/systemd/coredump/core.spotify.1000.bb63b58b274948f38f21a91dd34d5581.13071.1745710211000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 5331 "/var/lib/systemd/coredump/core.spotify.1000.803fb474cfa34a6f801c7e29e503db1a.5331.1745710454000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 5913 "/var/lib/systemd/coredump/core.spotify.1000.803fb474cfa34a6f801c7e29e503db1a.5913.1745710569000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/home/enrique/.local/share/Steam/ubuntu12_64/steamwebhelper" 11682 "/var/lib/systemd/coredump/core.steamwebhelper.1000.803fb474cfa34a6f801c7e29e503db1a.11682.1745710957000000.zst"
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7947]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7947]: Unable to find file for pid 5913 expected at "kcrash-metadata/spotify.803fb474cfa34a6f801c7e29e503db1a.5913.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7949]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7948]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/home/enrique/.local/share/Steam/ubuntu12_64/steamwebhelper" 11702 "/var/lib/systemd/coredump/core.steamwebhelper.1000.803fb474cfa34a6f801c7e29e503db1a.11702.1745710958000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7949]: Unable to find file for pid 7383 expected at "kcrash-metadata/spotify.bb63b58b274948f38f21a91dd34d5581.7383.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7950]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7948]: Unable to find file for pid 11682 expected at "kcrash-metadata/steamwebhelper.803fb474cfa34a6f801c7e29e503db1a.11682.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7950]: Unable to find file for pid 7762 expected at "kcrash-metadata/spotify.bb63b58b274948f38f21a91dd34d5581.7762.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7951]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7952]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7951]: Unable to find file for pid 7769 expected at "kcrash-metadata/spotify.bb63b58b274948f38f21a91dd34d5581.7769.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7952]: Unable to find file for pid 12132 expected at "kcrash-metadata/spotify.bb63b58b274948f38f21a91dd34d5581.12132.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7953]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7953]: Unable to find file for pid 13071 expected at "kcrash-metadata/spotify.bb63b58b274948f38f21a91dd34d5581.13071.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7954]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7954]: Unable to find file for pid 5331 expected at "kcrash-metadata/spotify.803fb474cfa34a6f801c7e29e503db1a.5331.ini"
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7971]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/home/enrique/.local/share/Steam/ubuntu12_64/steamwebhelper" 11749 "/var/lib/systemd/coredump/core.steamwebhelper.1000.803fb474cfa34a6f801c7e29e503db1a.11749.1745710958000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7971]: Unable to find file for pid 11702 expected at "kcrash-metadata/steamwebhelper.803fb474cfa34a6f801c7e29e503db1a.11702.ini"
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7974]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/home/enrique/.local/share/Steam/ubuntu12_64/steamwebhelper" 11771 "/var/lib/systemd/coredump/core.steamwebhelper.1000.803fb474cfa34a6f801c7e29e503db1a.11771.1745710959000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7974]: Unable to find file for pid 11749 expected at "kcrash-metadata/steamwebhelper.803fb474cfa34a6f801c7e29e503db1a.11749.ini"
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7977]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/home/enrique/.local/share/Steam/ubuntu12_64/steamwebhelper" 11814 "/var/lib/systemd/coredump/core.steamwebhelper.1000.803fb474cfa34a6f801c7e29e503db1a.11814.1745710959000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7977]: Unable to find file for pid 11771 expected at "kcrash-metadata/steamwebhelper.803fb474cfa34a6f801c7e29e503db1a.11771.ini"
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7979]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/home/enrique/.local/share/Steam/ubuntu12_64/steamwebhelper" 11848 "/var/lib/systemd/coredump/core.steamwebhelper.1000.803fb474cfa34a6f801c7e29e503db1a.11848.1745710960000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7979]: Unable to find file for pid 11814 expected at "kcrash-metadata/steamwebhelper.803fb474cfa34a6f801c7e29e503db1a.11814.ini"
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7982]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/home/enrique/.local/share/Steam/ubuntu12_64/steamwebhelper" 11659 "/var/lib/systemd/coredump/core.steamwebhelper.1000.803fb474cfa34a6f801c7e29e503db1a.11659.1745711309000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7982]: Unable to find file for pid 11848 expected at "kcrash-metadata/steamwebhelper.803fb474cfa34a6f801c7e29e503db1a.11848.ini"
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7985]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/usr/lib/electron34/electron" 4545 "/var/lib/systemd/coredump/core.electron.1000.803fb474cfa34a6f801c7e29e503db1a.4545.1745711309000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7985]: Unable to find file for pid 11659 expected at "kcrash-metadata/steamwebhelper.803fb474cfa34a6f801c7e29e503db1a.11659.ini"
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7987]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 5135 "/var/lib/systemd/coredump/core.spotify.1000.803fb474cfa34a6f801c7e29e503db1a.5135.1745711309000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7987]: Unable to find file for pid 4545 expected at "kcrash-metadata/electron.803fb474cfa34a6f801c7e29e503db1a.4545.ini"
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7990]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/usr/lib/electron34/electron" 19393 "/var/lib/systemd/coredump/core.ThreadPoolForeg.1000.803fb474cfa34a6f801c7e29e503db1a.19393.1745711384000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 19387 "/var/lib/systemd/coredump/core.spotify.1000.803fb474cfa34a6f801c7e29e503db1a.19387.1745711389000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7990]: Unable to find file for pid 5135 expected at "kcrash-metadata/spotify.803fb474cfa34a6f801c7e29e503db1a.5135.ini"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/usr/lib/electron34/electron" 5950 "/var/lib/systemd/coredump/core.ThreadPoolForeg.1000.ebf2a436f91b47d89e711733fab4a586.5950.1745711456000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6198 "/var/lib/systemd/coredump/core.spotify.1000.ebf2a436f91b47d89e711733fab4a586.6198.1745711461000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 10549 "/var/lib/systemd/coredump/core.spotify.1000.ebf2a436f91b47d89e711733fab4a586.10549.1745711575000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/usr/lib/electron34/electron" 6904 "/var/lib/systemd/coredump/core.ThreadPoolForeg.1000.a737a795f8b54b5a8448327d3a72bb4a.6904.1745940926000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6957 "/var/lib/systemd/coredump/core.spotify.1000.a737a795f8b54b5a8448327d3a72bb4a.6957.1745940932000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9563 "/var/lib/systemd/coredump/core.spotify.1000.a737a795f8b54b5a8448327d3a72bb4a.9563.1745940986000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9556 "/var/lib/systemd/coredump/core.spotify.1000.a737a795f8b54b5a8448327d3a72bb4a.9556.1745940986000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9576 "/var/lib/systemd/coredump/core.spotify.1000.a737a795f8b54b5a8448327d3a72bb4a.9576.1745940986000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9586 "/var/lib/systemd/coredump/core.spotify.1000.a737a795f8b54b5a8448327d3a72bb4a.9586.1745940986000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9593 "/var/lib/systemd/coredump/core.spotify.1000.a737a795f8b54b5a8448327d3a72bb4a.9593.1745940986000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9611 "/var/lib/systemd/coredump/core.spotify.1000.a737a795f8b54b5a8448327d3a72bb4a.9611.1745940986000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 10279 "/var/lib/systemd/coredump/core.spotify.1000.a737a795f8b54b5a8448327d3a72bb4a.10279.1745941046000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/usr/lib/electron34/electron" 6106 "/var/lib/systemd/coredump/core.ThreadPoolForeg.1000.a5e40c649b404ff18d4941fb97c2a891.6106.1745944406000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6358 "/var/lib/systemd/coredump/core.spotify.1000.a5e40c649b404ff18d4941fb97c2a891.6358.1745944411000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 10306 "/var/lib/systemd/coredump/core.spotify.1000.a5e40c649b404ff18d4941fb97c2a891.10306.1745944525000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8902 "/var/lib/systemd/coredump/core.spotify.1000.2fbee47c54054a00a66d100dcd6453bb.8902.1746037348000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8912 "/var/lib/systemd/coredump/core.spotify.1000.2fbee47c54054a00a66d100dcd6453bb.8912.1746037348000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8922 "/var/lib/systemd/coredump/core.spotify.1000.2fbee47c54054a00a66d100dcd6453bb.8922.1746037348000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/usr/lib/electron34/electron" 9984 "/var/lib/systemd/coredump/core.ThreadPoolForeg.1000.2fbee47c54054a00a66d100dcd6453bb.9984.1746037379000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/usr/lib/electron34/electron" 10414 "/var/lib/systemd/coredump/core.ThreadPoolForeg.1000.2fbee47c54054a00a66d100dcd6453bb.10414.1746037398000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 10754 "/var/lib/systemd/coredump/core.spotify.1000.2fbee47c54054a00a66d100dcd6453bb.10754.1746037408000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/usr/lib/electron34/electron" 10238 "/var/lib/systemd/coredump/core.electron.1000.2fbee47c54054a00a66d100dcd6453bb.10238.1746041951000000.zst"
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: QAbstractSocket::waitForBytesWritten() is not allowed in UnconnectedState
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/home/enrique/.local/share/Steam/ubuntu12_64/steamwebhelper" 225091 "/var/lib/systemd/coredump/core.steamwebhelper.1000.2fbee47c54054a00a66d100dcd6453bb.225091.1746042570000000.zst"
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7995]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7998]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7996]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7997]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7995]: Unable to find file for pid 19393 expected at "kcrash-metadata/electron.803fb474cfa34a6f801c7e29e503db1a.19393.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7996]: Unable to find file for pid 19387 expected at "kcrash-metadata/spotify.803fb474cfa34a6f801c7e29e503db1a.19387.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7997]: Unable to find file for pid 5950 expected at "kcrash-metadata/electron.ebf2a436f91b47d89e711733fab4a586.5950.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7998]: Unable to find file for pid 6198 expected at "kcrash-metadata/spotify.ebf2a436f91b47d89e711733fab4a586.6198.ini"
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8000]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7999]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8000]: Unable to find file for pid 6904 expected at "kcrash-metadata/electron.a737a795f8b54b5a8448327d3a72bb4a.6904.ini"
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[7999]: Unable to find file for pid 10549 expected at "kcrash-metadata/spotify.ebf2a436f91b47d89e711733fab4a586.10549.ini"
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8001]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8002]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8001]: Unable to find file for pid 6957 expected at "kcrash-metadata/spotify.a737a795f8b54b5a8448327d3a72bb4a.6957.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8002]: Unable to find file for pid 9563 expected at "kcrash-metadata/spotify.a737a795f8b54b5a8448327d3a72bb4a.9563.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8003]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8003]: Unable to find file for pid 9556 expected at "kcrash-metadata/spotify.a737a795f8b54b5a8448327d3a72bb4a.9556.ini"
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8004]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8004]: Unable to find file for pid 9576 expected at "kcrash-metadata/spotify.a737a795f8b54b5a8448327d3a72bb4a.9576.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8007]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8007]: Unable to find file for pid 9586 expected at "kcrash-metadata/spotify.a737a795f8b54b5a8448327d3a72bb4a.9586.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8010]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8010]: Unable to find file for pid 9593 expected at "kcrash-metadata/spotify.a737a795f8b54b5a8448327d3a72bb4a.9593.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8011]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8012]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8011]: Unable to find file for pid 9611 expected at "kcrash-metadata/spotify.a737a795f8b54b5a8448327d3a72bb4a.9611.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8012]: Unable to find file for pid 10279 expected at "kcrash-metadata/spotify.a737a795f8b54b5a8448327d3a72bb4a.10279.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8014]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8016]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8014]: Unable to find file for pid 6106 expected at "kcrash-metadata/electron.a5e40c649b404ff18d4941fb97c2a891.6106.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8016]: Unable to find file for pid 6358 expected at "kcrash-metadata/spotify.a5e40c649b404ff18d4941fb97c2a891.6358.ini"
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8043]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/usr/lib/electron35/electron" 215941 "/var/lib/systemd/coredump/core.electron.1000.2fbee47c54054a00a66d100dcd6453bb.215941.1746042570000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8043]: Unable to find file for pid 225091 expected at "kcrash-metadata/steamwebhelper.2fbee47c54054a00a66d100dcd6453bb.225091.ini"
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8045]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/usr/bin/Xwayland" 215998 "/var/lib/systemd/coredump/core.Xwayland.1000.2fbee47c54054a00a66d100dcd6453bb.215998.1746042630000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8045]: Unable to find file for pid 215941 expected at "kcrash-metadata/electron.2fbee47c54054a00a66d100dcd6453bb.215941.ini"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/usr/lib/electron35/electron" 230462 "/var/lib/systemd/coredump/core.ThreadPoolForeg.1000.2fbee47c54054a00a66d100dcd6453bb.230462.1746042768000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/usr/lib/electron35/electron" 6605 "/var/lib/systemd/coredump/core.ThreadPoolForeg.1000.2b122dd1a87249d0b34d7853dfd9dbef.6605.1746377166000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6695 "/var/lib/systemd/coredump/core.spotify.1000.2b122dd1a87249d0b34d7853dfd9dbef.6695.1746377171000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8753 "/var/lib/systemd/coredump/core.spotify.1000.2b122dd1a87249d0b34d7853dfd9dbef.8753.1746377225000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8767 "/var/lib/systemd/coredump/core.spotify.1000.2b122dd1a87249d0b34d7853dfd9dbef.8767.1746377225000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8827 "/var/lib/systemd/coredump/core.spotify.1000.2b122dd1a87249d0b34d7853dfd9dbef.8827.1746377225000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8877 "/var/lib/systemd/coredump/core.spotify.1000.2b122dd1a87249d0b34d7853dfd9dbef.8877.1746377225000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8864 "/var/lib/systemd/coredump/core.spotify.1000.2b122dd1a87249d0b34d7853dfd9dbef.8864.1746377225000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8951 "/var/lib/systemd/coredump/core.spotify.1000.2b122dd1a87249d0b34d7853dfd9dbef.8951.1746377225000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9009 "/var/lib/systemd/coredump/core.spotify.1000.2b122dd1a87249d0b34d7853dfd9dbef.9009.1746377225000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9780 "/var/lib/systemd/coredump/core.spotify.1000.2b122dd1a87249d0b34d7853dfd9dbef.9780.1746377285000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 11363 "/var/lib/systemd/coredump/core.spotify.1000.2b122dd1a87249d0b34d7853dfd9dbef.11363.1746377411000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/usr/lib/electron35/electron" 6059 "/var/lib/systemd/coredump/core.ThreadPoolForeg.1000.95f16f1f3329450baa51b00197dd5712.6059.1746378259000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6314 "/var/lib/systemd/coredump/core.spotify.1000.95f16f1f3329450baa51b00197dd5712.6314.1746378264000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/usr/lib/electron35/electron" 6432 "/var/lib/systemd/coredump/core.ThreadPoolForeg.1000.6750ae0bb3754cec856018790fd4e04c.6432.1746378480000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6536 "/var/lib/systemd/coredump/core.spotify.1000.6750ae0bb3754cec856018790fd4e04c.6536.1746378485000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8844 "/var/lib/systemd/coredump/core.spotify.1000.6750ae0bb3754cec856018790fd4e04c.8844.1746378599000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 9855 "/var/lib/systemd/coredump/core.spotify.1000.6750ae0bb3754cec856018790fd4e04c.9855.1746378725000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 19098 "/var/lib/systemd/coredump/core.spotify.1000.6750ae0bb3754cec856018790fd4e04c.19098.1746379805000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/usr/lib/electron35/electron" 6253 "/var/lib/systemd/coredump/core.ThreadPoolForeg.1000.7add6f3b017b41a4b5de8233896fc822.6253.1746455759000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6318 "/var/lib/systemd/coredump/core.spotify.1000.7add6f3b017b41a4b5de8233896fc822.6318.1746455764000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/usr/lib/electron35/electron" 5957 "/var/lib/systemd/coredump/core.ThreadPoolForeg.1000.73e3a75600ea414ab8ca27e71b2c6980.5957.1746455814000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6192 "/var/lib/systemd/coredump/core.spotify.1000.73e3a75600ea414ab8ca27e71b2c6980.6192.1746455819000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/usr/lib/electron35/electron" 5832 "/var/lib/systemd/coredump/core.ThreadPoolForeg.1000.12253ffbde194e0ba56edd7bc3f02d60.5832.1746456008000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 5950 "/var/lib/systemd/coredump/core.spotify.1000.12253ffbde194e0ba56edd7bc3f02d60.5950.1746456013000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/usr/lib/electron35/electron" 5704 "/var/lib/systemd/coredump/core.ThreadPoolForeg.1000.e7df15eeab7b4108b56fe171ffbfbf8f.5704.1746456081000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 5790 "/var/lib/systemd/coredump/core.spotify.1000.e7df15eeab7b4108b56fe171ffbfbf8f.5790.1746456086000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 7846 "/var/lib/systemd/coredump/core.spotify.1000.e7df15eeab7b4108b56fe171ffbfbf8f.7846.1746456138000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 7856 "/var/lib/systemd/coredump/core.spotify.1000.e7df15eeab7b4108b56fe171ffbfbf8f.7856.1746456138000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 8649 "/var/lib/systemd/coredump/core.spotify.1000.e7df15eeab7b4108b56fe171ffbfbf8f.8649.1746456198000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/usr/lib/electron35/electron" 6027 "/var/lib/systemd/coredump/core.ThreadPoolForeg.1000.e29c8da3fad849c495409aee6ec1a94c.6027.1746456454000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 6325 "/var/lib/systemd/coredump/core.spotify.1000.e29c8da3fad849c495409aee6ec1a94c.6325.1746456459000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/usr/lib/electron35/electron" 5841 "/var/lib/systemd/coredump/core.ThreadPoolForeg.1000.4d34d274961748bd82221c1ed5985ade.5841.1746456580000000.zst"
May 05 16:50:38 archlinux drkonqi-coredump-processor[4579]: "/opt/spotify/spotify" 5970 "/var/lib/systemd/coredump/core.spotify.1000.4d34d274961748bd82221c1ed5985ade.5970.1746456585000000.zst"
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: drkonqi-coredump-launcher.socket: Too many incoming connections (16), dropping connection.
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8053]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8052]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8050]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8054]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8051]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8051]: Unable to find file for pid 230462 expected at "kcrash-metadata/electron.2fbee47c54054a00a66d100dcd6453bb.230462.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8053]: Unable to find file for pid 6695 expected at "kcrash-metadata/spotify.2b122dd1a87249d0b34d7853dfd9dbef.6695.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8052]: Unable to find file for pid 6605 expected at "kcrash-metadata/electron.2b122dd1a87249d0b34d7853dfd9dbef.6605.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8054]: Unable to find file for pid 8753 expected at "kcrash-metadata/spotify.2b122dd1a87249d0b34d7853dfd9dbef.8753.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8050]: Unable to find file for pid 215998 expected at "kcrash-metadata/Xwayland.2fbee47c54054a00a66d100dcd6453bb.215998.ini"
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8056]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8055]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8055]: Unable to find file for pid 8767 expected at "kcrash-metadata/spotify.2b122dd1a87249d0b34d7853dfd9dbef.8767.ini"
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8056]: Unable to find file for pid 8827 expected at "kcrash-metadata/spotify.2b122dd1a87249d0b34d7853dfd9dbef.8827.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8057]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8057]: Unable to find file for pid 8877 expected at "kcrash-metadata/spotify.2b122dd1a87249d0b34d7853dfd9dbef.8877.ini"
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8058]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8058]: Unable to find file for pid 8864 expected at "kcrash-metadata/spotify.2b122dd1a87249d0b34d7853dfd9dbef.8864.ini"
May 05 16:50:38 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 4579/UID 1000).
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8059]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8059]: Unable to find file for pid 8951 expected at "kcrash-metadata/spotify.2b122dd1a87249d0b34d7853dfd9dbef.8951.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8060]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8060]: Unable to find file for pid 9009 expected at "kcrash-metadata/spotify.2b122dd1a87249d0b34d7853dfd9dbef.9009.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8062]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8062]: Unable to find file for pid 9780 expected at "kcrash-metadata/spotify.2b122dd1a87249d0b34d7853dfd9dbef.9780.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8065]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8068]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8065]: Unable to find file for pid 11363 expected at "kcrash-metadata/spotify.2b122dd1a87249d0b34d7853dfd9dbef.11363.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8068]: Unable to find file for pid 6059 expected at "kcrash-metadata/electron.95f16f1f3329450baa51b00197dd5712.6059.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8069]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8069]: Unable to find file for pid 6314 expected at "kcrash-metadata/spotify.95f16f1f3329450baa51b00197dd5712.6314.ini"
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8072]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:50:38 archlinux drkonqi-coredump-launcher[8072]: Unable to find file for pid 6432 expected at "kcrash-metadata/electron.6750ae0bb3754cec856018790fd4e04c.6432.ini"
May 05 16:50:40 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=960700
May 05 16:50:43 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=1200900
May 05 16:50:46 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=1200900
May 05 16:50:49 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-37 noise=9999 txrate=1200900
May 05 16:50:51 archlinux plasmashell[4518]: file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/delegates/DelegatePopup.qml:147:17: QML Body: Binding loop detected for property "width"
May 05 16:50:52 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=1200900
May 05 16:50:55 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=1200900
May 05 16:50:58 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-36 noise=9999 txrate=1200900
May 05 16:51:01 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-35 noise=9999 txrate=960700
May 05 16:51:04 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-31 noise=9999 txrate=1200900
May 05 16:51:07 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=960700
May 05 16:51:10 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=1200900
May 05 16:51:13 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-34 noise=9999 txrate=1200900
May 05 16:51:16 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=960700
May 05 16:51:19 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=288200
May 05 16:51:20 archlinux kdeconnectd[4762]: 2025-05-05T16:51:20 default: new capabilities for "DESKTOP-ODTUUAT"
May 05 16:51:20 archlinux kdeconnectd[4762]: 2025-05-05T16:51:20 default: discarding unsupported packet "kdeconnect.notification.request" for "DESKTOP-ODTUUAT"
May 05 16:51:20 archlinux kdeconnectd[4762]: 2025-05-05T16:51:20 kdeconnect.plugin.clipboard: Ignoring clipboard without timestamp
May 05 16:51:22 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-31 noise=9999 txrate=960700
May 05 16:51:25 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=960700
May 05 16:51:25 archlinux kdeconnect-app[7521]: kf.kio.filewidgets.kfilefiltercombo: KFileFilterCombo::setCurrentFilter: Could not find file filter KFileFilter(MIME patterns: QList() File patterns: QList("*") label: "All Files")
May 05 16:51:25 archlinux kioworker[8402]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:51:25 archlinux kioworker[8416]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:51:28 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-37 noise=9999 txrate=1200900
May 05 16:51:31 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-35 noise=9999 txrate=960700
May 05 16:51:34 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-34 noise=9999 txrate=1200900
May 05 16:51:37 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-37 noise=9999 txrate=960700
May 05 16:51:38 archlinux spotify[8540]: *** stack smashing detected ***: terminated
May 05 16:51:38 archlinux systemd-coredump[8556]: Process 8540 (spotify) of user 1000 terminated abnormally with signal 6/ABRT, processing...
May 05 16:51:38 archlinux systemd[1]: Started Process Core Dump (PID 8556/UID 0).
May 05 16:51:38 archlinux systemd[1]: Started Pass systemd-coredump journal entries to relevant user for potential DrKonqi handling.
May 05 16:51:38 archlinux systemd-coredump[8557]: Process 8540 (spotify) of user 1000 dumped core.
Stack trace of thread 8540:
#0 0x00007c24bd64874c n/a (libc.so.6 + 0x9774c)
#1 0x00007c24bd5eedc0 raise (libc.so.6 + 0x3ddc0)
#2 0x00007c24bd5d657a abort (libc.so.6 + 0x2557a)
#3 0x00007c24bd5d75c9 n/a (libc.so.6 + 0x265c9)
#4 0x00007c24bd6d5a09 __fortify_fail (libc.so.6 + 0x124a09)
#5 0x00007c24bd6d6d34 __stack_chk_fail (libc.so.6 + 0x125d34)
#6 0x000056435feca0b3 n/a (/opt/spotify/spotify + 0xd8f0b3)
#7 0x00007c24bd5d86b5 n/a (libc.so.6 + 0x276b5)
#8 0x00007c24bd5d8769 __libc_start_main (libc.so.6 + 0x27769)
#9 0x000056435fec8a6e _start (/opt/spotify/spotify + 0xd8da6e)
Stack trace of thread 8543:
#0 0x00007c24bd64ee22 n/a (libc.so.6 + 0x9de22)
#1 0x00007c24bd642fda n/a (libc.so.6 + 0x91fda)
#2 0x00007c24bd64364c n/a (libc.so.6 + 0x9264c)
#3 0x00007c24bd645d1e pthread_cond_wait (libc.so.6 + 0x94d1e)
#4 0x00007c24ab4726fe n/a (libvulkan_radeon.so + 0x2726fe)
#5 0x00007c24ab44a13c n/a (libvulkan_radeon.so + 0x24a13c)
#6 0x00007c24ab47265d n/a (libvulkan_radeon.so + 0x27265d)
#7 0x00007c24bd6467eb n/a (libc.so.6 + 0x957eb)
#8 0x00007c24bd6ca18c n/a (libc.so.6 + 0x11918c)
Stack trace of thread 8554:
#0 0x00007c24bd64ee22 n/a (libc.so.6 + 0x9de22)
#1 0x00007c24bd642fda n/a (libc.so.6 + 0x91fda)
#2 0x00007c24bd64364c n/a (libc.so.6 + 0x9264c)
#3 0x00007c24bd645d1e pthread_cond_wait (libc.so.6 + 0x94d1e)
#4 0x00007c24c55a4226 n/a (libcef.so + 0x6da4226)
#5 0x00007c24c55cd0e3 n/a (libcef.so + 0x6dcd0e3)
#6 0x00007c24c554ed6d n/a (libcef.so + 0x6d4ed6d)
#7 0x00007c24c5587fed n/a (libcef.so + 0x6d87fed)
#8 0x00007c24c5588a23 n/a (libcef.so + 0x6d88a23)
#9 0x00007c24c55886ed n/a (libcef.so + 0x6d886ed)
#10 0x00007c24c5588603 n/a (libcef.so + 0x6d88603)
#11 0x00007c24c55a4a42 n/a (libcef.so + 0x6da4a42)
#12 0x00007c24bd6467eb n/a (libc.so.6 + 0x957eb)
#13 0x00007c24bd6ca18c n/a (libc.so.6 + 0x11918c)
Stack trace of thread 8541:
#0 0x00007c24bd64ee22 n/a (libc.so.6 + 0x9de22)
#1 0x00007c24bd642fda n/a (libc.so.6 + 0x91fda)
#2 0x00007c24bd64364c n/a (libc.so.6 + 0x9264c)
#3 0x00007c24bd645f28 pthread_cond_timedwait (libc.so.6 + 0x94f28)
#4 0x00007c24c55a4348 n/a (libcef.so + 0x6da4348)
#5 0x00007c24c55cd10d n/a (libcef.so + 0x6dcd10d)
#6 0x00007c24c554ed6d n/a (libcef.so + 0x6d4ed6d)
#7 0x00007c24c558c0bd n/a (libcef.so + 0x6d8c0bd)
#8 0x00007c24c558c244 n/a (libcef.so + 0x6d8c244)
#9 0x00007c24c55a4a42 n/a (libcef.so + 0x6da4a42)
#10 0x00007c24bd6467eb n/a (libc.so.6 + 0x957eb)
#11 0x00007c24bd6ca18c n/a (libc.so.6 + 0x11918c)
Stack trace of thread 8542:
#0 0x00007c24bd64ee22 n/a (libc.so.6 + 0x9de22)
#1 0x00007c24bd642fda n/a (libc.so.6 + 0x91fda)
#2 0x00007c24bd64364c n/a (libc.so.6 + 0x9264c)
#3 0x00007c24bd645d1e pthread_cond_wait (libc.so.6 + 0x94d1e)
#4 0x00007c24ab4726fe n/a (libvulkan_radeon.so + 0x2726fe)
#5 0x00007c24ab44a13c n/a (libvulkan_radeon.so + 0x24a13c)
#6 0x00007c24ab47265d n/a (libvulkan_radeon.so + 0x27265d)
#7 0x00007c24bd6467eb n/a (libc.so.6 + 0x957eb)
#8 0x00007c24bd6ca18c n/a (libc.so.6 + 0x11918c)
Stack trace of thread 8553:
#0 0x00007c24bd64ee22 n/a (libc.so.6 + 0x9de22)
#1 0x00007c24bd642fda n/a (libc.so.6 + 0x91fda)
#2 0x00007c24bd64364c n/a (libc.so.6 + 0x9264c)
#3 0x00007c24bd645d1e pthread_cond_wait (libc.so.6 + 0x94d1e)
#4 0x00007c24c55a4226 n/a (libcef.so + 0x6da4226)
#5 0x00007c24c55cd0e3 n/a (libcef.so + 0x6dcd0e3)
#6 0x00007c24c554ed6d n/a (libcef.so + 0x6d4ed6d)
#7 0x00007c24c5587fed n/a (libcef.so + 0x6d87fed)
#8 0x00007c24c5588a23 n/a (libcef.so + 0x6d88a23)
#9 0x00007c24c55886ed n/a (libcef.so + 0x6d886ed)
#10 0x00007c24c5588603 n/a (libcef.so + 0x6d88603)
#11 0x00007c24c55a4a42 n/a (libcef.so + 0x6da4a42)
#12 0x00007c24bd6467eb n/a (libc.so.6 + 0x957eb)
#13 0x00007c24bd6ca18c n/a (libc.so.6 + 0x11918c)
Stack trace of thread 8545:
#0 0x00007c24bd64ee22 n/a (libc.so.6 + 0x9de22)
#1 0x00007c24bd642fda n/a (libc.so.6 + 0x91fda)
#2 0x00007c24bd64364c n/a (libc.so.6 + 0x9264c)
#3 0x00007c24bd645f28 pthread_cond_timedwait (libc.so.6 + 0x94f28)
#4 0x00007c24a101b38c n/a (libnvidia-glcore.so.570.144 + 0xa1b38c)
#5 0x00007c24a144ab81 n/a (libnvidia-glcore.so.570.144 + 0xe4ab81)
#6 0x00007c24a101b544 n/a (libnvidia-glcore.so.570.144 + 0xa1b544)
#7 0x00007c24bd6467eb n/a (libc.so.6 + 0x957eb)
#8 0x00007c24bd6ca18c n/a (libc.so.6 + 0x11918c)
ELF object binary architecture: AMD x86-64
May 05 16:51:38 archlinux systemd[1]: systemd-coredump@2-8556-0.service: Deactivated successfully.
May 05 16:51:38 archlinux systemd[1]: systemd-coredump@2-8556-0.service: Consumed 365ms CPU time, 174.7M memory peak.
May 05 16:51:39 archlinux drkonqi-coredump-processor[8558]: "/opt/spotify/spotify" 8540 "/var/lib/systemd/coredump/core.spotify.1000.4d34d274961748bd82221c1ed5985ade.8540.1746456698000000.zst"
May 05 16:51:39 archlinux systemd[4216]: Started Launch DrKonqi for a systemd-coredump crash (PID 8558/UID 0).
May 05 16:51:39 archlinux systemd[1]: drkonqi-coredump-processor@2-8556-0.service: Deactivated successfully.
May 05 16:51:39 archlinux drkonqi-coredump-launcher[8568]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:51:39 archlinux drkonqi-coredump-launcher[8568]: Unable to find file for pid 8540 expected at "kcrash-metadata/spotify.4d34d274961748bd82221c1ed5985ade.8540.ini"
May 05 16:51:39 archlinux drkonqi-coredump-launcher[8568]: Nothing handled the dump :O
May 05 16:51:40 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-30 noise=9999 txrate=1200900
May 05 16:51:43 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=1200900
May 05 16:51:46 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-31 noise=9999 txrate=1200900
May 05 16:51:49 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=1200900
May 05 16:51:52 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=960700
May 05 16:51:55 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=1200900
May 05 16:51:58 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=960700
May 05 16:52:01 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-30 noise=9999 txrate=960700
May 05 16:52:04 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=720600
May 05 16:52:07 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-34 noise=9999 txrate=960700
May 05 16:52:07 archlinux kdeconnectd[4762]: 2025-05-05T16:52:07 default: new capabilities for "DESKTOP-ODTUUAT"
May 05 16:52:07 archlinux kdeconnectd[4762]: 2025-05-05T16:52:07 default: discarding unsupported packet "kdeconnect.notification.request" for "DESKTOP-ODTUUAT"
May 05 16:52:07 archlinux kdeconnectd[4762]: 2025-05-05T16:52:07 kdeconnect.plugin.clipboard: Ignoring clipboard without timestamp
May 05 16:52:10 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-34 noise=9999 txrate=960700
May 05 16:52:13 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-35 noise=9999 txrate=1200900
May 05 16:52:13 archlinux kdeconnectd[4762]: 2025-05-05T16:52:13 default: new capabilities for "DESKTOP-ODTUUAT"
May 05 16:52:13 archlinux kdeconnectd[4762]: 2025-05-05T16:52:13 default: discarding unsupported packet "kdeconnect.notification.request" for "DESKTOP-ODTUUAT"
May 05 16:52:13 archlinux kdeconnectd[4762]: 2025-05-05T16:52:13 kdeconnect.plugin.clipboard: Ignoring clipboard without timestamp
May 05 16:52:15 archlinux kdeconnectd[4762]: 2025-05-05T16:52:15 default: new capabilities for "DESKTOP-ODTUUAT"
May 05 16:52:15 archlinux kdeconnectd[4762]: 2025-05-05T16:52:15 default: discarding unsupported packet "kdeconnect.notification.request" for "DESKTOP-ODTUUAT"
May 05 16:52:15 archlinux kdeconnectd[4762]: 2025-05-05T16:52:15 kdeconnect.plugin.clipboard: Ignoring clipboard without timestamp
May 05 16:52:16 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=1200900
May 05 16:52:19 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-34 noise=9999 txrate=960700
May 05 16:52:22 archlinux kdeconnectd[4762]: 2025-05-05T16:52:22 default: new capabilities for "DESKTOP-ODTUUAT"
May 05 16:52:22 archlinux kdeconnectd[4762]: 2025-05-05T16:52:22 default: discarding unsupported packet "kdeconnect.notification.request" for "DESKTOP-ODTUUAT"
May 05 16:52:22 archlinux kdeconnectd[4762]: 2025-05-05T16:52:22 kdeconnect.plugin.clipboard: Ignoring clipboard without timestamp
May 05 16:52:22 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-34 noise=9999 txrate=960700
May 05 16:52:25 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=960700
May 05 16:52:28 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=1200900
May 05 16:52:31 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-30 noise=9999 txrate=960700
May 05 16:52:34 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=1200900
May 05 16:52:35 archlinux kdeconnectd[4762]: 2025-05-05T16:52:35 default: new capabilities for "DESKTOP-ODTUUAT"
May 05 16:52:35 archlinux kdeconnectd[4762]: 2025-05-05T16:52:35 default: discarding unsupported packet "kdeconnect.notification.request" for "DESKTOP-ODTUUAT"
May 05 16:52:35 archlinux kdeconnectd[4762]: 2025-05-05T16:52:35 kdeconnect.plugin.clipboard: Ignoring clipboard without timestamp
May 05 16:52:37 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-34 noise=9999 txrate=1200900
May 05 16:52:40 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=286700
May 05 16:52:40 archlinux wireplumber[4230]: wp-event-dispatcher: <WpAsyncEventHook:0x5db43ab74c50> failed: <WpSiStandardLink:0x5db43ac7dfa0> link failed: 1 of 1 PipeWire links failed to activate
May 05 16:52:43 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-31 noise=9999 txrate=1200900
May 05 16:52:46 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-30 noise=9999 txrate=1200900
May 05 16:52:49 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-31 noise=9999 txrate=960700
May 05 16:52:50 archlinux baloorunner[7485]: qt.dbus.integration: QDBusConnection: couldn't handle call to Teardown, no slot matched
May 05 16:52:50 archlinux baloorunner[7485]: qt.dbus.integration: QDBusConnection: couldn't handle call to Teardown, no slot matched
May 05 16:52:50 archlinux baloorunner[7485]: qt.dbus.integration: Could not find slot Krunner1Adaptor::Teardown
May 05 16:52:50 archlinux kwin_wayland[4306]: qt.dbus.integration: QDBusConnection: couldn't handle call to Teardown, no slot matched
May 05 16:52:50 archlinux kwin_wayland[4306]: qt.dbus.integration: QDBusConnection: couldn't handle call to Teardown, no slot matched
May 05 16:52:50 archlinux kwin_wayland[4306]: qt.dbus.integration: Could not find slot Krunner1Adaptor::Teardown
May 05 16:52:52 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=960700
May 05 16:52:55 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-34 noise=9999 txrate=960700
May 05 16:52:58 archlinux kwin_wayland[4306]: kwin_tabbox: Could not load window switcher package "org.kde.breeze.desktop" . Falling back to default
May 05 16:52:58 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-31 noise=9999 txrate=1200900
May 05 16:53:01 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=1200900
May 05 16:53:04 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-36 noise=9999 txrate=1200900
May 05 16:53:07 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=1200900
May 05 16:53:10 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=960700
May 05 16:53:13 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-30 noise=9999 txrate=1200900
May 05 16:53:16 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-35 noise=9999 txrate=1200900
May 05 16:53:19 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-37 noise=9999 txrate=1200900
May 05 16:53:22 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-31 noise=9999 txrate=1200900
May 05 16:53:25 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-31 noise=9999 txrate=1200900
May 05 16:53:28 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-34 noise=9999 txrate=1200900
May 05 16:53:31 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-34 noise=9999 txrate=960700
May 05 16:53:34 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-31 noise=9999 txrate=1200900
May 05 16:53:37 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-35 noise=9999 txrate=1200900
May 05 16:53:40 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=1200900
May 05 16:53:43 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-31 noise=9999 txrate=1200900
May 05 16:53:46 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-34 noise=9999 txrate=960700
May 05 16:53:49 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-35 noise=9999 txrate=960700
May 05 16:53:52 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=1200900
May 05 16:53:55 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-35 noise=9999 txrate=960700
May 05 16:53:58 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-34 noise=9999 txrate=1200900
May 05 16:54:01 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-34 noise=9999 txrate=288200
May 05 16:54:04 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-34 noise=9999 txrate=960700
May 05 16:54:07 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-31 noise=9999 txrate=1200900
May 05 16:54:10 archlinux systemd[4216]: Started kitty - Terminal emulator.
May 05 16:54:10 archlinux kitty[9521]: [0.055] Failed to set locale with LANG: en_US.UTF-8
May 05 16:54:10 archlinux kitty[9521]: [0.055] Failed to set locale with no LANG
May 05 16:54:10 archlinux systemd[4216]: Started kitty child process: 9548 launched by: 9521.
May 05 16:54:10 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-30 noise=9999 txrate=960700
May 05 16:54:11 archlinux kioworker[9615]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:54:13 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-36 noise=9999 txrate=1200900
May 05 16:54:16 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-37 noise=9999 txrate=432300
May 05 16:54:19 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-35 noise=9999 txrate=1200900
May 05 16:54:22 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-35 noise=9999 txrate=1200900
May 05 16:54:24 archlinux xdg-desktop-portal-kde[4861]: xdp-kde-settings: Namespace "org.gnome.desktop.interface" is not supported
May 05 16:54:24 archlinux xdg-desktop-portal-kde[4861]: xdp-kde-settings: Namespace "org.gnome.desktop.interface" is not supported
May 05 16:54:25 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-31 noise=9999 txrate=1200900
May 05 16:54:28 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=1200900
May 05 16:54:31 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=1200900
May 05 16:54:34 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:54:34 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:54:34 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-34 noise=9999 txrate=1200900
May 05 16:54:37 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=960700
May 05 16:54:40 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=1200900
May 05 16:54:43 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-36 noise=9999 txrate=1200900
May 05 16:54:46 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-36 noise=9999 txrate=1200900
May 05 16:54:50 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-36 noise=9999 txrate=720600
May 05 16:54:52 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:54:52 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:54:53 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=960700
May 05 16:54:54 archlinux kwin_wayland[4306]: kwin_libinput: Libinput: event11 - FOCA0001:00 2808:0106 Touchpad: kernel bug: Touch jump detected and discarded.
See https://wayland.freedesktop.org/libinput/doc/1.28.1/touchpad-jumping-cursors.html for details
May 05 16:54:54 archlinux kwin_wayland[4306]: kwin_libinput: Libinput: event11 - FOCA0001:00 2808:0106 Touchpad: kernel bug: Touch jump detected and discarded.
See https://wayland.freedesktop.org/libinput/doc/1.28.1/touchpad-jumping-cursors.html for details
May 05 16:54:56 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-35 noise=9999 txrate=1200900
May 05 16:54:57 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:54:57 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:54:57 archlinux rtkit-daemon[4241]: Successfully made thread 10451 of process 10151 owned by '1000' RT at priority 10.
May 05 16:54:57 archlinux rtkit-daemon[4241]: Supervising 8 threads of 5 processes of 1 users.
May 05 16:54:57 archlinux rtkit-daemon[4241]: Supervising 8 threads of 5 processes of 1 users.
May 05 16:54:57 archlinux rtkit-daemon[4241]: Supervising 8 threads of 5 processes of 1 users.
May 05 16:54:57 archlinux rtkit-daemon[4241]: Supervising 8 threads of 5 processes of 1 users.
May 05 16:54:57 archlinux rtkit-daemon[4241]: Supervising 8 threads of 5 processes of 1 users.
May 05 16:54:59 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-36 noise=9999 txrate=960700
May 05 16:55:02 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=1200900
May 05 16:55:02 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:55:02 archlinux rtkit-daemon[4241]: Supervising 7 threads of 4 processes of 1 users.
May 05 16:55:05 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-36 noise=9999 txrate=1200900
May 05 16:55:05 archlinux kwin_wayland[4306]: kwin_libinput: Libinput: event11 - FOCA0001:00 2808:0106 Touchpad: kernel bug: Touch jump detected and discarded.
See https://wayland.freedesktop.org/libinput/doc/1.28.1/touchpad-jumping-cursors.html for details
May 05 16:55:06 archlinux kwin_wayland[4306]: kwin_libinput: Libinput: event11 - FOCA0001:00 2808:0106 Touchpad: kernel bug: Touch jump detected and discarded.
See https://wayland.freedesktop.org/libinput/doc/1.28.1/touchpad-jumping-cursors.html for details
May 05 16:55:06 archlinux kwin_wayland[4306]: kwin_libinput: Libinput: event11 - FOCA0001:00 2808:0106 Touchpad: kernel bug: Touch jump detected and discarded.
See https://wayland.freedesktop.org/libinput/doc/1.28.1/touchpad-jumping-cursors.html for details
May 05 16:55:06 archlinux kwin_wayland[4306]: kwin_libinput: Libinput: event11 - FOCA0001:00 2808:0106 Touchpad: WARNING: log rate limit exceeded (5 msgs per 24h). Discarding future messages.
May 05 16:55:08 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-36 noise=9999 txrate=1200900
May 05 16:55:11 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=1200900
May 05 16:55:14 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=1200900
May 05 16:55:17 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-36 noise=9999 txrate=1200900
May 05 16:55:20 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-34 noise=9999 txrate=1200900
May 05 16:55:23 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-34 noise=9999 txrate=1200900
May 05 16:55:26 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=960700
May 05 16:55:29 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-30 noise=9999 txrate=1200900
May 05 16:55:32 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-34 noise=9999 txrate=960700
May 05 16:55:35 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=1200900
May 05 16:55:38 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-30 noise=9999 txrate=960700
May 05 16:55:41 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=1200900
May 05 16:55:44 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=1200900
May 05 16:55:47 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=960700
May 05 16:55:50 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-34 noise=9999 txrate=960700
May 05 16:55:53 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-34 noise=9999 txrate=1200900
May 05 16:55:56 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=1200900
May 05 16:55:59 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-36 noise=9999 txrate=1200900
May 05 16:56:02 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-35 noise=9999 txrate=1200900
May 05 16:56:05 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-35 noise=9999 txrate=1200900
May 05 16:56:08 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=1200900
May 05 16:56:11 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-30 noise=9999 txrate=720600
May 05 16:56:14 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-31 noise=9999 txrate=1200900
May 05 16:56:17 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-35 noise=9999 txrate=1200900
May 05 16:56:20 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-35 noise=9999 txrate=1200900
May 05 16:56:23 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-31 noise=9999 txrate=720600
May 05 16:56:26 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=960700
May 05 16:56:29 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=960700
May 05 16:56:32 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=960700
May 05 16:56:35 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-31 noise=9999 txrate=1200900
May 05 16:56:38 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=1200900
May 05 16:56:41 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-32 noise=9999 txrate=1200900
May 05 16:56:44 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-34 noise=9999 txrate=960700
May 05 16:56:47 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-34 noise=9999 txrate=960700
May 05 16:56:50 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=960700
May 05 16:56:51 archlinux systemd-logind[678]: The system will hibernate now!
May 05 16:56:51 archlinux NetworkManager[676]: <info> [1746457011.5141] manager: sleep: sleep requested (sleeping: no enabled: yes)
May 05 16:56:51 archlinux NetworkManager[676]: <info> [1746457011.5145] device (enp2s0): state change: unavailable -> unmanaged (reason 'unmanaged-sleeping', managed-type: 'full')
May 05 16:56:51 archlinux NetworkManager[676]: <info> [1746457011.5215] device (p2p-dev-wlan0): state change: disconnected -> unmanaged (reason 'unmanaged-sleeping', managed-type: 'full')
May 05 16:56:51 archlinux NetworkManager[676]: <info> [1746457011.5218] device (B4:05:A1:CF:30:89): state change: disconnected -> unmanaged (reason 'unmanaged-sleeping', managed-type: 'full')
May 05 16:56:51 archlinux NetworkManager[676]: <info> [1746457011.5220] manager: NetworkManager state is now ASLEEP
May 05 16:56:51 archlinux NetworkManager[676]: <info> [1746457011.5226] device (wlan0): state change: activated -> deactivating (reason 'sleeping', managed-type: 'full')
May 05 16:56:51 archlinux systemd[1]: Starting Network Manager Script Dispatcher Service...
May 05 16:56:51 archlinux kded6[4465]: Service ":1.98" unregistered
May 05 16:56:51 archlinux systemd[1]: Started Network Manager Script Dispatcher Service.
May 05 16:56:51 archlinux kernel: wlan0: deauthenticating from 9a:fe:ce:14:75:bc by local choice (Reason: 3=DEAUTH_LEAVING)
May 05 16:56:51 archlinux kscreenlocker_greet[11284]: Detected locale "C" with character encoding "ANSI_X3.4-1968", which is not UTF-8.
Qt depends on a UTF-8 locale, and has switched to "C.UTF-8" instead.
If this causes problems, reconfigure your locale. See the locale(1) manual
for more information.
May 05 16:56:52 archlinux wpa_supplicant[718]: nl80211: send_event_marker failed: Source based routing not supported
May 05 16:56:52 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-DISCONNECTED bssid=9a:fe:ce:14:75:bc reason=3 locally_generated=1
May 05 16:56:52 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-DSCP-POLICY clear_all
May 05 16:56:52 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=CORE type=WORLD
May 05 16:56:52 archlinux NetworkManager[676]: <info> [1746457012.1836] device (wlan0): supplicant interface state: completed -> disconnected
May 05 16:56:52 archlinux NetworkManager[676]: <info> [1746457012.1837] device (wlan0): state change: deactivating -> disconnected (reason 'sleeping', managed-type: 'full')
May 05 16:56:52 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=CORE type=WORLD
May 05 16:56:52 archlinux NetworkManager[676]: <info> [1746457012.1841] dhcp4 (wlan0): canceled DHCP transaction
May 05 16:56:52 archlinux NetworkManager[676]: <info> [1746457012.1842] dhcp4 (wlan0): activation: beginning transaction (timeout in 45 seconds)
May 05 16:56:52 archlinux NetworkManager[676]: <info> [1746457012.1842] dhcp4 (wlan0): state changed no lease
May 05 16:56:52 archlinux NetworkManager[676]: <info> [1746457012.2138] device (wlan0): set-hw-addr: set MAC address to 56:29:B0:C0:FA:41 (scanning)
May 05 16:56:52 archlinux NetworkManager[676]: <info> [1746457012.2750] device (wlan0): supplicant interface state: disconnected -> interface_disabled
May 05 16:56:52 archlinux NetworkManager[676]: <info> [1746457012.2750] device (wlan0): supplicant interface state: interface_disabled -> disconnected
May 05 16:56:52 archlinux NetworkManager[676]: <info> [1746457012.2752] device (wlan0): state change: disconnected -> unmanaged (reason 'unmanaged-sleeping', managed-type: 'full')
May 05 16:56:52 archlinux NetworkManager[676]: <info> [1746457012.3135] device (wlan0): set-hw-addr: reset MAC address to CC:5E:F8:1C:1C:0B (unmanage)
May 05 16:56:52 archlinux wpa_supplicant[718]: p2p-dev-wlan0: CTRL-EVENT-DSCP-POLICY clear_all
May 05 16:56:52 archlinux wpa_supplicant[718]: p2p-dev-wlan0: CTRL-EVENT-DSCP-POLICY clear_all
May 05 16:56:52 archlinux wpa_supplicant[718]: nl80211: deinit ifname=p2p-dev-wlan0 disabled_11b_rates=0
May 05 16:56:52 archlinux systemd[1]: Reached target Sleep.
May 05 16:56:52 archlinux systemd[1]: Starting NVIDIA system hibernate actions...
May 05 16:56:52 archlinux hibernate[11581]: nvidia-hibernate.service
May 05 16:56:52 archlinux logger[11581]: <13>May 5 16:56:52 hibernate: nvidia-hibernate.service
May 05 16:56:52 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-DSCP-POLICY clear_all
May 05 16:56:52 archlinux kwin_wayland[4306]: kwin_wayland_drm: atomic commit failed: Permission denied
May 05 16:56:52 archlinux wpa_supplicant[718]: wlan0: CTRL-EVENT-DSCP-POLICY clear_all
May 05 16:56:52 archlinux wpa_supplicant[718]: nl80211: deinit ifname=wlan0 disabled_11b_rates=0
May 05 16:56:52 archlinux bluetoothd[677]: Endpoint unregistered: sender=:1.39 path=/MediaEndpoint/A2DPSource/ldac
May 05 16:56:52 archlinux bluetoothd[677]: Endpoint unregistered: sender=:1.39 path=/MediaEndpoint/A2DPSink/aptx_hd
May 05 16:56:52 archlinux bluetoothd[677]: Endpoint unregistered: sender=:1.39 path=/MediaEndpoint/A2DPSource/aptx_hd
May 05 16:56:52 archlinux bluetoothd[677]: Endpoint unregistered: sender=:1.39 path=/MediaEndpoint/A2DPSink/aptx
May 05 16:56:52 archlinux bluetoothd[677]: Endpoint unregistered: sender=:1.39 path=/MediaEndpoint/A2DPSource/aptx
May 05 16:56:52 archlinux bluetoothd[677]: Endpoint unregistered: sender=:1.39 path=/MediaEndpoint/A2DPSink/aac
May 05 16:56:52 archlinux bluetoothd[677]: Endpoint unregistered: sender=:1.39 path=/MediaEndpoint/A2DPSource/aac
May 05 16:56:52 archlinux bluetoothd[677]: Endpoint unregistered: sender=:1.39 path=/MediaEndpoint/A2DPSink/opus_g
May 05 16:56:52 archlinux bluetoothd[677]: Endpoint unregistered: sender=:1.39 path=/MediaEndpoint/A2DPSource/opus_g
May 05 16:56:52 archlinux bluetoothd[677]: Endpoint unregistered: sender=:1.39 path=/MediaEndpoint/A2DPSink/sbc
May 05 16:56:52 archlinux bluetoothd[677]: Endpoint unregistered: sender=:1.39 path=/MediaEndpoint/A2DPSource/sbc
May 05 16:56:52 archlinux bluetoothd[677]: Endpoint unregistered: sender=:1.39 path=/MediaEndpoint/A2DPSource/aptx_ll_1
May 05 16:56:52 archlinux bluetoothd[677]: Endpoint unregistered: sender=:1.39 path=/MediaEndpoint/A2DPSource/aptx_ll_0
May 05 16:56:52 archlinux bluetoothd[677]: Endpoint unregistered: sender=:1.39 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_1
May 05 16:56:52 archlinux bluetoothd[677]: Endpoint unregistered: sender=:1.39 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_0
May 05 16:56:52 archlinux bluetoothd[677]: Endpoint unregistered: sender=:1.39 path=/MediaEndpoint/A2DPSource/faststream
May 05 16:56:52 archlinux bluetoothd[677]: Endpoint unregistered: sender=:1.39 path=/MediaEndpoint/A2DPSource/faststream_duplex
May 05 16:56:52 archlinux bluetoothd[677]: Endpoint unregistered: sender=:1.39 path=/MediaEndpoint/A2DPSink/opus_05
May 05 16:56:52 archlinux bluetoothd[677]: Endpoint unregistered: sender=:1.39 path=/MediaEndpoint/A2DPSource/opus_05
May 05 16:56:52 archlinux bluetoothd[677]: Endpoint unregistered: sender=:1.39 path=/MediaEndpoint/A2DPSink/opus_05_duplex
May 05 16:56:52 archlinux bluetoothd[677]: Endpoint unregistered: sender=:1.39 path=/MediaEndpoint/A2DPSource/opus_05_duplex
May 05 16:56:52 archlinux kded6[4465]: org.kde.pulseaudio: No object for name "alsa_input.pci-0000_06_00.6.analog-stereo"
May 05 16:56:52 archlinux kdeconnectd[4762]: 2025-05-05T16:56:52 org.kde.pulseaudio: No object for name "alsa_input.pci-0000_06_00.6.analog-stereo"
May 05 16:56:52 archlinux kded6[4465]: org.kde.pulseaudio: No object for name "alsa_output.pci-0000_06_00.6.analog-stereo"
May 05 16:56:52 archlinux plasmashell[4518]: org.kde.pulseaudio: No object for name "alsa_input.pci-0000_06_00.6.analog-stereo"
May 05 16:56:52 archlinux kded6[4465]: org.kde.pulseaudio: No object for name "alsa_input.pci-0000_06_00.6.analog-stereo"
May 05 16:56:52 archlinux kded6[4465]: org.kde.pulseaudio: No object for name "@DEFAULT_SINK@"
May 05 16:56:52 archlinux kded6[4465]: org.kde.pulseaudio: No object for name "@DEFAULT_SOURCE@"
May 05 16:56:52 archlinux kdeconnectd[4762]: 2025-05-05T16:56:52 org.kde.pulseaudio: No object for name "alsa_output.pci-0000_06_00.6.analog-stereo"
May 05 16:56:52 archlinux kdeconnectd[4762]: 2025-05-05T16:56:52 org.kde.pulseaudio: No object for name "alsa_input.pci-0000_06_00.6.analog-stereo"
May 05 16:56:52 archlinux kdeconnectd[4762]: 2025-05-05T16:56:52 org.kde.pulseaudio: No object for name "@DEFAULT_SINK@"
May 05 16:56:52 archlinux kdeconnectd[4762]: 2025-05-05T16:56:52 org.kde.pulseaudio: No object for name "@DEFAULT_SOURCE@"
May 05 16:56:52 archlinux plasmashell[4518]: org.kde.pulseaudio: No object for name "alsa_output.pci-0000_06_00.6.analog-stereo"
May 05 16:56:52 archlinux plasmashell[4518]: org.kde.pulseaudio: No object for name "alsa_input.pci-0000_06_00.6.analog-stereo"
May 05 16:56:52 archlinux plasmashell[4518]: org.kde.pulseaudio: No object for name "@DEFAULT_SINK@"
May 05 16:56:52 archlinux plasmashell[4518]: org.kde.pulseaudio: No object for name "@DEFAULT_SOURCE@"
May 05 16:56:52 archlinux kdeconnectd[4762]: 2025-05-05T16:56:52 org.kde.pulseaudio: No object for name "@DEFAULT_SINK@"
May 05 16:56:52 archlinux kdeconnectd[4762]: 2025-05-05T16:56:52 org.kde.pulseaudio: No object for name "@DEFAULT_SOURCE@"
May 05 16:56:52 archlinux kded6[4465]: org.kde.pulseaudio: No object for name "@DEFAULT_SINK@"
May 05 16:56:52 archlinux kded6[4465]: org.kde.pulseaudio: No object for name "@DEFAULT_SOURCE@"
May 05 16:56:52 archlinux plasmashell[4518]: org.kde.pulseaudio: No object for name "@DEFAULT_SINK@"
May 05 16:56:52 archlinux plasmashell[4518]: org.kde.pulseaudio: No object for name "@DEFAULT_SOURCE@"
May 05 16:56:52 archlinux plasmashell[4518]: org.kde.pulseaudio: No object for name "auto_null.monitor"
May 05 16:56:52 archlinux kded6[4465]: org.kde.pulseaudio: No object for name "auto_null.monitor"
May 05 16:56:52 archlinux kdeconnectd[4762]: 2025-05-05T16:56:52 org.kde.pulseaudio: No object for name "auto_null.monitor"
May 05 16:56:53 archlinux systemd[1]: nvidia-hibernate.service: Deactivated successfully.
May 05 16:56:53 archlinux systemd[1]: Finished NVIDIA system hibernate actions.
May 05 16:56:53 archlinux systemd[1]: nvidia-hibernate.service: Consumed 858ms CPU time, 267M memory peak.
May 05 16:56:53 archlinux systemd[1]: Starting System Hibernate...
May 05 16:56:53 archlinux systemd-sleep[11779]: User sessions remain unfrozen on explicit request ($SYSTEMD_SLEEP_FREEZE_USER_SESSIONS=0).
May 05 16:56:53 archlinux systemd-sleep[11779]: This is not recommended, and might result in unexpected behavior, particularly
May 05 16:56:53 archlinux systemd-sleep[11779]: in suspend-then-hibernate operations or setups with encrypted home directories.
May 05 16:56:53 archlinux systemd-sleep[11779]: Performing sleep operation 'hibernate'...
May 05 16:56:53 archlinux kernel: PM: hibernation: hibernation entry
Now when i press hibernation the screen goes black except for the cursor, it flashes a couple of times then goes completely black and does not shut down.
Is there any additional information i can deliver for further help?
Also rebooting, shutting down and suspend does work.
Offline
https://wiki.archlinux.org/title/Solid_ … leshooting
nvme_core.default_ps_max_latency_us=0 pcie_aspm=off pcie_port_pm=off iommu=soft
and in doubt rather remove the acpi_osi lie for the time being.
Are you currently using vfio at all? Why do you enforce "iommu=pt"?
Online
The iommu=pt must have been added when i was troubleshooting my gpu passthrough to a VM.
I have added the parameters to my grub config but it still does not work:
# GRUB boot loader configuration
GRUB_DEFAULT=0
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="Arch"
GRUB_CMDLINE_LINUX_DEFAULT="rd.driver.pre=vfio-pci loglevel=3 quiet nvidia-drm.modeset=1 nvidia_drm.fbdev=1 resume=UUID=bb693642-f4a1-49ba-828c-34c639d1d794 nvme_core.default_ps_max_latency_us=0 pcie_aspm=off pcie_port_pm=off iommu=soft"
GRUB_CMDLINE_LINUX="zswap.enabled=0 rootfstype=btrfs"
# Preload both GPT and MBR modules so that they are not missed
GRUB_PRELOAD_MODULES="part_gpt part_msdos"
# Uncomment to enable booting from LUKS encrypted devices
#GRUB_ENABLE_CRYPTODISK=y
# Set to 'countdown' or 'hidden' to change timeout behavior,
# press ESC key to display menu.
GRUB_TIMEOUT_STYLE=menu
# Uncomment to use basic console
GRUB_TERMINAL_INPUT=console
# Uncomment to disable graphical terminal
#GRUB_TERMINAL_OUTPUT=console
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `videoinfo'
GRUB_GFXMODE=auto
# Uncomment to allow the kernel use the same resolution used by grub
GRUB_GFXPAYLOAD_LINUX=keep
# Uncomment if you want GRUB to pass to the Linux kernel the old parameter
# format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
#GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries
GRUB_DISABLE_RECOVERY=true
# Uncomment and set to the desired menu colors. Used by normal and wallpaper
# modes only. Entries specified as foreground/background.
#GRUB_COLOR_NORMAL="light-blue/black"
#GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
# Uncomment one of them for the gfx desired, a image background or a gfxtheme
#GRUB_BACKGROUND="/path/to/wallpaper"
#GRUB_THEME="/path/to/gfxtheme"
# Uncomment to get a beep at GRUB start
#GRUB_INIT_TUNE="480 440 1"
# Uncomment to make GRUB remember the last selection. This requires
# setting 'GRUB_DEFAULT=saved' above.
#GRUB_SAVEDEFAULT=true
# Uncomment to disable submenus in boot menu
#GRUB_DISABLE_SUBMENU=y
# Probing for other operating systems is disabled for security reasons. Read
# documentation on GRUB_DISABLE_OS_PROBER, if still want to enable this
# functionality install os-prober and uncomment to detect and include other
# operating systems.
GRUB_DISABLE_OS_PROBER=false
I am starting to get tempted to just nuke this install and see if something i added screwed it up but then i still don't know whats wrong.
Do you know any other commands outside of the
journalctl -b -1
that i can provide that could help?
Offline
I assume you also regenerated grub-mkconfig after that?
The system from your journal reaches hibernation, not powering down will be between the BIOS and some™ hardware
May 05 16:49:20 archlinux kernel: DMI: LENOVO 82XU/LNVNB161216, BIOS LYCN45WW 04/01/2025
The BIOS is fairly new, but are there maybe further updates?
Can you hibernate from the multi-user.target (2nd link below)?
Edit: because I just saw kdeconnect and there're some plasma/kio related "system stalls on shutdown" reports pointing that direction.
Last edited by seth (2025-05-10 20:25:38)
Online
I'm having the same problem with a similar laptop. Using kernel 6.12 doesn't work either, not even from X11. I don't see a way to fix it; I assume it's due to a recent update.
Offline
I assume it's due to a recent update.
So did it previously work?
What has been updated before the break? (see your pacman log)
Online
It was working a while ago, but I can't tell from which update it stopped working. I haven't made any configuration changes either.
If this thread was created a few days ago, it could be from an April update, but I'm not sure.
My latest updates:
[2025-05-12T06:26:32+0200] [ALPM] upgraded mdatp-bin-debug (101.25022.0002-0 -> 101.25032.0008-0)
[2025-05-12T06:26:32+0200] [ALPM] upgraded mdatp-bin (101.25022.0002-0 -> 101.25032.0008-0)
[2025-05-12T06:26:31+0200] [ALPM] upgraded brave-bin (1:1.78.94-1 -> 1:1.78.97-1)
[2025-05-12T06:26:31+0200] [ALPM] upgraded vscodium-bin-debug (1.99.32846-1 -> 1.100.03093-1)
[2025-05-12T06:26:31+0200] [ALPM] upgraded vscodium-bin (1.99.32846-1 -> 1.100.03093-1)
[2025-05-12T06:20:08+0200] [ALPM] upgraded vulkan-headers (1:1.4.309.0-1 -> 1:1.4.313.0-1)
[2025-05-12T06:20:08+0200] [ALPM] upgraded vim (9.1.1362-1 -> 9.1.1376-1)
[2025-05-12T06:20:08+0200] [ALPM] upgraded vim-runtime (9.1.1362-1 -> 9.1.1376-1)
[2025-05-12T06:20:08+0200] [ALPM] upgraded threadweaver (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:20:08+0200] [ALPM] upgraded spectacle (1:6.3.4-1 -> 1:6.3.5-1)
[2025-05-12T06:20:08+0200] [ALPM] upgraded spdlog (1.15.2-1 -> 1.15.3-1)
[2025-05-12T06:20:08+0200] [ALPM] upgraded sddm-kcm (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:20:08+0200] [ALPM] upgraded python-setuptools (1:80.0.0-1 -> 1:80.3.1-1)
[2025-05-12T06:20:08+0200] [ALPM] upgraded python-fonttools (4.57.0-1 -> 4.58.0-1)
[2025-05-12T06:20:08+0200] [ALPM] upgraded print-manager (1:6.3.4-1 -> 1:6.3.5-1)
[2025-05-12T06:20:07+0200] [ALPM] upgraded poppler-qt5 (25.04.0-1 -> 25.05.0-1)
[2025-05-12T06:20:07+0200] [ALPM] upgraded poppler-glib (25.04.0-1 -> 25.05.0-1)
[2025-05-12T06:20:07+0200] [ALPM] upgraded plasma5-integration (6.3.4-2 -> 6.3.5-1)
[2025-05-12T06:20:07+0200] [ALPM] upgraded plasma-vault (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:20:07+0200] [ALPM] upgraded plasma-systemmonitor (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:20:07+0200] [ALPM] upgraded plasma-pa (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:20:07+0200] [ALPM] upgraded plasma-nm (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:20:07+0200] [ALPM] upgraded plasma-firewall (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:20:07+0200] [ALPM] upgraded plasma-disks (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:20:07+0200] [ALPM] upgraded plasma-desktop (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:20:07+0200] [ALPM] upgraded powerdevil (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:20:07+0200] [ALPM] upgraded polkit-kde-agent (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:20:07+0200] [ALPM] upgraded plasma-browser-integration (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:20:07+0200] [ALPM] upgraded packagekit (1.3.0-2 -> 1.3.1-1)
[2025-05-12T06:20:07+0200] [ALPM] upgraded ntp (4.2.8.p18-2 -> 4.2.8.p18-3)
[2025-05-12T06:20:07+0200] [ALPM] upgraded networkmanager-qt (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:20:07+0200] [ALPM] upgraded modemmanager-qt (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:20:07+0200] [ALPM] upgraded mlt (7.30.0-2 -> 7.32.0-1)
[2025-05-12T06:20:07+0200] [ALPM] upgraded minizip-ng (4.0.9-1 -> 4.0.10-1)
[2025-05-12T06:20:07+0200] [ALPM] upgraded man-pages (6.13-1 -> 6.14-1)
[2025-05-12T06:20:07+0200] [ALPM] upgraded lvm2 (2.03.31-1 -> 2.03.32-1)
[2025-05-12T06:20:07+0200] [ALPM] upgraded lutris (0.5.19-2 -> 0.5.19-4)
[2025-05-12T06:20:06+0200] [ALPM] upgraded python-charset-normalizer (3.4.1-1 -> 3.4.2-1)
[2025-05-12T06:20:06+0200] [ALPM] upgraded python-lxml (5.3.2-2 -> 5.4.0-1)
[2025-05-12T06:20:06+0200] [ALPM] upgraded linux-lts-headers (6.12.26-1 -> 6.12.28-1)
[2025-05-12T06:20:05+0200] [ALPM] upgraded linux-lts (6.12.26-1 -> 6.12.28-1)
[2025-05-12T06:20:04+0200] [ALPM] upgraded linux-headers (6.14.4.arch1-2 -> 6.14.6.arch1-1)
[2025-05-12T06:20:02+0200] [ALPM] upgraded linux-firmware (20250408.c1a774f3-1 -> 20250508.788aadc8-1)
[2025-05-12T06:20:02+0200] [ALPM] upgraded linux-firmware-whence (20250408.c1a774f3-1 -> 20250508.788aadc8-1)
[2025-05-12T06:20:02+0200] [ALPM] upgraded linux (6.14.4.arch1-2 -> 6.14.6.arch1-1)
[2025-05-12T06:20:01+0200] [ALPM] upgraded libreoffice-fresh (25.2.3-2 -> 25.2.3-3)
[2025-05-12T06:20:00+0200] [ALPM] upgraded libpackagekit-glib (1.3.0-2 -> 1.3.1-1)
[2025-05-12T06:20:00+0200] [ALPM] upgraded libde265 (1.0.15-3 -> 1.0.16-1)
[2025-05-12T06:20:00+0200] [ALPM] upgraded lib32-vulkan-icd-loader (1.4.309.0-1 -> 1.4.313.0-1)
[2025-05-12T06:20:00+0200] [ALPM] upgraded lib32-spirv-tools (1:1.4.309.0-1 -> 1:1.4.313.0-1)
[2025-05-12T06:20:00+0200] [ALPM] upgraded lib32-ncurses (6.5-1 -> 6.5-2)
[2025-05-12T06:20:00+0200] [ALPM] upgraded lib32-libxkbcommon (1.9.1-1 -> 1.9.2-1)
[2025-05-12T06:20:00+0200] [ALPM] upgraded kwayland-integration (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:20:00+0200] [ALPM] upgraded kwallet-pam (6.3.4-1 -> 6.3.5-2)
[2025-05-12T06:20:00+0200] [ALPM] upgraded kscreen (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:20:00+0200] [ALPM] upgraded kpeople (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:20:00+0200] [ALPM] upgraded kmenuedit (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:20:00+0200] [ALPM] upgraded kinfocenter (6.3.4-1 -> 6.3.5-2)
[2025-05-12T06:19:59+0200] [ALPM] upgraded vulkan-tools (1.4.309.0-1 -> 1.4.313.0-1)
[2025-05-12T06:19:59+0200] [ALPM] upgraded systemsettings (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:59+0200] [ALPM] upgraded kgamma (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:59+0200] [ALPM] upgraded kdeplasma-addons (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:59+0200] [ALPM] upgraded plasma-workspace (6.3.4-2 -> 6.3.5-1)
[2025-05-12T06:19:59+0200] [ALPM] upgraded libmfx (23.2.2-3 -> 23.2.2-4)
[2025-05-12T06:19:59+0200] [ALPM] upgraded kdnssd (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:59+0200] [ALPM] upgraded plasma-integration (6.3.4-2 -> 6.3.5-1)
[2025-05-12T06:19:59+0200] [ALPM] upgraded xdg-desktop-portal-kde (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:59+0200] [ALPM] upgraded qqc2-breeze-style (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:59+0200] [ALPM] upgraded prison (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:59+0200] [ALPM] upgraded zxing-cpp (2.3.0-4 -> 2.3.0-5)
[2025-05-12T06:19:59+0200] [ALPM] upgraded plasma5support (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:59+0200] [ALPM] upgraded plasma-activities-stats (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:59+0200] [ALPM] upgraded ocean-sound-theme (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:59+0200] [ALPM] upgraded milou (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:59+0200] [ALPM] upgraded ktextwidgets (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:59+0200] [ALPM] upgraded ktexteditor (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:59+0200] [ALPM] upgraded syntax-highlighting (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:59+0200] [ALPM] upgraded ksystemstats (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded libksysguard (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded kpipewire (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded knotifyconfig (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded kwin (6.3.4-4 -> 6.3.5-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded kwayland (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded kscreenlocker (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded libkscreen (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded layer-shell-qt (6.3.4-2 -> 6.3.5-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded kquickcharts (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded kglobalacceld (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded kunitconversion (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded krunner (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded kholidays (1:6.13.0-1 -> 1:6.14.0-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded kded (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded kde-gtk-config (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded kde-cli-tools (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded kparts (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded kdesu (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded kpty (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded kcontacts (1:6.13.0-1 -> 1:6.14.0-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded kactivitymanagerd (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded iwd (3.6-1 -> 3.8-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded gdal (3.10.3-1 -> 3.10.3-3)
[2025-05-12T06:19:58+0200] [ALPM] upgraded gamescope (3.16.3-1 -> 3.16.4-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded fwupd (2.0.8-1 -> 2.0.9-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded protobuf (30.2-1 -> 30.2-2)
[2025-05-12T06:19:58+0200] [ALPM] upgraded fluidsynth (2.4.5-3 -> 2.4.6-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded eos-log-tool (25.3-2 -> 25.5-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded libavif (1.2.1-1 -> 1.3.0-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded eos-bash-shared (25.4.3-1 -> 25.5-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded ell (0.76-1 -> 0.77-1)
[2025-05-12T06:19:58+0200] [ALPM] upgraded electron34 (34.5.4-1 -> 34.5.5-1)
[2025-05-12T06:19:57+0200] [ALPM] upgraded downgrade (11.5.1-1 -> 11.5.2-1)
[2025-05-12T06:19:57+0200] [ALPM] upgraded pacman-mirrorlist (20250311-1 -> 20250503-1)
[2025-05-12T06:19:57+0200] [ALPM] upgraded fzf (0.61.3-1 -> 0.62.0-1)
[2025-05-12T06:19:57+0200] [ALPM] upgraded docker-compose (2.35.1-1 -> 2.36.0-1)
[2025-05-12T06:19:57+0200] [ALPM] upgraded discover (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:57+0200] [ALPM] upgraded kitemmodels (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:57+0200] [ALPM] upgraded qqc2-desktop-style (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:57+0200] [ALPM] upgraded sonnet (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:57+0200] [ALPM] upgraded purpose (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:57+0200] [ALPM] upgraded kuserfeedback (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:57+0200] [ALPM] upgraded kstatusnotifieritem (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:57+0200] [ALPM] upgraded discord (1:0.0.93-1 -> 1:0.0.94-1)
[2025-05-12T06:19:56+0200] [ALPM] upgraded cpu-x (5.2.0-3 -> 5.3.0-1)
[2025-05-12T06:19:56+0200] [ALPM] upgraded containerd (2.0.5-1 -> 2.1.0-1)
[2025-05-12T06:19:56+0200] [ALPM] upgraded chromium (136.0.7103.59-1 -> 136.0.7103.92-1)
[2025-05-12T06:19:56+0200] [ALPM] upgraded libstemmer (2.2.0-2 -> 2.2.0-3)
[2025-05-12T06:19:56+0200] [ALPM] upgraded breeze5 (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:56+0200] [ALPM] upgraded qca-qt5 (2.3.10-1 -> 2.3.10-2)
[2025-05-12T06:19:56+0200] [ALPM] upgraded breeze-gtk (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:56+0200] [ALPM] upgraded breeze (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:56+0200] [ALPM] upgraded kdecoration (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:56+0200] [ALPM] upgraded frameworkintegration (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:56+0200] [ALPM] upgraded knewstuff (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:56+0200] [ALPM] upgraded syndication (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:56+0200] [ALPM] upgraded bluedevil (1:6.3.4-1 -> 1:6.3.5-1)
[2025-05-12T06:19:55+0200] [ALPM] upgraded libplasma (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:55+0200] [ALPM] upgraded kpackage (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:55+0200] [ALPM] upgraded plasma-activities (6.3.4-1 -> 6.3.5-1)
[2025-05-12T06:19:55+0200] [ALPM] upgraded ksvg (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:55+0200] [ALPM] upgraded kdeclarative (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:55+0200] [ALPM] upgraded kcmutils (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:55+0200] [ALPM] upgraded kxmlgui (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:55+0200] [ALPM] upgraded kglobalaccel (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:55+0200] [ALPM] upgraded kirigami (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:55+0200] [ALPM] upgraded kconfigwidgets (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:55+0200] [ALPM] upgraded bluez-qt (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:55+0200] [ALPM] upgraded baloo (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:55+0200] [ALPM] upgraded kio (6.13.0-2 -> 6.14.0-1)
[2025-05-12T06:19:55+0200] [ALPM] upgraded solid (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:55+0200] [ALPM] upgraded kwallet (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:55+0200] [ALPM] upgraded qca-qt6 (2.3.10-1 -> 2.3.10-2)
[2025-05-12T06:19:55+0200] [ALPM] upgraded kservice (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:55+0200] [ALPM] upgraded kjobwidgets (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:55+0200] [ALPM] upgraded knotifications (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:55+0200] [ALPM] upgraded kitemviews (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:55+0200] [ALPM] upgraded kiconthemes (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:55+0200] [ALPM] upgraded breeze-icons (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded kcompletion (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded kcolorscheme (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded kguiaddons (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded kbookmarks (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded kwidgetsaddons (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded kauth (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded kwindowsystem (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded kidletime (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded kfilemetadata (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded gettext (0.24-3 -> 0.25-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded poppler-qt6 (25.04.0-1 -> 25.05.0-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded poppler (25.04.0-1 -> 25.05.0-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded ki18n (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded kcodecs (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded karchive (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded ffmpeg (2:7.1.1-1 -> 2:7.1.1-2)
[2025-05-12T06:19:53+0200] [ALPM] upgraded sdl2-compat (2.32.54-2 -> 2.32.56-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded sdl3 (3.2.10-1 -> 3.2.12-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded libplacebo (7.349.0-6 -> 7.349.0-7)
[2025-05-12T06:19:53+0200] [ALPM] upgraded shaderc (2025.1-3 -> 2025.2-2)
[2025-05-12T06:19:53+0200] [ALPM] upgraded vulkan-icd-loader (1.4.309.0-1 -> 1.4.313.0-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded glslang (15.2.0-2 -> 1:1.4.313.0-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded kdbusaddons (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded kcrash (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded kcoreaddons (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded kconfig (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded attica (6.13.0-1 -> 6.14.0-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded device-mapper (2.03.31-1 -> 2.03.32-1)
[2025-05-12T06:19:53+0200] [ALPM] upgraded hwdata (0.394-1 -> 0.395-1)
[2025-05-12T06:19:52+0200] [ALPM] upgraded spirv-tools (1:1.4.309.0-1 -> 1:1.4.313.0-1)
[2025-05-12T06:19:52+0200] [ALPM] upgraded libgcrypt (1.11.0-3 -> 1.11.1-1)
[2025-05-12T06:19:52+0200] [ALPM] upgraded libxkbcommon-x11 (1.9.1-1 -> 1.9.2-1)
[2025-05-12T06:19:52+0200] [ALPM] upgraded libxkbcommon (1.9.1-1 -> 1.9.2-1)
[2025-05-12T06:19:52+0200] [ALPM] upgraded bash (5.2.037-2 -> 5.2.037-5)
[2025-05-12T06:19:52+0200] [ALPM] upgraded sqlite (3.49.1-1 -> 3.49.2-1)
[2025-05-12T06:19:52+0200] [ALPM] upgraded ncurses (6.5-3 -> 6.5-4)
[2025-05-12T06:19:52+0200] [ALPM] upgraded filesystem (2024.11.21-1 -> 2025.05.03-1)
[2025-05-12T06:19:52+0200] [ALPM] upgraded iana-etc (20250328-1 -> 20250502-1)
[2025-05-12T06:19:52+0200] [ALPM] upgraded amd-ucode (20250408.c1a774f3-1 -> 20250508.788aadc8-1)
[2025-05-05T06:44:29+0200] [ALPM] upgraded librewolf-bin-debug (1:137.0.2_1-1 -> 1:138.0.1_2-1)
[2025-05-05T06:44:28+0200] [ALPM] upgraded librewolf-bin (1:137.0.2_1-1 -> 1:138.0.1_2-1)
[2025-05-05T06:44:28+0200] [ALPM] upgraded brave-bin (1:1.77.101-1 -> 1:1.78.94-1)
[2025-05-05T06:39:15+0200] [ALPM] upgraded wine (10.6-1 -> 10.7-1)
[2025-05-05T06:39:13+0200] [ALPM] upgraded vlc (3.0.21-18 -> 3.0.21-19)
[2025-05-05T06:39:13+0200] [ALPM] upgraded vim (9.1.1337-1 -> 9.1.1362-1)
[2025-05-05T06:39:13+0200] [ALPM] upgraded vim-runtime (9.1.1337-1 -> 9.1.1362-1)
[2025-05-05T06:39:12+0200] [ALPM] upgraded tldr (3.3.0-2 -> 3.4.1-1)
[2025-05-05T06:39:12+0200] [ALPM] upgraded smartmontools (7.4-2 -> 7.5-1)
[2025-05-05T06:39:12+0200] [ALPM] upgraded qt6-webengine (6.9.0-5 -> 6.9.0-6)
[2025-05-05T06:39:12+0200] [ALPM] upgraded python-setuptools (1:79.0.1-1 -> 1:80.0.0-1)
[2025-05-05T06:39:12+0200] [ALPM] upgraded python-pyparsing (3.2.1-1 -> 3.2.2-1)
[2025-05-05T06:39:12+0200] [ALPM] upgraded python-pydantic (2.11.3-1 -> 2.11.4-1)
[2025-05-05T06:39:12+0200] [ALPM] upgraded python-pydantic-core (2:2.33.1-1 -> 2:2.33.2-2)
[2025-05-05T06:39:12+0200] [ALPM] upgraded python-pip (25.1-1 -> 25.1.1-1)
[2025-05-05T06:39:12+0200] [ALPM] upgraded protobuf-c (1.5.2-1 -> 1.5.2-2)
[2025-05-05T06:39:12+0200] [ALPM] upgraded passim (0.1.9-1 -> 0.1.10-1)
[2025-05-05T06:39:12+0200] [ALPM] upgraded openucx (1.18.0-3 -> 1.18.1-1)
[2025-05-05T06:39:12+0200] [ALPM] upgraded opencv (4.11.0-8 -> 4.11.0-9)
[2025-05-05T06:39:11+0200] [ALPM] upgraded man-db (2.13.0-1 -> 2.13.1-1)
[2025-05-05T06:39:11+0200] [ALPM] upgraded linux-lts-headers (6.12.25-2 -> 6.12.26-1)
[2025-05-05T06:39:09+0200] [ALPM] upgraded linux-lts (6.12.25-2 -> 6.12.26-1)
[2025-05-05T06:39:08+0200] [ALPM] upgraded linux-g14-headers (6.14.4.arch1-1.1 -> 6.14.5.arch1-1.1)
[2025-05-05T06:39:06+0200] [ALPM] upgraded linux-g14 (6.14.4.arch1-1.1 -> 6.14.5.arch1-1.1)
[2025-05-05T06:39:05+0200] [ALPM] upgraded libvlc (3.0.21-18 -> 3.0.21-19)
[2025-05-05T06:39:05+0200] [ALPM] upgraded libreoffice-fresh (25.2.3-1 -> 25.2.3-2)
[2025-05-05T06:39:04+0200] [ALPM] upgraded liborcus (0.20.0-1 -> 0.20.0-2)
[2025-05-05T06:39:04+0200] [ALPM] upgraded libnvme (1.12-2 -> 1.13-1)
[2025-05-05T06:39:04+0200] [ALPM] upgraded libixion (0.20.0-1 -> 0.20.0-2)
[2025-05-05T06:39:04+0200] [ALPM] upgraded libcmis (0.6.2-4 -> 0.6.2-5)
[2025-05-05T06:39:04+0200] [ALPM] upgraded lib32-vulkan-radeon (1:25.0.4-1 -> 1:25.0.5-1)
[2025-05-05T06:39:04+0200] [ALPM] upgraded vulkan-radeon (1:25.0.4-1 -> 1:25.0.5-1)
[2025-05-05T06:39:04+0200] [ALPM] upgraded lib32-nss (3.110-1 -> 3.111-1)
[2025-05-05T06:39:04+0200] [ALPM] upgraded lib32-mesa (1:25.0.4-1 -> 1:25.0.5-1)
[2025-05-05T06:39:04+0200] [ALPM] upgraded lib32-libxkbcommon (1.9.0-1 -> 1.9.1-1)
[2025-05-05T06:39:04+0200] [ALPM] upgraded lib32-libpng (1.6.47-1 -> 1.6.48-1)
[2025-05-05T06:39:04+0200] [ALPM] upgraded imath (3.1.12-3 -> 3.1.12-4)
[2025-05-05T06:39:04+0200] [ALPM] upgraded gtk4 (1:4.18.4-1 -> 1:4.18.5-1)
[2025-05-05T06:39:03+0200] [ALPM] upgraded libxkbcommon-x11 (1.9.0-1 -> 1.9.1-1)
[2025-05-05T06:39:03+0200] [ALPM] upgraded gdal (3.10.2-4 -> 3.10.3-1)
[2025-05-05T06:39:03+0200] [ALPM] upgraded firefox (138.0-1 -> 138.0.1-1)
[2025-05-05T06:39:03+0200] [ALPM] upgraded electron34 (34.5.3-1 -> 34.5.4-1)
[2025-05-05T06:39:02+0200] [ALPM] upgraded dracut (106-1 -> 107-1)
[2025-05-05T06:39:02+0200] [ALPM] upgraded chromium (135.0.7049.114-2 -> 136.0.7103.59-1)
[2025-05-05T06:39:01+0200] [ALPM] upgraded mesa (1:25.0.4-1 -> 1:25.0.5-1)
[2025-05-05T06:39:01+0200] [ALPM] upgraded libxkbcommon (1.9.0-1 -> 1.9.1-1)
[2025-05-05T06:39:01+0200] [ALPM] upgraded gtk-update-icon-cache (1:4.18.4-1 -> 1:4.18.5-1)
[2025-05-05T06:39:01+0200] [ALPM] upgraded pixman (0.44.2-1 -> 0.46.0-1)
[2025-05-05T06:39:01+0200] [ALPM] upgraded libpng (1.6.47-1 -> 1.6.48-1)
[2025-05-05T06:39:01+0200] [ALPM] upgraded nss (3.110-1 -> 3.111-1)
[2025-05-05T06:39:01+0200] [ALPM] upgraded boost-libs (1.87.0-3 -> 1.88.0-2)
[2025-05-05T06:39:01+0200] [ALPM] upgraded android-tools (35.0.2-14 -> 35.0.2-15)
[2025-05-05T06:39:01+0200] [ALPM] upgraded ca-certificates-mozilla (3.110-1 -> 3.111-1)
[2025-05-05T06:39:01+0200] [ALPM] upgraded protobuf (30.1-4 -> 30.2-1)
[2025-05-05T06:39:01+0200] [ALPM] upgraded alsa-ucm-conf (1.2.14-1 -> 1.2.14-2)
[2025-05-01T12:22:06+0200] [ALPM] upgraded xmlstarlet (1.6.1-4 -> 1.6.1-5)
[2025-05-01T12:22:06+0200] [ALPM] upgraded webkit2gtk-4.1 (2.48.1-1 -> 2.48.1-2)
[2025-05-01T12:22:06+0200] [ALPM] upgraded vlc (3.0.21-17 -> 3.0.21-18)
[2025-05-01T12:22:06+0200] [ALPM] upgraded qt6-webengine (6.9.0-4 -> 6.9.0-5)
[2025-05-01T12:22:05+0200] [ALPM] upgraded python-typing_extensions (4.12.2-3 -> 4.13.2-1)
[2025-05-01T12:22:05+0200] [ALPM] upgraded python-lxml (5.3.2-1 -> 5.3.2-2)
[2025-05-01T12:22:05+0200] [ALPM] upgraded pyside6 (6.9.0-1 -> 6.9.0-2)
[2025-05-01T12:22:05+0200] [ALPM] upgraded shiboken6 (6.9.0-1 -> 6.9.0-2)
[2025-05-01T12:22:05+0200] [ALPM] upgraded nvidia-open-dkms (570.144-1 -> 570.144-3)
[2025-05-01T12:22:05+0200] [ALPM] upgraded noto-fonts (1:2025.04.01-1 -> 1:2025.05.01-1)
[2025-05-01T12:22:04+0200] [ALPM] upgraded nfs-utils (2.8.3-1 -> 2.8.3-2)
[2025-05-01T12:22:04+0200] [ALPM] upgraded nfsidmap (2.8.3-1 -> 2.8.3-2)
[2025-05-01T12:22:04+0200] [ALPM] upgraded networkmanager-openconnect (1.2.10-2 -> 1.2.10-3)
[2025-05-01T12:22:04+0200] [ALPM] upgraded openconnect (1:9.12-3 -> 1:9.12-4)
[2025-05-01T12:22:04+0200] [ALPM] upgraded oath-toolkit (2.6.12-1 -> 2.6.12-2)
[2025-05-01T12:22:04+0200] [ALPM] upgraded stoken (0.92-4 -> 0.92-5)
[2025-05-01T12:22:04+0200] [ALPM] upgraded mysql-workbench (8.0.42-2 -> 8.0.42-3)
[2025-05-01T12:22:04+0200] [ALPM] upgraded mlt (7.30.0-1 -> 7.30.0-2)
[2025-05-01T12:22:04+0200] [ALPM] upgraded llvm (19.1.7-1 -> 19.1.7-2)
[2025-05-01T12:22:04+0200] [ALPM] upgraded linux-lts-headers (6.12.25-1 -> 6.12.25-2)
[2025-05-01T12:22:02+0200] [ALPM] upgraded linux-lts (6.12.25-1 -> 6.12.25-2)
[2025-05-01T12:22:01+0200] [ALPM] upgraded linux-headers (6.14.4.arch1-1 -> 6.14.4.arch1-2)
[2025-05-01T12:21:59+0200] [ALPM] upgraded linux (6.14.4.arch1-1 -> 6.14.4.arch1-2)
[2025-05-01T12:21:58+0200] [ALPM] upgraded libvlc (3.0.21-17 -> 3.0.21-18)
[2025-05-01T12:21:58+0200] [ALPM] upgraded libreoffice-fresh (25.2.2-2 -> 25.2.3-1)
[2025-05-01T12:21:56+0200] [ALPM] upgraded xmlsec (1.3.7-1 -> 1.3.7-2)
[2025-05-01T12:21:56+0200] [ALPM] upgraded libvisio (0.1.8-2 -> 0.1.8-3)
[2025-05-01T12:21:56+0200] [ALPM] upgraded libqalculate (5.5.2-1 -> 5.5.2-2)
[2025-05-01T12:21:56+0200] [ALPM] upgraded libodfgen (0.1.8-3 -> 0.1.8-4)
[2025-05-01T12:21:56+0200] [ALPM] upgraded libgsf (1.14.53-1 -> 1.14.53-2)
[2025-05-01T12:21:56+0200] [ALPM] upgraded libetonyek (0.1.12-2 -> 0.1.12-3)
[2025-05-01T12:21:56+0200] [ALPM] upgraded libe-book (0.1.3-17 -> 0.1.3-18)
[2025-05-01T12:21:56+0200] [ALPM] upgraded liblangtag (0.6.7-1 -> 0.6.7-2)
[2025-05-01T12:21:56+0200] [ALPM] upgraded libcmis (0.6.2-3 -> 0.6.2-4)
[2025-05-01T12:21:56+0200] [ALPM] upgraded libaccounts-glib (1.27-2 -> 1.27-3)
[2025-05-01T12:21:56+0200] [ALPM] upgraded libabw (0.1.3-4 -> 0.1.3-5)
[2025-05-01T12:21:56+0200] [ALPM] upgraded lib32-llvm-libs (1:19.1.7-1 -> 1:19.1.7-2)
[2025-05-01T12:21:56+0200] [ALPM] upgraded lib32-libxkbcommon (1.8.1-1 -> 1.9.0-1)
[2025-05-01T12:21:56+0200] [ALPM] upgraded lib32-libxml2 (2.13.8-1 -> 2.14.2-2)
[2025-05-01T12:21:56+0200] [ALPM] upgraded lib32-libelf (0.192-2 -> 0.193-1)
[2025-05-01T12:21:56+0200] [ALPM] upgraded lib32-gcc-libs (14.2.1+r753+g1cd744a6828f-1 -> 15.1.1+r7+gf36ec88aa85a-1)
[2025-05-01T12:21:55+0200] [ALPM] upgraded lib32-glibc (2.41+r47+g046b33800c3e-1 -> 2.41+r48+g5cb575ca9a3d-1)
[2025-05-01T12:21:55+0200] [ALPM] upgraded kodi-gles (21.2-9 -> 21.2-10)
[2025-05-01T12:21:55+0200] [ALPM] upgraded mariadb-libs (11.7.2-2 -> 11.7.2-3)
[2025-05-01T12:21:55+0200] [ALPM] upgraded kio5 (5.116.0-1 -> 5.116.0-2)
[2025-05-01T12:21:55+0200] [ALPM] upgraded kio (6.13.0-1 -> 6.13.0-2)
[2025-05-01T12:21:55+0200] [ALPM] upgraded hwloc (2.12.0-1 -> 2.12.0-2)
[2025-05-01T12:21:55+0200] [ALPM] upgraded gtksourceview4 (4.8.4-1 -> 4.8.4-2)
[2025-05-01T12:21:55+0200] [ALPM] upgraded gtksourceview3 (1:3.24.11+r28+g73e57b57-2 -> 1:3.24.11+r30+gd880929f-1)
[2025-05-01T12:21:55+0200] [ALPM] upgraded gst-plugins-ugly (1.26.0-4 -> 1.26.1-1)
[2025-05-01T12:21:55+0200] [ALPM] upgraded gst-plugins-base (1.26.0-4 -> 1.26.1-1)
[2025-05-01T12:21:55+0200] [ALPM] upgraded gst-plugins-bad (1.26.0-4 -> 1.26.1-1)
[2025-05-01T12:21:54+0200] [ALPM] upgraded imagemagick (7.1.1.47-1 -> 7.1.1.47-2)
[2025-05-01T12:21:54+0200] [ALPM] upgraded raptor (2.0.16-6 -> 2.0.16-7)
[2025-05-01T12:21:54+0200] [ALPM] upgraded gst-plugins-bad-libs (1.26.0-4 -> 1.26.1-1)
[2025-05-01T12:21:54+0200] [ALPM] upgraded gupnp (1:1.6.8-1 -> 1:1.6.8-2)
[2025-05-01T12:21:54+0200] [ALPM] upgraded gst-libav (1.26.0-4 -> 1.26.1-1)
[2025-05-01T12:21:54+0200] [ALPM] upgraded gdal (3.10.2-3 -> 3.10.2-4)
[2025-05-01T12:21:54+0200] [ALPM] upgraded libtool (2.5.4+r1+gbaa1fe41-3 -> 2.5.4+r23+g5b582aed-1)
[2025-05-01T12:21:54+0200] [ALPM] upgraded libspatialite (5.1.0-2 -> 5.1.0-3)
[2025-05-01T12:21:54+0200] [ALPM] upgraded flatpak (1:1.16.0-2 -> 1:1.16.0-3)
[2025-05-01T12:21:54+0200] [ALPM] upgraded gst-plugins-base-libs (1.26.0-4 -> 1.26.1-1)
[2025-05-01T12:21:54+0200] [ALPM] upgraded gstreamer (1.26.0-4 -> 1.26.1-1)
[2025-05-01T12:21:54+0200] [ALPM] upgraded ffmpeg4.4 (4.4.5-4 -> 4.4.5-5)
[2025-05-01T12:21:54+0200] [ALPM] upgraded ffmpeg (2:7.1-10 -> 2:7.1.1-1)
[2025-05-01T12:21:54+0200] [ALPM] upgraded libbluray (1.3.4-2 -> 1.3.4-3)
[2025-05-01T12:21:54+0200] [ALPM] upgraded electron34 (34.5.0-2 -> 34.5.3-1)
[2025-05-01T12:21:53+0200] [ALPM] upgraded electron33 (33.4.11-1 -> 33.4.11-2)
[2025-05-01T12:21:53+0200] [ALPM] upgraded ebook-tools (0.2.2-8 -> 0.2.2-9)
[2025-05-01T12:21:53+0200] [ALPM] upgraded clang (19.1.7-1 -> 19.1.7-2)
[2025-05-01T12:21:52+0200] [ALPM] upgraded gcc (14.2.1+r753+g1cd744a6828f-1 -> 15.1.1+r7+gf36ec88aa85a-1)
[2025-05-01T12:21:52+0200] [ALPM] upgraded chromium (135.0.7049.114-1 -> 135.0.7049.114-2)
[2025-05-01T12:21:51+0200] [ALPM] upgraded tinysparql (3.9.2-1 -> 3.9.2-2)
[2025-05-01T12:21:51+0200] [ALPM] upgraded libxslt (1.1.43-1 -> 1.1.43-2)
[2025-05-01T12:21:51+0200] [ALPM] upgraded binutils (2.44-1 -> 2.44+r94+gfe459e33c676-1)
[2025-05-01T12:21:51+0200] [ALPM] upgraded bind (9.20.8-1 -> 9.20.8-2)
[2025-05-01T12:21:47+0200] [ALPM] upgraded archlinux-keyring (20250123-1 -> 20250430.1-1)
[2025-05-01T12:21:47+0200] [ALPM] upgraded gettext (0.24-1 -> 0.24-3)
[2025-05-01T12:21:47+0200] [ALPM] upgraded libarchive (3.7.9-1 -> 3.7.9-2)
[2025-05-01T12:21:47+0200] [ALPM] upgraded appstream-qt5 (1.0.5-1 -> 1.0.5-2)
[2025-05-01T12:21:47+0200] [ALPM] upgraded appstream-qt (1.0.5-1 -> 1.0.5-2)
[2025-05-01T12:21:47+0200] [ALPM] upgraded nvidia-utils (570.144-1 -> 570.144-3)
[2025-05-01T12:21:46+0200] [ALPM] upgraded wayland (1.23.1-1 -> 1.23.1-2)
[2025-05-01T12:21:46+0200] [ALPM] upgraded llvm-libs (19.1.7-1 -> 19.1.7-2)
[2025-05-01T12:21:46+0200] [ALPM] upgraded libelf (0.192-4 -> 0.193-2)
[2025-05-01T12:21:46+0200] [ALPM] upgraded libxkbcommon-x11 (1.8.1-1 -> 1.9.0-1)
[2025-05-01T12:21:46+0200] [ALPM] upgraded libxkbcommon (1.8.1-1 -> 1.9.0-1)
[2025-05-01T12:21:46+0200] [ALPM] upgraded appstream (1.0.5-1 -> 1.0.5-2)
[2025-05-01T12:21:46+0200] [ALPM] upgraded librsvg (2:2.60.0-1 -> 2:2.60.0-2)
[2025-05-01T12:21:46+0200] [ALPM] upgraded shared-mime-info (2.4-1 -> 2.4-2)
[2025-05-01T12:21:46+0200] [ALPM] upgraded libsysprof-capture (48.0-4 -> 48.0-5)
[2025-05-01T12:21:46+0200] [ALPM] upgraded libxml2 (2.13.8-1 -> 2.14.2-2)
[2025-05-01T12:21:46+0200] [ALPM] upgraded gcc-libs (14.2.1+r753+g1cd744a6828f-1 -> 15.1.1+r7+gf36ec88aa85a-1)
[2025-05-01T12:21:41+0200] [ALPM] upgraded glibc (2.41+r47+g046b33800c3e-1 -> 2.41+r48+g5cb575ca9a3d-1)
[2025-04-30T15:52:26+0200] [ALPM] upgraded xsettingsd (1.0.2-2 -> 1.0.2-3)
[2025-04-30T15:52:26+0200] [ALPM] upgraded runc (1.2.6-1 -> 1.3.0-1)
[2025-04-30T15:52:26+0200] [ALPM] upgraded python-orjson (3.10.16-1 -> 3.10.18-1)
[2025-04-30T15:52:26+0200] [ALPM] upgraded lib32-harfbuzz (11.1.0-1 -> 11.2.0-1)
[2025-04-30T15:52:26+0200] [ALPM] upgraded harfbuzz-icu (11.1.0-1 -> 11.2.0-1)
[2025-04-30T15:52:26+0200] [ALPM] upgraded ghostscript (10.05.0-3 -> 10.05.1-1)
[2025-04-30T15:52:25+0200] [ALPM] upgraded firefox (137.0.2-1 -> 138.0-1)
[2025-04-30T15:52:24+0200] [ALPM] upgraded discord (1:0.0.92-1 -> 1:0.0.93-1)
[2025-04-30T15:52:23+0200] [ALPM] upgraded harfbuzz (11.1.0-1 -> 11.2.0-1)
[2025-04-29T17:21:41+0200] [ALPM] upgraded vscodium-bin-debug (1.99.32704-1 -> 1.99.32846-1)
[2025-04-29T17:21:41+0200] [ALPM] upgraded vscodium-bin (1.99.32704-1 -> 1.99.32846-1)
[2025-04-29T17:21:39+0200] [ALPM] upgraded brave-bin (1:1.77.100-1 -> 1:1.77.101-1)
[2025-04-29T17:14:20+0200] [ALPM] upgraded yay (12.4.2-1 -> 12.5.0-1)
[2025-04-29T17:14:20+0200] [ALPM] upgraded vim (9.1.1236-1 -> 9.1.1337-1)
[2025-04-29T17:14:20+0200] [ALPM] upgraded vim-runtime (9.1.1236-1 -> 9.1.1337-1)
[2025-04-29T17:14:20+0200] [ALPM] upgraded s-nail (14.9.24-2 -> 14.9.25-1)
[2025-04-29T17:14:20+0200] [ALPM] upgraded qt6pas (6.2.7-2 -> 6.2.8-1)
[2025-04-29T17:14:20+0200] [ALPM] upgraded python-setuptools (1:78.1.1-1 -> 1:79.0.1-1)
[2025-04-29T17:14:19+0200] [ALPM] upgraded python-pip (25.0.1-1 -> 25.1-1)
[2025-04-29T17:14:19+0200] [ALPM] upgraded python-certifi (2025.01.31-1 -> 2025.04.26-1)
[2025-04-29T17:14:19+0200] [ALPM] upgraded protobuf (30.1-1 -> 30.1-4)
[2025-04-29T17:14:19+0200] [ALPM] upgraded podman-desktop (1.17.2-1 -> 1.18.0-1)
[2025-04-29T17:14:18+0200] [ALPM] upgraded opencolorio (2.4.0-6 -> 2.4.2-1)
[2025-04-29T17:14:18+0200] [ALPM] upgraded ntfs-3g (2022.10.3-1 -> 2022.10.3-2)
[2025-04-29T17:14:18+0200] [ALPM] upgraded nftables (1:1.1.2-1 -> 1:1.1.3-1)
[2025-04-29T17:14:18+0200] [ALPM] upgraded linux-lts-headers (6.12.24-1 -> 6.12.25-1)
[2025-04-29T17:14:16+0200] [ALPM] upgraded linux-lts (6.12.24-1 -> 6.12.25-1)
[2025-04-29T17:14:16+0200] [ALPM] upgraded linux-headers (6.14.3.arch1-1 -> 6.14.4.arch1-1)
[2025-04-29T17:14:13+0200] [ALPM] upgraded linux-g14-headers (6.14.2.arch1-1.1 -> 6.14.4.arch1-1.1)
[2025-04-29T17:14:12+0200] [ALPM] upgraded pahole (1:1.29-1 -> 1:1.30-1)
[2025-04-29T17:14:12+0200] [ALPM] upgraded linux-g14 (6.14.2.arch1-1.1 -> 6.14.4.arch1-1.1)
[2025-04-29T17:14:11+0200] [ALPM] upgraded linux (6.14.3.arch1-1 -> 6.14.4.arch1-1)
[2025-04-29T17:14:10+0200] [ALPM] upgraded libuv (1.50.0-1 -> 1.51.0-1)
[2025-04-29T17:14:10+0200] [ALPM] upgraded libaec (1.1.3-1 -> 1.1.3-2)
[2025-04-29T17:14:10+0200] [ALPM] upgraded gst-plugins-ugly (1.26.0-3 -> 1.26.0-4)
[2025-04-29T17:14:10+0200] [ALPM] upgraded gst-plugins-bad (1.26.0-3 -> 1.26.0-4)
[2025-04-29T17:14:10+0200] [ALPM] upgraded gst-libav (1.26.0-3 -> 1.26.0-4)
[2025-04-29T17:14:10+0200] [ALPM] upgraded fzf (0.61.2-1 -> 0.61.3-1)
[2025-04-29T17:14:10+0200] [ALPM] upgraded electron33 (33.4.8-2 -> 33.4.11-1)
[2025-04-29T17:14:09+0200] [ALPM] upgraded dolphin (25.04.0-1 -> 25.04.0-2)
[2025-04-29T17:14:09+0200] [ALPM] upgraded vlc (3.0.21-16 -> 3.0.21-17)
[2025-04-29T17:14:09+0200] [ALPM] upgraded libvlc (3.0.21-16 -> 3.0.21-17)
[2025-04-29T17:14:09+0200] [ALPM] upgraded ffmpeg4.4 (4.4.5-3 -> 4.4.5-4)
[2025-04-29T17:14:08+0200] [ALPM] upgraded gst-plugins-base (1.26.0-3 -> 1.26.0-4)
[2025-04-29T17:14:08+0200] [ALPM] upgraded gst-plugins-bad-libs (1.26.0-3 -> 1.26.0-4)
[2025-04-29T17:14:08+0200] [ALPM] upgraded gst-plugins-base-libs (1.26.0-3 -> 1.26.0-4)
[2025-04-29T17:14:08+0200] [ALPM] upgraded gstreamer (1.26.0-3 -> 1.26.0-4)
[2025-04-29T17:14:08+0200] [ALPM] upgraded ffmpeg (2:7.1-9 -> 2:7.1-10)
[2025-04-29T17:14:07+0200] [ALPM] upgraded libtheora (1.1.1-6 -> 1.2.0-1)
[2025-04-29T17:14:07+0200] [ALPM] upgraded diffutils (3.12-1 -> 3.12-2)
[2025-04-29T17:14:07+0200] [ALPM] upgraded chromium (135.0.7049.95-1 -> 135.0.7049.114-1)
[2025-04-29T17:14:05+0200] [ALPM] upgraded at-spi2-core (2.56.1-1 -> 2.56.2-1)
[2025-04-29T17:14:05+0200] [ALPM] upgraded appstream-qt5 (1.0.4-1 -> 1.0.5-1)
[2025-04-29T17:14:05+0200] [ALPM] upgraded appstream-qt (1.0.4-1 -> 1.0.5-1)
[2025-04-29T17:14:05+0200] [ALPM] upgraded gzip (1.14-1 -> 1.14-2)
[2025-04-29T17:14:05+0200] [ALPM] upgraded grep (3.12-1 -> 3.12-2)
[2025-04-29T17:14:05+0200] [ALPM] upgraded appstream (1.0.4-1 -> 1.0.5-1)
[2025-04-29T17:14:05+0200] [ALPM] upgraded libgpg-error (1.54-1 -> 1.55-1)
[2025-04-23T11:42:06+0200] [ALPM] upgraded parallel (20250322-1 -> 20250422-1)
[2025-04-23T09:11:43+0200] [ALPM] upgraded vscodium-bin-debug (1.99.32562-1 -> 1.99.32704-1)
[2025-04-23T09:11:43+0200] [ALPM] upgraded vscodium-bin (1.99.32562-1 -> 1.99.32704-1)
[2025-04-23T09:11:43+0200] [ALPM] upgraded mdatp-bin-debug (101.25022.0001-0 -> 101.25022.0002-0)
[2025-04-23T09:11:42+0200] [ALPM] upgraded mdatp-bin (101.25022.0001-0 -> 101.25022.0002-0)
[2025-04-23T09:10:50+0200] [ALPM] upgraded xterm (397-2 -> 398-1)
[2025-04-23T09:10:50+0200] [ALPM] upgraded lib32-libnghttp3 (1.8.0-1 -> 1.9.0-1)
[2025-04-23T09:10:50+0200] [ALPM] upgraded kpmcore (25.04.0-1 -> 25.04.0-2)
[2025-04-23T09:10:50+0200] [ALPM] upgraded inxi (3.3.37.1-1 -> 3.3.38.1-1)
[2025-04-23T09:10:50+0200] [ALPM] upgraded ibus (1.5.31-2 -> 1.5.32-1)
[2025-04-23T09:10:50+0200] [ALPM] upgraded libibus (1.5.31-2 -> 1.5.32-1)
[2025-04-23T09:10:50+0200] [ALPM] upgraded discord (1:0.0.91-1 -> 1:0.0.92-1)
[2025-04-23T09:10:49+0200] [ALPM] upgraded egl-wayland (4:1.1.18-1 -> 4:1.1.19-1)
[2025-04-23T09:10:49+0200] [ALPM] upgraded eglexternalplatform (1.2-2 -> 1.2.1-1)
[2025-04-23T09:10:49+0200] [ALPM] upgraded libnghttp3 (1.8.0-1 -> 1.9.0-1)
[2025-04-22T10:13:54+0200] [ALPM] upgraded openucx (1.18.0-2 -> 1.18.0-3)
[2025-04-22T10:13:54+0200] [ALPM] upgraded nvidia-settings (570.133.07-1 -> 570.144-1)
[2025-04-22T10:13:54+0200] [ALPM] upgraded libxnvctrl (570.133.07-1 -> 570.144-1)
[2025-04-22T07:00:37+0200] [ALPM] upgraded polychromatic (0.9.4-1 -> 0.9.5-1)
[2025-04-22T07:00:37+0200] [ALPM] upgraded nessus (10.8.3-1 -> 10.8.4-1)
[2025-04-22T06:52:58+0200] [ALPM] upgraded xl2tpd (1.3.18-2 -> 1.3.19-1)
[2025-04-22T06:52:58+0200] [ALPM] upgraded wine (10.5-1 -> 10.6-1)
[2025-04-22T06:52:55+0200] [ALPM] upgraded tinysparql (3.9.1-1 -> 3.9.2-1)
[2025-04-22T06:52:55+0200] [ALPM] upgraded systemd-sysvcompat (257.5-1 -> 257.5-2)
[2025-04-22T06:52:55+0200] [ALPM] upgraded systemd-resolvconf (257.5-1 -> 257.5-2)
[2025-04-22T06:52:55+0200] [ALPM] upgraded soundtouch (2.3.3-1 -> 2.4.0-1)
[2025-04-22T06:52:55+0200] [ALPM] upgraded python-setuptools (1:78.1.0-1 -> 1:78.1.1-1)
[2025-04-22T06:52:55+0200] [ALPM] upgraded python-packaging (24.2-3 -> 25.0-1)
[2025-04-22T06:52:55+0200] [ALPM] upgraded python-coverage (7.6.12-1 -> 7.8.0-1)
[2025-04-22T06:52:55+0200] [ALPM] upgraded python-contourpy (1.3.1-2 -> 1.3.2-1)
[2025-04-22T06:52:55+0200] [ALPM] upgraded python-numpy (2.2.4-1 -> 2.2.5-1)
[2025-04-22T06:52:55+0200] [ALPM] upgraded prison (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:55+0200] [ALPM] upgraded partitionmanager (24.12.3-1 -> 25.04.0-1)
[2025-04-22T06:52:55+0200] [ALPM] upgraded opencv (4.11.0-7 -> 4.11.0-8)
[2025-04-22T06:52:55+0200] [ALPM] upgraded okular (24.12.3-1 -> 25.04.0-1)
[2025-04-22T06:52:55+0200] [ALPM] upgraded threadweaver (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:55+0200] [ALPM] upgraded nvidia-open-dkms (570.133.07-1 -> 570.144-1)
[2025-04-22T06:52:54+0200] [ALPM] upgraded networkmanager-qt (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:54+0200] [ALPM] upgraded linux-lts-headers (6.12.23-1 -> 6.12.24-1)
[2025-04-22T06:52:52+0200] [ALPM] upgraded linux-lts (6.12.23-1 -> 6.12.24-1)
[2025-04-22T06:52:51+0200] [ALPM] upgraded linux-headers (6.14.2.arch1-1 -> 6.14.3.arch1-1)
[2025-04-22T06:52:49+0200] [ALPM] upgraded linux (6.14.2.arch1-1 -> 6.14.3.arch1-1)
[2025-04-22T06:52:49+0200] [ALPM] upgraded libkdcraw5 (24.12.3-1 -> 25.04.0-1)
[2025-04-22T06:52:49+0200] [ALPM] upgraded lib32-vulkan-radeon (1:25.0.3-1 -> 1:25.0.4-1)
[2025-04-22T06:52:49+0200] [ALPM] upgraded vulkan-radeon (1:25.0.3-1 -> 1:25.0.4-1)
[2025-04-22T06:52:49+0200] [ALPM] upgraded lib32-mesa (1:25.0.3-1 -> 1:25.0.4-1)
[2025-04-22T06:52:48+0200] [ALPM] upgraded lib32-nvidia-utils (570.133.07-1 -> 570.144-1)
[2025-04-22T06:52:48+0200] [ALPM] upgraded lib32-libxml2 (2.13.7-1 -> 2.13.8-1)
[2025-04-22T06:52:48+0200] [ALPM] upgraded lib32-harfbuzz (11.0.1-1 -> 11.1.0-1)
[2025-04-22T06:52:48+0200] [ALPM] upgraded lib32-glibc (2.41+r9+ga900dbaf70f0-1 -> 2.41+r47+g046b33800c3e-1)
[2025-04-22T06:52:48+0200] [ALPM] upgraded kunitconversion (6.12.0-2 -> 6.13.0-1)
[2025-04-22T06:52:48+0200] [ALPM] upgraded ksystemlog (24.12.3-1 -> 25.04.0-1)
[2025-04-22T06:52:48+0200] [ALPM] upgraded krunner (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:48+0200] [ALPM] upgraded kquickcharts (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:48+0200] [ALPM] upgraded kpmcore (24.12.3-1 -> 25.04.0-1)
[2025-04-22T06:52:48+0200] [ALPM] upgraded konsole (24.12.3-1 -> 25.04.0-1)
[2025-04-22T06:52:48+0200] [ALPM] upgraded kio-admin (24.12.3-1 -> 25.04.0-1)
[2025-04-22T06:52:48+0200] [ALPM] upgraded kholidays (1:6.12.0-1 -> 1:6.13.0-1)
[2025-04-22T06:52:48+0200] [ALPM] upgraded kdesu (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:48+0200] [ALPM] upgraded kdenlive (24.12.3-1 -> 25.04.0-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded knotifyconfig (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded kded (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded kdeconnect (24.12.3-1 -> 25.04.0-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded ksvg (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded modemmanager-qt (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded kstatusnotifieritem (6.12.0-2 -> 6.13.0-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded kpeople (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded kcontacts (1:6.12.0-1 -> 1:6.13.0-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded kcolorchooser (24.12.3-1 -> 25.04.0-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded kcalc (24.12.3-1 -> 25.04.0-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded kate (24.12.3-1 -> 25.04.0-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded hwinfo (23.4-1 -> 24.0-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded haruna (1.3.3-3 -> 1.4.0-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded qqc2-desktop-style (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded mpvqt (1.1.0-1 -> 1.1.1-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded kdeclarative (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded harfbuzz-icu (11.0.1-1 -> 11.1.0-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded gwenview (24.12.3-1 -> 25.04.0-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded purpose (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded kaccounts-integration (24.12.3-1 -> 25.04.0-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded signon-kwallet-extension (24.12.3-1 -> 25.04.0-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded libkdcraw (24.12.3-1 -> 25.04.0-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded libraw (0.21.3-1 -> 0.21.4-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded kitemmodels (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded grub (2:2.12.r260.gaae2ea61-1 -> 2:2.12.r283.ga4da71da-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded fzf (0.61.1-1 -> 0.61.2-1)
[2025-04-22T06:52:47+0200] [ALPM] upgraded frameworkintegration (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:46+0200] [ALPM] upgraded fish (4.0.1-2 -> 4.0.2-1)
[2025-04-22T06:52:46+0200] [ALPM] upgraded eos-bash-shared (25.4.2-2 -> 25.4.3-1)
[2025-04-22T06:52:46+0200] [ALPM] upgraded dolphin-plugins (24.12.3-1 -> 25.04.0-1)
[2025-04-22T06:52:46+0200] [ALPM] upgraded ktexteditor (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:46+0200] [ALPM] upgraded dolphin (24.12.3-1 -> 25.04.0-1)
[2025-04-22T06:52:46+0200] [ALPM] upgraded kuserfeedback (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:46+0200] [ALPM] upgraded knewstuff (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:46+0200] [ALPM] upgraded syndication (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:46+0200] [ALPM] upgraded kpackage (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:46+0200] [ALPM] upgraded kio-extras (24.12.3-1 -> 25.04.0-1)
[2025-04-22T06:52:46+0200] [ALPM] upgraded syntax-highlighting (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:46+0200] [ALPM] upgraded libkexiv2 (24.12.3-1 -> 25.04.0-1)
[2025-04-22T06:52:46+0200] [ALPM] upgraded ktextwidgets (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:46+0200] [ALPM] upgraded sonnet (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:46+0200] [ALPM] upgraded kdnssd (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:46+0200] [ALPM] upgraded kcmutils (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:46+0200] [ALPM] upgraded kirigami (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:46+0200] [ALPM] upgraded docker (1:28.0.4-2 -> 1:28.1.1-1)
[2025-04-22T06:52:46+0200] [ALPM] upgraded containerd (2.0.4-1 -> 2.0.5-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded bluez-qt (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded baloo-widgets (24.12.3-1 -> 25.04.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded baloo (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded kidletime (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded attica (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded ark (24.12.3-1 -> 25.04.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded kpty (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded kparts (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded kxmlgui (6.12.0-2 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded kglobalaccel (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded kio (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded solid (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded kwallet (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded kservice (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded kjobwidgets (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded knotifications (6.12.0-2 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded kitemviews (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded kiconthemes (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded kbookmarks (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded kauth (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded kwindowsystem (6.12.0-3 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded kfilemetadata (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded libxft (2.3.8-2 -> 2.3.9-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded snappy (1.2.2-1 -> 1.2.2-2)
[2025-04-22T06:52:45+0200] [ALPM] upgraded libvpl (2.14.0-1 -> 2.15.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded karchive (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded kdbusaddons (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded kcrash (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded kconfigwidgets (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded kcoreaddons (6.12.0-2 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded kcompletion (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded kwidgetsaddons (6.12.0-2 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded kcodecs (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded kcolorscheme (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded ki18n (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:45+0200] [ALPM] upgraded kguiaddons (6.12.0-2 -> 6.13.0-1)
[2025-04-22T06:52:44+0200] [ALPM] upgraded kconfig (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:44+0200] [ALPM] upgraded breeze-icons (6.12.0-1 -> 6.13.0-1)
[2025-04-22T06:52:42+0200] [ALPM] upgraded systemd (257.5-1 -> 257.5-2)
[2025-04-22T06:52:41+0200] [ALPM] upgraded harfbuzz (11.0.1-1 -> 11.1.0-1)
[2025-04-22T06:52:41+0200] [ALPM] upgraded mesa (1:25.0.3-1 -> 1:25.0.4-1)
[2025-04-22T06:52:41+0200] [ALPM] upgraded nvidia-utils (570.133.07-1 -> 570.144-1)
[2025-04-22T06:52:39+0200] [ALPM] upgraded egl-x11 (1.0.0-1 -> 1.0.1-1)
[2025-04-22T06:52:39+0200] [ALPM] upgraded systemd-libs (257.5-1 -> 257.5-2)
[2025-04-22T06:52:39+0200] [ALPM] upgraded libgpg-error (1.53-1 -> 1.54-1)
[2025-04-22T06:52:39+0200] [ALPM] upgraded appmenu-gtk-module (24.05-1 -> 25.04-1)
[2025-04-22T06:52:39+0200] [ALPM] upgraded libxml2 (2.13.7-1 -> 2.13.8-1)
[2025-04-22T06:52:39+0200] [ALPM] upgraded python (3.13.2-1 -> 3.13.3-1)
[2025-04-22T06:52:34+0200] [ALPM] upgraded glibc (2.41+r9+ga900dbaf70f0-1 -> 2.41+r47+g046b33800c3e-1)
[2025-04-18T08:34:41+0200] [ALPM] upgraded vscodium-bin-debug (1.99.22418-2 -> 1.99.32562-1)
[2025-04-18T08:34:41+0200] [ALPM] upgraded vscodium-bin (1.99.22418-2 -> 1.99.32562-1)
[2025-04-18T08:34:40+0200] [ALPM] upgraded brave-bin (1:1.77.97-1 -> 1:1.77.100-1)
[2025-04-18T08:34:40+0200] [ALPM] upgraded mdatp-bin-debug (101.25012.0000-0 -> 101.25022.0001-0)
[2025-04-18T08:34:40+0200] [ALPM] upgraded mdatp-bin (101.25012.0000-0 -> 101.25022.0001-0)
[2025-04-18T08:34:39+0200] [ALPM] upgraded librewolf-bin-debug (1:137.0.1_1-1 -> 1:137.0.2_1-1)
[2025-04-18T08:34:39+0200] [ALPM] upgraded librewolf-bin (1:137.0.1_1-1 -> 1:137.0.2_1-1)
[2025-04-18T07:54:28+0200] [ALPM] upgraded xfsprogs (6.13.0-1 -> 6.14.0-1)
[2025-04-18T07:54:28+0200] [ALPM] upgraded smbclient (2:4.22.0-1 -> 2:4.22.1-1)
[2025-04-18T07:54:28+0200] [ALPM] upgraded rog-control-center (6.1.10.r0.gd55c2bef-1 -> 6.1.12.r0.g685345d6-1)
[2025-04-18T07:54:28+0200] [ALPM] upgraded qt6-wayland (6.9.0-1 -> 6.9.0-2)
[2025-04-18T07:54:27+0200] [ALPM] upgraded qt6-tools (6.9.0-1 -> 6.9.0-2)
[2025-04-18T07:54:27+0200] [ALPM] upgraded python-urllib3 (2.3.0-1 -> 2.4.0-1)
[2025-04-18T07:54:27+0200] [ALPM] upgraded python-setuptools (1:75.8.0-1 -> 1:78.1.0-1)
[2025-04-18T07:54:27+0200] [ALPM] upgraded python-pydantic (2.11.2-1 -> 2.11.3-1)
[2025-04-18T07:54:27+0200] [ALPM] upgraded python-openrazer (3.10.1-1 -> 3.10.2-1)
[2025-04-18T07:54:27+0200] [ALPM] upgraded python-iniconfig (2.0.0-6 -> 2.1.0-1)
[2025-04-18T07:54:27+0200] [ALPM] upgraded python-cairo (1.27.0-2 -> 1.28.0-1)
[2025-04-18T07:54:27+0200] [ALPM] upgraded python-attrs (23.2.0-4 -> 24.1.0-1)
[2025-04-18T07:54:27+0200] [ALPM] upgraded protobuf-c (1.5.1-2 -> 1.5.2-1)
[2025-04-18T07:54:27+0200] [ALPM] upgraded pipewire-pulse (1:1.4.1-2 -> 1:1.4.2-1)
[2025-04-18T07:54:27+0200] [ALPM] upgraded pipewire-alsa (1:1.4.1-2 -> 1:1.4.2-1)
[2025-04-18T07:54:27+0200] [ALPM] upgraded openrazer-daemon (3.10.1-1 -> 3.10.2-1)
[2025-04-18T07:54:27+0200] [ALPM] upgraded openrazer-driver-dkms (3.10.1-1 -> 3.10.2-1)
[2025-04-18T07:54:27+0200] [ALPM] upgraded nftables (1:1.1.1-2 -> 1:1.1.2-1)
[2025-04-18T07:54:27+0200] [ALPM] upgraded neon (0.34.0-1 -> 0.34.2-1)
[2025-04-18T07:54:27+0200] [ALPM] upgraded mysql-workbench (8.0.41-1 -> 8.0.42-2)
[2025-04-18T07:54:27+0200] [ALPM] upgraded perl (5.40.1-2 -> 5.40.2-1)
[2025-04-18T07:54:27+0200] [ALPM] upgraded linux-g14-headers (6.13.8.arch1-1.2 -> 6.14.2.arch1-1.1)
[2025-04-18T07:54:25+0200] [ALPM] upgraded linux-g14 (6.13.8.arch1-1.2 -> 6.14.2.arch1-1.1)
[2025-04-18T07:54:24+0200] [ALPM] upgraded libwbclient (2:4.22.0-1 -> 2:4.22.1-1)
[2025-04-18T07:54:24+0200] [ALPM] upgraded libnftnl (1.2.8-1 -> 1.2.9-1)
[2025-04-18T07:54:24+0200] [ALPM] upgraded libimobiledevice (1.3.0-15 -> 1.3.0-16)
[2025-04-18T07:54:24+0200] [ALPM] upgraded libgeotiff (1.7.3-1 -> 1.7.4-1)
[2025-04-18T07:54:24+0200] [ALPM] upgraded lib32-pipewire (1:1.4.1-1 -> 1:1.4.2-1)
[2025-04-18T07:54:24+0200] [ALPM] upgraded lib32-libpipewire (1:1.4.1-1 -> 1:1.4.2-1)
[2025-04-18T07:54:24+0200] [ALPM] upgraded lib32-libcap (2.75-1 -> 2.76-1)
[2025-04-18T07:54:24+0200] [ALPM] upgraded lib32-alsa-lib (1.2.13-1 -> 1.2.14-1)
[2025-04-18T07:54:24+0200] [ALPM] upgraded ldb (2:4.22.0-1 -> 2:4.22.1-1)
[2025-04-18T07:54:24+0200] [ALPM] upgraded jdk11-openjdk (11.0.26.u4-1 -> 11.0.27.u6-1)
[2025-04-18T07:54:23+0200] [ALPM] upgraded inetutils (2.5-1 -> 2.6-1)
[2025-04-18T07:54:23+0200] [ALPM] upgraded gst-plugin-pipewire (1:1.4.1-2 -> 1:1.4.2-1)
[2025-04-18T07:54:23+0200] [ALPM] upgraded fzf (0.60.3-1 -> 0.61.1-1)
[2025-04-18T07:54:23+0200] [ALPM] upgraded fluidsynth (2.4.4-1 -> 2.4.5-3)
[2025-04-18T07:54:23+0200] [ALPM] upgraded firefox (137.0.1-1 -> 137.0.2-1)
[2025-04-18T07:54:23+0200] [ALPM] upgraded sdl2-compat (2.32.54-1 -> 2.32.54-2)
[2025-04-18T07:54:23+0200] [ALPM] upgraded pipewire-jack (1:1.4.1-2 -> 1:1.4.2-1)
[2025-04-18T07:54:23+0200] [ALPM] upgraded pipewire-audio (1:1.4.1-2 -> 1:1.4.2-1)
[2025-04-18T07:54:23+0200] [ALPM] upgraded pipewire (1:1.4.1-2 -> 1:1.4.2-1)
[2025-04-18T07:54:23+0200] [ALPM] upgraded libpipewire (1:1.4.1-2 -> 1:1.4.2-1)
[2025-04-18T07:54:23+0200] [ALPM] upgraded docker-compose (2.35.0-1 -> 2.35.1-1)
[2025-04-18T07:54:23+0200] [ALPM] upgraded dkms (3.1.7-2 -> 3.1.8-1)
[2025-04-18T07:54:23+0200] [ALPM] upgraded patch (2.7.6-10 -> 2.8-1)
[2025-04-18T07:54:23+0200] [ALPM] upgraded discord (0.0.90-1 -> 1:0.0.91-1)
[2025-04-18T07:54:22+0200] [ALPM] upgraded diffutils (3.11-2 -> 3.12-1)
[2025-04-18T07:54:22+0200] [ALPM] upgraded chromium (135.0.7049.84-1 -> 135.0.7049.95-1)
[2025-04-18T07:54:22+0200] [ALPM] upgraded giflib (5.2.2-1 -> 5.2.2-2)
[2025-04-18T07:54:22+0200] [ALPM] upgraded libsysprof-capture (48.0-3 -> 48.0-4)
[2025-04-18T07:54:22+0200] [ALPM] upgraded bind (9.20.7-1 -> 9.20.8-1)
[2025-04-18T07:54:20+0200] [ALPM] upgraded asusctl (6.1.10.r0.gd55c2bef-1 -> 6.1.12.r0.g685345d6-1)
[2025-04-18T07:54:20+0200] [ALPM] upgraded grep (3.11-1 -> 3.12-1)
[2025-04-18T07:54:20+0200] [ALPM] upgraded libcap (2.75-1 -> 2.76-1)
[2025-04-18T07:54:20+0200] [ALPM] upgraded aom (3.12.0-1 -> 3.12.1-1)
[2025-04-18T07:54:20+0200] [ALPM] upgraded alsa-utils (1.2.13-2 -> 1.2.14-1)
[2025-04-18T07:54:20+0200] [ALPM] upgraded alsa-lib (1.2.13-1 -> 1.2.14-1)
[2025-04-18T07:54:20+0200] [ALPM] upgraded alsa-ucm-conf (1.2.13-2 -> 1.2.14-1)
[2025-04-18T07:54:20+0200] [ALPM] upgraded alsa-card-profiles (1:1.4.1-2 -> 1:1.4.2-1)
[2025-04-14T17:07:44+0200] [ALPM] upgraded vscodium-bin-debug (1.99.12392-1 -> 1.99.22418-2)
[2025-04-14T17:07:44+0200] [ALPM] upgraded vscodium-bin (1.99.12392-1 -> 1.99.22418-2)
[2025-04-14T17:01:58+0200] [ALPM] upgraded qt6-webengine (6.9.0-3 -> 6.9.0-4)
[2025-04-14T17:01:58+0200] [ALPM] upgraded python-pillow (11.1.0-1 -> 11.2.1-1)
[2025-04-14T17:01:58+0200] [ALPM] upgraded python-lxml (5.3.1-1 -> 5.3.2-1)
[2025-04-14T17:01:58+0200] [ALPM] upgraded python-beautifulsoup4 (4.12.3-3 -> 4.13.3-1)
[2025-04-14T17:01:58+0200] [ALPM] upgraded pipewire-pulse (1:1.4.1-1 -> 1:1.4.1-2)
[2025-04-14T17:01:58+0200] [ALPM] upgraded pipewire-jack (1:1.4.1-1 -> 1:1.4.1-2)
[2025-04-14T17:01:58+0200] [ALPM] upgraded pipewire-alsa (1:1.4.1-1 -> 1:1.4.1-2)
[2025-04-14T17:01:58+0200] [ALPM] upgraded openssh (9.9p2-1 -> 10.0p1-3)
[2025-04-14T17:01:58+0200] [ALPM] upgraded nfs-utils (2.8.2-2 -> 2.8.3-1)
[2025-04-14T17:01:58+0200] [ALPM] upgraded nfsidmap (2.8.2-2 -> 2.8.3-1)
[2025-04-14T17:01:58+0200] [ALPM] upgraded nano (8.3-1 -> 8.4-1)
[2025-04-14T17:01:58+0200] [ALPM] upgraded modemmanager (1.22.0-1 -> 1.24.0-1)
[2025-04-14T17:01:58+0200] [ALPM] upgraded linux-lts-headers (6.12.22-1 -> 6.12.23-1)
[2025-04-14T17:01:56+0200] [ALPM] upgraded linux-lts (6.12.22-1 -> 6.12.23-1)
[2025-04-14T17:01:55+0200] [ALPM] upgraded linux-headers (6.14.1.arch1-1 -> 6.14.2.arch1-1)
[2025-04-14T17:01:51+0200] [ALPM] upgraded linux-firmware (20250311.b69d4b74-3 -> 20250408.c1a774f3-1)
[2025-04-14T17:01:49+0200] [ALPM] upgraded linux-firmware-whence (20250311.b69d4b74-3 -> 20250408.c1a774f3-1)
[2025-04-14T17:01:49+0200] [ALPM] upgraded linux (6.14.1.arch1-1 -> 6.14.2.arch1-1)
[2025-04-14T17:01:47+0200] [ALPM] upgraded libmm-glib (1.22.0-1 -> 1.24.0-1)
[2025-04-14T17:01:47+0200] [ALPM] upgraded libmanette (0.2.11-2 -> 0.2.12-1)
[2025-04-14T17:01:47+0200] [ALPM] upgraded libcamera (0.4.0-1 -> 0.5.0-1)
[2025-04-14T17:01:47+0200] [ALPM] upgraded libcamera-ipa (0.4.0-1 -> 0.5.0-1)
[2025-04-14T17:01:47+0200] [ALPM] upgraded libadwaita (1:1.7.0-2 -> 1:1.7.2-1)
[2025-04-14T17:01:46+0200] [ALPM] upgraded lib32-openssl (1:3.4.1-1 -> 1:3.5.0-1)
[2025-04-14T17:01:44+0200] [ALPM] upgraded lib32-fontconfig (2:2.16.1-1 -> 2:2.16.2-1)
[2025-04-14T17:01:44+0200] [ALPM] upgraded lib32-libffi (3.4.7-1 -> 3.4.8-1)
[2025-04-14T17:01:44+0200] [ALPM] upgraded kwin (6.3.4-3 -> 6.3.4-4)
[2025-04-14T17:01:43+0200] [ALPM] upgraded upower (1.90.8-1 -> 1.90.9-1)
[2025-04-14T17:01:43+0200] [ALPM] upgraded qt6-declarative (6.9.0-1 -> 6.9.0-2)
[2025-04-14T17:01:42+0200] [ALPM] upgraded libcups (2:2.4.11-2 -> 2:2.4.12-1)
[2025-04-14T17:01:42+0200] [ALPM] upgraded htop (3.4.0-1 -> 3.4.1-1)
[2025-04-14T17:01:42+0200] [ALPM] upgraded gst-plugin-pipewire (1:1.4.1-1 -> 1:1.4.1-2)
[2025-04-14T17:01:42+0200] [ALPM] upgraded iso-codes (4.17.0-1 -> 4.18.0-1)
[2025-04-14T17:01:41+0200] [ALPM] upgraded pipewire-audio (1:1.4.1-1 -> 1:1.4.1-2)
[2025-04-14T17:01:41+0200] [ALPM] upgraded pipewire (1:1.4.1-1 -> 1:1.4.1-2)
[2025-04-14T17:01:41+0200] [ALPM] upgraded libpipewire (1:1.4.1-1 -> 1:1.4.1-2)
[2025-04-14T17:01:39+0200] [ALPM] upgraded fontconfig (2:2.16.1-1 -> 2:2.16.2-1)
[2025-04-14T17:01:38+0200] [ALPM] upgraded eos-rankmirrors (25.4-1 -> 25.4-2)
[2025-04-14T17:01:38+0200] [ALPM] upgraded eos-bash-shared (25.4.1-1 -> 25.4.2-2)
[2025-04-14T17:01:38+0200] [ALPM] upgraded gzip (1.13-4 -> 1.14-1)
[2025-04-14T17:01:38+0200] [ALPM] upgraded ell (0.75-1 -> 0.76-1)
[2025-04-14T17:01:38+0200] [ALPM] upgraded docker-compose (2.34.0-1 -> 2.35.0-1)
[2025-04-14T17:01:38+0200] [ALPM] upgraded curl (8.13.0-1 -> 8.13.0-2)
[2025-04-14T17:01:38+0200] [ALPM] upgraded libffi (3.4.7-1 -> 3.4.8-1)
[2025-04-14T17:01:38+0200] [ALPM] upgraded coreutils (9.6-4 -> 9.7-1)
[2025-04-14T17:01:38+0200] [ALPM] upgraded libgpg-error (1.51-1 -> 1.53-1)
[2025-04-14T17:01:38+0200] [ALPM] upgraded openssl (3.4.1-1 -> 3.5.0-1)
[2025-04-14T17:01:37+0200] [ALPM] upgraded linux-api-headers (6.13-1 -> 6.14-1)
[2025-04-14T17:01:37+0200] [ALPM] upgraded amd-ucode (20250311.b69d4b74-3 -> 20250408.c1a774f3-1)
[2025-04-14T17:01:37+0200] [ALPM] upgraded alsa-card-profiles (1:1.4.1-1 -> 1:1.4.1-2)
[2025-04-10T13:07:50+0200] [ALPM] upgraded vscodium-bin-debug (1.99.02289-1 -> 1.99.12392-1)
[2025-04-10T13:07:50+0200] [ALPM] upgraded vscodium-bin (1.99.02289-1 -> 1.99.12392-1)
[2025-04-10T13:07:50+0200] [ALPM] upgraded librewolf-bin-debug (1:137.0.0_3-1 -> 1:137.0.1_1-1)
[2025-04-10T13:07:50+0200] [ALPM] upgraded librewolf-bin (1:137.0.0_3-1 -> 1:137.0.1_1-1)
[2025-04-10T13:07:49+0200] [ALPM] upgraded ferdium-bin (7.0.0-2 -> 7.0.1-1)
[2025-04-10T13:07:46+0200] [ALPM] upgraded brave-bin (1:1.77.95-1 -> 1:1.77.97-1)
[2025-04-10T13:03:16+0200] [ALPM] upgraded welcome (25.3.1-1 -> 25.4-1)
[2025-04-10T13:03:16+0200] [ALPM] upgraded python-pyqt6-webengine (6.8.0-2 -> 6.9.0-1)
[2025-04-10T13:03:16+0200] [ALPM] upgraded python-pyqt6 (6.8.1-3 -> 6.9.0-1)
[2025-04-10T13:03:15+0200] [ALPM] upgraded python-kiwisolver (1.4.5-5 -> 1.4.6-1)
[2025-04-10T13:03:15+0200] [ALPM] upgraded poppler-qt5 (25.03.0-1 -> 25.04.0-1)
[2025-04-10T13:03:15+0200] [ALPM] upgraded qt5-base (5.15.16+kde+r130-4 -> 5.15.16+kde+r131-1)
[2025-04-10T13:03:15+0200] [ALPM] upgraded poppler-glib (25.03.0-1 -> 25.04.0-1)
[2025-04-10T13:03:15+0200] [ALPM] upgraded linux-lts-headers (6.12.21-1 -> 6.12.22-1)
[2025-04-10T13:03:13+0200] [ALPM] upgraded linux-lts (6.12.21-1 -> 6.12.22-1)
[2025-04-10T13:03:12+0200] [ALPM] upgraded linux-headers (6.13.8.arch1-1 -> 6.14.1.arch1-1)
[2025-04-10T13:03:10+0200] [ALPM] upgraded linux (6.13.8.arch1-1 -> 6.14.1.arch1-1)
[2025-04-10T13:03:09+0200] [ALPM] upgraded libreoffice-fresh (25.2.2-1 -> 25.2.2-2)
[2025-04-10T13:03:08+0200] [ALPM] upgraded lib32-harfbuzz (11.0.0-1 -> 11.0.1-1)
[2025-04-10T13:03:08+0200] [ALPM] upgraded lact (0.7.2-1 -> 0.7.3-1)
[2025-04-10T13:03:08+0200] [ALPM] upgraded haruna (1.3.3-2 -> 1.3.3-3)
[2025-04-10T13:03:08+0200] [ALPM] upgraded poppler-qt6 (25.03.0-1 -> 25.04.0-1)
[2025-04-10T13:03:08+0200] [ALPM] upgraded poppler (25.03.0-1 -> 25.04.0-1)
[2025-04-10T13:03:08+0200] [ALPM] upgraded mpvqt (1.0.1-1 -> 1.1.0-1)
[2025-04-10T13:03:08+0200] [ALPM] upgraded harfbuzz-icu (11.0.0-1 -> 11.0.1-1)
[2025-04-10T13:03:08+0200] [ALPM] upgraded gtk4 (1:4.18.3-2 -> 1:4.18.4-1)
[2025-04-10T13:03:08+0200] [ALPM] upgraded gdal (3.10.2-2 -> 3.10.2-3)
[2025-04-10T13:03:08+0200] [ALPM] upgraded fwupd (2.0.7-1 -> 2.0.8-1)
[2025-04-10T13:03:08+0200] [ALPM] upgraded libqmi (1.34.0-2 -> 1.36.0-1)
[2025-04-10T13:03:07+0200] [ALPM] upgraded libqrtr-glib (1.2.2-3 -> 1.2.2-4)
[2025-04-10T13:03:07+0200] [ALPM] upgraded libmbim (1.30.0-1 -> 1.32.0-1)
[2025-04-10T13:03:07+0200] [ALPM] upgraded firefox (137.0-1 -> 137.0.1-1)
[2025-04-10T13:03:07+0200] [ALPM] upgraded eos-bash-shared (25.4-1 -> 25.4.1-1)
[2025-04-10T13:03:07+0200] [ALPM] upgraded dkms (3.1.6-1 -> 3.1.7-2)
[2025-04-10T13:03:07+0200] [ALPM] upgraded cpu-x (5.2.0-2 -> 5.2.0-3)
[2025-04-10T13:03:07+0200] [ALPM] upgraded chromium (135.0.7049.52-1 -> 135.0.7049.84-1)
[2025-04-10T13:03:06+0200] [ALPM] upgraded gtk-update-icon-cache (1:4.18.3-2 -> 1:4.18.4-1)
[2025-04-10T13:03:06+0200] [ALPM] upgraded harfbuzz (11.0.0-1 -> 11.0.1-1)
[2025-04-10T13:03:06+0200] [ALPM] upgraded btrfs-progs (6.13-1 -> 6.14-1)
[2025-04-10T13:03:06+0200] [ALPM] upgraded c-ares (1.34.4-1 -> 1.34.5-1)
[2025-04-07T07:04:18+0200] [ALPM] upgraded vscodium-bin-debug (1.98.2.25078-1 -> 1.99.02289-1)
[2025-04-07T07:04:18+0200] [ALPM] upgraded vscodium-bin (1.98.2.25078-1 -> 1.99.02289-1)
[2025-04-07T07:04:17+0200] [ALPM] upgraded librewolf-bin-debug (1:136.0.4_1-1 -> 1:137.0.0_3-1)
[2025-04-07T07:04:17+0200] [ALPM] upgraded librewolf-bin (1:136.0.4_1-1 -> 1:137.0.0_3-1)
[2025-04-07T06:58:48+0200] [ALPM] upgraded wine (10.4-1 -> 10.5-1)
[2025-04-07T06:58:45+0200] [ALPM] upgraded systemd-sysvcompat (257.4-1 -> 257.5-1)
[2025-04-07T06:58:45+0200] [ALPM] upgraded systemd-resolvconf (257.4-1 -> 257.5-1)
[2025-04-07T06:58:45+0200] [ALPM] upgraded steam (1.0.0.82-1 -> 1.0.0.82-2)
[2025-04-07T06:58:45+0200] [ALPM] upgraded qt6-webview (6.8.3-1 -> 6.9.0-1)
[2025-04-07T06:58:45+0200] [ALPM] upgraded qt6-webengine (6.8.3-1 -> 6.9.0-3)
[2025-04-07T06:58:45+0200] [ALPM] upgraded qt6-webchannel (6.8.3-1 -> 6.9.0-1)
[2025-04-07T06:58:45+0200] [ALPM] upgraded qt6-quick3d (6.8.3-1 -> 6.9.0-1)
[2025-04-07T06:58:44+0200] [ALPM] upgraded qt6-quicktimeline (6.8.3-1 -> 6.9.0-1)
[2025-04-07T06:58:44+0200] [ALPM] upgraded qt6-networkauth (6.8.3-1 -> 6.9.0-1)
[2025-04-07T06:58:44+0200] [ALPM] upgraded qt6-imageformats (6.8.3-1 -> 6.9.0-1)
[2025-04-07T06:58:44+0200] [ALPM] upgraded qt6-connectivity (6.8.3-1 -> 6.9.0-1)
[2025-04-07T06:58:44+0200] [ALPM] upgraded qcoro (0.11.0-1 -> 0.12.0-1)
[2025-04-07T06:58:44+0200] [ALPM] upgraded qt6-websockets (6.8.3-1 -> 6.9.0-1)
[2025-04-07T06:58:44+0200] [ALPM] upgraded python-pyqt6 (6.8.1-2 -> 6.8.1-3)
[2025-04-07T06:58:44+0200] [ALPM] upgraded python-pydantic (2.10.6-1 -> 2.11.2-1)
[2025-04-07T06:58:44+0200] [ALPM] upgraded python-pydantic-core (2:2.27.2-1 -> 2:2.33.1-1)
[2025-04-07T06:58:44+0200] [ALPM] upgraded pyside6 (6.8.3-1 -> 6.9.0-1)
[2025-04-07T06:58:44+0200] [ALPM] upgraded shiboken6 (6.8.3-1 -> 6.9.0-1)
[2025-04-07T06:58:44+0200] [ALPM] upgraded plasma5-integration (6.3.4-1 -> 6.3.4-2)
[2025-04-07T06:58:44+0200] [ALPM] upgraded plasma-integration (6.3.4-1 -> 6.3.4-2)
[2025-04-07T06:58:44+0200] [ALPM] upgraded qt6-speech (6.8.3-1 -> 6.9.0-1)
[2025-04-07T06:58:44+0200] [ALPM] upgraded qt6-virtualkeyboard (6.8.3-1 -> 6.9.0-1)
[2025-04-07T06:58:44+0200] [ALPM] upgraded qt6-positioning (6.8.3-1 -> 6.9.0-1)
[2025-04-07T06:58:44+0200] [ALPM] upgraded mpv (1:0.40.0-1 -> 1:0.40.0-2)
[2025-04-07T06:58:44+0200] [ALPM] upgraded minizip-ng (4.0.8-1 -> 4.0.9-1)
[2025-04-07T06:58:44+0200] [ALPM] upgraded linux-g14-headers (6.13.8.arch1-1.1 -> 6.13.8.arch1-1.2)
[2025-04-07T06:58:42+0200] [ALPM] upgraded linux-g14 (6.13.8.arch1-1.1 -> 6.13.8.arch1-1.2)
[2025-04-07T06:58:41+0200] [ALPM] upgraded lib32-vulkan-radeon (1:25.0.2-2 -> 1:25.0.3-1)
[2025-04-07T06:58:41+0200] [ALPM] upgraded vulkan-radeon (1:25.0.2-2 -> 1:25.0.3-1)
[2025-04-07T06:58:41+0200] [ALPM] upgraded lib32-systemd (257.4-1 -> 257.5-1)
[2025-04-07T06:58:41+0200] [ALPM] upgraded lib32-mesa (1:25.0.2-2 -> 1:25.0.3-1)
[2025-04-07T06:58:41+0200] [ALPM] upgraded kwin (6.3.4-1 -> 6.3.4-3)
[2025-04-07T06:58:41+0200] [ALPM] upgraded layer-shell-qt (6.3.4-1 -> 6.3.4-2)
[2025-04-07T06:58:41+0200] [ALPM] upgraded qt6-tools (6.8.3-1 -> 6.9.0-1)
[2025-04-07T06:58:41+0200] [ALPM] upgraded qt6-sensors (6.8.3-1 -> 6.9.0-1)
[2025-04-07T06:58:41+0200] [ALPM] upgraded qt6-multimedia (6.8.3-1 -> 6.9.0-1)
[2025-04-07T06:58:41+0200] [ALPM] upgraded qt6-multimedia-gstreamer (6.8.3-1 -> 6.9.0-1)
[2025-04-07T06:58:41+0200] [ALPM] upgraded qt6-5compat (6.8.3-1 -> 6.9.0-1)
[2025-04-07T06:58:41+0200] [ALPM] upgraded qt6-shadertools (6.8.3-1 -> 6.9.0-1)
[2025-04-07T06:58:41+0200] [ALPM] upgraded kxmlgui (6.12.0-1 -> 6.12.0-2)
[2025-04-07T06:58:41+0200] [ALPM] upgraded kwidgetsaddons (6.12.0-1 -> 6.12.0-2)
[2025-04-07T06:58:41+0200] [ALPM] upgraded kunitconversion (6.12.0-1 -> 6.12.0-2)
[2025-04-07T06:58:41+0200] [ALPM] upgraded kstatusnotifieritem (6.12.0-1 -> 6.12.0-2)
[2025-04-07T06:58:41+0200] [ALPM] upgraded knotifications (6.12.0-1 -> 6.12.0-2)
[2025-04-07T06:58:41+0200] [ALPM] upgraded kguiaddons (6.12.0-1 -> 6.12.0-2)
[2025-04-07T06:58:41+0200] [ALPM] upgraded qt6-wayland (6.8.3-1 -> 6.9.0-1)
[2025-04-07T06:58:40+0200] [ALPM] upgraded qt6-svg (6.8.3-1 -> 6.9.0-1)
[2025-04-07T06:58:40+0200] [ALPM] upgraded qt6-declarative (6.8.3-1 -> 6.9.0-1)
[2025-04-07T06:58:40+0200] [ALPM] upgraded kcoreaddons (6.12.0-1 -> 6.12.0-2)
[2025-04-07T06:58:40+0200] [ALPM] upgraded qt6-base (6.8.3-1 -> 6.9.0-1)
[2025-04-07T06:58:39+0200] [ALPM] upgraded qt6-translations (6.8.3-1 -> 6.9.0-1)
[2025-04-07T06:58:39+0200] [ALPM] upgraded jasper (4.2.4-2 -> 4.2.5-1)
[2025-04-07T06:58:39+0200] [ALPM] upgraded gtk4 (1:4.18.3-1 -> 1:4.18.3-2)
[2025-04-07T06:58:39+0200] [ALPM] upgraded geos (3.13.0-1 -> 3.13.1-1)
[2025-04-07T06:58:39+0200] [ALPM] upgraded gamescope (3.16.2-1 -> 3.16.3-1)
[2025-04-07T06:58:39+0200] [ALPM] upgraded eos-rankmirrors (25.3-1 -> 25.4-1)
[2025-04-07T06:58:39+0200] [ALPM] upgraded eos-bash-shared (25.3.4-1 -> 25.4-1)
[2025-04-07T06:58:39+0200] [ALPM] upgraded electron34 (34.5.0-1 -> 34.5.0-2)
[2025-04-07T06:58:38+0200] [ALPM] upgraded electron33 (33.4.8-1 -> 33.4.8-2)
[2025-04-07T06:58:37+0200] [ALPM] upgraded mesa (1:25.0.2-2 -> 1:25.0.3-1)
[2025-04-07T06:58:36+0200] [ALPM] upgraded gtk-update-icon-cache (1:4.18.3-1 -> 1:4.18.3-2)
[2025-04-07T06:58:36+0200] [ALPM] upgraded downgrade (11.5.0-1 -> 11.5.1-1)
[2025-04-07T06:58:34+0200] [ALPM] upgraded systemd (257.4-1 -> 257.5-1)
[2025-04-07T06:58:34+0200] [ALPM] upgraded hwdata (0.393-1 -> 0.394-1)
[2025-04-07T06:58:34+0200] [ALPM] upgraded systemd-libs (257.4-1 -> 257.5-1)
[2025-04-04T07:11:48+0200] [ALPM] upgraded openvpn (2.6.13-1 -> 2.6.14-1)
[2025-04-04T07:11:48+0200] [ALPM] upgraded libinput (1.28.0-1 -> 1.28.1-1)
[2025-04-04T07:11:48+0200] [ALPM] upgraded lib32-xz (5.8.0-1 -> 5.8.1-1)
[2025-04-04T07:11:48+0200] [ALPM] upgraded lib32-glib2 (2.84.0-1 -> 2.84.1-1)
[2025-04-04T07:11:48+0200] [ALPM] upgraded lib32-curl (8.12.1-1 -> 8.13.0-1)
[2025-04-04T07:11:48+0200] [ALPM] upgraded iwd (3.5-1 -> 3.6-1)
[2025-04-04T07:11:48+0200] [ALPM] upgraded gst-plugins-ugly (1.26.0-2 -> 1.26.0-3)
[2025-04-04T07:11:48+0200] [ALPM] upgraded gst-plugins-base (1.26.0-2 -> 1.26.0-3)
[2025-04-04T07:11:48+0200] [ALPM] upgraded gst-plugins-bad (1.26.0-2 -> 1.26.0-3)
[2025-04-04T07:11:48+0200] [ALPM] upgraded gst-libav (1.26.0-2 -> 1.26.0-3)
[2025-04-04T07:11:48+0200] [ALPM] upgraded ffmpeg (2:7.1-7 -> 2:7.1-9)
[2025-04-04T07:11:48+0200] [ALPM] upgraded libplacebo (7.349.0-4 -> 7.349.0-6)
[2025-04-04T07:11:48+0200] [ALPM] upgraded shaderc (2025.1-1 -> 2025.1-3)
[2025-04-04T07:11:48+0200] [ALPM] upgraded glslang (15.1.0-1 -> 15.2.0-2)
[2025-04-04T07:11:48+0200] [ALPM] upgraded eos-log-tool (25.3-1 -> 25.3-2)
[2025-04-04T07:11:48+0200] [ALPM] upgraded gst-plugins-bad-libs (1.26.0-2 -> 1.26.0-3)
[2025-04-04T07:11:48+0200] [ALPM] upgraded gst-plugins-base-libs (1.26.0-2 -> 1.26.0-3)
[2025-04-04T07:11:48+0200] [ALPM] upgraded gstreamer (1.26.0-2 -> 1.26.0-3)
[2025-04-04T07:11:48+0200] [ALPM] upgraded libksba (1.6.7-1 -> 1.6.7-2)
[2025-04-04T07:11:48+0200] [ALPM] upgraded eos-translations (25.3.0-1 -> 25.4-1)
[2025-04-04T07:11:48+0200] [ALPM] upgraded ell (0.74-1 -> 0.75-1)
[2025-04-04T07:11:48+0200] [ALPM] upgraded electron34 (34.3.2-1 -> 34.5.0-1)
[2025-04-04T07:11:47+0200] [ALPM] upgraded electron33 (33.4.3-1 -> 33.4.8-1)
[2025-04-04T07:11:47+0200] [ALPM] upgraded leancrypto (1.2.0-2 -> 1.3.0-1)
[2025-04-04T07:11:47+0200] [ALPM] upgraded docker (1:28.0.4-1 -> 1:28.0.4-2)
[2025-04-04T07:11:47+0200] [ALPM] upgraded curl (8.12.1-1 -> 8.13.0-1)
[2025-04-04T07:11:47+0200] [ALPM] upgraded bluez-utils (5.80-2 -> 5.82-1)
[2025-04-04T07:11:47+0200] [ALPM] upgraded bluez-libs (5.80-2 -> 5.82-1)
[2025-04-04T07:11:47+0200] [ALPM] upgraded bluez (5.80-2 -> 5.82-1)
[2025-04-04T07:11:47+0200] [ALPM] upgraded xz (5.8.0-1 -> 5.8.1-1)
[2025-04-04T07:11:47+0200] [ALPM] upgraded glib2 (2.84.0-1 -> 2.84.1-1)
[2025-04-03T14:30:42+0200] [ALPM] upgraded brave-bin (1:1.76.82-1 -> 1:1.77.95-1)
[2025-04-03T14:11:41+0200] [ALPM] upgraded webkit2gtk-4.1 (2.48.0-1 -> 2.48.1-1)
[2025-04-03T14:11:41+0200] [ALPM] upgraded spectacle (1:6.3.3-1 -> 1:6.3.4-1)
[2025-04-03T14:11:41+0200] [ALPM] upgraded sof-firmware (2025.01-1 -> 2025.01.1-1)
[2025-04-03T14:11:41+0200] [ALPM] upgraded sddm-kcm (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:41+0200] [ALPM] upgraded python-fonttools (4.56.0-1 -> 4.57.0-1)
[2025-04-03T14:11:41+0200] [ALPM] upgraded print-manager (1:6.3.3-1 -> 1:6.3.4-1)
[2025-04-03T14:11:41+0200] [ALPM] upgraded plasma5-integration (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:41+0200] [ALPM] upgraded plasma-vault (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:41+0200] [ALPM] upgraded plasma-systemmonitor (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:41+0200] [ALPM] upgraded plasma-pa (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:40+0200] [ALPM] upgraded plasma-nm (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:40+0200] [ALPM] upgraded plasma-firewall (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:40+0200] [ALPM] upgraded plasma-disks (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:40+0200] [ALPM] upgraded plasma-desktop (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:40+0200] [ALPM] upgraded powerdevil (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:40+0200] [ALPM] upgraded polkit-kde-agent (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:40+0200] [ALPM] upgraded plasma-browser-integration (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:40+0200] [ALPM] upgraded pcsclite (2.3.2-1 -> 2.3.3-1)
[2025-04-03T14:11:40+0200] [ALPM] upgraded linux-g14-headers (6.13.7.arch1-1.2 -> 6.13.8.arch1-1.1)
[2025-04-03T14:11:38+0200] [ALPM] upgraded linux-g14 (6.13.7.arch1-1.2 -> 6.13.8.arch1-1.1)
[2025-04-03T14:11:37+0200] [ALPM] upgraded lib32-nss (3.109-1 -> 3.110-1)
[2025-04-03T14:11:37+0200] [ALPM] upgraded lib32-expat (2.7.0-1 -> 2.7.1-1)
[2025-04-03T14:11:37+0200] [ALPM] upgraded kwayland-integration (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:37+0200] [ALPM] upgraded kwallet-pam (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:37+0200] [ALPM] upgraded kscreen (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:37+0200] [ALPM] upgraded kmenuedit (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:37+0200] [ALPM] upgraded kinfocenter (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:37+0200] [ALPM] upgraded systemsettings (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:37+0200] [ALPM] upgraded kgamma (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:37+0200] [ALPM] upgraded kdeplasma-addons (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:37+0200] [ALPM] upgraded plasma-workspace (6.3.3-3 -> 6.3.4-2)
[2025-04-03T14:11:36+0200] [ALPM] upgraded plasma-integration (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:36+0200] [ALPM] upgraded xdg-desktop-portal-kde (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:36+0200] [ALPM] upgraded qqc2-breeze-style (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:36+0200] [ALPM] upgraded plasma5support (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:36+0200] [ALPM] upgraded plasma-activities-stats (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:36+0200] [ALPM] upgraded ocean-sound-theme (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:36+0200] [ALPM] upgraded milou (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:36+0200] [ALPM] upgraded ksystemstats (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:36+0200] [ALPM] upgraded libksysguard (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:36+0200] [ALPM] upgraded kpipewire (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:36+0200] [ALPM] upgraded kio-fuse (5.1.0-4 -> 5.1.0-5)
[2025-04-03T14:11:36+0200] [ALPM] upgraded kwin (6.3.3.1-2 -> 6.3.4-1)
[2025-04-03T14:11:35+0200] [ALPM] upgraded kwayland (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:35+0200] [ALPM] upgraded kscreenlocker (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:35+0200] [ALPM] upgraded libkscreen (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:35+0200] [ALPM] upgraded layer-shell-qt (6.3.3-3 -> 6.3.4-1)
[2025-04-03T14:11:35+0200] [ALPM] upgraded kglobalacceld (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:35+0200] [ALPM] upgraded kde-gtk-config (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:35+0200] [ALPM] upgraded kde-cli-tools (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:35+0200] [ALPM] upgraded kactivitymanagerd (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:35+0200] [ALPM] upgraded iptables-nft (1:1.8.11-1 -> 1:1.8.11-2)
[2025-04-03T14:11:35+0200] [ALPM] upgraded jansson (2.14-4 -> 2.14.1-1)
[2025-04-03T14:11:35+0200] [ALPM] upgraded hwinfo (23.3-3 -> 23.4-1)
[2025-04-03T14:11:35+0200] [ALPM] upgraded grub (2:2.12.r226.g56ccc5ed-1 -> 2:2.12.r260.gaae2ea61-1)
[2025-04-03T14:11:35+0200] [ALPM] upgraded flatpak (1:1.16.0-1 -> 1:1.16.0-2)
[2025-04-03T14:11:35+0200] [ALPM] upgraded xdg-desktop-portal (1.20.0-1 -> 1.20.0-2)
[2025-04-03T14:11:35+0200] [ALPM] upgraded ostree (2025.1-1 -> 2025.2-2)
[2025-04-03T14:11:35+0200] [ALPM] upgraded fuse3 (3.16.2-1 -> 3.17.1-1)
[2025-04-03T14:11:35+0200] [ALPM] upgraded fuse-common (3.16.2-1 -> 3.17.1-1)
[2025-04-03T14:11:35+0200] [ALPM] upgraded firefox (136.0.4-1 -> 137.0-1)
[2025-04-03T14:11:33+0200] [ALPM] upgraded downgrade (11.4.4-1 -> 11.5.0-1)
[2025-04-03T14:11:33+0200] [ALPM] upgraded gawk (5.3.1-2 -> 5.3.2-1)
[2025-04-03T14:11:33+0200] [ALPM] upgraded libarchive (3.7.7-4 -> 3.7.9-1)
[2025-04-03T14:11:33+0200] [ALPM] upgraded discover (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:33+0200] [ALPM] upgraded sdl2-compat (2.32.52-1 -> 2.32.54-1)
[2025-04-03T14:11:33+0200] [ALPM] upgraded sdl3 (3.2.8-1 -> 3.2.10-1)
[2025-04-03T14:11:33+0200] [ALPM] upgraded noto-fonts (1:2025.03.01-1 -> 1:2025.04.01-1)
[2025-04-03T14:11:32+0200] [ALPM] upgraded chromium (134.0.6998.165-1 -> 135.0.7049.52-1)
[2025-04-03T14:11:31+0200] [ALPM] upgraded breeze5 (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:31+0200] [ALPM] upgraded breeze-gtk (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:31+0200] [ALPM] upgraded breeze (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:30+0200] [ALPM] upgraded kdecoration (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:30+0200] [ALPM] upgraded bluedevil (1:6.3.3-1 -> 1:6.3.4-1)
[2025-04-03T14:11:30+0200] [ALPM] upgraded libplasma (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:30+0200] [ALPM] upgraded upower (1.90.7-1 -> 1.90.8-1)
[2025-04-03T14:11:30+0200] [ALPM] upgraded nss (3.109-1 -> 3.110-1)
[2025-04-03T14:11:30+0200] [ALPM] upgraded plasma-activities (6.3.3-1 -> 6.3.4-1)
[2025-04-03T14:11:30+0200] [ALPM] upgraded kmod (34.1-1 -> 34.2-1)
[2025-04-03T14:11:30+0200] [ALPM] upgraded util-linux (2.41-3 -> 2.41-4)
[2025-04-03T14:11:30+0200] [ALPM] upgraded libsysprof-capture (48.0-2 -> 48.0-3)
[2025-04-03T14:11:30+0200] [ALPM] upgraded ca-certificates-mozilla (3.109-1 -> 3.110-1)
[2025-04-03T14:11:30+0200] [ALPM] upgraded gdbm (1.24-2 -> 1.25-1)
[2025-04-03T14:11:30+0200] [ALPM] upgraded e2fsprogs (1.47.2-1 -> 1.47.2-2)
[2025-04-03T14:11:30+0200] [ALPM] upgraded util-linux-libs (2.41-3 -> 2.41-4)
[2025-04-03T14:11:30+0200] [ALPM] upgraded expat (2.7.0-1 -> 2.7.1-1)
[2025-04-01T06:33:50+0200] [ALPM] upgraded discord (0.0.89-1 -> 0.0.90-1)
[2025-03-31T07:19:21+0200] [ALPM] upgraded librewolf-bin-debug (1:136.0.2_1-1 -> 1:136.0.4_1-1)
[2025-03-31T07:19:21+0200] [ALPM] upgraded librewolf-bin (1:136.0.2_1-1 -> 1:136.0.4_1-1)
[2025-03-31T07:19:21+0200] [ALPM] upgraded brave-bin (1:1.76.81-1 -> 1:1.76.82-1)
[2025-03-31T07:19:20+0200] [ALPM] upgraded protonup-qt (2.11.1-1 -> 2.12.0-1)
[2025-03-31T07:16:57+0200] [ALPM] upgraded spdlog (1.15.1-1 -> 1.15.2-1)
[2025-03-31T07:16:57+0200] [ALPM] upgraded qt6-webview (6.8.2-1 -> 6.8.3-1)
[2025-03-31T07:16:57+0200] [ALPM] upgraded qt6-websockets (6.8.2-1 -> 6.8.3-1)
[2025-03-31T07:16:57+0200] [ALPM] upgraded qt6-webengine (6.8.2-3 -> 6.8.3-1)
[2025-03-31T07:16:57+0200] [ALPM] upgraded qt6-webchannel (6.8.2-1 -> 6.8.3-1)
[2025-03-31T07:16:57+0200] [ALPM] upgraded qt6-quick3d (6.8.2-1 -> 6.8.3-1)
[2025-03-31T07:16:56+0200] [ALPM] upgraded qt6-quicktimeline (6.8.2-1 -> 6.8.3-1)
[2025-03-31T07:16:56+0200] [ALPM] upgraded qt6-networkauth (6.8.2-1 -> 6.8.3-1)
[2025-03-31T07:16:56+0200] [ALPM] upgraded qt6-imageformats (6.8.2-1 -> 6.8.3-1)
[2025-03-31T07:16:56+0200] [ALPM] upgraded qt6-connectivity (6.8.2-1 -> 6.8.3-1)
[2025-03-31T07:16:56+0200] [ALPM] upgraded python-pyqt6 (6.8.1-1 -> 6.8.1-2)
[2025-03-31T07:16:56+0200] [ALPM] upgraded python-pyaml (24.9.0-2 -> 24.12.0-1)
[2025-03-31T07:16:56+0200] [ALPM] upgraded python-orjson (3.10.15-1 -> 3.10.16-1)
[2025-03-31T07:16:56+0200] [ALPM] upgraded pyside6 (6.8.2.1-1 -> 6.8.3-1)
[2025-03-31T07:16:56+0200] [ALPM] upgraded shiboken6 (6.8.2.1-1 -> 6.8.3-1)
[2025-03-31T07:16:56+0200] [ALPM] upgraded pcsclite (2.3.1-1 -> 2.3.2-1)
[2025-03-31T07:16:56+0200] [ALPM] upgraded openal (1.24.2-1 -> 1.24.3-1)
[2025-03-31T07:16:56+0200] [ALPM] upgraded onetbb (2022.0.0-2 -> 2022.1.0-1)
[2025-03-31T07:16:56+0200] [ALPM] upgraded mariadb-libs (11.7.2-1 -> 11.7.2-2)
[2025-03-31T07:16:56+0200] [ALPM] upgraded lutris (0.5.19-1 -> 0.5.19-2)
[2025-03-31T07:16:56+0200] [ALPM] upgraded plasma-workspace (6.3.3-1 -> 6.3.3-3)
[2025-03-31T07:16:56+0200] [ALPM] upgraded qt6-speech (6.8.2-1 -> 6.8.3-1)
[2025-03-31T07:16:56+0200] [ALPM] upgraded qt6-virtualkeyboard (6.8.2-1 -> 6.8.3-1)
[2025-03-31T07:16:56+0200] [ALPM] upgraded qt6-positioning (6.8.2-1 -> 6.8.3-1)
[2025-03-31T07:16:55+0200] [ALPM] upgraded luajit (2.1.1736781742-1 -> 2.1.1741730670-1)
[2025-03-31T07:16:55+0200] [ALPM] upgraded linux-lts-headers (6.12.20-1 -> 6.12.21-1)
[2025-03-31T07:16:54+0200] [ALPM] upgraded linux-lts (6.12.20-1 -> 6.12.21-1)
[2025-03-31T07:16:53+0200] [ALPM] upgraded libreoffice-fresh (25.2.1-3 -> 25.2.2-1)
[2025-03-31T07:16:52+0200] [ALPM] upgraded libnotify (0.8.4-1 -> 0.8.6-1)
[2025-03-31T07:16:52+0200] [ALPM] upgraded libnewt (0.52.24-3 -> 0.52.25-1)
[2025-03-31T07:16:52+0200] [ALPM] upgraded libdmtx (0.7.7-2 -> 0.7.8-1)
[2025-03-31T07:16:52+0200] [ALPM] upgraded lib32-libxml2 (2.13.6-2 -> 2.13.7-1)
[2025-03-31T07:16:52+0200] [ALPM] upgraded lib32-xz (5.6.4-1 -> 5.8.0-1)
[2025-03-31T07:16:52+0200] [ALPM] upgraded kwin (6.3.3.1-1 -> 6.3.3.1-2)
[2025-03-31T07:16:52+0200] [ALPM] upgraded layer-shell-qt (6.3.3-1 -> 6.3.3-3)
[2025-03-31T07:16:52+0200] [ALPM] upgraded libnvme (1.11.1-2 -> 1.12-2)
[2025-03-31T07:16:52+0200] [ALPM] upgraded qt6-tools (6.8.2-2 -> 6.8.3-1)
[2025-03-31T07:16:51+0200] [ALPM] upgraded qt6-sensors (6.8.2-1 -> 6.8.3-1)
[2025-03-31T07:16:51+0200] [ALPM] upgraded qt6-multimedia (6.8.2-1 -> 6.8.3-1)
[2025-03-31T07:16:51+0200] [ALPM] upgraded qt6-multimedia-gstreamer (6.8.2-1 -> 6.8.3-1)
[2025-03-31T07:16:51+0200] [ALPM] upgraded qt6-5compat (6.8.2-2 -> 6.8.3-1)
[2025-03-31T07:16:51+0200] [ALPM] upgraded qt6-shadertools (6.8.2-1 -> 6.8.3-1)
[2025-03-31T07:16:51+0200] [ALPM] upgraded kwindowsystem (6.12.0-1 -> 6.12.0-3)
[2025-03-31T07:16:51+0200] [ALPM] upgraded qt6-wayland (6.8.2-1 -> 6.8.3-1)
[2025-03-31T07:16:51+0200] [ALPM] upgraded qt6-svg (6.8.2-1 -> 6.8.3-1)
[2025-03-31T07:16:51+0200] [ALPM] upgraded qt6-declarative (6.8.2-1 -> 6.8.3-1)
[2025-03-31T07:16:51+0200] [ALPM] upgraded qt6-base (6.8.2-3 -> 6.8.3-1)
[2025-03-31T07:16:51+0200] [ALPM] upgraded qt6-translations (6.8.2-1 -> 6.8.3-1)
[2025-03-31T07:16:51+0200] [ALPM] upgraded libinput (1.27.1-1 -> 1.28.0-1)
[2025-03-31T07:16:51+0200] [ALPM] upgraded iwd (3.4-1 -> 3.5-1)
[2025-03-31T07:16:51+0200] [ALPM] upgraded imagemagick (7.1.1.46-1 -> 7.1.1.47-1)
[2025-03-31T07:16:50+0200] [ALPM] upgraded gtk4 (1:4.18.2-1 -> 1:4.18.3-1)
[2025-03-31T07:16:50+0200] [ALPM] upgraded ghostscript (10.05.0-1 -> 10.05.0-3)
[2025-03-31T07:16:50+0200] [ALPM] upgraded fwupd (2.0.6-1 -> 2.0.7-1)
[2025-03-31T07:16:50+0200] [ALPM] upgraded fluidsynth (2.4.3-1 -> 2.4.4-1)
[2025-03-31T07:16:50+0200] [ALPM] upgraded firefox (136.0.3-1 -> 136.0.4-1)
[2025-03-31T07:16:50+0200] [ALPM] upgraded snappy (1.2.1-2 -> 1.2.2-1)
[2025-03-31T07:16:50+0200] [ALPM] upgraded fakeroot (1.37.1-1 -> 1.37.1.1-1)
[2025-03-31T07:16:50+0200] [ALPM] upgraded eos-apps-info (24.8.2-1 -> 25-1)
[2025-03-31T07:16:50+0200] [ALPM] upgraded svt-av1 (3.0.1-1 -> 3.0.2-1)
[2025-03-31T07:16:50+0200] [ALPM] upgraded gtk-update-icon-cache (1:4.18.2-1 -> 1:4.18.3-1)
[2025-03-31T07:16:50+0200] [ALPM] upgraded egl-gbm (1.1.2-1 -> 1.1.2.1-1)
[2025-03-31T07:16:50+0200] [ALPM] upgraded libxml2 (2.13.6-3 -> 2.13.7-1)
[2025-03-31T07:16:50+0200] [ALPM] upgraded docker (1:28.0.1-1 -> 1:28.0.4-1)
[2025-03-31T07:16:49+0200] [ALPM] upgraded cfitsio (1:4.6.0-4 -> 1:4.6.2-1)
[2025-03-31T07:16:49+0200] [ALPM] upgraded bluez-utils (5.80-1 -> 5.80-2)
[2025-03-31T07:16:49+0200] [ALPM] upgraded bluez-libs (5.80-1 -> 5.80-2)
[2025-03-31T07:16:49+0200] [ALPM] upgraded bluez (5.80-1 -> 5.80-2)
[2025-03-31T07:16:49+0200] [ALPM] upgraded at-spi2-core (2.56.0-1 -> 2.56.1-1)
[2025-03-31T07:16:49+0200] [ALPM] upgraded libsysprof-capture (48.0-1 -> 48.0-2)
[2025-03-31T07:16:49+0200] [ALPM] upgraded xz (5.6.4-1 -> 5.8.0-1)
[2025-03-31T07:16:49+0200] [ALPM] upgraded iana-etc (20250213-1 -> 20250328-1)
[2025-03-26T09:12:32+0100] [ALPM] upgraded parallel (20250222-1 -> 20250322-1)
[2025-03-26T09:12:32+0100] [ALPM] upgraded procps-ng (4.0.5-2 -> 4.0.5-3)
[2025-03-26T09:12:32+0100] [ALPM] upgraded openmpi (5.0.7-2 -> 5.0.7-3)
[2025-03-26T09:12:32+0100] [ALPM] upgraded prrte (3.0.8-1 -> 3.0.9-1)
[2025-03-26T09:12:32+0100] [ALPM] upgraded openpmix (5.0.6-1 -> 5.0.7-1)
[2025-03-26T09:12:32+0100] [ALPM] upgraded mpv (1:0.39.0-5 -> 1:0.40.0-1)
[2025-03-26T09:12:32+0100] [ALPM] upgraded kio-fuse (5.1.0-3 -> 5.1.0-4)
[2025-03-26T09:12:32+0100] [ALPM] upgraded libevdev (1.13.3-1 -> 1.13.4-1)
[2025-03-26T09:12:32+0100] [ALPM] upgraded iproute2 (6.13.0-1 -> 6.14.0-1)
[2025-03-26T09:12:32+0100] [ALPM] upgraded firefox (136.0.2-1 -> 136.0.3-1)
[2025-03-26T09:12:32+0100] [ALPM] upgraded util-linux (2.41-2 -> 2.41-3)
[2025-03-26T09:12:32+0100] [ALPM] upgraded util-linux-libs (2.41-2 -> 2.41-3)
[2025-03-26T09:12:32+0100] [ALPM] upgraded file (5.46-3 -> 5.46-4)
[2025-03-25T06:26:24+0100] [ALPM] upgraded xdg-desktop-portal-gtk (1.15.2-1 -> 1.15.3-1)
[2025-03-25T06:26:24+0100] [ALPM] upgraded welcome (25.3-1 -> 25.3.1-1)
[2025-03-25T06:26:24+0100] [ALPM] upgraded vim (9.1.1198-1 -> 9.1.1236-1)
[2025-03-25T06:26:24+0100] [ALPM] upgraded vim-runtime (9.1.1198-1 -> 9.1.1236-1)
[2025-03-25T06:26:24+0100] [ALPM] upgraded unrar (1:7.1.5-1 -> 1:7.1.6-1)
[2025-03-25T06:26:24+0100] [ALPM] upgraded python-openrazer (3.10.0-1 -> 3.10.1-1)
[2025-03-25T06:26:24+0100] [ALPM] upgraded openrazer-daemon (3.10.0-1 -> 3.10.1-1)
[2025-03-25T06:26:24+0100] [ALPM] upgraded python-gobject (3.52.3-2 -> 3.52.3-3)
[2025-03-25T06:26:24+0100] [ALPM] upgraded openrazer-driver-dkms (3.10.0-1 -> 3.10.1-1)
[2025-03-25T06:26:24+0100] [ALPM] upgraded linux-lts-headers (6.12.19-1 -> 6.12.20-1)
[2025-03-25T06:26:22+0100] [ALPM] upgraded linux-lts (6.12.19-1 -> 6.12.20-1)
[2025-03-25T06:26:21+0100] [ALPM] upgraded linux-headers (6.13.7.arch1-1 -> 6.13.8.arch1-1)
[2025-03-25T06:26:18+0100] [ALPM] upgraded linux (6.13.7.arch1-1 -> 6.13.8.arch1-1)
[2025-03-25T06:26:16+0100] [ALPM] upgraded libwacom (2.14.0-1 -> 2.15.0-1)
[2025-03-25T06:26:16+0100] [ALPM] upgraded lib32-harfbuzz (10.4.0-1 -> 11.0.0-1)
[2025-03-25T06:26:16+0100] [ALPM] upgraded harfbuzz-icu (10.4.0-1 -> 11.0.0-1)
[2025-03-25T06:26:16+0100] [ALPM] upgraded gtkmm-4.0 (4.16.0-1 -> 4.18.0-2)
[2025-03-25T06:26:15+0100] [ALPM] upgraded gst-plugins-ugly (1.26.0-1 -> 1.26.0-2)
[2025-03-25T06:26:15+0100] [ALPM] upgraded gst-plugins-base (1.26.0-1 -> 1.26.0-2)
[2025-03-25T06:26:15+0100] [ALPM] upgraded gst-plugins-bad (1.26.0-1 -> 1.26.0-2)
[2025-03-25T06:26:15+0100] [ALPM] upgraded openexr (3.3.2-1 -> 3.3.3-1)
[2025-03-25T06:26:15+0100] [ALPM] upgraded libgme (0.6.3-5 -> 0.6.4-1)
[2025-03-25T06:26:15+0100] [ALPM] upgraded gst-plugins-bad-libs (1.26.0-1 -> 1.26.0-2)
[2025-03-25T06:26:15+0100] [ALPM] upgraded gst-libav (1.26.0-1 -> 1.26.0-2)
[2025-03-25T06:26:15+0100] [ALPM] upgraded gst-plugins-base-libs (1.26.0-1 -> 1.26.0-2)
[2025-03-25T06:26:15+0100] [ALPM] upgraded gstreamer (1.26.0-1 -> 1.26.0-2)
[2025-03-25T06:26:15+0100] [ALPM] upgraded eos-bash-shared (25.3.2-1 -> 25.3.4-1)
[2025-03-25T06:26:15+0100] [ALPM] upgraded python-dbus (1.3.2-5 -> 1.4.0-1)
[2025-03-25T06:26:15+0100] [ALPM] upgraded endeavouros-mirrorlist (25.3-1 -> 25.3.1-1)
[2025-03-25T06:26:15+0100] [ALPM] upgraded discord (0.0.88-2 -> 0.0.89-1)
[2025-03-25T06:26:13+0100] [ALPM] upgraded cpu-x (5.2.0-1 -> 5.2.0-2)
[2025-03-25T06:26:13+0100] [ALPM] upgraded gtkmm3 (3.24.9-1 -> 3.24.10-1)
[2025-03-25T06:26:13+0100] [ALPM] upgraded harfbuzz (10.4.0-1 -> 11.0.0-1)
[2025-03-25T06:26:13+0100] [ALPM] upgraded clucene (2.3.3.4-15 -> 2.3.3.4-16)
[2025-03-25T06:26:13+0100] [ALPM] upgraded tzdata (2025a-1 -> 2025b-1)
[2025-03-23T07:45:45+0100] [ALPM] upgraded brave-bin (1:1.76.74-1 -> 1:1.76.81-1)
[2025-03-23T07:45:45+0100] [ALPM] upgraded ferdium-bin (7.0.0-1 -> 7.0.0-2)
[2025-03-23T07:45:42+0100] [ALPM] upgraded vscodium-bin-debug (1.98.2.25072-1 -> 1.98.2.25078-1)
[2025-03-23T07:45:41+0100] [ALPM] upgraded vscodium-bin (1.98.2.25072-1 -> 1.98.2.25078-1)
[2025-03-23T07:45:41+0100] [ALPM] upgraded librewolf-bin-debug (1:136.0.1_1-1 -> 1:136.0.2_1-1)
[2025-03-23T07:45:41+0100] [ALPM] upgraded librewolf-bin (1:136.0.1_1-1 -> 1:136.0.2_1-1)
[2025-03-23T07:39:34+0100] [ALPM] upgraded zenity (4.0.5-1 -> 4.1.90-1)
[2025-03-23T07:39:34+0100] [ALPM] upgraded wine (10.3-1 -> 10.4-1)
[2025-03-23T07:39:31+0100] [ALPM] upgraded wget (1.25.0-1 -> 1.25.0-2)
[2025-03-23T07:39:31+0100] [ALPM] upgraded vlc (3.0.21-15 -> 3.0.21-16)
[2025-03-23T07:39:31+0100] [ALPM] upgraded re2 (1:20240702-3 -> 1:20240702-4)
[2025-03-23T07:39:31+0100] [ALPM] upgraded python-wheel (0.45.0-3 -> 0.45.1-1)
[2025-03-23T07:39:31+0100] [ALPM] upgraded python-matplotlib (3.10.0-1 -> 3.10.1-1)
[2025-03-23T07:39:31+0100] [ALPM] upgraded python-pyparsing (3.1.2-3 -> 3.2.1-1)
[2025-03-23T07:39:31+0100] [ALPM] upgraded python-numpy (2.2.3-1 -> 2.2.4-1)
[2025-03-23T07:39:31+0100] [ALPM] upgraded python-gobject (3.50.0-2 -> 3.52.3-2)
[2025-03-23T07:39:31+0100] [ALPM] upgraded python-filelock (3.17.0-1 -> 3.18.0-1)
[2025-03-23T07:39:31+0100] [ALPM] upgraded protobuf-c (1.5.1-1 -> 1.5.1-2)
[2025-03-23T07:39:31+0100] [ALPM] upgraded proj (9.5.1-1 -> 9.6.0-1)
[2025-03-23T07:39:31+0100] [ALPM] upgraded opencv (4.11.0-5 -> 4.11.0-7)
[2025-03-23T07:39:30+0100] [ALPM] upgraded nvidia-settings (570.124.04-1 -> 570.133.07-1)
[2025-03-23T07:39:30+0100] [ALPM] upgraded nvidia-open-dkms (570.124.04-1 -> 570.133.07-1)
[2025-03-23T07:39:30+0100] [ALPM] upgraded linux-g14-headers (6.13.6.arch1-1.1 -> 6.13.7.arch1-1.2)
[2025-03-23T07:39:28+0100] [ALPM] upgraded linux-g14 (6.13.6.arch1-1.1 -> 6.13.7.arch1-1.2)
[2025-03-23T07:39:27+0100] [ALPM] upgraded pkgconf (2.3.0-1 -> 2.4.3-1)
[2025-03-23T07:39:27+0100] [ALPM] upgraded linux-firmware (20250311.b69d4b74-2 -> 20250311.b69d4b74-3)
[2025-03-23T07:39:26+0100] [ALPM] upgraded linux-firmware-whence (20250311.b69d4b74-2 -> 20250311.b69d4b74-3)
[2025-03-23T07:39:26+0100] [ALPM] upgraded libzip (1.11.2-1 -> 1.11.3-1)
[2025-03-23T07:39:26+0100] [ALPM] upgraded libxnvctrl (570.124.04-1 -> 570.133.07-1)
[2025-03-23T07:39:26+0100] [ALPM] upgraded libvlc (3.0.21-15 -> 3.0.21-16)
[2025-03-23T07:39:26+0100] [ALPM] upgraded libidn (1.42-1 -> 1.43-1)
[2025-03-23T07:39:26+0100] [ALPM] upgraded libfabric (2.0.0-1 -> 2.1.0-1)
[2025-03-23T07:39:26+0100] [ALPM] upgraded libei (1.3.0-1 -> 1.4.0-1)
[2025-03-23T07:39:26+0100] [ALPM] upgraded libadwaita (1:1.6.5-1 -> 1:1.7.0-2)
[2025-03-23T07:39:26+0100] [ALPM] upgraded lib32-vulkan-radeon (1:25.0.1-2 -> 1:25.0.2-2)
[2025-03-23T07:39:26+0100] [ALPM] upgraded vulkan-radeon (1:25.0.1-2 -> 1:25.0.2-2)
[2025-03-23T07:39:26+0100] [ALPM] upgraded lib32-vulkan-icd-loader (1.4.304.1-1 -> 1.4.309.0-1)
[2025-03-23T07:39:26+0100] [ALPM] upgraded lib32-util-linux (2.40.4-1 -> 2.41-1)
[2025-03-23T07:39:26+0100] [ALPM] upgraded lib32-mesa (1:25.0.1-2 -> 1:25.0.2-2)
[2025-03-23T07:39:26+0100] [ALPM] upgraded lib32-nvidia-utils (570.124.04-1 -> 570.133.07-1)
[2025-03-23T07:39:25+0100] [ALPM] upgraded lib32-libx11 (1.8.11-1 -> 1.8.12-1)
[2025-03-23T07:39:25+0100] [ALPM] upgraded lact (0.7.1-1 -> 0.7.2-1)
[2025-03-23T07:39:25+0100] [ALPM] upgraded vulkan-tools (1.4.304.1-1 -> 1.4.309.0-1)
[2025-03-23T07:39:25+0100] [ALPM] upgraded kodi-gles (21.2-6 -> 21.2-9)
[2025-03-23T07:39:25+0100] [ALPM] upgraded pugixml (1.15-1 -> 1.15-2)
[2025-03-23T07:39:25+0100] [ALPM] upgraded tinyxml2 (10.1.0-1 -> 11.0.0-1)
[2025-03-23T07:39:25+0100] [ALPM] upgraded python-pycryptodomex (3.21.0-2 -> 3.22.0-1)
[2025-03-23T07:39:25+0100] [ALPM] upgraded libcec (6.0.2-6 -> 7.0.0-2)
[2025-03-23T07:39:25+0100] [ALPM] upgraded iptables-nft (1:1.8.10-2 -> 1:1.8.11-1)
[2025-03-23T07:39:25+0100] [ALPM] upgraded gtk4 (1:4.16.12-1 -> 1:4.18.2-1)
[2025-03-23T07:39:25+0100] [ALPM] upgraded gst-plugins-ugly (1.24.12-4 -> 1.26.0-1)
[2025-03-23T07:39:25+0100] [ALPM] upgraded gst-plugins-bad (1.24.12-4 -> 1.26.0-1)
[2025-03-23T07:39:25+0100] [ALPM] upgraded imagemagick (7.1.1.45-1 -> 7.1.1.46-1)
[2025-03-23T07:39:24+0100] [ALPM] upgraded libsrtp (1:2.6.0-1 -> 1:2.7.0-1)
[2025-03-23T07:39:24+0100] [ALPM] upgraded gst-libav (1.24.12-4 -> 1.26.0-1)
[2025-03-23T07:39:24+0100] [ALPM] upgraded gobject-introspection-runtime (1.82.0-3 -> 1.84.0-1)
[2025-03-23T07:39:24+0100] [ALPM] upgraded libgirepository (1.82.0-3 -> 1.84.0-1)
[2025-03-23T07:39:24+0100] [ALPM] upgraded glances (4.3.0.8-2 -> 4.3.1-1)
[2025-03-23T07:39:24+0100] [ALPM] upgraded fish (4.0.1-1 -> 4.0.1-2)
[2025-03-23T07:39:24+0100] [ALPM] upgraded firefox (136.0.1-1 -> 136.0.2-1)
[2025-03-23T07:39:23+0100] [ALPM] upgraded fakeroot (1.37-1 -> 1.37.1-1)
[2025-03-23T07:39:23+0100] [ALPM] upgraded eos-log-tool (24.12-1 -> 25.3-1)
[2025-03-23T07:39:23+0100] [ALPM] upgraded webkit2gtk-4.1 (2.46.6-2 -> 2.48.0-1)
[2025-03-23T07:39:23+0100] [ALPM] upgraded libmanette (0.2.11-1 -> 0.2.11-2)
[2025-03-23T07:39:23+0100] [ALPM] upgraded libjxl (0.11.1-1 -> 0.11.1-3)
[2025-03-23T07:39:23+0100] [ALPM] upgraded libavif (1.2.0-2 -> 1.2.1-1)
[2025-03-23T07:39:23+0100] [ALPM] upgraded gst-plugins-bad-libs (1.24.12-4 -> 1.26.0-1)
[2025-03-23T07:39:23+0100] [ALPM] upgraded mpfr (4.2.1-6 -> 4.2.2-1)
[2025-03-23T07:39:23+0100] [ALPM] upgraded libarchive (3.7.7-3 -> 3.7.7-4)
[2025-03-23T07:39:23+0100] [ALPM] upgraded dnsmasq (2.90-2 -> 2.91-1)
[2025-03-23T07:39:23+0100] [ALPM] upgraded discord (0.0.88-1 -> 0.0.88-2)
[2025-03-23T07:39:22+0100] [ALPM] upgraded cpu-x (5.1.3-1 -> 5.2.0-1)
[2025-03-23T07:39:22+0100] [ALPM] upgraded vulkan-icd-loader (1.4.304.1-1 -> 1.4.309.0-1)
[2025-03-23T07:39:22+0100] [ALPM] upgraded glibmm (2.66.7-1 -> 2.66.8-1)
[2025-03-23T07:39:22+0100] [ALPM] upgraded containerd (2.0.3-1 -> 2.0.4-1)
[2025-03-23T07:39:22+0100] [ALPM] upgraded runc (1.2.5-1 -> 1.2.6-1)
[2025-03-23T07:39:22+0100] [ALPM] upgraded cifs-utils (7.2-1 -> 7.3-1)
[2025-03-23T07:39:22+0100] [ALPM] upgraded chromium (134.0.6998.88-1 -> 134.0.6998.165-1)
[2025-03-23T07:39:21+0100] [ALPM] upgraded bluez-utils (5.79-1 -> 5.80-1)
[2025-03-23T07:39:21+0100] [ALPM] upgraded bluez-libs (5.79-1 -> 5.80-1)
[2025-03-23T07:39:21+0100] [ALPM] upgraded bluez (5.79-1 -> 5.80-1)
[2025-03-23T07:39:21+0100] [ALPM] upgraded bitwarden (2025.1.3-1 -> 2025.2.1-1)
[2025-03-23T07:39:21+0100] [ALPM] upgraded gst-plugins-base (1.24.12-4 -> 1.26.0-1)
[2025-03-23T07:39:21+0100] [ALPM] upgraded gst-plugins-base-libs (1.24.12-4 -> 1.26.0-1)
[2025-03-23T07:39:21+0100] [ALPM] upgraded gstreamer (1.24.12-4 -> 1.26.0-1)
[2025-03-23T07:39:21+0100] [ALPM] upgraded qt5-wayland (5.15.16+kde+r59-3 -> 5.15.16+kde+r60-1)
[2025-03-23T07:39:21+0100] [ALPM] upgraded vulkan-headers (1:1.4.304.1-2 -> 1:1.4.309.0-1)
[2025-03-23T07:39:21+0100] [ALPM] upgraded libsecret (0.21.6-1 -> 0.21.7-1)
[2025-03-23T07:39:20+0100] [ALPM] upgraded nvidia-utils (570.124.04-1 -> 570.133.07-1)
[2025-03-23T07:39:19+0100] [ALPM] upgraded mesa (1:25.0.1-2 -> 1:25.0.2-2)
[2025-03-23T07:39:19+0100] [ALPM] upgraded tinysparql (3.8.2-3 -> 3.9.1-1)
[2025-03-23T07:39:19+0100] [ALPM] upgraded libsoup3 (3.6.4-1 -> 3.6.5-1)
[2025-03-23T07:39:19+0100] [ALPM] upgraded gtk-update-icon-cache (1:4.16.12-1 -> 1:4.18.2-1)
[2025-03-23T07:39:19+0100] [ALPM] upgraded librsvg (2:2.59.2-1 -> 2:2.60.0-1)
[2025-03-23T07:39:19+0100] [ALPM] upgraded pango (1:1.56.2-1 -> 1:1.56.3-1)
[2025-03-23T07:39:19+0100] [ALPM] upgraded bind (9.20.6-1 -> 9.20.7-1)
[2025-03-23T07:39:19+0100] [ALPM] upgraded at-spi2-core (2.54.1-1 -> 2.56.0-1)
[2025-03-23T07:39:19+0100] [ALPM] upgraded gsettings-desktop-schemas (47.1-1 -> 48.0-1)
[2025-03-23T07:39:19+0100] [ALPM] upgraded gsettings-system-schemas (47.1-1 -> 48.0-1)
[2025-03-23T07:39:19+0100] [ALPM] upgraded libsysprof-capture (47.2-3 -> 48.0-1)
[2025-03-23T07:39:19+0100] [ALPM] upgraded archlinux-appstream-data (20250202-1 -> 20250317-1)
[2025-03-23T07:39:18+0100] [ALPM] upgraded android-tools (35.0.2-12 -> 35.0.2-14)
[2025-03-23T07:39:18+0100] [ALPM] upgraded libusb (1.0.27-1 -> 1.0.28-1)
[2025-03-23T07:39:18+0100] [ALPM] upgraded util-linux (2.40.4-1 -> 2.41-2)
[2025-03-23T07:39:18+0100] [ALPM] upgraded shadow (4.17.3-1 -> 4.17.4-1)
[2025-03-23T07:39:18+0100] [ALPM] upgraded protobuf (30.0-3 -> 30.1-1)
[2025-03-23T07:39:18+0100] [ALPM] upgraded amd-ucode (20250311.b69d4b74-2 -> 20250311.b69d4b74-3)
[2025-03-23T07:39:18+0100] [ALPM] upgraded adwaita-icon-theme (47.0-1 -> 48.0-1)
[2025-03-23T07:39:18+0100] [ALPM] upgraded adwaita-cursors (47.0-1 -> 48.0-1)
[2025-03-23T07:39:18+0100] [ALPM] upgraded abseil-cpp (20250127.0-2 -> 20250127.1-1)
[2025-03-23T07:39:17+0100] [ALPM] upgraded util-linux-libs (2.40.4-1 -> 2.41-2)
[2025-03-16T12:51:31+0100] [ALPM] upgraded polychromatic (0.9.3-1 -> 0.9.4-1)
[2025-03-16T12:51:31+0100] [ALPM] upgraded vscodium-bin-debug (1.98.1.25070-1 -> 1.98.2.25072-1)
[2025-03-16T12:51:31+0100] [ALPM] upgraded vscodium-bin (1.98.1.25070-1 -> 1.98.2.25072-1)
[2025-03-16T12:45:43+0100] [ALPM] upgraded zvbi (0.2.43-1 -> 0.2.44-1)
[2025-03-16T12:45:43+0100] [ALPM] upgraded welcome (25-1 -> 25.3-1)
[2025-03-16T12:45:43+0100] [ALPM] upgraded vlc (3.0.21-14 -> 3.0.21-15)
[2025-03-16T12:45:42+0100] [ALPM] upgraded threadweaver (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:42+0100] [ALPM] upgraded purpose (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:42+0100] [ALPM] upgraded protobuf-c (1.5.0-11 -> 1.5.1-1)
[2025-03-16T12:45:42+0100] [ALPM] upgraded prison (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:42+0100] [ALPM] upgraded poppler-qt5 (25.02.0-2 -> 25.03.0-1)
[2025-03-16T12:45:42+0100] [ALPM] upgraded poppler-glib (25.02.0-2 -> 25.03.0-1)
[2025-03-16T12:45:42+0100] [ALPM] upgraded pipewire-pulse (1:1.4.0-2 -> 1:1.4.1-1)
[2025-03-16T12:45:42+0100] [ALPM] upgraded pipewire-alsa (1:1.4.0-2 -> 1:1.4.1-1)
[2025-03-16T12:45:42+0100] [ALPM] upgraded pacutils (0.14.0-3 -> 0.15.0-1)
[2025-03-16T12:45:42+0100] [ALPM] upgraded opencv (4.11.0-4 -> 4.11.0-5)
[2025-03-16T12:45:42+0100] [ALPM] upgraded networkmanager-qt (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:42+0100] [ALPM] upgraded modemmanager-qt (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:42+0100] [ALPM] upgraded linux-lts-headers (6.12.18-1 -> 6.12.19-1)
[2025-03-16T12:45:40+0100] [ALPM] upgraded linux-lts (6.12.18-1 -> 6.12.19-1)
[2025-03-16T12:45:39+0100] [ALPM] upgraded linux-headers (6.13.6.arch1-1 -> 6.13.7.arch1-1)
[2025-03-16T12:45:38+0100] [ALPM] upgraded linux-g14-headers (6.13.4.arch1-1.7 -> 6.13.6.arch1-1.1)
[2025-03-16T12:45:36+0100] [ALPM] upgraded linux-g14 (6.13.4.arch1-1.7 -> 6.13.6.arch1-1.1)
[2025-03-16T12:45:35+0100] [ALPM] upgraded linux (6.13.6.arch1-1 -> 6.13.7.arch1-1)
[2025-03-16T12:45:34+0100] [ALPM] upgraded libvlc (3.0.21-14 -> 3.0.21-15)
[2025-03-16T12:45:34+0100] [ALPM] upgraded libreoffice-fresh (25.2.1-2 -> 25.2.1-3)
[2025-03-16T12:45:33+0100] [ALPM] upgraded libmanette (0.2.9-2 -> 0.2.11-1)
[2025-03-16T12:45:33+0100] [ALPM] upgraded libcamera (0.3.2-3 -> 0.4.0-1)
[2025-03-16T12:45:33+0100] [ALPM] upgraded libcamera-ipa (0.3.2-3 -> 0.4.0-1)
[2025-03-16T12:45:33+0100] [ALPM] upgraded libadwaita (1:1.6.4-1 -> 1:1.6.5-1)
[2025-03-16T12:45:33+0100] [ALPM] upgraded lib32-vulkan-radeon (1:24.3.4-1 -> 1:25.0.1-2)
[2025-03-16T12:45:33+0100] [ALPM] upgraded vulkan-radeon (1:24.3.4-1 -> 1:25.0.1-2)
[2025-03-16T12:45:33+0100] [ALPM] upgraded lib32-mesa (1:24.3.4-1 -> 1:25.0.1-2)
[2025-03-16T12:45:33+0100] [ALPM] upgraded lib32-spirv-tools (1:1.4.304.1-2 -> 1:1.4.309.0-1)
[2025-03-16T12:45:33+0100] [ALPM] upgraded lib32-libxkbcommon (1.8.0-1 -> 1.8.1-1)
[2025-03-16T12:45:31+0100] [ALPM] upgraded lib32-fontconfig (2:2.16.0-2 -> 2:2.16.1-1)
[2025-03-16T12:45:31+0100] [ALPM] upgraded lib32-expat (2.6.4-1 -> 2.7.0-1)
[2025-03-16T12:45:31+0100] [ALPM] upgraded lact (0.7.0-2 -> 0.7.1-1)
[2025-03-16T12:45:31+0100] [ALPM] upgraded kuserfeedback (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:31+0100] [ALPM] upgraded kunitconversion (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:31+0100] [ALPM] upgraded ktextwidgets (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded ktexteditor (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded syntax-highlighting (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded ksvg (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded kstatusnotifieritem (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded krunner (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded kquickcharts (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded kpeople (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded kparts (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded knotifyconfig (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded kitemmodels (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded kholidays (1:6.11.0-1 -> 1:6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded kdnssd (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded kdesu (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded kpty (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded kded (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded kcontacts (1:6.11.0-1 -> 1:6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded haruna (1.3.3-1 -> 1.3.3-2)
[2025-03-16T12:45:30+0100] [ALPM] upgraded libsixel (1.10.3-7 -> 1.10.5-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded qqc2-desktop-style (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded sonnet (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded kdeclarative (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded gst-plugin-pipewire (1:1.4.0-2 -> 1:1.4.1-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded goverlay (1.3_2-1 -> 1.3_3-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded git (2.48.1-2 -> 2.49.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded gdal (3.10.2-1 -> 3.10.2-2)
[2025-03-16T12:45:30+0100] [ALPM] upgraded gamescope (3.16.1-1 -> 3.16.2-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded frameworkintegration (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded knewstuff (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded syndication (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded kpackage (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded kcmutils (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded kxmlgui (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded kglobalaccel (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded kirigami (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded kconfigwidgets (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded eos-rankmirrors (25.2-1 -> 25.3-1)
[2025-03-16T12:45:30+0100] [ALPM] upgraded libarchive (3.7.7-2 -> 3.7.7-3)
[2025-03-16T12:45:30+0100] [ALPM] upgraded docker-compose (2.33.1-1 -> 2.34.0-1)
[2025-03-16T12:45:29+0100] [ALPM] upgraded chromaprint (1.5.1-9 -> 1.5.1-10)
[2025-03-16T12:45:29+0100] [ALPM] upgraded cfitsio (1:4.5.0-1 -> 1:4.6.0-4)
[2025-03-16T12:45:29+0100] [ALPM] upgraded bluez-qt (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:29+0100] [ALPM] upgraded baloo (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:29+0100] [ALPM] upgraded kio (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:29+0100] [ALPM] upgraded solid (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:29+0100] [ALPM] upgraded libxslt (1.1.42-2 -> 1.1.43-1)
[2025-03-16T12:45:29+0100] [ALPM] upgraded kwallet (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:29+0100] [ALPM] upgraded kservice (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:29+0100] [ALPM] upgraded kjobwidgets (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:29+0100] [ALPM] upgraded knotifications (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:29+0100] [ALPM] upgraded kitemviews (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:29+0100] [ALPM] upgraded kiconthemes (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:29+0100] [ALPM] upgraded breeze-icons (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded kcompletion (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded kcolorscheme (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded kguiaddons (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded kbookmarks (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded kwidgetsaddons (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded kauth (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded kwindowsystem (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded kidletime (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded kfilemetadata (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded shaderc (2024.4-1 -> 2025.1-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded svt-av1 (3.0.0-1 -> 3.0.1-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded pipewire-jack (1:1.4.0-2 -> 1:1.4.1-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded pipewire-audio (1:1.4.0-2 -> 1:1.4.1-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded pipewire (1:1.4.0-2 -> 1:1.4.1-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded libpipewire (1:1.4.0-2 -> 1:1.4.1-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded poppler-qt6 (25.02.0-2 -> 25.03.0-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded poppler (25.02.0-2 -> 25.03.0-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded cairo (1.18.2-2 -> 1.18.4-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded ki18n (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded kcodecs (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded karchive (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded kdbusaddons (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded kcrash (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded kcoreaddons (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded kconfig (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded attica (6.11.0-1 -> 6.12.0-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded libxkbcommon-x11 (1.8.0-1 -> 1.8.1-1)
[2025-03-16T12:45:27+0100] [ALPM] upgraded mesa (1:24.3.4-1 -> 1:25.0.1-2)
[2025-03-16T12:45:26+0100] [ALPM] upgraded spirv-tools (1:1.4.304.1-2 -> 1:1.4.309.0-1)
[2025-03-16T12:45:26+0100] [ALPM] upgraded libxkbcommon (1.8.0-1 -> 1.8.1-1)
[2025-03-16T12:45:24+0100] [ALPM] upgraded fontconfig (2:2.16.0-2 -> 2:2.16.1-1)
[2025-03-16T12:45:24+0100] [ALPM] upgraded android-tools (35.0.2-11 -> 35.0.2-12)
[2025-03-16T12:45:24+0100] [ALPM] upgraded android-udev (20241109-1 -> 20250314-1)
[2025-03-16T12:45:24+0100] [ALPM] upgraded libseccomp (2.5.5-4 -> 2.5.6-1)
[2025-03-16T12:45:24+0100] [ALPM] upgraded protobuf (29.3-1 -> 30.0-3)
[2025-03-16T12:45:24+0100] [ALPM] upgraded gtest (1.16.0-1 -> 1.16.0-2)
[2025-03-16T12:45:24+0100] [ALPM] upgraded alsa-card-profiles (1:1.4.0-2 -> 1:1.4.1-1)
[2025-03-16T12:45:24+0100] [ALPM] upgraded expat (2.6.4-1 -> 2.7.0-1)
[2025-03-13T15:53:09+0100] [ALPM] upgraded librewolf-bin-debug (1:136.0.0_2-1 -> 1:136.0.1_1-1)
[2025-03-13T15:53:09+0100] [ALPM] upgraded librewolf-bin (1:136.0.0_2-1 -> 1:136.0.1_1-1)
[2025-03-13T15:53:07+0100] [ALPM] upgraded vscodium-bin-debug (1.97.2.25045-1 -> 1.98.1.25070-1)
[2025-03-13T15:53:07+0100] [ALPM] upgraded vscodium-bin (1.97.2.25045-1 -> 1.98.1.25070-1)
[2025-03-13T15:53:05+0100] [ALPM] upgraded mdatp-bin-debug (101.24122.0008-0 -> 101.25012.0000-0)
[2025-03-13T15:53:04+0100] [ALPM] upgraded mdatp-bin (101.24122.0008-0 -> 101.25012.0000-0)
[2025-03-13T15:53:02+0100] [ALPM] upgraded brave-bin (1:1.76.73-1 -> 1:1.76.74-1)
[2025-03-13T15:42:25+0100] [ALPM] upgraded xorg-xinit (1.4.3-1 -> 1.4.4-1)
[2025-03-13T15:42:25+0100] [ALPM] upgraded wine (10.2-2 -> 10.3-1)
[2025-03-13T15:42:22+0100] [ALPM] upgraded vim (9.1.1165-1 -> 9.1.1198-1)
[2025-03-13T15:42:22+0100] [ALPM] upgraded vim-runtime (9.1.1165-1 -> 9.1.1198-1)
[2025-03-13T15:42:22+0100] [ALPM] upgraded spectacle (1:6.3.2.1-1 -> 1:6.3.3-1)
[2025-03-13T15:42:22+0100] [ALPM] upgraded sddm-kcm (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:22+0100] [ALPM] upgraded xorg-xauth (1.1.3-1 -> 1.1.4-1)
[2025-03-13T15:42:22+0100] [ALPM] upgraded protobuf-c (1.5.0-10 -> 1.5.0-11)
[2025-03-13T15:42:22+0100] [ALPM] upgraded print-manager (1:6.3.2-1 -> 1:6.3.3-1)
[2025-03-13T15:42:22+0100] [ALPM] upgraded plasma5-integration (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:22+0100] [ALPM] upgraded plasma-vault (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:22+0100] [ALPM] upgraded plasma-systemmonitor (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:22+0100] [ALPM] upgraded plasma-pa (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:22+0100] [ALPM] upgraded plasma-nm (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:22+0100] [ALPM] upgraded plasma-firewall (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:22+0100] [ALPM] upgraded plasma-disks (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:22+0100] [ALPM] upgraded plasma-desktop (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:21+0100] [ALPM] upgraded powerdevil (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:21+0100] [ALPM] upgraded polkit-kde-agent (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:21+0100] [ALPM] upgraded plasma-browser-integration (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:21+0100] [ALPM] upgraded pipewire-pulse (1:1.2.7-1 -> 1:1.4.0-2)
[2025-03-13T15:42:21+0100] [ALPM] upgraded pipewire-alsa (1:1.2.7-1 -> 1:1.4.0-2)
[2025-03-13T15:42:21+0100] [ALPM] upgraded perl-libwww (6.77-2 -> 6.78-1)
[2025-03-13T15:42:21+0100] [ALPM] upgraded perl-error (0.17029-7 -> 0.17030-1)
[2025-03-13T15:42:21+0100] [ALPM] upgraded pacman-mirrorlist (20250101-1 -> 20250311-1)
[2025-03-13T15:42:21+0100] [ALPM] upgraded opencv (4.11.0-3 -> 4.11.0-4)
[2025-03-13T15:42:21+0100] [ALPM] upgraded mpv (1:0.39.0-4 -> 1:0.39.0-5)
[2025-03-13T15:42:21+0100] [ALPM] upgraded mangohud (0.8.0-3 -> 0.8.1-1)
[2025-03-13T15:42:21+0100] [ALPM] upgraded man-pages (6.12-1 -> 6.13-1)
[2025-03-13T15:42:21+0100] [ALPM] upgraded linux-lts-headers (6.12.17-1 -> 6.12.18-1)
[2025-03-13T15:42:18+0100] [ALPM] upgraded linux-lts (6.12.17-1 -> 6.12.18-1)
[2025-03-13T15:42:17+0100] [ALPM] upgraded linux-headers (6.13.5.arch1-1 -> 6.13.6.arch1-1)
[2025-03-13T15:42:15+0100] [ALPM] upgraded linux-firmware (20250210.5bc5868b-1 -> 20250311.b69d4b74-2)
[2025-03-13T15:42:14+0100] [ALPM] upgraded linux-firmware-whence (20250210.5bc5868b-1 -> 20250311.b69d4b74-2)
[2025-03-13T15:42:14+0100] [ALPM] upgraded linux (6.13.5.arch1-1 -> 6.13.6.arch1-1)
[2025-03-13T15:42:14+0100] [ALPM] upgraded libcamera (0.3.2-2 -> 0.3.2-3)
[2025-03-13T15:42:14+0100] [ALPM] upgraded libcamera-ipa (0.3.2-2 -> 0.3.2-3)
[2025-03-13T15:42:14+0100] [ALPM] upgraded libavif (1.2.0-1 -> 1.2.0-2)
[2025-03-13T15:42:14+0100] [ALPM] upgraded lib32-sqlite (3.48.0-2 -> 3.49.1-1)
[2025-03-13T15:42:14+0100] [ALPM] upgraded lib32-mangohud (0.8.0-2 -> 0.8.1-1)
[2025-03-13T15:42:14+0100] [ALPM] upgraded lib32-libxshmfence (1.3.2-2 -> 1.3.3-1)
[2025-03-13T15:42:13+0100] [ALPM] upgraded lib32-libunistring (1.2-1 -> 1.3-1)
[2025-03-13T15:42:13+0100] [ALPM] upgraded lib32-libtasn1 (4.19.0-2 -> 4.20.0-1)
[2025-03-13T15:42:13+0100] [ALPM] upgraded lib32-libssh2 (1.11.0-2 -> 1.11.1-1)
[2025-03-13T15:42:13+0100] [ALPM] upgraded lib32-libcap (2.71-1 -> 2.75-1)
[2025-03-13T15:42:13+0100] [ALPM] upgraded lib32-pam (1.6.1-1 -> 1.7.0-1)
[2025-03-13T15:42:13+0100] [ALPM] upgraded lib32-glib2 (2.82.5-1 -> 2.84.0-1)
[2025-03-13T15:42:13+0100] [ALPM] upgraded lib32-gettext (0.22.5-1 -> 0.24-1)
[2025-03-13T15:42:13+0100] [ALPM] upgraded kwayland-integration (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:13+0100] [ALPM] upgraded kwallet-pam (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:13+0100] [ALPM] upgraded kscreen (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:13+0100] [ALPM] upgraded kodi-gles (21.2-5 -> 21.2-6)
[2025-03-13T15:42:13+0100] [ALPM] upgraded tinyxml2 (10.0.0-1 -> 10.1.0-1)
[2025-03-13T15:42:13+0100] [ALPM] upgraded kmenuedit (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:13+0100] [ALPM] upgraded kinfocenter (6.3.2-2 -> 6.3.3-1)
[2025-03-13T15:42:13+0100] [ALPM] upgraded systemsettings (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:13+0100] [ALPM] upgraded kgamma (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:13+0100] [ALPM] upgraded kdeplasma-addons (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:13+0100] [ALPM] upgraded plasma-workspace (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:12+0100] [ALPM] upgraded vlc (3.0.21-13 -> 3.0.21-14)
[2025-03-13T15:42:12+0100] [ALPM] upgraded libvlc (3.0.21-13 -> 3.0.21-14)
[2025-03-13T15:42:12+0100] [ALPM] upgraded smbclient (2:4.21.4-1 -> 2:4.22.0-1)
[2025-03-13T15:42:12+0100] [ALPM] upgraded libwbclient (2:4.21.4-1 -> 2:4.22.0-1)
[2025-03-13T15:42:12+0100] [ALPM] upgraded libarchive (3.7.7-1 -> 3.7.7-2)
[2025-03-13T15:42:12+0100] [ALPM] upgraded ldb (2:4.21.4-1 -> 2:4.22.0-1)
[2025-03-13T15:42:12+0100] [ALPM] upgraded plasma-integration (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:12+0100] [ALPM] upgraded xdg-desktop-portal-kde (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:12+0100] [ALPM] upgraded qqc2-breeze-style (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:12+0100] [ALPM] upgraded plasma5support (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:12+0100] [ALPM] upgraded plasma-activities-stats (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:12+0100] [ALPM] upgraded ocean-sound-theme (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:12+0100] [ALPM] upgraded milou (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:12+0100] [ALPM] upgraded ksystemstats (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:12+0100] [ALPM] upgraded libksysguard (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:12+0100] [ALPM] upgraded kpipewire (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:11+0100] [ALPM] upgraded kwin (6.3.2.1-4 -> 6.3.3.1-1)
[2025-03-13T15:42:11+0100] [ALPM] upgraded kwayland (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:11+0100] [ALPM] upgraded kscreenlocker (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:11+0100] [ALPM] upgraded libkscreen (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:11+0100] [ALPM] upgraded layer-shell-qt (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:11+0100] [ALPM] upgraded kglobalacceld (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:11+0100] [ALPM] upgraded kde-gtk-config (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:11+0100] [ALPM] upgraded kde-cli-tools (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:11+0100] [ALPM] upgraded libutempter (1.2.1-4 -> 1.2.3-1)
[2025-03-13T15:42:11+0100] [ALPM] upgraded kactivitymanagerd (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:11+0100] [ALPM] upgraded htop (3.3.0-3 -> 3.4.0-1)
[2025-03-13T15:42:11+0100] [ALPM] upgraded gst-plugins-ugly (1.24.12-3 -> 1.24.12-4)
[2025-03-13T15:42:11+0100] [ALPM] upgraded gst-plugins-bad (1.24.12-3 -> 1.24.12-4)
[2025-03-13T15:42:11+0100] [ALPM] upgraded imagemagick (7.1.1.44-1 -> 7.1.1.45-1)
[2025-03-13T15:42:11+0100] [ALPM] upgraded gst-plugin-pipewire (1:1.2.7-1 -> 1:1.4.0-2)
[2025-03-13T15:42:11+0100] [ALPM] upgraded gst-libav (1.24.12-3 -> 1.24.12-4)
[2025-03-13T15:42:11+0100] [ALPM] upgraded glibmm-2.68 (2.82.0-1 -> 2.84.0-1)
[2025-03-13T15:42:11+0100] [ALPM] upgraded ghostscript (10.04.0-1 -> 10.05.0-1)
[2025-03-13T15:42:11+0100] [ALPM] upgraded fish (4.0.0-2 -> 4.0.1-1)
[2025-03-13T15:42:11+0100] [ALPM] upgraded firefox (136.0-1 -> 136.0.1-1)
[2025-03-13T15:42:10+0100] [ALPM] upgraded ffmpeg4.4 (4.4.5-2 -> 4.4.5-3)
[2025-03-13T15:42:10+0100] [ALPM] upgraded faac (1.30-5 -> 1.31.1-1)
[2025-03-13T15:42:10+0100] [ALPM] upgraded endeavouros-mirrorlist (25.2.2-1 -> 25.3-1)
[2025-03-13T15:42:10+0100] [ALPM] upgraded electron33 (33.4.2-1 -> 33.4.3-1)
[2025-03-13T15:42:09+0100] [ALPM] upgraded dkms (3.1.5-1 -> 3.1.6-1)
[2025-03-13T15:42:09+0100] [ALPM] upgraded discover (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:09+0100] [ALPM] upgraded re2 (1:20240702-2 -> 1:20240702-3)
[2025-03-13T15:42:09+0100] [ALPM] upgraded ffmpeg (2:7.1-6 -> 2:7.1-7)
[2025-03-13T15:42:09+0100] [ALPM] upgraded svt-av1 (2.3.0-1 -> 3.0.0-1)
[2025-03-13T15:42:09+0100] [ALPM] upgraded pipewire-jack (1:1.2.7-1 -> 1:1.4.0-2)
[2025-03-13T15:42:09+0100] [ALPM] upgraded pipewire-audio (1:1.2.7-1 -> 1:1.4.0-2)
[2025-03-13T15:42:09+0100] [ALPM] upgraded libfreeaptx (0.1.1-2 -> 0.2.2-1)
[2025-03-13T15:42:09+0100] [ALPM] upgraded pipewire (1:1.2.7-1 -> 1:1.4.0-2)
[2025-03-13T15:42:09+0100] [ALPM] upgraded libpipewire (1:1.2.7-1 -> 1:1.4.0-2)
[2025-03-13T15:42:09+0100] [ALPM] upgraded gst-plugins-bad-libs (1.24.12-3 -> 1.24.12-4)
[2025-03-13T15:42:09+0100] [ALPM] upgraded libxmlb (0.3.21-1 -> 0.3.22-1)
[2025-03-13T15:42:09+0100] [ALPM] upgraded cpu-x (5.1.2-1 -> 5.1.3-1)
[2025-03-13T15:42:09+0100] [ALPM] upgraded chromium (134.0.6998.35-1 -> 134.0.6998.88-1)
[2025-03-13T15:42:07+0100] [ALPM] upgraded gtk3 (1:3.24.48-2 -> 1:3.24.49-1)
[2025-03-13T15:42:07+0100] [ALPM] upgraded breeze5 (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:07+0100] [ALPM] upgraded qca-qt5 (2.3.9-4 -> 2.3.10-1)
[2025-03-13T15:42:07+0100] [ALPM] upgraded gst-plugins-base (1.24.12-3 -> 1.24.12-4)
[2025-03-13T15:42:07+0100] [ALPM] upgraded gst-plugins-base-libs (1.24.12-3 -> 1.24.12-4)
[2025-03-13T15:42:06+0100] [ALPM] upgraded gstreamer (1.24.12-3 -> 1.24.12-4)
[2025-03-13T15:42:06+0100] [ALPM] upgraded pango (1:1.56.1-1 -> 1:1.56.2-1)
[2025-03-13T15:42:06+0100] [ALPM] upgraded breeze-gtk (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:06+0100] [ALPM] upgraded breeze (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:06+0100] [ALPM] upgraded kdecoration (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:06+0100] [ALPM] upgraded bluedevil (1:6.3.2-1 -> 1:6.3.3-1)
[2025-03-13T15:42:05+0100] [ALPM] upgraded libplasma (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:05+0100] [ALPM] upgraded qca-qt6 (2.3.9-4 -> 2.3.10-1)
[2025-03-13T15:42:05+0100] [ALPM] upgraded plasma-activities (6.3.2-1 -> 6.3.3-1)
[2025-03-13T15:42:05+0100] [ALPM] upgraded libsm (1.2.5-1 -> 1.2.6-1)
[2025-03-13T15:42:05+0100] [ALPM] upgraded glib2 (2.82.5-1 -> 2.84.0-1)
[2025-03-13T15:42:05+0100] [ALPM] upgraded libx11 (1.8.11-1 -> 1.8.12-1)
[2025-03-13T15:42:05+0100] [ALPM] upgraded android-tools (35.0.2-10 -> 35.0.2-11)
[2025-03-13T15:42:05+0100] [ALPM] upgraded libcap (2.71-1 -> 2.75-1)
[2025-03-13T15:42:04+0100] [ALPM] upgraded bash (5.2.037-1 -> 5.2.037-2)
[2025-03-13T15:42:04+0100] [ALPM] upgraded protobuf (29.2-1 -> 29.3-1)
[2025-03-13T15:42:04+0100] [ALPM] upgraded amd-ucode (20250210.5bc5868b-1 -> 20250311.b69d4b74-2)
[2025-03-13T15:42:04+0100] [ALPM] upgraded alsa-card-profiles (1:1.2.7-1 -> 1:1.4.0-2)
[2025-03-13T15:42:04+0100] [ALPM] upgraded abseil-cpp (20240722.1-1 -> 20250127.0-2)
[2025-03-13T15:42:04+0100] [ALPM] upgraded gtest (1.15.2-1 -> 1.16.0-1)
[2025-03-11T06:45:08+0100] [ALPM] upgraded discord (0.0.87-1 -> 0.0.88-1)
[2025-03-07T14:56:05+0100] [ALPM] upgraded librewolf-bin-debug (135.0.1-1 -> 1:136.0.0_2-1)
[2025-03-07T14:56:05+0100] [ALPM] upgraded librewolf-bin (135.0.1-1 -> 1:136.0.0_2-1)
[2025-03-07T14:56:05+0100] [ALPM] upgraded brave-bin (1:1.75.181-1 -> 1:1.76.73-1)
[2025-03-07T14:54:31+0100] [ALPM] upgraded systemd-sysvcompat (257.3-1 -> 257.4-1)
[2025-03-07T14:54:31+0100] [ALPM] upgraded systemd-resolvconf (257.3-1 -> 257.4-1)
[2025-03-07T14:54:31+0100] [ALPM] upgraded supergfxctl (5.2.7-1 -> 5.2.7-2)
[2025-03-07T14:54:31+0100] [ALPM] upgraded python-simplejson (3.19.3-1 -> 3.20.1-1)
[2025-03-07T14:54:31+0100] [ALPM] upgraded python-setproctitle (1.3.4-1 -> 1.3.5-1)
[2025-03-07T14:54:31+0100] [ALPM] upgraded python-cryptography (44.0.1-1 -> 44.0.2-1)
[2025-03-07T14:54:31+0100] [ALPM] upgraded partitionmanager (24.12.2-1 -> 24.12.3-1)
[2025-03-07T14:54:31+0100] [ALPM] upgraded openmpi (5.0.7-1 -> 5.0.7-2)
[2025-03-07T14:54:31+0100] [ALPM] upgraded openucx (1.18.0-1 -> 1.18.0-2)
[2025-03-07T14:54:31+0100] [ALPM] upgraded okular (24.12.2-1 -> 24.12.3-1)
[2025-03-07T14:54:31+0100] [ALPM] upgraded lib32-systemd (257.3-1 -> 257.4-1)
[2025-03-07T14:54:31+0100] [ALPM] upgraded kwin (6.3.2.1-1 -> 6.3.2.1-4)
[2025-03-07T14:54:31+0100] [ALPM] upgraded ksystemlog (24.12.2-1 -> 24.12.3-1)
[2025-03-07T14:54:31+0100] [ALPM] upgraded krita (5.2.9-1 -> 5.2.9-2)
[2025-03-07T14:54:30+0100] [ALPM] upgraded quazip-qt5 (1.4-1 -> 1.5-1)
[2025-03-07T14:54:30+0100] [ALPM] upgraded libkdcraw5 (24.12.2-1 -> 24.12.3-1)
[2025-03-07T14:54:30+0100] [ALPM] upgraded kpmcore (24.12.2-1 -> 24.12.3-1)
[2025-03-07T14:54:30+0100] [ALPM] upgraded konsole (24.12.2-2 -> 24.12.3-1)
[2025-03-07T14:54:30+0100] [ALPM] upgraded kio-admin (24.12.2-1 -> 24.12.3-1)
[2025-03-07T14:54:30+0100] [ALPM] upgraded kdenlive (24.12.2-1 -> 24.12.3-1)
[2025-03-07T14:54:30+0100] [ALPM] upgraded kdeconnect (24.12.2-1 -> 24.12.3-1)
[2025-03-07T14:54:30+0100] [ALPM] upgraded kcolorchooser (24.12.2-1 -> 24.12.3-1)
[2025-03-07T14:54:30+0100] [ALPM] upgraded kcalc (24.12.2-1 -> 24.12.3-1)
[2025-03-07T14:54:30+0100] [ALPM] upgraded kate (24.12.2-1 -> 24.12.3-1)
[2025-03-07T14:54:29+0100] [ALPM] upgraded hwloc (2.11.2-1 -> 2.12.0-1)
[2025-03-07T14:54:29+0100] [ALPM] upgraded hwinfo (23.3-1 -> 23.3-3)
[2025-03-07T14:54:29+0100] [ALPM] upgraded libx86emu (3.5-4 -> 3.7-1)
[2025-03-07T14:54:29+0100] [ALPM] upgraded hwdetect (2025.02.22.1946-1 -> 2025.03.06.1935-1)
[2025-03-07T14:54:29+0100] [ALPM] upgraded gwenview (24.12.2-1 -> 24.12.3-1)
[2025-03-07T14:54:29+0100] [ALPM] upgraded kaccounts-integration (24.12.2-1 -> 24.12.3-1)
[2025-03-07T14:54:29+0100] [ALPM] upgraded signon-kwallet-extension (24.12.2-1 -> 24.12.3-1)
[2025-03-07T14:54:29+0100] [ALPM] upgraded libkdcraw (24.12.2-1 -> 24.12.3-1)
[2025-03-07T14:54:29+0100] [ALPM] upgraded goverlay (1.3-1 -> 1.3_2-1)
[2025-03-07T14:54:29+0100] [ALPM] upgraded fzf (0.60.2-1 -> 0.60.3-1)
[2025-03-07T14:54:29+0100] [ALPM] upgraded fmt (11.1.3-1 -> 11.1.4-1)
[2025-03-07T14:54:29+0100] [ALPM] upgraded firefox (135.0.1-1 -> 136.0-1)
[2025-03-07T14:54:29+0100] [ALPM] upgraded exfatprogs (1.2.7-1 -> 1.2.8-1)
[2025-03-07T14:54:29+0100] [ALPM] upgraded eos-bash-shared (25.3.1-1 -> 25.3.2-1)
[2025-03-07T14:54:29+0100] [ALPM] upgraded gawk (5.3.1-1 -> 5.3.1-2)
[2025-03-07T14:54:29+0100] [ALPM] upgraded eos-translations (25.2-1 -> 25.3.0-1)
[2025-03-07T14:54:29+0100] [ALPM] upgraded ell (0.73-1 -> 0.74-1)
[2025-03-07T14:54:29+0100] [ALPM] upgraded dolphin-plugins (24.12.2-1 -> 24.12.3-1)
[2025-03-07T14:54:29+0100] [ALPM] upgraded dolphin (24.12.2-1 -> 24.12.3-1)
[2025-03-07T14:54:29+0100] [ALPM] upgraded kio-extras (24.12.2-1 -> 24.12.3-1)
[2025-03-07T14:54:28+0100] [ALPM] upgraded faad2 (2.11.1-1 -> 2.11.2-1)
[2025-03-07T14:54:28+0100] [ALPM] upgraded libkexiv2 (24.12.2-1 -> 24.12.3-1)
[2025-03-07T14:54:28+0100] [ALPM] upgraded docker (1:28.0.0-1 -> 1:28.0.1-1)
[2025-03-07T14:54:28+0100] [ALPM] upgraded diffutils (3.11-1 -> 3.11-2)
[2025-03-07T14:54:28+0100] [ALPM] upgraded chromium (133.0.6943.141-1 -> 134.0.6998.35-1)
[2025-03-07T14:54:28+0100] [ALPM] upgraded baloo-widgets (24.12.2-1 -> 24.12.3-1)
[2025-03-07T14:54:28+0100] [ALPM] upgraded ark (24.12.2-1 -> 24.12.3-1)
[2025-03-07T14:54:28+0100] [ALPM] upgraded sdl3 (3.2.6-1 -> 3.2.8-1)
[2025-03-07T14:54:28+0100] [ALPM] upgraded egl-wayland (4:1.1.17-1 -> 4:1.1.18-1)
[2025-03-07T14:54:27+0100] [ALPM] upgraded systemd (257.3-1 -> 257.4-1)
[2025-03-07T14:54:27+0100] [ALPM] upgraded coreutils (9.6-3 -> 9.6-4)
[2025-03-07T14:54:26+0100] [ALPM] upgraded hwdata (0.392-1 -> 0.393-1)
[2025-03-07T14:54:26+0100] [ALPM] upgraded kmod (34-1 -> 34.1-1)
[2025-03-07T14:54:26+0100] [ALPM] upgraded systemd-libs (257.3-1 -> 257.4-1)
[2025-03-03T21:44:57+0100] [ALPM] upgraded rog-control-center (6.1.9.r1.g3a900f23-1 -> 6.1.10.r0.gd55c2bef-1)
[2025-03-03T21:44:57+0100] [ALPM] upgraded linux-g14-headers (6.13.4.arch1-1.5 -> 6.13.4.arch1-1.7)
[2025-03-03T21:44:53+0100] [ALPM] upgraded linux-g14 (6.13.4.arch1-1.5 -> 6.13.4.arch1-1.7)
[2025-03-03T21:44:50+0100] [ALPM] upgraded lib32-libnghttp2 (1.64.0-1 -> 1.65.0-1)
[2025-03-03T21:44:50+0100] [ALPM] upgraded cpu-x (5.1.1-2 -> 5.1.2-1)
[2025-03-03T21:44:49+0100] [ALPM] upgraded asusctl (6.1.9.r1.g3a900f23-1 -> 6.1.10.r0.gd55c2bef-1)
[2025-03-03T21:44:49+0100] [ALPM] upgraded libnghttp2 (1.64.0-1 -> 1.65.0-1)
[2025-03-03T17:34:17+0100] [ALPM] upgraded libselinux (3.7-2 -> 3.8-1)
[2025-03-03T17:33:03+0100] [ALPM] upgraded libsepol (3.7-1 -> 3.8-1)
[2025-03-03T17:31:25+0100] [ALPM] upgraded rog-control-center (6.1.8.r0.gf1645837-2 -> 6.1.9.r1.g3a900f23-1)
[2025-03-03T17:31:25+0100] [ALPM] upgraded lib32-nss (3.108-1 -> 3.109-1)
[2025-03-03T17:31:25+0100] [ALPM] upgraded nss (3.108-1 -> 3.109-1)
[2025-03-03T17:31:25+0100] [ALPM] upgraded eos-bash-shared (25.3-1 -> 25.3.1-1)
[2025-03-03T17:31:23+0100] [ALPM] upgraded asusctl (6.1.8.r0.gf1645837-2 -> 6.1.9.r1.g3a900f23-1)
[2025-03-03T17:31:23+0100] [ALPM] upgraded ca-certificates-mozilla (3.108-1 -> 3.109-1)
[2025-03-03T06:35:46+0100] [ALPM] upgraded vim (9.1.1120-1 -> 9.1.1165-1)
[2025-03-03T06:35:46+0100] [ALPM] upgraded vim-runtime (9.1.1120-1 -> 9.1.1165-1)
[2025-03-03T06:35:45+0100] [ALPM] upgraded sdl2-compat (2.32.50-2 -> 2.32.52-1)
[2025-03-03T06:35:45+0100] [ALPM] upgraded sdl3 (3.2.4-2 -> 3.2.6-1)
[2025-03-03T06:35:45+0100] [ALPM] upgraded rog-control-center (6.1.8.r0.ga08ca3af-1 -> 6.1.8.r0.gf1645837-2)
[2025-03-03T06:35:45+0100] [ALPM] upgraded python-pytest (1:8.3.4-1 -> 1:8.3.5-1)
[2025-03-03T06:35:45+0100] [ALPM] upgraded python-more-itertools (10.5.0-1 -> 10.6.0-1)
[2025-03-03T06:35:45+0100] [ALPM] upgraded pkgfile (22-1 -> 24-1)
[2025-03-03T06:35:45+0100] [ALPM] upgraded noto-fonts (1:2025.02.01-1 -> 1:2025.03.01-1)
[2025-03-03T06:35:45+0100] [ALPM] upgraded networkmanager (1.50.3-1 -> 1.52.0-1)
[2025-03-03T06:35:45+0100] [ALPM] upgraded mtools (1:4.0.47-1 -> 1:4.0.48-1)
[2025-03-03T06:35:45+0100] [ALPM] upgraded lvm2 (2.03.30-1 -> 2.03.31-1)
[2025-03-03T06:35:45+0100] [ALPM] upgraded linux-g14-headers (6.13.4.arch1-1.4 -> 6.13.4.arch1-1.5)
[2025-03-03T06:35:41+0100] [ALPM] upgraded linux-g14 (6.13.4.arch1-1.4 -> 6.13.4.arch1-1.5)
[2025-03-03T06:35:38+0100] [ALPM] upgraded libqalculate (5.5.1-1 -> 5.5.2-1)
[2025-03-03T06:35:38+0100] [ALPM] upgraded libnm (1.50.3-1 -> 1.52.0-1)
[2025-03-03T06:35:38+0100] [ALPM] upgraded lib32-dbus (1.16.0-1 -> 1.16.2-1)
[2025-03-03T06:35:38+0100] [ALPM] upgraded kinfocenter (6.3.2-1 -> 6.3.2-2)
[2025-03-03T06:35:38+0100] [ALPM] upgraded goverlay (1.2-2 -> 1.3-1)
[2025-03-03T06:35:38+0100] [ALPM] upgraded eos-bash-shared (25.2.11-1 -> 25.3-1)
[2025-03-03T06:35:36+0100] [ALPM] upgraded asusctl (6.1.8.r0.ga08ca3af-1 -> 6.1.8.r0.gf1645837-2)
[2025-03-03T06:35:36+0100] [ALPM] upgraded device-mapper (2.03.30-1 -> 2.03.31-1)
[2025-03-03T06:35:36+0100] [ALPM] upgraded dbus (1.16.0-1 -> 1.16.2-1)
[2025-03-03T06:35:36+0100] [ALPM] upgraded iana-etc (20241206-1 -> 20250213-1)
[2025-03-01T07:08:33+0100] [ALPM] upgraded vulkan-tools (1.4.303-2 -> 1.4.304.1-1)
[2025-03-01T07:08:33+0100] [ALPM] upgraded vulkan-icd-loader (1.4.303-1 -> 1.4.304.1-1)
[2025-03-01T07:08:33+0100] [ALPM] upgraded vulkan-headers (1:1.4.303-1 -> 1:1.4.304.1-2)
[2025-03-01T07:08:33+0100] [ALPM] upgraded sdl2-compat (2.32.50-1 -> 2.32.50-2)
[2025-03-01T07:08:33+0100] [ALPM] upgraded rog-control-center (6.1.5.r0.g21c468cf-1 -> 6.1.8.r0.ga08ca3af-1)
[2025-03-01T07:08:33+0100] [ALPM] upgraded nvidia-settings (570.86.16-1 -> 570.124.04-1)
[2025-03-01T07:08:33+0100] [ALPM] upgraded nvidia-open-dkms (570.86.16-2 -> 570.124.04-1)
[2025-03-01T07:08:32+0100] [ALPM] upgraded networkmanager (1.50.2-1 -> 1.50.3-1)
[2025-03-01T07:08:32+0100] [ALPM] upgraded linux-lts-headers (6.12.16-1 -> 6.12.17-1)
[2025-03-01T07:08:30+0100] [ALPM] upgraded linux-lts (6.12.16-1 -> 6.12.17-1)
[2025-03-01T07:08:29+0100] [ALPM] upgraded linux-headers (6.13.4.arch1-1 -> 6.13.5.arch1-1)
[2025-03-01T07:08:28+0100] [ALPM] upgraded linux-g14-headers (6.13.4.arch1-1.3 -> 6.13.4.arch1-1.4)
[2025-03-01T07:08:26+0100] [ALPM] upgraded linux-g14 (6.13.4.arch1-1.3 -> 6.13.4.arch1-1.4)
[2025-03-01T07:08:25+0100] [ALPM] upgraded linux (6.13.4.arch1-1 -> 6.13.5.arch1-1)
[2025-03-01T07:08:24+0100] [ALPM] upgraded libxnvctrl (570.86.16-1 -> 570.124.04-1)
[2025-03-01T07:08:24+0100] [ALPM] upgraded libreoffice-fresh (25.2.0-5 -> 25.2.1-2)
[2025-03-01T07:08:22+0100] [ALPM] upgraded libnm (1.50.2-1 -> 1.50.3-1)
[2025-03-01T07:08:22+0100] [ALPM] upgraded lib32-vulkan-icd-loader (1.4.303-1 -> 1.4.304.1-1)
[2025-03-01T07:08:22+0100] [ALPM] upgraded lib32-nvidia-utils (570.86.16-1 -> 570.124.04-1)
[2025-03-01T07:08:22+0100] [ALPM] upgraded lib32-spirv-tools (2024.4.rc2-1 -> 1:1.4.304.1-2)
[2025-03-01T07:08:22+0100] [ALPM] upgraded nvidia-utils (570.86.16-2 -> 570.124.04-1)
[2025-03-01T07:08:21+0100] [ALPM] upgraded spirv-tools (2024.4.rc2-1 -> 1:1.4.304.1-2)
[2025-03-01T07:08:21+0100] [ALPM] upgraded lib32-harfbuzz (10.3.0-1 -> 10.4.0-1)
[2025-03-01T07:08:21+0100] [ALPM] upgraded harfbuzz-icu (10.3.0-1 -> 10.4.0-1)
[2025-03-01T07:08:21+0100] [ALPM] upgraded harfbuzz (10.3.0-1 -> 10.4.0-1)
[2025-03-01T07:08:20+0100] [ALPM] upgraded grub (2:2.12.r212.g4dc616657-2 -> 2:2.12.r226.g56ccc5ed-1)
[2025-03-01T07:08:20+0100] [ALPM] upgraded fish (3.7.1-2 -> 4.0.0-2)
[2025-03-01T07:08:20+0100] [ALPM] upgraded containerd (2.0.2-1 -> 2.0.3-1)
[2025-03-01T07:08:18+0100] [ALPM] upgraded asusctl (6.1.5.r0.g21c468cf-1 -> 6.1.8.r0.ga08ca3af-1)
Offline
Can you hibernate from the multi-user.target (2nd link below)?
Edit: because I just saw kdeconnect and there're some plasma/kio related "system stalls on shutdown" reports pointing that direction.
systemd has only a minor update, the kernels only have minor updates (could still be a bogus patch affecting all of them as was the recent rndis stunt…) - might be linux-firmware?
Did you maybe get a BIOS/UEFI update interim?
And ceterum censeo: there's no parallel windows?
Online
Wrt. https://bbs.archlinux.org/viewtopic.php?id=305566 can you actuall power off the system on shutdown (no hibernation)?
Online
seth wrote:Can you hibernate from the multi-user.target (2nd link below)?
Edit: because I just saw kdeconnect and there're some plasma/kio related "system stalls on shutdown" reports pointing that direction.systemd has only a minor update, the kernels only have minor updates (could still be a bogus patch affecting all of them as was the recent rndis stunt…) - might be linux-firmware?
Did you maybe get a BIOS/UEFI update interim?And ceterum censeo: there's no parallel windows?
When i get more time i will check this.
Also yes i can shutdown normally, sleep also works normally.
Offline
In my case, i can shut down, restart, and suspend without any problems.
I've tried downgrading Linux firmware to version 20250311 and the problem still persists.
I have dual-boot but the systems are on different hard drives and hibernation works from Windows.
I can try uninstalling the NVIDIA drivers, which is what usually causes the most problems.
Offline
I have dual-boot but the systems are on different hard drives and hibernation works from Windows.
3rd link below. Mandatory.
Disable it (it's NOT the BIOS setting!) and reboot windows and linux twice for voodo reasons.
Edit: to be very clear, do also NOT explicitly use hibernation to switch between the OS and it absolutely doesn't matter on how many disks you install anything here. The problem is the ACPI.
Last edited by seth (2025-05-14 06:47:01)
Online
Well, I've tried hibernating without the Nvidia modules loaded, and it works. I don't know if it does anything else because I have an ASUS laptop and can use supergfxctl. I imagine it can also make some changes in the BIOS.
But it seems to be the Nvidia driver.
Let's see if MLGEnrique can try it too.
I'll try again later because I've only tried it once to confirm.
Offline
Regardless, hibernation (and multiple things) will not work reliably when there's also a hibernating windows.
For nvidia specifically there's https://bbs.archlinux.org/viewtopic.php?id=290126 and a whole bunch of rencent threads resulting in suspend issues, https://bbs.archlinux.org/viewtopic.php?id=303990 and https://bbs.archlinux.org/viewtopic.php?id=305406 and permanently https://bbs.archlinux.org/viewtopic.php … 0#p2240550
Online
Wrt. https://bbs.archlinux.org/viewtopic.php?id=305566 can you actuall power off the system on shutdown (no hibernation)?
Sorry for the long answer, but the only way I can turn off my system is by holding power button, none of the other methods works (system just hangs on watchdog did not stop error, I've fixed the appearing message, but results are still the same).
Last edited by Dexler (2025-05-15 22:18:07)
Offline
Sorry, I was just cross referencing threads - I understood your situation, the question was whether the OP here falls into the same problem as you do.
Online
Sorry i have not had much time this week due to exams I hope I will have enough time in the coming days for reading through this thread and trying stuff out.
Offline
I tried booting without the GUI but the same problem persists.
Offline
Have you seen posts #15 and #16 ?
Last edited by seth (2025-05-19 06:35:58)
Online
Oh I didn't see it, Do you know how I can unload the Nvidia module. Is that via systemctl?
Offline
https://wiki.archlinux.org/title/Kernel … e_handling but you'll not be able to unload then while they're in use - try https://wiki.archlinux.org/title/Kernel … and_line_2
Online
Sorry, I was just cross referencing threads - I understood your situation, the question was whether the OP here falls into the same problem as you do.
Update: system also hangs on hibernation
Offline