You are not logged in.

#1 2023-06-04 15:18:28

Alexjust
Member
Registered: 2022-09-01
Posts: 15

[SOLVED] Hardware clock updating only when plugged in.

The clock only updates if the computer (when off) is plugged in; if it isn't then it just stops until it is turned on again.
When turned on unplugged it takes a very long time to boot because of timeouts:

failed to activate service 'org.gnome.Shell.Screencast'

(from the journalctl)
and then boots with the wrong system time (but not the wrong hardware one).

[alex@AlexArch ~]$ sudo hwclock

2023-06-04 17:08:01.214759+02:00

[alex@AlexArch ~]$ timedatectl

Local time: Sun 2023-06-04 17:07:13 CEST

Universal time: Sun 2023-06-04 15:07:13 UTC

RTC time: Sun 2023-06-04 15:08:36

Time zone: Europe/Rome (CEST, +0200)

System clock synchronized: no

NTP service: active

RTC in local TZ: no

Edit: The clock updates even if it is plugged in when it is already off

Last edited by Alexjust (2023-06-04 22:33:52)

Offline

#2 2023-06-04 15:29:46

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 19,772

Re: [SOLVED] Hardware clock updating only when plugged in.

I gather this is a laptop.  My bet is that there is a primary Lithium coin cell battery (something like a cr2032) someplace in your system that has the task of maintaining the RTC when there is no shore power.  When there is external power, there is likely a small stand by power supply to power the RTC and extend the life of the primary battery.

Did it used to work and this is new behavior? Or has it always been like this?  Is this laptop several years old?

[BTW: To an electrical engineer, a primary battery is one that is not rechargeable, and a secondary battery is one that is rechargeable.  I mention this only because this nomenclature has caused confusion on more than one occasion.]


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
Sometimes it is the people no one can imagine anything of who do the things no one can imagine. -- Alan Turing
---
How to Ask Questions the Smart Way

Offline

#3 2023-06-04 15:33:03

Alexjust
Member
Registered: 2022-09-01
Posts: 15

Re: [SOLVED] Hardware clock updating only when plugged in.

I don't think the CMOS battery is the problem. I have tested it and it still has charge and the problem isn't with the hardware clock. It works fine, always. The problem is that when it is not plugged in the local time and the hardware time don't sync up on startup. I have recently installed Arch on this laptop and it is the first time that I have this issue. The laptop is quite old.

Last edited by Alexjust (2023-06-04 15:42:58)

Offline

#4 2023-06-04 15:58:43

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

Re: [SOLVED] Hardware clock updating only when plugged in.

System clock synchronized: no

The system time only draws from NTP, not the HW clock.
Does this change w/ the power source or do you just get the NTP time earlier?

Offline

#5 2023-06-04 16:03:28

Alexjust
Member
Registered: 2022-09-01
Posts: 15

Re: [SOLVED] Hardware clock updating only when plugged in.

I don't think that's it. It wasn't syncronized because I put it in airplane mode to take the difference in time between the HW and the local time. Even without a connection it should syncronize with the HW (as it does when plugged in). On the other hand by testing I found out that the clock doesn't stop but it is just behind. From the test that I did it is behind almost exactly how much it takes to boot. But I don't understand why this happends only when not plugged in. When plugged in it is perfectly synced.

Offline

#6 2023-06-04 16:36:31

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

Re: [SOLVED] Hardware clock updating only when plugged in.

https://wiki.archlinux.org/title/System … e_standard

During kernel startup, at the point when the RTC driver is loaded, the system clock may be set from the hardware clock. Whether this occurs depends on the hardware platform, the version of the kernel and kernel build options. If this does occur, at this point in the boot sequence, the hardware clock time is assumed to be UTC and the value of /sys/class/rtc/rtcN/hctosys (N=0,1,2,..) will be set to 1.

Later, the system clock is set again from the hardware clock by systemd, dependent on values in /etc/adjtime. Hence, having the hardware clock using localtime may cause some unexpected behavior during the boot sequence; e.g system time going backwards, which is always a bad idea (there is a lot more to it). Since systemd version 216, when the RTC is configured to the local time (rather than UTC) systemd will never synchronize back to it, as this might confuse Windows at a later boot. And systemd will no longer inform the kernel about the current timezone. This hence means FAT timestamps will be always considered UTC[1].

systemd will probably constantly fail to set the clock from the RTC and you're down to the kernel module which, possibly, only acts on battery.
=> check the system journal for systemd complaining about setting the time.

Offline

#7 2023-06-04 16:58:22

Alexjust
Member
Registered: 2022-09-01
Posts: 15

Re: [SOLVED] Hardware clock updating only when plugged in.

This is the only mention of RTC:

Jun 04 18:48:25 AlexArch kernel: rtc_cmos 00:02: RTC can wake from S4
Jun 04 18:48:25 AlexArch kernel: rtc_cmos 00:02: registered as rtc0
Jun 04 18:48:25 AlexArch kernel: rtc_cmos 00:02: setting system clock to 2023-06-04T16:48:16 UTC (1685897296)
Jun 04 18:48:25 AlexArch kernel: rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs

This is the full output:

Jun 04 18:48:24 AlexArch kernel: Linux version 6.3.5-arch1-1 (linux@archlinux) (gcc (GCC) 13.1.1 20230429, GNU ld (GNU Binutils) 2.40.0) #1 SMP PREEMPT_DYNAMIC Tue, 30 May 2023 13:44:01 +0000
Jun 04 18:48:24 AlexArch kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=882f05fb-ea19-4494-99b9-75cacc2e0493 rw loglevel=3 quiet
Jun 04 18:48:24 AlexArch kernel: Disabled fast string operations
Jun 04 18:48:24 AlexArch kernel: x86/fpu: x87 FPU will use FXSAVE
Jun 04 18:48:24 AlexArch kernel: signal: max sigframe size: 1440
Jun 04 18:48:24 AlexArch kernel: BIOS-provided physical RAM map:
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009ebff] usable
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x000000000009ec00-0x000000000009ffff] reserved
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000000dc000-0x00000000000fffff] reserved
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000bd6a0fff] usable
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000bd6a1000-0x00000000bd6a6fff] reserved
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000bd6a7000-0x00000000bd7b6fff] usable
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000bd7b7000-0x00000000bd80efff] reserved
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000bd80f000-0x00000000bd8c6fff] usable
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000bd8c7000-0x00000000bd8d1fff] ACPI NVS
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000bd8d2000-0x00000000bd8d4fff] ACPI data
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000bd8d5000-0x00000000bd8d8fff] reserved
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000bd8d9000-0x00000000bd8dcfff] ACPI NVS
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000bd8dd000-0x00000000bd8dffff] reserved
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000bd8e0000-0x00000000bd906fff] ACPI NVS
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000bd907000-0x00000000bd907fff] ACPI data
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000bd908000-0x00000000bdb0efff] reserved
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000bdb0f000-0x00000000bdb9efff] ACPI NVS
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000bdb9f000-0x00000000bdbfefff] ACPI data
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000bdbff000-0x00000000bdbfffff] usable
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000bdc00000-0x00000000bfffffff] reserved
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed003ff] reserved
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed8ffff] reserved
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
Jun 04 18:48:24 AlexArch kernel: BIOS-e820: [mem 0x0000000100000000-0x000000023bffffff] usable
Jun 04 18:48:24 AlexArch kernel: NX (Execute Disable) protection: active
Jun 04 18:48:24 AlexArch kernel: SMBIOS 2.4 present.
Jun 04 18:48:24 AlexArch kernel: DMI: LENOVO 22434EG/22434EG, BIOS 6FET50WW (1.20 ) 10/30/2008
Jun 04 18:48:24 AlexArch kernel: tsc: Fast TSC calibration using PIT
Jun 04 18:48:24 AlexArch kernel: tsc: Detected 2261.148 MHz processor
Jun 04 18:48:24 AlexArch kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jun 04 18:48:24 AlexArch kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Jun 04 18:48:24 AlexArch kernel: last_pfn = 0x23c000 max_arch_pfn = 0x400000000
Jun 04 18:48:24 AlexArch kernel: total RAM covered: 8094M
Jun 04 18:48:24 AlexArch kernel: Found optimal setting for mtrr clean up
Jun 04 18:48:24 AlexArch kernel:  gran_size: 64K         chunk_size: 128M         num_reg: 7          lose cover RAM: 0G
Jun 04 18:48:24 AlexArch kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Jun 04 18:48:24 AlexArch kernel: e820: update [mem 0xbde00000-0xffffffff] usable ==> reserved
Jun 04 18:48:24 AlexArch kernel: last_pfn = 0xbdc00 max_arch_pfn = 0x400000000
Jun 04 18:48:24 AlexArch kernel: found SMP MP-table at [mem 0x000f6570-0x000f657f]
Jun 04 18:48:24 AlexArch kernel: RAMDISK: [mem 0x3647b000-0x37234fff]
Jun 04 18:48:24 AlexArch kernel: ACPI: Early table checksum verification disabled
Jun 04 18:48:24 AlexArch kernel: ACPI: RSDP 0x00000000000F6530 000024 (v02 LENOVO)
Jun 04 18:48:24 AlexArch kernel: ACPI: XSDT 0x00000000BDB6A5B6 000094 (v01 LENOVO TP-6F    00001200  LTP 00000000)
Jun 04 18:48:24 AlexArch kernel: ACPI: FACP 0x00000000BDB6A700 0000F4 (v03 LENOVO TP-6F    00001200 LNVO 00000001)
Jun 04 18:48:24 AlexArch kernel: ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Pm1aControlBlock: 16/32 (20221020/tbfadt-564)
Jun 04 18:48:24 AlexArch kernel: ACPI BIOS Warning (bug): Invalid length for FADT/Pm1aControlBlock: 32, using default 16 (20221020/tbfadt-669)
Jun 04 18:48:24 AlexArch kernel: ACPI: DSDT 0x00000000BDB6AADB 00F0B8 (v01 LENOVO TP-6F    00001200 MSFT 03000000)
Jun 04 18:48:24 AlexArch kernel: ACPI: FACS 0x00000000BDB8E000 000040
Jun 04 18:48:24 AlexArch kernel: ACPI: FACS 0x00000000BDB8E000 000040
Jun 04 18:48:24 AlexArch kernel: ACPI: SSDT 0x00000000BDB6A8B4 000227 (v01 LENOVO TP-6F    00001200 MSFT 03000000)
Jun 04 18:48:24 AlexArch kernel: ACPI: ECDT 0x00000000BDB79B93 000052 (v01 LENOVO TP-6F    00001200 LNVO 00000001)
Jun 04 18:48:24 AlexArch kernel: ACPI: APIC 0x00000000BDB79BE5 000078 (v01 LENOVO TP-6F    00001200 LNVO 00000001)
Jun 04 18:48:24 AlexArch kernel: ACPI: MCFG 0x00000000BDB79C5D 00003C (v01 LENOVO TP-6F    00001200 LNVO 00000001)
Jun 04 18:48:24 AlexArch kernel: ACPI: HPET 0x00000000BDB79C99 000038 (v01 LENOVO TP-6F    00001200 LNVO 00000001)
Jun 04 18:48:24 AlexArch kernel: ACPI: SLIC 0x00000000BDB79DC2 000176 (v01 LENOVO TP-6F    00001200  LTP 00000000)
Jun 04 18:48:24 AlexArch kernel: ACPI: BOOT 0x00000000BDB79F38 000028 (v01 LENOVO TP-6F    00001200  LTP 00000001)
Jun 04 18:48:24 AlexArch kernel: ACPI: ASF! 0x00000000BDB79F60 0000A0 (v16 LENOVO TP-6F    00001200 PTL  00000001)
Jun 04 18:48:24 AlexArch kernel: ACPI: SSDT 0x00000000BDB8D213 00054F (v01 LENOVO TP-6F    00001200 INTL 20050513)
Jun 04 18:48:24 AlexArch kernel: ACPI: TCPA 0x00000000BD907000 000032 (v00                 00000000      00000000)
Jun 04 18:48:24 AlexArch kernel: ACPI: SSDT 0x00000000BD8D4000 000655 (v01 PmRef  CpuPm    00003000 INTL 20050624)
Jun 04 18:48:24 AlexArch kernel: ACPI: SSDT 0x00000000BD8D3000 000274 (v01 PmRef  Cpu0Tst  00003000 INTL 20050624)
Jun 04 18:48:24 AlexArch kernel: ACPI: SSDT 0x00000000BD8D2000 000242 (v01 PmRef  ApTst    00003000 INTL 20050624)
Jun 04 18:48:24 AlexArch kernel: ACPI: Reserving FACP table memory at [mem 0xbdb6a700-0xbdb6a7f3]
Jun 04 18:48:24 AlexArch kernel: ACPI: Reserving DSDT table memory at [mem 0xbdb6aadb-0xbdb79b92]
Jun 04 18:48:24 AlexArch kernel: ACPI: Reserving FACS table memory at [mem 0xbdb8e000-0xbdb8e03f]
Jun 04 18:48:24 AlexArch kernel: ACPI: Reserving FACS table memory at [mem 0xbdb8e000-0xbdb8e03f]
Jun 04 18:48:24 AlexArch kernel: ACPI: Reserving SSDT table memory at [mem 0xbdb6a8b4-0xbdb6aada]
Jun 04 18:48:24 AlexArch kernel: ACPI: Reserving ECDT table memory at [mem 0xbdb79b93-0xbdb79be4]
Jun 04 18:48:24 AlexArch kernel: ACPI: Reserving APIC table memory at [mem 0xbdb79be5-0xbdb79c5c]
Jun 04 18:48:24 AlexArch kernel: ACPI: Reserving MCFG table memory at [mem 0xbdb79c5d-0xbdb79c98]
Jun 04 18:48:24 AlexArch kernel: ACPI: Reserving HPET table memory at [mem 0xbdb79c99-0xbdb79cd0]
Jun 04 18:48:24 AlexArch kernel: ACPI: Reserving SLIC table memory at [mem 0xbdb79dc2-0xbdb79f37]
Jun 04 18:48:24 AlexArch kernel: ACPI: Reserving BOOT table memory at [mem 0xbdb79f38-0xbdb79f5f]
Jun 04 18:48:24 AlexArch kernel: ACPI: Reserving ASF! table memory at [mem 0xbdb79f60-0xbdb79fff]
Jun 04 18:48:24 AlexArch kernel: ACPI: Reserving SSDT table memory at [mem 0xbdb8d213-0xbdb8d761]
Jun 04 18:48:24 AlexArch kernel: ACPI: Reserving TCPA table memory at [mem 0xbd907000-0xbd907031]
Jun 04 18:48:24 AlexArch kernel: ACPI: Reserving SSDT table memory at [mem 0xbd8d4000-0xbd8d4654]
Jun 04 18:48:24 AlexArch kernel: ACPI: Reserving SSDT table memory at [mem 0xbd8d3000-0xbd8d3273]
Jun 04 18:48:24 AlexArch kernel: ACPI: Reserving SSDT table memory at [mem 0xbd8d2000-0xbd8d2241]
Jun 04 18:48:24 AlexArch kernel: No NUMA configuration found
Jun 04 18:48:24 AlexArch kernel: Faking a node at [mem 0x0000000000000000-0x000000023bffffff]
Jun 04 18:48:24 AlexArch kernel: NODE_DATA(0) allocated [mem 0x23bff7000-0x23bffbfff]
Jun 04 18:48:24 AlexArch kernel: Zone ranges:
Jun 04 18:48:24 AlexArch kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Jun 04 18:48:24 AlexArch kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Jun 04 18:48:24 AlexArch kernel:   Normal   [mem 0x0000000100000000-0x000000023bffffff]
Jun 04 18:48:24 AlexArch kernel:   Device   empty
Jun 04 18:48:24 AlexArch kernel: Movable zone start for each node
Jun 04 18:48:24 AlexArch kernel: Early memory node ranges
Jun 04 18:48:24 AlexArch kernel:   node   0: [mem 0x0000000000001000-0x000000000009dfff]
Jun 04 18:48:24 AlexArch kernel:   node   0: [mem 0x0000000000100000-0x00000000bd6a0fff]
Jun 04 18:48:24 AlexArch kernel:   node   0: [mem 0x00000000bd6a7000-0x00000000bd7b6fff]
Jun 04 18:48:24 AlexArch kernel:   node   0: [mem 0x00000000bd80f000-0x00000000bd8c6fff]
Jun 04 18:48:24 AlexArch kernel:   node   0: [mem 0x00000000bdbff000-0x00000000bdbfffff]
Jun 04 18:48:24 AlexArch kernel:   node   0: [mem 0x0000000100000000-0x000000023bffffff]
Jun 04 18:48:24 AlexArch kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000023bffffff]
Jun 04 18:48:24 AlexArch kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Jun 04 18:48:24 AlexArch kernel: On node 0, zone DMA: 98 pages in unavailable ranges
Jun 04 18:48:24 AlexArch kernel: On node 0, zone DMA32: 6 pages in unavailable ranges
Jun 04 18:48:24 AlexArch kernel: On node 0, zone DMA32: 88 pages in unavailable ranges
Jun 04 18:48:24 AlexArch kernel: On node 0, zone DMA32: 824 pages in unavailable ranges
Jun 04 18:48:24 AlexArch kernel: On node 0, zone Normal: 9216 pages in unavailable ranges
Jun 04 18:48:24 AlexArch kernel: On node 0, zone Normal: 16384 pages in unavailable ranges
Jun 04 18:48:24 AlexArch kernel: Reserving Intel graphics memory at [mem 0xbe000000-0xbfffffff]
Jun 04 18:48:24 AlexArch kernel: ACPI: PM-Timer IO Port: 0x1008
Jun 04 18:48:24 AlexArch kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
Jun 04 18:48:24 AlexArch kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Jun 04 18:48:24 AlexArch kernel: IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
Jun 04 18:48:24 AlexArch kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jun 04 18:48:24 AlexArch kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jun 04 18:48:24 AlexArch kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Jun 04 18:48:24 AlexArch kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Jun 04 18:48:24 AlexArch kernel: smpboot: Allowing 4 CPUs, 2 hotplug CPUs
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009efff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dbfff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0x000dc000-0x000fffff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd6a1000-0xbd6a6fff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd7b7000-0xbd80efff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd8c7000-0xbd8d1fff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd8d2000-0xbd8d4fff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd8d5000-0xbd8d8fff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd8d9000-0xbd8dcfff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd8dd000-0xbd8dffff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd8e0000-0xbd906fff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd907000-0xbd907fff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd908000-0xbdb0efff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbdb0f000-0xbdb9efff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbdb9f000-0xbdbfefff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbdc00000-0xbfffffff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xdfffffff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xefffffff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec0ffff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfec10000-0xfecfffff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed0ffff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed10000-0xfed13fff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed14000-0xfed17fff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed18000-0xfed19fff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed8ffff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed90000-0xfedfffff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xff7fffff]
Jun 04 18:48:24 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xff800000-0xffffffff]
Jun 04 18:48:24 AlexArch kernel: [mem 0xc0000000-0xdfffffff] available for PCI devices
Jun 04 18:48:24 AlexArch kernel: Booting paravirtualized kernel on bare hardware
Jun 04 18:48:24 AlexArch kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
Jun 04 18:48:24 AlexArch kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
Jun 04 18:48:24 AlexArch kernel: percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u524288
Jun 04 18:48:24 AlexArch kernel: pcpu-alloc: s225280 r8192 d28672 u524288 alloc=1*2097152
Jun 04 18:48:24 AlexArch kernel: pcpu-alloc: [0] 0 1 2 3 
Jun 04 18:48:24 AlexArch kernel: Fallback order for Node 0: 0 
Jun 04 18:48:24 AlexArch kernel: Built 1 zonelists, mobility grouping on.  Total pages: 2038024
Jun 04 18:48:24 AlexArch kernel: Policy zone: Normal
Jun 04 18:48:24 AlexArch kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=882f05fb-ea19-4494-99b9-75cacc2e0493 rw loglevel=3 quiet
Jun 04 18:48:24 AlexArch kernel: Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-linux", will be passed to user space.
Jun 04 18:48:24 AlexArch kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
Jun 04 18:48:24 AlexArch kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
Jun 04 18:48:24 AlexArch kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
Jun 04 18:48:24 AlexArch kernel: software IO TLB: area num 4.
Jun 04 18:48:24 AlexArch kernel: Memory: 8009220K/8282140K available (16384K kernel code, 2107K rwdata, 12656K rodata, 3324K init, 4000K bss, 272660K reserved, 0K cma-reserved)
Jun 04 18:48:24 AlexArch kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Jun 04 18:48:24 AlexArch kernel: Kernel/User page tables isolation: enabled
Jun 04 18:48:24 AlexArch kernel: ftrace: allocating 47292 entries in 185 pages
Jun 04 18:48:24 AlexArch kernel: ftrace: allocated 185 pages with 5 groups
Jun 04 18:48:24 AlexArch kernel: Dynamic Preempt: full
Jun 04 18:48:24 AlexArch kernel: rcu: Preemptible hierarchical RCU implementation.
Jun 04 18:48:24 AlexArch kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=4.
Jun 04 18:48:24 AlexArch kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
Jun 04 18:48:24 AlexArch kernel:         Trampoline variant of Tasks RCU enabled.
Jun 04 18:48:24 AlexArch kernel:         Rude variant of Tasks RCU enabled.
Jun 04 18:48:24 AlexArch kernel:         Tracing variant of Tasks RCU enabled.
Jun 04 18:48:24 AlexArch kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
Jun 04 18:48:24 AlexArch kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
Jun 04 18:48:24 AlexArch kernel: NR_IRQS: 20736, nr_irqs: 456, preallocated irqs: 16
Jun 04 18:48:24 AlexArch kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
Jun 04 18:48:24 AlexArch kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
Jun 04 18:48:24 AlexArch kernel: Console: colour dummy device 80x25
Jun 04 18:48:24 AlexArch kernel: printk: console [tty0] enabled
Jun 04 18:48:24 AlexArch kernel: ACPI: Core revision 20221020
Jun 04 18:48:24 AlexArch kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
Jun 04 18:48:24 AlexArch kernel: APIC: Switch to symmetric I/O mode setup
Jun 04 18:48:24 AlexArch kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jun 04 18:48:24 AlexArch kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2097d71f60e, max_idle_ns: 440795271883 ns
Jun 04 18:48:24 AlexArch kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4524.72 BogoMIPS (lpj=7537160)
Jun 04 18:48:24 AlexArch kernel: pid_max: default: 32768 minimum: 301
Jun 04 18:48:24 AlexArch kernel: LSM: initializing lsm=capability,landlock,lockdown,yama,integrity,bpf
Jun 04 18:48:24 AlexArch kernel: landlock: Up and running.
Jun 04 18:48:24 AlexArch kernel: Yama: becoming mindful.
Jun 04 18:48:24 AlexArch kernel: LSM support for eBPF active
Jun 04 18:48:24 AlexArch kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Jun 04 18:48:24 AlexArch kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Jun 04 18:48:24 AlexArch kernel: Disabled fast string operations
Jun 04 18:48:24 AlexArch kernel: x86/cpu: VMX (outside TXT) disabled by BIOS
Jun 04 18:48:24 AlexArch kernel: CPU0: Thermal monitoring enabled (TM2)
Jun 04 18:48:24 AlexArch kernel: process: using mwait in idle threads
Jun 04 18:48:24 AlexArch kernel: Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
Jun 04 18:48:24 AlexArch kernel: Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32, 1GB 0
Jun 04 18:48:24 AlexArch kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Jun 04 18:48:24 AlexArch kernel: Spectre V2 : Mitigation: Retpolines
Jun 04 18:48:24 AlexArch kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Jun 04 18:48:24 AlexArch kernel: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
Jun 04 18:48:24 AlexArch kernel: Speculative Store Bypass: Vulnerable
Jun 04 18:48:24 AlexArch kernel: MDS: Vulnerable: Clear CPU buffers attempted, no microcode
Jun 04 18:48:24 AlexArch kernel: MMIO Stale Data: Unknown: No mitigations
Jun 04 18:48:24 AlexArch kernel: Freeing SMP alternatives memory: 40K
Jun 04 18:48:24 AlexArch kernel: smpboot: CPU0: Intel(R) Core(TM)2 Duo CPU     P8400  @ 2.26GHz (family: 0x6, model: 0x17, stepping: 0x6)
Jun 04 18:48:24 AlexArch kernel: cblist_init_generic: Setting adjustable number of callback queues.
Jun 04 18:48:24 AlexArch kernel: cblist_init_generic: Setting shift to 2 and lim to 1.
Jun 04 18:48:24 AlexArch kernel: cblist_init_generic: Setting shift to 2 and lim to 1.
Jun 04 18:48:24 AlexArch kernel: cblist_init_generic: Setting shift to 2 and lim to 1.
Jun 04 18:48:24 AlexArch kernel: Performance Events: PEBS fmt0+, Core2 events, 4-deep LBR, Intel PMU driver.
Jun 04 18:48:24 AlexArch kernel: ... version:                2
Jun 04 18:48:24 AlexArch kernel: ... bit width:              40
Jun 04 18:48:24 AlexArch kernel: ... generic registers:      2
Jun 04 18:48:24 AlexArch kernel: ... value mask:             000000ffffffffff
Jun 04 18:48:24 AlexArch kernel: ... max period:             000000007fffffff
Jun 04 18:48:24 AlexArch kernel: ... fixed-purpose events:   3
Jun 04 18:48:24 AlexArch kernel: ... event mask:             0000000700000003
Jun 04 18:48:24 AlexArch kernel: rcu: Hierarchical SRCU implementation.
Jun 04 18:48:24 AlexArch kernel: rcu:         Max phase no-delay instances is 1000.
Jun 04 18:48:24 AlexArch kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Jun 04 18:48:24 AlexArch kernel: smp: Bringing up secondary CPUs ...
Jun 04 18:48:24 AlexArch kernel: x86: Booting SMP configuration:
Jun 04 18:48:24 AlexArch kernel: .... node  #0, CPUs:      #1
Jun 04 18:48:24 AlexArch kernel: Disabled fast string operations
Jun 04 18:48:24 AlexArch kernel: smp: Brought up 1 node, 2 CPUs
Jun 04 18:48:24 AlexArch kernel: smpboot: Max logical packages: 2
Jun 04 18:48:24 AlexArch kernel: smpboot: Total of 2 processors activated (9048.45 BogoMIPS)
Jun 04 18:48:24 AlexArch kernel: devtmpfs: initialized
Jun 04 18:48:24 AlexArch kernel: x86/mm: Memory block size: 128MB
Jun 04 18:48:24 AlexArch kernel: ACPI: PM: Registering ACPI NVS region [mem 0xbd8c7000-0xbd8d1fff] (45056 bytes)
Jun 04 18:48:24 AlexArch kernel: ACPI: PM: Registering ACPI NVS region [mem 0xbd8d9000-0xbd8dcfff] (16384 bytes)
Jun 04 18:48:24 AlexArch kernel: ACPI: PM: Registering ACPI NVS region [mem 0xbd8e0000-0xbd906fff] (159744 bytes)
Jun 04 18:48:24 AlexArch kernel: ACPI: PM: Registering ACPI NVS region [mem 0xbdb0f000-0xbdb9efff] (589824 bytes)
Jun 04 18:48:24 AlexArch kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
Jun 04 18:48:24 AlexArch kernel: futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
Jun 04 18:48:24 AlexArch kernel: pinctrl core: initialized pinctrl subsystem
Jun 04 18:48:24 AlexArch kernel: PM: RTC time: 16:48:15, date: 2023-06-04
Jun 04 18:48:24 AlexArch kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Jun 04 18:48:24 AlexArch kernel: DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
Jun 04 18:48:24 AlexArch kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Jun 04 18:48:24 AlexArch kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Jun 04 18:48:24 AlexArch kernel: audit: initializing netlink subsys (disabled)
Jun 04 18:48:24 AlexArch kernel: audit: type=2000 audit(1685897295.213:1): state=initialized audit_enabled=0 res=1
Jun 04 18:48:24 AlexArch kernel: thermal_sys: Registered thermal governor 'fair_share'
Jun 04 18:48:24 AlexArch kernel: thermal_sys: Registered thermal governor 'bang_bang'
Jun 04 18:48:24 AlexArch kernel: thermal_sys: Registered thermal governor 'step_wise'
Jun 04 18:48:24 AlexArch kernel: thermal_sys: Registered thermal governor 'user_space'
Jun 04 18:48:24 AlexArch kernel: thermal_sys: Registered thermal governor 'power_allocator'
Jun 04 18:48:24 AlexArch kernel: cpuidle: using governor ladder
Jun 04 18:48:24 AlexArch kernel: cpuidle: using governor menu
Jun 04 18:48:24 AlexArch kernel: Simple Boot Flag at 0x35 set to 0x80
Jun 04 18:48:24 AlexArch kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Jun 04 18:48:24 AlexArch kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jun 04 18:48:24 AlexArch kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
Jun 04 18:48:24 AlexArch kernel: PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved as E820 entry
Jun 04 18:48:24 AlexArch kernel: PCI: Using configuration type 1 for base access
Jun 04 18:48:24 AlexArch kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
Jun 04 18:48:24 AlexArch kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
Jun 04 18:48:24 AlexArch kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
Jun 04 18:48:24 AlexArch kernel: ACPI: Added _OSI(Module Device)
Jun 04 18:48:24 AlexArch kernel: ACPI: Added _OSI(Processor Device)
Jun 04 18:48:24 AlexArch kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jun 04 18:48:24 AlexArch kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jun 04 18:48:24 AlexArch kernel: ACPI: 6 ACPI AML tables successfully acquired and loaded
Jun 04 18:48:24 AlexArch kernel: ACPI: EC: EC started
Jun 04 18:48:24 AlexArch kernel: ACPI: EC: interrupt blocked
Jun 04 18:48:24 AlexArch kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Jun 04 18:48:24 AlexArch kernel: ACPI: EC: Boot ECDT EC used to handle transactions
Jun 04 18:48:24 AlexArch kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Jun 04 18:48:24 AlexArch kernel: ACPI: Dynamic OEM Table Load:
Jun 04 18:48:24 AlexArch kernel: ACPI: SSDT 0xFFFF97DF80B80400 0002C8 (v01 PmRef  Cpu0Ist  00003000 INTL 20050624)
Jun 04 18:48:24 AlexArch kernel: ACPI: Dynamic OEM Table Load:
Jun 04 18:48:24 AlexArch kernel: ACPI: SSDT 0xFFFF97DF80327000 00087A (v01 PmRef  Cpu0Cst  00003001 INTL 20050624)
Jun 04 18:48:24 AlexArch kernel: ACPI: Dynamic OEM Table Load:
Jun 04 18:48:24 AlexArch kernel: ACPI: SSDT 0xFFFF97DF808F8200 0001CF (v01 PmRef  ApIst    00003000 INTL 20050624)
Jun 04 18:48:24 AlexArch kernel: ACPI: Dynamic OEM Table Load:
Jun 04 18:48:24 AlexArch kernel: ACPI: SSDT 0xFFFF97DF80B726C0 00008D (v01 PmRef  ApCst    00003000 INTL 20050624)
Jun 04 18:48:24 AlexArch kernel: ACPI: Interpreter enabled
Jun 04 18:48:24 AlexArch kernel: ACPI: PM: (supports S0 S3 S4 S5)
Jun 04 18:48:24 AlexArch kernel: ACPI: Using IOAPIC for interrupt routing
Jun 04 18:48:24 AlexArch kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jun 04 18:48:24 AlexArch kernel: PCI: Using E820 reservations for host bridge windows
Jun 04 18:48:24 AlexArch kernel: ACPI: Enabled 5 GPEs in block 00 to 3F
Jun 04 18:48:24 AlexArch kernel: ACPI: \_SB_.PCI0.LPC_.EC__.PUBS: New power resource
Jun 04 18:48:24 AlexArch kernel: acpi PNP0C0A:01: ACPI dock station (docks/bays count: 1)
Jun 04 18:48:24 AlexArch kernel: acpi LNXIOBAY:00: ACPI dock station (docks/bays count: 2)
Jun 04 18:48:24 AlexArch kernel: acpi IBM0079:00: ACPI dock station (docks/bays count: 3)
Jun 04 18:48:24 AlexArch kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 11
Jun 04 18:48:24 AlexArch kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 11
Jun 04 18:48:24 AlexArch kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 11
Jun 04 18:48:24 AlexArch kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 11
Jun 04 18:48:24 AlexArch kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 11
Jun 04 18:48:24 AlexArch kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 11
Jun 04 18:48:24 AlexArch kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 11
Jun 04 18:48:24 AlexArch kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 11
Jun 04 18:48:24 AlexArch kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Jun 04 18:48:24 AlexArch kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Jun 04 18:48:24 AlexArch kernel: acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR DPC]
Jun 04 18:48:24 AlexArch kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
Jun 04 18:48:24 AlexArch kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
Jun 04 18:48:24 AlexArch kernel: acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
Jun 04 18:48:24 AlexArch kernel: PCI host bridge to bus 0000:00
Jun 04 18:48:24 AlexArch kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Jun 04 18:48:24 AlexArch kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Jun 04 18:48:24 AlexArch kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Jun 04 18:48:24 AlexArch kernel: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000dbfff window]
Jun 04 18:48:24 AlexArch kernel: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]
Jun 04 18:48:24 AlexArch kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:00.0: [8086:2a40] type 00 class 0x060000
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:00.0: DMAR: Disabling IOMMU for graphics on this chipset
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:00.0: DMAR: Forcing write-buffer flush capability
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:02.0: [8086:2a42] type 00 class 0x030000
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:02.0: reg 0x10: [mem 0xf4400000-0xf47fffff 64bit]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff 64bit pref]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:02.0: reg 0x20: [io  0x1800-0x1807]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:02.1: [8086:2a43] type 00 class 0x038000
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:02.1: reg 0x10: [mem 0xf4200000-0xf42fffff 64bit]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:03.0: [8086:2a44] type 00 class 0x078000
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:03.0: reg 0x10: [mem 0xfc226800-0xfc22680f 64bit]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:03.2: [8086:2a46] type 00 class 0x010185
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:03.2: reg 0x10: [io  0x1828-0x182f]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:03.2: reg 0x14: [io  0x180c-0x180f]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:03.2: reg 0x18: [io  0x1820-0x1827]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:03.2: reg 0x1c: [io  0x1808-0x180b]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:03.2: reg 0x20: [io  0x1810-0x181f]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:03.3: [8086:2a47] type 00 class 0x070002
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:03.3: reg 0x10: [io  0x1830-0x1837]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:03.3: reg 0x14: [mem 0xfc024000-0xfc024fff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:19.0: [8086:10f5] type 00 class 0x020000
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:19.0: reg 0x10: [mem 0xfc000000-0xfc01ffff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:19.0: reg 0x14: [mem 0xfc025000-0xfc025fff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:19.0: reg 0x18: [io  0x1840-0x185f]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1a.0: [8086:2937] type 00 class 0x0c0300
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1a.0: reg 0x20: [io  0x1860-0x187f]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1a.1: [8086:2938] type 00 class 0x0c0300
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1a.1: reg 0x20: [io  0x1880-0x189f]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1a.2: [8086:2939] type 00 class 0x0c0300
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1a.2: reg 0x20: [io  0x18a0-0x18bf]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1a.7: [8086:293c] type 00 class 0x0c0320
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1a.7: reg 0x10: [mem 0xfc226c00-0xfc226fff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xfc020000-0xfc023fff 64bit]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.0: [8086:2940] type 01 class 0x060400
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.1: [8086:2942] type 01 class 0x060400
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.3: [8086:2946] type 01 class 0x060400
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.4: [8086:2948] type 01 class 0x060400
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1d.0: reg 0x20: [io  0x18c0-0x18df]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1d.1: reg 0x20: [io  0x18e0-0x18ff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1d.2: reg 0x20: [io  0x1c00-0x1c1f]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1d.7: reg 0x10: [mem 0xfc227000-0xfc2273ff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1f.0: [8086:2917] type 00 class 0x060100
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1f.2: [8086:2929] type 00 class 0x010601
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1f.2: reg 0x10: [io  0x1c48-0x1c4f]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1f.2: reg 0x14: [io  0x183c-0x183f]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1f.2: reg 0x18: [io  0x1c40-0x1c47]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1f.2: reg 0x1c: [io  0x1838-0x183b]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1f.2: reg 0x20: [io  0x1c20-0x1c3f]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xfc226000-0xfc2267ff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1f.2: PME# supported from D3hot
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xfc227400-0xfc2274ff 64bit]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1f.3: reg 0x20: [io  0x1c60-0x1c7f]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
Jun 04 18:48:24 AlexArch kernel: pci 0000:03:00.0: [8086:4236] type 00 class 0x028000
Jun 04 18:48:24 AlexArch kernel: pci 0000:03:00.0: reg 0x10: [mem 0xf4300000-0xf4301fff 64bit]
Jun 04 18:48:24 AlexArch kernel: pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.1:   bridge window [mem 0xf4300000-0xf43fffff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.3: PCI bridge to [bus 05-0c]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.3:   bridge window [mem 0xf8000000-0xf9ffffff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.3:   bridge window [mem 0xf4000000-0xf40fffff 64bit pref]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.4: PCI bridge to [bus 0d-14]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.4:   bridge window [io  0x3000-0x3fff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.4:   bridge window [mem 0xfa000000-0xfbffffff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.4:   bridge window [mem 0xf4100000-0xf41fffff 64bit pref]
Jun 04 18:48:24 AlexArch kernel: pci_bus 0000:15: extended config space not accessible
Jun 04 18:48:24 AlexArch kernel: pci 0000:15:00.0: proprietary Ricoh MMC controller disabled (via CardBus function)
Jun 04 18:48:24 AlexArch kernel: pci 0000:15:00.0: MMC cards are now supported by standard SDHCI controller
Jun 04 18:48:24 AlexArch kernel: pci 0000:15:00.0: [1180:0476] type 02 class 0x060700
Jun 04 18:48:24 AlexArch kernel: pci 0000:15:00.0: reg 0x10: [mem 0xf4800000-0xf4800fff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:15:00.0: supports D1 D2
Jun 04 18:48:24 AlexArch kernel: pci 0000:15:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Jun 04 18:48:24 AlexArch kernel: pci 0000:15:00.1: [1180:0832] type 00 class 0x0c0010
Jun 04 18:48:24 AlexArch kernel: pci 0000:15:00.1: reg 0x10: [mem 0xf4801000-0xf48017ff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:15:00.1: supports D1 D2
Jun 04 18:48:24 AlexArch kernel: pci 0000:15:00.1: PME# supported from D0 D1 D2 D3hot D3cold
Jun 04 18:48:24 AlexArch kernel: pci 0000:15:00.2: [1180:0822] type 00 class 0x080500
Jun 04 18:48:24 AlexArch kernel: pci 0000:15:00.2: reg 0x10: [mem 0xf4801800-0xf48018ff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:15:00.2: supports D1 D2
Jun 04 18:48:24 AlexArch kernel: pci 0000:15:00.2: PME# supported from D0 D1 D2 D3hot D3cold
Jun 04 18:48:24 AlexArch kernel: pci 0000:15:00.4: [1180:0592] type 00 class 0x088000
Jun 04 18:48:24 AlexArch kernel: pci 0000:15:00.4: reg 0x10: [mem 0xf4802000-0xf48020ff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:15:00.4: supports D1 D2
Jun 04 18:48:24 AlexArch kernel: pci 0000:15:00.4: PME# supported from D0 D1 D2 D3hot D3cold
Jun 04 18:48:24 AlexArch kernel: pci 0000:15:00.5: [1180:0852] type 00 class 0x088000
Jun 04 18:48:24 AlexArch kernel: pci 0000:15:00.5: reg 0x10: [mem 0xf4802400-0xf48024ff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:15:00.5: supports D1 D2
Jun 04 18:48:24 AlexArch kernel: pci 0000:15:00.5: PME# supported from D0 D1 D2 D3hot D3cold
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1e.0: PCI bridge to [bus 15-18] (subtractive decode)
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1e.0:   bridge window [io  0x4000-0x7fff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1e.0:   bridge window [mem 0xf4800000-0xf7ffffff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1e.0:   bridge window [mem 0xf0000000-0xf3ffffff 64bit pref]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1e.0:   bridge window [mem 0x000d4000-0x000dbfff window] (subtractive decode)
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1e.0:   bridge window [mem 0xc0000000-0xfebfffff window] (subtractive decode)
Jun 04 18:48:24 AlexArch kernel: pci_bus 0000:16: extended config space not accessible
Jun 04 18:48:24 AlexArch kernel: pci_bus 0000:16: busn_res: [bus 16-18] end is updated to 17
Jun 04 18:48:24 AlexArch kernel: ACPI: EC: interrupt unblocked
Jun 04 18:48:24 AlexArch kernel: ACPI: EC: event unblocked
Jun 04 18:48:24 AlexArch kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Jun 04 18:48:24 AlexArch kernel: ACPI: EC: GPE=0x11
Jun 04 18:48:24 AlexArch kernel: ACPI: \_SB_.PCI0.LPC_.EC__: Boot ECDT EC initialization complete
Jun 04 18:48:24 AlexArch kernel: ACPI: \_SB_.PCI0.LPC_.EC__: EC: Used to handle transactions and events
Jun 04 18:48:24 AlexArch kernel: iommu: Default domain type: Translated 
Jun 04 18:48:24 AlexArch kernel: iommu: DMA domain TLB invalidation policy: lazy mode 
Jun 04 18:48:24 AlexArch kernel: SCSI subsystem initialized
Jun 04 18:48:24 AlexArch kernel: libata version 3.00 loaded.
Jun 04 18:48:24 AlexArch kernel: ACPI: bus type USB registered
Jun 04 18:48:24 AlexArch kernel: usbcore: registered new interface driver usbfs
Jun 04 18:48:24 AlexArch kernel: usbcore: registered new interface driver hub
Jun 04 18:48:24 AlexArch kernel: usbcore: registered new device driver usb
Jun 04 18:48:24 AlexArch kernel: pps_core: LinuxPPS API ver. 1 registered
Jun 04 18:48:24 AlexArch kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Jun 04 18:48:24 AlexArch kernel: PTP clock support registered
Jun 04 18:48:24 AlexArch kernel: EDAC MC: Ver: 3.0.0
Jun 04 18:48:24 AlexArch kernel: NetLabel: Initializing
Jun 04 18:48:24 AlexArch kernel: NetLabel:  domain hash size = 128
Jun 04 18:48:24 AlexArch kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Jun 04 18:48:24 AlexArch kernel: NetLabel:  unlabeled traffic allowed by default
Jun 04 18:48:24 AlexArch kernel: mctp: management component transport protocol core
Jun 04 18:48:24 AlexArch kernel: NET: Registered PF_MCTP protocol family
Jun 04 18:48:24 AlexArch kernel: PCI: Using ACPI for IRQ routing
Jun 04 18:48:24 AlexArch kernel: PCI: pci_cache_line_size set to 64 bytes
Jun 04 18:48:24 AlexArch kernel: e820: reserve RAM buffer [mem 0x0009ec00-0x0009ffff]
Jun 04 18:48:24 AlexArch kernel: e820: reserve RAM buffer [mem 0xbd6a1000-0xbfffffff]
Jun 04 18:48:24 AlexArch kernel: e820: reserve RAM buffer [mem 0xbd7b7000-0xbfffffff]
Jun 04 18:48:24 AlexArch kernel: e820: reserve RAM buffer [mem 0xbd8c7000-0xbfffffff]
Jun 04 18:48:24 AlexArch kernel: e820: reserve RAM buffer [mem 0xbdc00000-0xbfffffff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:02.0: vgaarb: bridge control possible
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Jun 04 18:48:24 AlexArch kernel: vgaarb: loaded
Jun 04 18:48:24 AlexArch kernel: hpet: 4 channels of 0 reserved for per-cpu timers
Jun 04 18:48:24 AlexArch kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
Jun 04 18:48:24 AlexArch kernel: hpet0: 4 comparators, 64-bit 14.318180 MHz counter
Jun 04 18:48:24 AlexArch kernel: clocksource: Switched to clocksource tsc-early
Jun 04 18:48:24 AlexArch kernel: VFS: Disk quotas dquot_6.6.0
Jun 04 18:48:24 AlexArch kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jun 04 18:48:24 AlexArch kernel: pnp: PnP ACPI init
Jun 04 18:48:24 AlexArch kernel: pnp 00:00: disabling [mem 0x000c0000-0x000c3fff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
Jun 04 18:48:24 AlexArch kernel: pnp 00:00: disabling [mem 0x000c4000-0x000c7fff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
Jun 04 18:48:24 AlexArch kernel: pnp 00:00: disabling [mem 0x000c8000-0x000cbfff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
Jun 04 18:48:24 AlexArch kernel: pnp 00:00: disabling [mem 0x000cc000-0x000cffff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
Jun 04 18:48:24 AlexArch kernel: pnp 00:00: disabling [mem 0x000d0000-0x000d3fff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
Jun 04 18:48:24 AlexArch kernel: pnp 00:00: disabling [mem 0x000dc000-0x000dffff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
Jun 04 18:48:24 AlexArch kernel: system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
Jun 04 18:48:24 AlexArch kernel: system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved
Jun 04 18:48:24 AlexArch kernel: system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved
Jun 04 18:48:24 AlexArch kernel: system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved
Jun 04 18:48:24 AlexArch kernel: system 00:00: [mem 0x000ec000-0x000effff] could not be reserved
Jun 04 18:48:24 AlexArch kernel: system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
Jun 04 18:48:24 AlexArch kernel: system 00:00: [mem 0x00100000-0xbfffffff] could not be reserved
Jun 04 18:48:24 AlexArch kernel: system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
Jun 04 18:48:24 AlexArch kernel: system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved
Jun 04 18:48:24 AlexArch kernel: system 00:01: [io  0x164e-0x164f] has been reserved
Jun 04 18:48:24 AlexArch kernel: system 00:01: [io  0x1000-0x107f] has been reserved
Jun 04 18:48:24 AlexArch kernel: system 00:01: [io  0x1180-0x11ff] has been reserved
Jun 04 18:48:24 AlexArch kernel: system 00:01: [io  0x0800-0x080f] has been reserved
Jun 04 18:48:24 AlexArch kernel: system 00:01: [io  0x15e0-0x15ef] has been reserved
Jun 04 18:48:24 AlexArch kernel: system 00:01: [io  0x1600-0x1641] has been reserved
Jun 04 18:48:24 AlexArch kernel: system 00:01: [io  0x1600-0x161b] has been reserved
Jun 04 18:48:24 AlexArch kernel: system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
Jun 04 18:48:24 AlexArch kernel: system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
Jun 04 18:48:24 AlexArch kernel: system 00:01: [mem 0xfed10000-0xfed13fff] has been reserved
Jun 04 18:48:24 AlexArch kernel: system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
Jun 04 18:48:24 AlexArch kernel: system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
Jun 04 18:48:24 AlexArch kernel: system 00:01: [mem 0xfed45000-0xfed4bfff] has been reserved
Jun 04 18:48:24 AlexArch kernel: pnp: PnP ACPI: found 6 devices
Jun 04 18:48:24 AlexArch kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Jun 04 18:48:24 AlexArch kernel: NET: Registered PF_INET protocol family
Jun 04 18:48:24 AlexArch kernel: IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Jun 04 18:48:24 AlexArch kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
Jun 04 18:48:24 AlexArch kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
Jun 04 18:48:24 AlexArch kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
Jun 04 18:48:24 AlexArch kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
Jun 04 18:48:24 AlexArch kernel: TCP: Hash tables configured (established 65536 bind 65536)
Jun 04 18:48:24 AlexArch kernel: MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
Jun 04 18:48:24 AlexArch kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
Jun 04 18:48:24 AlexArch kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
Jun 04 18:48:24 AlexArch kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Jun 04 18:48:24 AlexArch kernel: NET: Registered PF_XDP protocol family
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 02] add_size 200000 add_align 100000
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.1: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.0: BAR 14: assigned [mem 0xc0000000-0xc01fffff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.0: BAR 15: assigned [mem 0xc0200000-0xc03fffff 64bit pref]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.1: BAR 15: assigned [mem 0xc0400000-0xc05fffff 64bit pref]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.0: BAR 13: assigned [io  0x8000-0x8fff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.1: BAR 13: assigned [io  0x9000-0x9fff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.0:   bridge window [io  0x8000-0x8fff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.0:   bridge window [mem 0xc0000000-0xc01fffff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.0:   bridge window [mem 0xc0200000-0xc03fffff 64bit pref]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.1:   bridge window [io  0x9000-0x9fff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.1:   bridge window [mem 0xf4300000-0xf43fffff]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.1:   bridge window [mem 0xc0400000-0xc05fffff 64bit pref]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.3: PCI bridge to [bus 05-0c]
Jun 04 18:48:24 AlexArch kernel: pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
Jun 04 18:48:25 AlexArch kernel: pci 0000:00:1c.3:   bridge window [mem 0xf8000000-0xf9ffffff]
Jun 04 18:48:25 AlexArch kernel: pci 0000:00:1c.3:   bridge window [mem 0xf4000000-0xf40fffff 64bit pref]
Jun 04 18:48:25 AlexArch kernel: pci 0000:00:1c.4: PCI bridge to [bus 0d-14]
Jun 04 18:48:25 AlexArch kernel: pci 0000:00:1c.4:   bridge window [io  0x3000-0x3fff]
Jun 04 18:48:25 AlexArch kernel: pci 0000:00:1c.4:   bridge window [mem 0xfa000000-0xfbffffff]
Jun 04 18:48:25 AlexArch kernel: pci 0000:00:1c.4:   bridge window [mem 0xf4100000-0xf41fffff 64bit pref]
Jun 04 18:48:25 AlexArch kernel: pci 0000:15:00.0: BAR 15: assigned [mem 0xf0000000-0xf3ffffff pref]
Jun 04 18:48:25 AlexArch kernel: pci 0000:15:00.0: BAR 16: assigned [mem 0xc4000000-0xc7ffffff]
Jun 04 18:48:25 AlexArch kernel: pci 0000:15:00.0: BAR 13: assigned [io  0x4000-0x40ff]
Jun 04 18:48:25 AlexArch kernel: pci 0000:15:00.0: BAR 14: assigned [io  0x4400-0x44ff]
Jun 04 18:48:25 AlexArch kernel: pci 0000:15:00.0: CardBus bridge to [bus 16-17]
Jun 04 18:48:25 AlexArch kernel: pci 0000:15:00.0:   bridge window [io  0x4000-0x40ff]
Jun 04 18:48:25 AlexArch kernel: pci 0000:15:00.0:   bridge window [io  0x4400-0x44ff]
Jun 04 18:48:25 AlexArch kernel: pci 0000:15:00.0:   bridge window [mem 0xf0000000-0xf3ffffff pref]
Jun 04 18:48:25 AlexArch kernel: pci 0000:15:00.0:   bridge window [mem 0xc4000000-0xc7ffffff]
Jun 04 18:48:25 AlexArch kernel: pci 0000:00:1e.0: PCI bridge to [bus 15-18]
Jun 04 18:48:25 AlexArch kernel: pci 0000:00:1e.0:   bridge window [io  0x4000-0x7fff]
Jun 04 18:48:25 AlexArch kernel: pci 0000:00:1e.0:   bridge window [mem 0xf4800000-0xf7ffffff]
Jun 04 18:48:25 AlexArch kernel: pci 0000:00:1e.0:   bridge window [mem 0xf0000000-0xf3ffffff 64bit pref]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000dbfff window]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:00: resource 8 [mem 0xc0000000-0xfebfffff window]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:02: resource 0 [io  0x8000-0x8fff]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:02: resource 1 [mem 0xc0000000-0xc01fffff]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:02: resource 2 [mem 0xc0200000-0xc03fffff 64bit pref]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:03: resource 0 [io  0x9000-0x9fff]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:03: resource 1 [mem 0xf4300000-0xf43fffff]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:03: resource 2 [mem 0xc0400000-0xc05fffff 64bit pref]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:05: resource 0 [io  0x2000-0x2fff]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:05: resource 1 [mem 0xf8000000-0xf9ffffff]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:05: resource 2 [mem 0xf4000000-0xf40fffff 64bit pref]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:0d: resource 0 [io  0x3000-0x3fff]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:0d: resource 1 [mem 0xfa000000-0xfbffffff]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:0d: resource 2 [mem 0xf4100000-0xf41fffff 64bit pref]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:15: resource 0 [io  0x4000-0x7fff]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:15: resource 1 [mem 0xf4800000-0xf7ffffff]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:15: resource 2 [mem 0xf0000000-0xf3ffffff 64bit pref]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:15: resource 4 [io  0x0000-0x0cf7 window]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:15: resource 5 [io  0x0d00-0xffff window]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:15: resource 6 [mem 0x000a0000-0x000bffff window]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:15: resource 7 [mem 0x000d4000-0x000dbfff window]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:15: resource 8 [mem 0xc0000000-0xfebfffff window]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:16: resource 0 [io  0x4000-0x40ff]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:16: resource 1 [io  0x4400-0x44ff]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:16: resource 2 [mem 0xf0000000-0xf3ffffff pref]
Jun 04 18:48:25 AlexArch kernel: pci_bus 0000:16: resource 3 [mem 0xc4000000-0xc7ffffff]
Jun 04 18:48:25 AlexArch kernel: pci 0000:00:1a.0: Refused to change power state from D1 to D0
Jun 04 18:48:25 AlexArch kernel: pci 0000:00:1a.2: Refused to change power state from D1 to D0
Jun 04 18:48:25 AlexArch kernel: pci 0000:00:1d.0: Refused to change power state from D1 to D0
Jun 04 18:48:25 AlexArch kernel: PCI: CLS 64 bytes, default 64
Jun 04 18:48:25 AlexArch kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Jun 04 18:48:25 AlexArch kernel: software IO TLB: mapped [mem 0x00000000b96a1000-0x00000000bd6a1000] (64MB)
Jun 04 18:48:25 AlexArch kernel: Trying to unpack rootfs image as initramfs...
Jun 04 18:48:25 AlexArch kernel: Initialise system trusted keyrings
Jun 04 18:48:25 AlexArch kernel: Key type blacklist registered
Jun 04 18:48:25 AlexArch kernel: workingset: timestamp_bits=41 max_order=21 bucket_order=0
Jun 04 18:48:25 AlexArch kernel: zbud: loaded
Jun 04 18:48:25 AlexArch kernel: integrity: Platform Keyring initialized
Jun 04 18:48:25 AlexArch kernel: integrity: Machine keyring initialized
Jun 04 18:48:25 AlexArch kernel: Key type asymmetric registered
Jun 04 18:48:25 AlexArch kernel: Asymmetric key parser 'x509' registered
Jun 04 18:48:25 AlexArch kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
Jun 04 18:48:25 AlexArch kernel: io scheduler mq-deadline registered
Jun 04 18:48:25 AlexArch kernel: io scheduler kyber registered
Jun 04 18:48:25 AlexArch kernel: io scheduler bfq registered
Jun 04 18:48:25 AlexArch kernel: pcieport 0000:00:1c.0: PME: Signaling with IRQ 24
Jun 04 18:48:25 AlexArch kernel: pcieport 0000:00:1c.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
Jun 04 18:48:25 AlexArch kernel: pcieport 0000:00:1c.1: PME: Signaling with IRQ 25
Jun 04 18:48:25 AlexArch kernel: pcieport 0000:00:1c.1: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
Jun 04 18:48:25 AlexArch kernel: pcieport 0000:00:1c.3: PME: Signaling with IRQ 26
Jun 04 18:48:25 AlexArch kernel: pcieport 0000:00:1c.3: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
Jun 04 18:48:25 AlexArch kernel: pcieport 0000:00:1c.4: PME: Signaling with IRQ 27
Jun 04 18:48:25 AlexArch kernel: pcieport 0000:00:1c.4: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
Jun 04 18:48:25 AlexArch kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jun 04 18:48:25 AlexArch kernel: Monitor-Mwait will be used to enter C-1 state
Jun 04 18:48:25 AlexArch kernel: Monitor-Mwait will be used to enter C-2 state
Jun 04 18:48:25 AlexArch kernel: Monitor-Mwait will be used to enter C-3 state
Jun 04 18:48:25 AlexArch kernel: ACPI: \_PR_.CPU0: Found 3 idle states
Jun 04 18:48:25 AlexArch kernel: ACPI: AC: AC Adapter [AC] (off-line)
Jun 04 18:48:25 AlexArch kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
Jun 04 18:48:25 AlexArch kernel: ACPI: button: Lid Switch [LID]
Jun 04 18:48:25 AlexArch kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
Jun 04 18:48:25 AlexArch kernel: ACPI: button: Sleep Button [SLPB]
Jun 04 18:48:25 AlexArch kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
Jun 04 18:48:25 AlexArch kernel: ACPI: button: Power Button [PWRF]
Jun 04 18:48:25 AlexArch kernel: thermal LNXTHERM:00: registered as thermal_zone0
Jun 04 18:48:25 AlexArch kernel: ACPI: thermal: Thermal Zone [THM0] (42 C)
Jun 04 18:48:25 AlexArch kernel: thermal LNXTHERM:01: registered as thermal_zone1
Jun 04 18:48:25 AlexArch kernel: ACPI: thermal: Thermal Zone [THM1] (38 C)
Jun 04 18:48:25 AlexArch kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Jun 04 18:48:25 AlexArch kernel: ACPI: battery: Slot [BAT0] (battery present)
Jun 04 18:48:25 AlexArch kernel: 0000:00:03.3: ttyS4 at I/O 0x1830 (irq = 17, base_baud = 115200) is a 16550A
Jun 04 18:48:25 AlexArch kernel: Non-volatile memory driver v1.3
Jun 04 18:48:25 AlexArch kernel: Linux agpgart interface v0.103
Jun 04 18:48:25 AlexArch kernel: tpm_tis 00:05: 1.2 TPM (device-id 0x1020, rev-id 6)
Jun 04 18:48:25 AlexArch kernel: random: crng init done
Jun 04 18:48:25 AlexArch kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
Jun 04 18:48:25 AlexArch kernel: ACPI: bus type drm_connector registered
Jun 04 18:48:25 AlexArch kernel: ahci 0000:00:1f.2: version 3.0
Jun 04 18:48:25 AlexArch kernel: ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
Jun 04 18:48:25 AlexArch kernel: ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x3 impl SATA mode
Jun 04 18:48:25 AlexArch kernel: ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ccc sxs 
Jun 04 18:48:25 AlexArch kernel: scsi host0: ahci
Jun 04 18:48:25 AlexArch kernel: scsi host1: ahci
Jun 04 18:48:25 AlexArch kernel: scsi host2: ahci
Jun 04 18:48:25 AlexArch kernel: scsi host3: ahci
Jun 04 18:48:25 AlexArch kernel: ata1: SATA max UDMA/133 abar m2048@0xfc226000 port 0xfc226100 irq 28
Jun 04 18:48:25 AlexArch kernel: ata2: SATA max UDMA/133 abar m2048@0xfc226000 port 0xfc226180 irq 28
Jun 04 18:48:25 AlexArch kernel: ata3: DUMMY
Jun 04 18:48:25 AlexArch kernel: ata4: DUMMY
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1a.0: Refused to change power state from D1 to D0
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1a.0: UHCI Host Controller
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1a.0: detected 2 ports
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1a.0: irq 20, io port 0x00001860
Jun 04 18:48:25 AlexArch kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.03
Jun 04 18:48:25 AlexArch kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 04 18:48:25 AlexArch kernel: usb usb1: Product: UHCI Host Controller
Jun 04 18:48:25 AlexArch kernel: usb usb1: Manufacturer: Linux 6.3.5-arch1-1 uhci_hcd
Jun 04 18:48:25 AlexArch kernel: usb usb1: SerialNumber: 0000:00:1a.0
Jun 04 18:48:25 AlexArch kernel: hub 1-0:1.0: USB hub found
Jun 04 18:48:25 AlexArch kernel: hub 1-0:1.0: 2 ports detected
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1a.1: UHCI Host Controller
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 2
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1a.1: detected 2 ports
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1a.1: irq 21, io port 0x00001880
Jun 04 18:48:25 AlexArch kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.03
Jun 04 18:48:25 AlexArch kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 04 18:48:25 AlexArch kernel: usb usb2: Product: UHCI Host Controller
Jun 04 18:48:25 AlexArch kernel: usb usb2: Manufacturer: Linux 6.3.5-arch1-1 uhci_hcd
Jun 04 18:48:25 AlexArch kernel: usb usb2: SerialNumber: 0000:00:1a.1
Jun 04 18:48:25 AlexArch kernel: hub 2-0:1.0: USB hub found
Jun 04 18:48:25 AlexArch kernel: hub 2-0:1.0: 2 ports detected
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1a.2: Refused to change power state from D1 to D0
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1a.2: UHCI Host Controller
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 3
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1a.2: detected 2 ports
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1a.2: irq 22, io port 0x000018a0
Jun 04 18:48:25 AlexArch kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.03
Jun 04 18:48:25 AlexArch kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 04 18:48:25 AlexArch kernel: usb usb3: Product: UHCI Host Controller
Jun 04 18:48:25 AlexArch kernel: usb usb3: Manufacturer: Linux 6.3.5-arch1-1 uhci_hcd
Jun 04 18:48:25 AlexArch kernel: usb usb3: SerialNumber: 0000:00:1a.2
Jun 04 18:48:25 AlexArch kernel: hub 3-0:1.0: USB hub found
Jun 04 18:48:25 AlexArch kernel: hub 3-0:1.0: 2 ports detected
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1d.0: Refused to change power state from D1 to D0
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1d.0: detected 2 ports
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1d.0: irq 16, io port 0x000018c0
Jun 04 18:48:25 AlexArch kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.03
Jun 04 18:48:25 AlexArch kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 04 18:48:25 AlexArch kernel: usb usb4: Product: UHCI Host Controller
Jun 04 18:48:25 AlexArch kernel: usb usb4: Manufacturer: Linux 6.3.5-arch1-1 uhci_hcd
Jun 04 18:48:25 AlexArch kernel: usb usb4: SerialNumber: 0000:00:1d.0
Jun 04 18:48:25 AlexArch kernel: hub 4-0:1.0: USB hub found
Jun 04 18:48:25 AlexArch kernel: hub 4-0:1.0: 2 ports detected
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 5
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1d.1: detected 2 ports
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1d.1: irq 17, io port 0x000018e0
Jun 04 18:48:25 AlexArch kernel: usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.03
Jun 04 18:48:25 AlexArch kernel: usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 04 18:48:25 AlexArch kernel: usb usb5: Product: UHCI Host Controller
Jun 04 18:48:25 AlexArch kernel: usb usb5: Manufacturer: Linux 6.3.5-arch1-1 uhci_hcd
Jun 04 18:48:25 AlexArch kernel: usb usb5: SerialNumber: 0000:00:1d.1
Jun 04 18:48:25 AlexArch kernel: hub 5-0:1.0: USB hub found
Jun 04 18:48:25 AlexArch kernel: hub 5-0:1.0: 2 ports detected
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 6
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1d.2: detected 2 ports
Jun 04 18:48:25 AlexArch kernel: uhci_hcd 0000:00:1d.2: irq 18, io port 0x00001c00
Jun 04 18:48:25 AlexArch kernel: usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.03
Jun 04 18:48:25 AlexArch kernel: usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 04 18:48:25 AlexArch kernel: usb usb6: Product: UHCI Host Controller
Jun 04 18:48:25 AlexArch kernel: usb usb6: Manufacturer: Linux 6.3.5-arch1-1 uhci_hcd
Jun 04 18:48:25 AlexArch kernel: usb usb6: SerialNumber: 0000:00:1d.2
Jun 04 18:48:25 AlexArch kernel: hub 6-0:1.0: USB hub found
Jun 04 18:48:25 AlexArch kernel: hub 6-0:1.0: 2 ports detected
Jun 04 18:48:25 AlexArch kernel: usbcore: registered new interface driver usbserial_generic
Jun 04 18:48:25 AlexArch kernel: usbserial: USB Serial support registered for generic
Jun 04 18:48:25 AlexArch kernel: rtc_cmos 00:02: RTC can wake from S4
Jun 04 18:48:25 AlexArch kernel: rtc_cmos 00:02: registered as rtc0
Jun 04 18:48:25 AlexArch kernel: rtc_cmos 00:02: setting system clock to 2023-06-04T16:48:16 UTC (1685897296)
Jun 04 18:48:25 AlexArch kernel: rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Jun 04 18:48:25 AlexArch kernel: intel_pstate: CPU model not supported
Jun 04 18:48:25 AlexArch kernel: ledtrig-cpu: registered to indicate activity on CPUs
Jun 04 18:48:25 AlexArch kernel: vesafb: mode is 1280x800x32, linelength=5120, pages=0
Jun 04 18:48:25 AlexArch kernel: vesafb: scrolling: redraw
Jun 04 18:48:25 AlexArch kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Jun 04 18:48:25 AlexArch kernel: vesafb: framebuffer at 0xd0000000, mapped to 0x0000000045d25885, using 4032k, total 4032k
Jun 04 18:48:25 AlexArch kernel: fbcon: Deferring console take-over
Jun 04 18:48:25 AlexArch kernel: fb0: VESA VGA frame buffer device
Jun 04 18:48:25 AlexArch kernel: hid: raw HID events driver (C) Jiri Kosina
Jun 04 18:48:25 AlexArch kernel: drop_monitor: Initializing network drop monitor service
Jun 04 18:48:25 AlexArch kernel: ehci-pci 0000:00:1a.7: EHCI Host Controller
Jun 04 18:48:25 AlexArch kernel: ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 7
Jun 04 18:48:25 AlexArch kernel: ehci-pci 0000:00:1a.7: debug port 1
Jun 04 18:48:25 AlexArch kernel: ehci-pci 0000:00:1a.7: irq 23, io mem 0xfc226c00
Jun 04 18:48:25 AlexArch kernel: ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
Jun 04 18:48:25 AlexArch kernel: usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.03
Jun 04 18:48:25 AlexArch kernel: usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 04 18:48:25 AlexArch kernel: usb usb7: Product: EHCI Host Controller
Jun 04 18:48:25 AlexArch kernel: usb usb7: Manufacturer: Linux 6.3.5-arch1-1 ehci_hcd
Jun 04 18:48:25 AlexArch kernel: usb usb7: SerialNumber: 0000:00:1a.7
Jun 04 18:48:25 AlexArch kernel: hub 7-0:1.0: USB hub found
Jun 04 18:48:25 AlexArch kernel: hub 7-0:1.0: 6 ports detected
Jun 04 18:48:25 AlexArch kernel: Initializing XFRM netlink socket
Jun 04 18:48:25 AlexArch kernel: NET: Registered PF_INET6 protocol family
Jun 04 18:48:25 AlexArch kernel: hub 1-0:1.0: USB hub found
Jun 04 18:48:25 AlexArch kernel: hub 1-0:1.0: 2 ports detected
Jun 04 18:48:25 AlexArch kernel: hub 2-0:1.0: USB hub found
Jun 04 18:48:25 AlexArch kernel: hub 2-0:1.0: 2 ports detected
Jun 04 18:48:25 AlexArch kernel: hub 3-0:1.0: USB hub found
Jun 04 18:48:25 AlexArch kernel: hub 3-0:1.0: 2 ports detected
Jun 04 18:48:25 AlexArch kernel: Freeing initrd memory: 14056K
Jun 04 18:48:25 AlexArch kernel: ehci-pci 0000:00:1d.7: EHCI Host Controller
Jun 04 18:48:25 AlexArch kernel: ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 8
Jun 04 18:48:25 AlexArch kernel: ehci-pci 0000:00:1d.7: debug port 1
Jun 04 18:48:25 AlexArch kernel: ehci-pci 0000:00:1d.7: irq 19, io mem 0xfc227000
Jun 04 18:48:25 AlexArch kernel: Segment Routing with IPv6
Jun 04 18:48:25 AlexArch kernel: RPL Segment Routing with IPv6
Jun 04 18:48:25 AlexArch kernel: In-situ OAM (IOAM) with IPv6
Jun 04 18:48:25 AlexArch kernel: NET: Registered PF_PACKET protocol family
Jun 04 18:48:25 AlexArch kernel: microcode: Microcode Update Driver: v2.2.
Jun 04 18:48:25 AlexArch kernel: IPI shorthand broadcast: enabled
Jun 04 18:48:25 AlexArch kernel: sched_clock: Marking stable (1480008422, 1124177)->(1695648359, -214515760)
Jun 04 18:48:25 AlexArch kernel: registered taskstats version 1
Jun 04 18:48:25 AlexArch kernel: Loading compiled-in X.509 certificates
Jun 04 18:48:25 AlexArch kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 708d14cc5059e65191b3ff221a9bc4f4725df7c2'
Jun 04 18:48:25 AlexArch kernel: zswap: loaded using pool zstd/zsmalloc
Jun 04 18:48:25 AlexArch kernel: Key type .fscrypt registered
Jun 04 18:48:25 AlexArch kernel: Key type fscrypt-provisioning registered
Jun 04 18:48:25 AlexArch kernel: PM:   Magic number: 11:783:842
Jun 04 18:48:25 AlexArch kernel: RAS: Correctable Errors collector initialized.
Jun 04 18:48:25 AlexArch kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Jun 04 18:48:25 AlexArch kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0(SECURITY FREEZE LOCK) filtered out
Jun 04 18:48:25 AlexArch kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
Jun 04 18:48:25 AlexArch kernel: ata1.00: supports DRM functions and may not be fully accessible
Jun 04 18:48:25 AlexArch kernel: ata1.00: ATA-11: Samsung SSD 870 EVO 500GB, SVT02B6Q, max UDMA/133
Jun 04 18:48:25 AlexArch kernel: ata1.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 32), AA
Jun 04 18:48:25 AlexArch kernel: ata1.00: Features: Trust Dev-Sleep NCQ-sndrcv
Jun 04 18:48:25 AlexArch kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0(SECURITY FREEZE LOCK) filtered out
Jun 04 18:48:25 AlexArch kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
Jun 04 18:48:25 AlexArch kernel: ata1.00: supports DRM functions and may not be fully accessible
Jun 04 18:48:25 AlexArch kernel: ata1.00: configured for UDMA/133
Jun 04 18:48:25 AlexArch kernel: scsi 0:0:0:0: Direct-Access     ATA      Samsung SSD 870  2B6Q PQ: 0 ANSI: 5
Jun 04 18:48:25 AlexArch kernel: ata1.00: Enabling discard_zeroes_data
Jun 04 18:48:25 AlexArch kernel: sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
Jun 04 18:48:25 AlexArch kernel: sd 0:0:0:0: [sda] Write Protect is off
Jun 04 18:48:25 AlexArch kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Jun 04 18:48:25 AlexArch kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jun 04 18:48:25 AlexArch kernel: sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
Jun 04 18:48:25 AlexArch kernel: ata1.00: Enabling discard_zeroes_data
Jun 04 18:48:25 AlexArch kernel:  sda: sda1 sda2
Jun 04 18:48:25 AlexArch kernel: sd 0:0:0:0: [sda] supports TCG Opal
Jun 04 18:48:25 AlexArch kernel: sd 0:0:0:0: [sda] Attached SCSI disk
Jun 04 18:48:25 AlexArch kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Jun 04 18:48:25 AlexArch kernel: ata2.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
Jun 04 18:48:25 AlexArch kernel: ata2.00: ATAPI: Optiarc  DVD RW AD-7910S, 1.D0, max UDMA/100
Jun 04 18:48:25 AlexArch kernel: ata2.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
Jun 04 18:48:25 AlexArch kernel: ata2.00: configured for UDMA/100
Jun 04 18:48:25 AlexArch kernel: scsi 1:0:0:0: CD-ROM            Optiarc  DVD RW AD-7910S  1.D0 PQ: 0 ANSI: 5
Jun 04 18:48:25 AlexArch kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2097d71f60e, max_idle_ns: 440795271883 ns
Jun 04 18:48:25 AlexArch kernel: clocksource: Switched to clocksource tsc
Jun 04 18:48:25 AlexArch kernel: ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Jun 04 18:48:25 AlexArch kernel: usb usb8: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.03
Jun 04 18:48:25 AlexArch kernel: usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 04 18:48:25 AlexArch kernel: usb usb8: Product: EHCI Host Controller
Jun 04 18:48:25 AlexArch kernel: usb usb8: Manufacturer: Linux 6.3.5-arch1-1 ehci_hcd
Jun 04 18:48:25 AlexArch kernel: usb usb8: SerialNumber: 0000:00:1d.7
Jun 04 18:48:25 AlexArch kernel: hub 8-0:1.0: USB hub found
Jun 04 18:48:25 AlexArch kernel: hub 8-0:1.0: 6 ports detected
Jun 04 18:48:25 AlexArch kernel: hub 4-0:1.0: USB hub found
Jun 04 18:48:25 AlexArch kernel: hub 4-0:1.0: 2 ports detected
Jun 04 18:48:25 AlexArch kernel: hub 5-0:1.0: USB hub found
Jun 04 18:48:25 AlexArch kernel: hub 5-0:1.0: 2 ports detected
Jun 04 18:48:25 AlexArch kernel: hub 6-0:1.0: USB hub found
Jun 04 18:48:25 AlexArch kernel: hub 6-0:1.0: 2 ports detected
Jun 04 18:48:25 AlexArch kernel: Freeing unused decrypted memory: 2036K
Jun 04 18:48:25 AlexArch kernel: Freeing unused kernel image (initmem) memory: 3324K
Jun 04 18:48:25 AlexArch kernel: Write protecting the kernel read-only data: 30720k
Jun 04 18:48:25 AlexArch kernel: Freeing unused kernel image (rodata/data gap) memory: 1680K
Jun 04 18:48:25 AlexArch kernel: usb 2-1: new full-speed USB device number 2 using uhci_hcd
Jun 04 18:48:25 AlexArch kernel: clocksource: timekeeping watchdog on CPU1: Marking clocksource 'tsc' as unstable because the skew is too large:
Jun 04 18:48:25 AlexArch kernel: clocksource:                       'hpet' wd_nsec: 47281649853 wd_now: 5913c382 wd_last: 30b9c28c mask: ffffffff
Jun 04 18:48:25 AlexArch kernel: clocksource:                       'tsc' cs_nsec: 506642187 cs_now: b5657196f cs_last: b120ebcf2 mask: ffffffffffffffff
Jun 04 18:48:25 AlexArch kernel: clocksource:                       Clocksource 'tsc' skewed -46775007666 ns (18446744026934 ms) over watchdog 'hpet' interval of 47281649853 ns (47281 ms)
Jun 04 18:48:25 AlexArch kernel: clocksource:                       'tsc' is current clocksource.
Jun 04 18:48:25 AlexArch kernel: tsc: Marking TSC unstable due to clocksource watchdog
Jun 04 18:48:25 AlexArch kernel: TSC found unstable after boot, most likely due to broken BIOS. Use 'tsc=unstable'.
Jun 04 18:48:25 AlexArch kernel: sched_clock: Marking unstable (2503396349, 1124168)<-(2719036609, -214515760)
Jun 04 18:48:25 AlexArch kernel: clocksource: Checking clocksource tsc synchronization from CPU 0 to CPUs 1.
Jun 04 18:48:25 AlexArch kernel: clocksource: Switched to clocksource hpet
Jun 04 18:48:25 AlexArch kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jun 04 18:48:25 AlexArch kernel: rodata_test: all tests were successful
Jun 04 18:48:25 AlexArch kernel: x86/mm: Checking user space page tables
Jun 04 18:48:25 AlexArch kernel: usb 2-1: New USB device found, idVendor=08ff, idProduct=2810, bcdDevice=17.03
Jun 04 18:48:25 AlexArch kernel: usb 2-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
Jun 04 18:48:25 AlexArch kernel: usb 2-1: Product: Fingerprint Sensor
Jun 04 18:48:25 AlexArch kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jun 04 18:48:25 AlexArch kernel: Run /init as init process
Jun 04 18:48:25 AlexArch kernel:   with arguments:
Jun 04 18:48:25 AlexArch kernel:     /init
Jun 04 18:48:25 AlexArch kernel:   with environment:
Jun 04 18:48:25 AlexArch kernel:     HOME=/
Jun 04 18:48:25 AlexArch kernel:     TERM=linux
Jun 04 18:48:25 AlexArch kernel:     BOOT_IMAGE=/boot/vmlinuz-linux
Jun 04 18:48:25 AlexArch kernel: i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
Jun 04 18:48:25 AlexArch kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Jun 04 18:48:25 AlexArch kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Jun 04 18:48:25 AlexArch kernel: scsi host4: ata_generic
Jun 04 18:48:25 AlexArch kernel: scsi host5: ata_generic
Jun 04 18:48:25 AlexArch kernel: ata5: PATA max UDMA/100 cmd 0x1828 ctl 0x180c bmdma 0x1810 irq 18
Jun 04 18:48:25 AlexArch kernel: ata6: PATA max UDMA/100 cmd 0x1820 ctl 0x1808 bmdma 0x1818 irq 18
Jun 04 18:48:25 AlexArch kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
Jun 04 18:48:25 AlexArch kernel: sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
Jun 04 18:48:25 AlexArch kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
Jun 04 18:48:25 AlexArch kernel: firewire_ohci 0000:15:00.1: added OHCI v1.10 device as card 0, 4 IR + 4 IT contexts, quirks 0x11
Jun 04 18:48:25 AlexArch kernel: thinkpad_acpi: ThinkPad ACPI Extras v0.26
Jun 04 18:48:25 AlexArch kernel: thinkpad_acpi: http://ibm-acpi.sf.net/
Jun 04 18:48:25 AlexArch kernel: thinkpad_acpi: ThinkPad BIOS 6FET50WW (1.20 ), EC 7VHT12WW-1.01
Jun 04 18:48:25 AlexArch kernel: thinkpad_acpi: Lenovo ThinkPad T500, model 22434EG
Jun 04 18:48:25 AlexArch kernel: sdhci: Secure Digital Host Controller Interface driver
Jun 04 18:48:25 AlexArch kernel: sdhci: Copyright(c) Pierre Ossman
Jun 04 18:48:25 AlexArch kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
Jun 04 18:48:25 AlexArch kernel: thinkpad_acpi: radio switch found; radios are disabled
Jun 04 18:48:25 AlexArch kernel: thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
Jun 04 18:48:25 AlexArch kernel: thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
Jun 04 18:48:25 AlexArch kernel: thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is blocked
Jun 04 18:48:25 AlexArch kernel: thinkpad_acpi: Standard ACPI backlight interface available, not loading native one
Jun 04 18:48:25 AlexArch kernel: thinkpad_acpi: secondary fan control detected & enabled
Jun 04 18:48:25 AlexArch kernel: thinkpad_acpi: battery 1 registered (start 0, stop 0, behaviours: 0x1)
Jun 04 18:48:25 AlexArch kernel: ACPI: battery: new extension: ThinkPad Battery Extension
Jun 04 18:48:25 AlexArch kernel: input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input5
Jun 04 18:48:25 AlexArch kernel: sdhci-pci 0000:15:00.2: SDHCI controller found [1180:0822] (rev 21)
Jun 04 18:48:25 AlexArch kernel: sdhci-pci 0000:15:00.2: Will use DMA mode even though HW doesn't fully claim to support it.
Jun 04 18:48:25 AlexArch kernel: mmc0 bounce up to 128 segments into one, max segment size 65536 bytes
Jun 04 18:48:25 AlexArch kernel: sdhci-pci 0000:15:00.2: Will use DMA mode even though HW doesn't fully claim to support it.
Jun 04 18:48:25 AlexArch kernel: mmc0: SDHCI controller on PCI [0000:15:00.2] using DMA
Jun 04 18:48:25 AlexArch kernel: sdhci-pci 0000:15:00.2: Will use DMA mode even though HW doesn't fully claim to support it.
Jun 04 18:48:25 AlexArch kernel: firewire_core 0000:15:00.1: created device fw0: GUID 00016c00006e952d, S400
Jun 04 18:48:25 AlexArch kernel: pci 0000:00:00.0: Intel GM45 Chipset
Jun 04 18:48:25 AlexArch kernel: pci 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
Jun 04 18:48:25 AlexArch kernel: pci 0000:00:00.0: detected 32768K stolen memory
Jun 04 18:48:25 AlexArch kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
Jun 04 18:48:25 AlexArch kernel: ------------[ cut here ]------------
Jun 04 18:48:25 AlexArch kernel: WARNING: CPU: 0 PID: 54 at kernel/workqueue.c:3167 __flush_work.isra.0+0x270/0x280
Jun 04 18:48:25 AlexArch kernel: Modules linked in: i915(+) i2c_algo_bit drm_buddy sdhci_pci drm_display_helper cqhci cec sdhci thinkpad_acpi serio_raw firewire_ohci atkbd sr_mod libps2 vivaldi_fmap firewire_core ledtrig_audio ttm mmc_core cdrom platform_profile crc_itu_t ata_generic intel_agp snd intel_gtt pata_acpi soundcore rfkill i8042 video serio wmi
Jun 04 18:48:25 AlexArch kernel: CPU: 0 PID: 54 Comm: kworker/0:2 Not tainted 6.3.5-arch1-1 #1 649d963afc0261175aabf0511660febbb7b06177
Jun 04 18:48:25 AlexArch kernel: Hardware name: LENOVO 22434EG/22434EG, BIOS 6FET50WW (1.20 ) 10/30/2008
Jun 04 18:48:25 AlexArch kernel: Workqueue: events i915_hotplug_work_func [i915]
Jun 04 18:48:25 AlexArch kernel: RIP: 0010:__flush_work.isra.0+0x270/0x280
Jun 04 18:48:25 AlexArch kernel: Code: 8b 04 25 80 36 03 00 48 89 44 24 40 48 8b 73 30 8b 4b 28 e9 e3 fe ff ff 40 30 f6 4c 8b 3e e9 21 fe ff ff 0f 0b e9 3a ff ff ff <0f> 0b e9 33 ff ff ff e8 f4 97 c7 00 0f 1f 40 00 90 90 90 90 90 90
Jun 04 18:48:25 AlexArch kernel: RSP: 0018:ffffbb2b80597b70 EFLAGS: 00010246
Jun 04 18:48:25 AlexArch kernel: RAX: 0000000000000000 RBX: ffff97df86654718 RCX: 0000000000000000
Jun 04 18:48:25 AlexArch kernel: RDX: 0000000000000001 RSI: 0000000000000001 RDI: ffffbb2b80597bb8
Jun 04 18:48:25 AlexArch kernel: RBP: ffff97df86654718 R08: 0000000000000200 R09: ffff97df85808c38
Jun 04 18:48:25 AlexArch kernel: R10: 0000000000000080 R11: ffff97df86654000 R12: 0000000000000001
Jun 04 18:48:25 AlexArch kernel: R13: ffffbb2b80597b70 R14: 0000000000000001 R15: ffff97df8595f800
Jun 04 18:48:25 AlexArch kernel: FS:  0000000000000000(0000) GS:ffff97e0b3c00000(0000) knlGS:0000000000000000
Jun 04 18:48:25 AlexArch kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Jun 04 18:48:25 AlexArch kernel: CR2: 0000564dcaeec0a0 CR3: 00000001ee620000 CR4: 00000000000006f0
Jun 04 18:48:25 AlexArch kernel: Call Trace:
Jun 04 18:48:25 AlexArch kernel:  <TASK>
Jun 04 18:48:25 AlexArch kernel:  ? __flush_work.isra.0+0x270/0x280
Jun 04 18:48:25 AlexArch kernel:  ? __warn+0x81/0x130
Jun 04 18:48:25 AlexArch kernel:  ? __flush_work.isra.0+0x270/0x280
Jun 04 18:48:25 AlexArch kernel:  ? report_bug+0x171/0x1a0
Jun 04 18:48:25 AlexArch kernel:  ? handle_bug+0x3c/0x80
Jun 04 18:48:25 AlexArch kernel:  ? exc_invalid_op+0x17/0x70
Jun 04 18:48:25 AlexArch kernel:  ? asm_exc_invalid_op+0x1a/0x20
Jun 04 18:48:25 AlexArch kernel:  ? __flush_work.isra.0+0x270/0x280
Jun 04 18:48:25 AlexArch kernel:  __cancel_work_timer+0xff/0x190
Jun 04 18:48:25 AlexArch kernel:  ? ktime_get_mono_fast_ns+0x3d/0x90
Jun 04 18:48:25 AlexArch kernel:  ? __pm_runtime_suspend+0x6f/0xd0
Jun 04 18:48:25 AlexArch kernel:  drm_dp_cec_unset_edid+0x44/0x100 [drm_display_helper bdc07091766e602cc03a6f6e307e33189cf7766d]
Jun 04 18:48:25 AlexArch kernel:  ? intel_digital_port_connected+0x55/0x80 [i915 0064ab97cf984a3bd35172634e1d6f65877e9eef]
Jun 04 18:48:25 AlexArch kernel:  intel_dp_detect+0x46d/0x640 [i915 0064ab97cf984a3bd35172634e1d6f65877e9eef]
Jun 04 18:48:25 AlexArch kernel:  drm_helper_probe_detect_ctx+0x55/0x110
Jun 04 18:48:25 AlexArch kernel:  intel_encoder_hotplug+0x47/0x100 [i915 0064ab97cf984a3bd35172634e1d6f65877e9eef]
Jun 04 18:48:25 AlexArch kernel:  intel_dp_hotplug+0x73/0x160 [i915 0064ab97cf984a3bd35172634e1d6f65877e9eef]
Jun 04 18:48:25 AlexArch kernel:  i915_hotplug_work_func+0x215/0x310 [i915 0064ab97cf984a3bd35172634e1d6f65877e9eef]
Jun 04 18:48:25 AlexArch kernel:  process_one_work+0x1c7/0x3d0
Jun 04 18:48:25 AlexArch kernel:  worker_thread+0x51/0x390
Jun 04 18:48:25 AlexArch kernel:  ? __pfx_worker_thread+0x10/0x10
Jun 04 18:48:25 AlexArch kernel:  kthread+0xde/0x110
Jun 04 18:48:25 AlexArch kernel:  ? __pfx_kthread+0x10/0x10
Jun 04 18:48:25 AlexArch kernel:  ret_from_fork+0x2c/0x50
Jun 04 18:48:25 AlexArch kernel:  </TASK>
Jun 04 18:48:25 AlexArch kernel: ---[ end trace 0000000000000000 ]---
Jun 04 18:48:25 AlexArch kernel: i915 0000:00:02.0: [drm] Skipping intel_backlight registration
Jun 04 18:48:25 AlexArch kernel: [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
Jun 04 18:48:25 AlexArch kernel: ACPI: video: Video Device [VID] (multi-head: yes  rom: no  post: no)
Jun 04 18:48:25 AlexArch kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input6
Jun 04 18:48:25 AlexArch kernel: acpi device:01: registered as cooling_device2
Jun 04 18:48:25 AlexArch kernel: fbcon: i915drmfb (fb0) is primary device
Jun 04 18:48:25 AlexArch kernel: fbcon: Deferring console take-over
Jun 04 18:48:25 AlexArch kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
Jun 04 18:48:25 AlexArch kernel: fbcon: Taking over console
Jun 04 18:48:25 AlexArch kernel: Console: switching to colour frame buffer device 160x50
Jun 04 18:48:25 AlexArch kernel: EXT4-fs (sda1): mounted filesystem 882f05fb-ea19-4494-99b9-75cacc2e0493 with ordered data mode. Quota mode: none.
Jun 04 18:48:25 AlexArch systemd[1]: systemd 253.4-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT -QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
Jun 04 18:48:25 AlexArch systemd[1]: Detected architecture x86-64.
Jun 04 18:48:25 AlexArch systemd[1]: Hostname set to <AlexArch>.
Jun 04 18:48:25 AlexArch systemd[1]: bpf-lsm: LSM BPF program attached
Jun 04 18:48:25 AlexArch kernel: memfd_create() without MFD_EXEC nor MFD_NOEXEC_SEAL, pid=1 'systemd'
Jun 04 18:48:25 AlexArch systemd[1]: Queued start job for default target Graphical Interface.
Jun 04 18:48:25 AlexArch systemd[1]: Created slice Slice /system/getty.
Jun 04 18:48:25 AlexArch systemd[1]: Created slice Slice /system/modprobe.
Jun 04 18:48:25 AlexArch systemd[1]: Created slice User and Session Slice.
Jun 04 18:48:25 AlexArch systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Jun 04 18:48:25 AlexArch systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Jun 04 18:48:25 AlexArch systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Jun 04 18:48:25 AlexArch systemd[1]: Reached target Local Encrypted Volumes.
Jun 04 18:48:25 AlexArch systemd[1]: Reached target Login Prompts.
Jun 04 18:48:25 AlexArch systemd[1]: Reached target Local Integrity Protected Volumes.
Jun 04 18:48:25 AlexArch systemd[1]: Reached target Path Units.
Jun 04 18:48:25 AlexArch systemd[1]: Reached target Remote File Systems.
Jun 04 18:48:25 AlexArch systemd[1]: Reached target Slice Units.
Jun 04 18:48:25 AlexArch systemd[1]: Reached target Swaps.
Jun 04 18:48:25 AlexArch systemd[1]: Reached target Local Verity Protected Volumes.
Jun 04 18:48:25 AlexArch systemd[1]: Listening on Device-mapper event daemon FIFOs.
Jun 04 18:48:25 AlexArch systemd[1]: Listening on LVM2 poll daemon socket.
Jun 04 18:48:25 AlexArch systemd[1]: Listening on Process Core Dump Socket.
Jun 04 18:48:25 AlexArch systemd[1]: Listening on Journal Socket (/dev/log).
Jun 04 18:48:25 AlexArch systemd[1]: Listening on Journal Socket.
Jun 04 18:48:25 AlexArch systemd[1]: Listening on udev Control Socket.
Jun 04 18:48:25 AlexArch systemd[1]: Listening on udev Kernel Socket.
Jun 04 18:48:25 AlexArch systemd[1]: Mounting Huge Pages File System...
Jun 04 18:48:25 AlexArch systemd[1]: Mounting POSIX Message Queue File System...
Jun 04 18:48:25 AlexArch systemd[1]: Mounting Kernel Debug File System...
Jun 04 18:48:25 AlexArch systemd[1]: Mounting Kernel Trace File System...
Jun 04 18:48:25 AlexArch systemd[1]: Mounting Temporary Directory /tmp...
Jun 04 18:48:25 AlexArch systemd[1]: Starting Create List of Static Device Nodes...
Jun 04 18:48:25 AlexArch systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Jun 04 18:48:25 AlexArch systemd[1]: Starting Load Kernel Module configfs...
Jun 04 18:48:25 AlexArch systemd[1]: Starting Load Kernel Module dm_mod...
Jun 04 18:48:25 AlexArch systemd[1]: Starting Load Kernel Module drm...
Jun 04 18:48:25 AlexArch systemd[1]: Starting Load Kernel Module fuse...
Jun 04 18:48:25 AlexArch systemd[1]: Starting Load Kernel Module loop...
Jun 04 18:48:25 AlexArch systemd[1]: Load AppArmor profiles managed internally by snapd was skipped because of an unmet condition check (ConditionSecurity=apparmor).
Jun 04 18:48:25 AlexArch systemd[1]: Starting Journal Service...
Jun 04 18:48:25 AlexArch systemd[1]: Starting Load Kernel Modules...
Jun 04 18:48:25 AlexArch systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Jun 04 18:48:25 AlexArch kernel: loop: module loaded
Jun 04 18:48:25 AlexArch systemd[1]: Starting Remount Root and Kernel File Systems...
Jun 04 18:48:25 AlexArch systemd[1]: Starting Coldplug All udev Devices...
Jun 04 18:48:25 AlexArch systemd[1]: Mounted Huge Pages File System.
Jun 04 18:48:25 AlexArch systemd[1]: Mounted POSIX Message Queue File System.
Jun 04 18:48:25 AlexArch systemd[1]: Mounted Kernel Debug File System.
Jun 04 18:48:25 AlexArch systemd[1]: Mounted Kernel Trace File System.
Jun 04 18:48:25 AlexArch systemd[1]: Mounted Temporary Directory /tmp.
Jun 04 18:48:25 AlexArch kernel: device-mapper: uevent: version 1.0.3
Jun 04 18:48:25 AlexArch kernel: device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
Jun 04 18:48:25 AlexArch systemd[1]: Finished Create List of Static Device Nodes.
Jun 04 18:48:25 AlexArch kernel: fuse: init (API version 7.38)
Jun 04 18:48:25 AlexArch systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Jun 04 18:48:25 AlexArch systemd[1]: modprobe@configfs.service: Deactivated successfully.
Jun 04 18:48:25 AlexArch systemd-journald[195]: Collecting audit messages is disabled.
Jun 04 18:48:25 AlexArch systemd[1]: Finished Load Kernel Module configfs.
Jun 04 18:48:25 AlexArch systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
Jun 04 18:48:25 AlexArch systemd[1]: Finished Load Kernel Module dm_mod.
Jun 04 18:48:25 AlexArch systemd[1]: modprobe@drm.service: Deactivated successfully.
Jun 04 18:48:25 AlexArch systemd[1]: Finished Load Kernel Module drm.
Jun 04 18:48:25 AlexArch systemd[1]: modprobe@fuse.service: Deactivated successfully.
Jun 04 18:48:25 AlexArch systemd[1]: Finished Load Kernel Module fuse.
Jun 04 18:48:25 AlexArch systemd[1]: modprobe@loop.service: Deactivated successfully.
Jun 04 18:48:25 AlexArch systemd[1]: Finished Load Kernel Module loop.
Jun 04 18:48:25 AlexArch systemd[1]: Finished Load Kernel Modules.
Jun 04 18:48:25 AlexArch systemd[1]: Finished Remount Root and Kernel File Systems.
Jun 04 18:48:25 AlexArch systemd[1]: Mounting FUSE Control File System...
Jun 04 18:48:25 AlexArch systemd[1]: Mounting Kernel Configuration File System...
Jun 04 18:48:25 AlexArch systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Jun 04 18:48:25 AlexArch systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
Jun 04 18:48:25 AlexArch systemd[1]: Starting Load/Save OS Random Seed...
Jun 04 18:48:25 AlexArch systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
Jun 04 18:48:25 AlexArch systemd[1]: Starting Apply Kernel Variables...
Jun 04 18:48:25 AlexArch systemd[1]: Create System Users was skipped because no trigger condition checks were met.
Jun 04 18:48:25 AlexArch systemd[1]: Starting Create Static Device Nodes in /dev...
Jun 04 18:48:25 AlexArch systemd[1]: Mounted FUSE Control File System.
Jun 04 18:48:25 AlexArch systemd[1]: Mounted Kernel Configuration File System.
Jun 04 18:48:25 AlexArch systemd[1]: Finished Load/Save OS Random Seed.
Jun 04 18:48:25 AlexArch systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Jun 04 18:48:25 AlexArch systemd[1]: Finished Apply Kernel Variables.
Jun 04 18:48:25 AlexArch systemd[1]: Finished Create Static Device Nodes in /dev.
Jun 04 18:48:25 AlexArch systemd[1]: Reached target Preparation for Local File Systems.
Jun 04 18:48:25 AlexArch systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
Jun 04 18:48:25 AlexArch systemd[1]: var-lib-snapd-snap.mount: Directory /var/lib/snapd/snap to mount over is not empty, mounting anyway.
Jun 04 18:48:25 AlexArch systemd[1]: Mounting Ensure that the snap directory shares mount events....
Jun 04 18:48:25 AlexArch systemd[1]: Starting Rule-based Manager for Device Events and Files...
Jun 04 18:48:25 AlexArch systemd[1]: Mounted Ensure that the snap directory shares mount events..
Jun 04 18:48:25 AlexArch systemd[1]: Mounting Mount unit for core18, revision 2751...
Jun 04 18:48:25 AlexArch systemd[1]: Mounting Mount unit for snapd, revision 19361...
Jun 04 18:48:25 AlexArch systemd-journald[195]: Journal started
Jun 04 18:48:25 AlexArch systemd-journald[195]: Runtime Journal (/run/log/journal/951764c72dc84868a26e5614ab3564a8) is 8.0M, max 392.1M, 384.1M free.
Jun 04 18:48:24 AlexArch systemd-modules-load[196]: Inserted module 'crypto_user'
Jun 04 18:48:25 AlexArch systemd[1]: Started Journal Service.
Jun 04 18:48:25 AlexArch systemd[1]: Starting Flush Journal to Persistent Storage...
Jun 04 18:48:25 AlexArch kernel: loop0: detected capacity change from 0 to 109072
Jun 04 18:48:25 AlexArch kernel: loop1: detected capacity change from 0 to 113944
Jun 04 18:48:25 AlexArch systemd-journald[195]: Time spent on flushing to /var/log/journal/951764c72dc84868a26e5614ab3564a8 is 303.399ms for 1047 entries.
Jun 04 18:48:25 AlexArch systemd-journald[195]: System Journal (/var/log/journal/951764c72dc84868a26e5614ab3564a8) is 346.9M, max 4.0G, 3.6G free.
Jun 04 18:48:25 AlexArch systemd-journald[195]: Received client request to flush runtime journal.
Jun 04 18:48:25 AlexArch systemd-journald[195]: /var/log/journal/951764c72dc84868a26e5614ab3564a8/system.journal: Monotonic clock jumped backwards relative to last journal entry, rotating.
Jun 04 18:48:25 AlexArch systemd-journald[195]: Rotating system journal.
Jun 04 18:48:25 AlexArch kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
Jun 04 18:48:25 AlexArch systemd-udevd[207]: Using default interface naming scheme 'v253'.
Jun 04 18:48:25 AlexArch systemd[1]: Mounted Mount unit for core18, revision 2751.
Jun 04 18:48:25 AlexArch systemd[1]: Mounted Mount unit for snapd, revision 19361.
Jun 04 18:48:25 AlexArch systemd[1]: Reached target Local File Systems.
Jun 04 18:48:25 AlexArch systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
Jun 04 18:48:25 AlexArch systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
Jun 04 18:48:25 AlexArch systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
Jun 04 18:48:25 AlexArch systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
Jun 04 18:48:25 AlexArch systemd[1]: Started Rule-based Manager for Device Events and Files.
Jun 04 18:48:25 AlexArch systemd[1]: Finished Flush Journal to Persistent Storage.
Jun 04 18:48:25 AlexArch systemd[1]: Finished Coldplug All udev Devices.
Jun 04 18:48:25 AlexArch systemd[1]: Starting Create Volatile Files and Directories...
Jun 04 18:48:26 AlexArch systemd[1]: Finished Create Volatile Files and Directories.
Jun 04 18:48:26 AlexArch systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
Jun 04 18:48:26 AlexArch systemd[1]: Starting Network Time Synchronization...
Jun 04 18:48:26 AlexArch systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
Jun 04 18:48:26 AlexArch systemd[1]: Starting Record System Boot/Shutdown in UTMP...
Jun 04 18:48:26 AlexArch systemd[1]: Finished Record System Boot/Shutdown in UTMP.
Jun 04 18:48:26 AlexArch systemd[1]: Started Network Time Synchronization.
Jun 04 18:48:26 AlexArch systemd[1]: Reached target System Initialization.
Jun 04 18:48:26 AlexArch systemd[1]: Started Daily Cleanup of Temporary Directories.
Jun 04 18:48:26 AlexArch systemd[1]: Reached target System Time Set.
Jun 04 18:48:26 AlexArch systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
Jun 04 18:48:26 AlexArch systemd[1]: Started Daily verification of password and group files.
Jun 04 18:48:26 AlexArch systemd[1]: Reached target Timer Units.
Jun 04 18:48:26 AlexArch systemd[1]: Listening on D-Bus System Message Bus Socket.
Jun 04 18:48:26 AlexArch systemd[1]: Starting Socket activation for snappy daemon...
Jun 04 18:48:26 AlexArch systemd[1]: TPM2 PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Jun 04 18:48:26 AlexArch systemd[1]: Listening on Socket activation for snappy daemon.
Jun 04 18:48:26 AlexArch systemd[1]: Reached target Socket Units.
Jun 04 18:48:26 AlexArch systemd[1]: Reached target Basic System.
Jun 04 18:48:26 AlexArch systemd[1]: Starting D-Bus System Message Bus...
Jun 04 18:48:26 AlexArch systemd[1]: Starting User Login Management...
Jun 04 18:48:26 AlexArch systemd[1]: TPM2 PCR Barrier (User) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Jun 04 18:48:26 AlexArch systemd[1]: Started D-Bus System Message Bus.
Jun 04 18:48:26 AlexArch systemd[1]: Starting Network Manager...
Jun 04 18:48:26 AlexArch NetworkManager[251]: <info>  [1685897306.9294] NetworkManager (version 1.42.6-1) is starting... (boot:90e259fd-738e-4519-b71c-ab0c3b7eaced)
Jun 04 18:48:26 AlexArch NetworkManager[251]: <info>  [1685897306.9312] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 20-connectivity.conf)
Jun 04 18:48:26 AlexArch systemd-logind[249]: New seat seat0.
Jun 04 18:48:26 AlexArch NetworkManager[251]: <info>  [1685897306.9442] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Jun 04 18:48:26 AlexArch systemd[1]: Started Network Manager.
Jun 04 18:48:26 AlexArch systemd[1]: Reached target Network.
Jun 04 18:48:26 AlexArch systemd[1]: Starting Permit User Sessions...
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.0092] manager[0x5600e643cbb0]: monitoring kernel firmware directory '/lib/firmware'.
Jun 04 18:48:27 AlexArch dbus-daemon[248]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.2' (uid=0 pid=251 comm="/usr/bin/NetworkManager --no-daemon")
Jun 04 18:48:27 AlexArch systemd[1]: Finished Permit User Sessions.
Jun 04 18:48:27 AlexArch systemd[1]: Starting GNOME Display Manager...
Jun 04 18:48:27 AlexArch systemd[1]: Starting Hostname Service...
Jun 04 18:48:27 AlexArch systemd[1]: Started GNOME Display Manager.
Jun 04 18:48:27 AlexArch dbus-daemon[248]: [system] Activating via systemd: service name='org.freedesktop.login1' unit='dbus-org.freedesktop.login1.service' requested by ':1.3' (uid=0 pid=261 comm="/usr/bin/gdm")
Jun 04 18:48:27 AlexArch systemd-logind[249]: Watching system buttons on /dev/input/event4 (ThinkPad Extra Buttons)
Jun 04 18:48:27 AlexArch systemd-logind[249]: Watching system buttons on /dev/input/event1 (Sleep Button)
Jun 04 18:48:27 AlexArch dbus-daemon[248]: [system] Successfully activated service 'org.freedesktop.login1'
Jun 04 18:48:27 AlexArch systemd-logind[249]: Watching system buttons on /dev/input/event0 (Lid Switch)
Jun 04 18:48:27 AlexArch systemd-logind[249]: Watching system buttons on /dev/input/event2 (Power Button)
Jun 04 18:48:27 AlexArch systemd-logind[249]: Watching system buttons on /dev/input/event3 (AT Translated Set 2 keyboard)
Jun 04 18:48:27 AlexArch systemd[1]: Starting Load Kernel Module drm...
Jun 04 18:48:27 AlexArch systemd[1]: Started User Login Management.
Jun 04 18:48:27 AlexArch systemd[1]: Reached target Multi-User System.
Jun 04 18:48:27 AlexArch systemd[1]: Reached target Graphical Interface.
Jun 04 18:48:27 AlexArch systemd[1]: modprobe@drm.service: Deactivated successfully.
Jun 04 18:48:27 AlexArch systemd[1]: Finished Load Kernel Module drm.
Jun 04 18:48:27 AlexArch dbus-daemon[248]: [system] Successfully activated service 'org.freedesktop.hostname1'
Jun 04 18:48:27 AlexArch systemd[1]: Started Hostname Service.
Jun 04 18:48:27 AlexArch systemd[1]: Startup finished in 7.845s (kernel) + 4.262s (userspace) = 12.108s.
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.3650] hostname: hostname: using hostnamed
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.3650] hostname: static hostname changed from (none) to "AlexArch"
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.3660] dns-mgr: init: dns=default,systemd-resolved rc-manager=symlink
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.3673] manager[0x5600e643cbb0]: rfkill: Wi-Fi hardware radio set enabled
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.3674] manager[0x5600e643cbb0]: rfkill: WWAN hardware radio set enabled
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.3897] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.42.6-1/libnm-device-plugin-wwan.so)
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.3918] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.42.6-1/libnm-device-plugin-ovs.so)
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.3939] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.42.6-1/libnm-device-plugin-wifi.so)
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.3967] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.42.6-1/libnm-device-plugin-bluetooth.so)
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.4349] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.42.6-1/libnm-device-plugin-team.so)
Jun 04 18:48:27 AlexArch systemd[1]: Created slice Slice /system/systemd-backlight.
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.4371] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.42.6-1/libnm-device-plugin-adsl.so)
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.4381] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.4383] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.4385] manager: Networking is enabled by state file
Jun 04 18:48:27 AlexArch dbus-daemon[248]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.2' (uid=0 pid=251 comm="/usr/bin/NetworkManager --no-daemon")
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.4392] settings: Loaded settings plugin: keyfile (internal)
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.4447] dhcp: init: Using DHCP client 'internal'
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.4453] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1)
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.4497] device (lo): state change: unmanaged -> unavailable (reason 'connection-assumed', sys-iface-state: 'external')
Jun 04 18:48:27 AlexArch dbus-daemon[248]: [system] Activating via systemd: service name='org.freedesktop.Accounts' unit='accounts-daemon.service' requested by ':1.3' (uid=0 pid=261 comm="/usr/bin/gdm")
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.4502] device (lo): state change: unavailable -> disconnected (reason 'connection-assumed', sys-iface-state: 'external')
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.4512] device (lo): Activation: starting connection 'lo' (5e1e3cb9-94ac-4c67-92f7-54081080919c)
Jun 04 18:48:27 AlexArch systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:acpi_video0...
Jun 04 18:48:27 AlexArch systemd[1]: Reached target User and Group Name Lookups.
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.4668] ovsdb: disconnected from ovsdb
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.4671] device (lo): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'external')
Jun 04 18:48:27 AlexArch systemd[1]: Starting Network Manager Script Dispatcher Service...
Jun 04 18:48:27 AlexArch systemd[1]: Starting Accounts Service...
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.4780] device (lo): state change: prepare -> config (reason 'none', sys-iface-state: 'external')
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.4831] device (lo): state change: config -> ip-config (reason 'none', sys-iface-state: 'external')
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.4846] device (lo): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'external')
Jun 04 18:48:27 AlexArch dbus-daemon[248]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Jun 04 18:48:27 AlexArch systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:acpi_video0.
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.4915] device (lo): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'external')
Jun 04 18:48:27 AlexArch systemd[1]: Started Network Manager Script Dispatcher Service.
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.4932] device (lo): state change: secondaries -> activated (reason 'none', sys-iface-state: 'external')
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.4950] device (lo): Activation: successful, device activated.
Jun 04 18:48:27 AlexArch NetworkManager[251]: <info>  [1685897307.4960] manager: startup complete
Jun 04 18:48:27 AlexArch dbus-daemon[248]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' requested by ':1.7' (uid=0 pid=273 comm="/usr/lib/accounts-daemon")
Jun 04 18:48:27 AlexArch systemd[1]: Starting Authorization Manager...
Jun 04 18:48:27 AlexArch polkitd[283]: Started polkitd version 122
Jun 04 18:48:27 AlexArch mtp-probe[279]: checking bus 2, device 2: "/sys/devices/pci0000:00/0000:00:1a.1/usb2/2-1"
Jun 04 18:48:27 AlexArch mtp-probe[279]: bus: 2, device: 2 was not an MTP device
Jun 04 18:48:27 AlexArch polkitd[283]: Loading rules from directory /etc/polkit-1/rules.d
Jun 04 18:48:27 AlexArch polkitd[283]: Loading rules from directory /usr/share/polkit-1/rules.d
Jun 04 18:48:27 AlexArch polkitd[283]: Finished loading, compiling and executing 9 rules
Jun 04 18:48:27 AlexArch dbus-daemon[248]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Jun 04 18:48:27 AlexArch systemd[1]: Started Authorization Manager.
Jun 04 18:48:27 AlexArch polkitd[283]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
Jun 04 18:48:27 AlexArch accounts-daemon[273]: started daemon version 23.13.0
Jun 04 18:48:27 AlexArch dbus-daemon[248]: [system] Successfully activated service 'org.freedesktop.Accounts'
Jun 04 18:48:27 AlexArch systemd[1]: Started Accounts Service.
Jun 04 18:48:27 AlexArch kernel: e1000e: Intel(R) PRO/1000 Network Driver
Jun 04 18:48:27 AlexArch kernel: e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
Jun 04 18:48:27 AlexArch kernel: e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
Jun 04 18:48:27 AlexArch kernel: ACPI Warning: SystemIO range 0x0000000000001028-0x000000000000102F conflicts with OpRegion 0x0000000000001000-0x000000000000107F (\_SB.PCI0.LPC.PMIO) (20221020/utaddress-204)
Jun 04 18:48:27 AlexArch kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Jun 04 18:48:27 AlexArch kernel: ACPI Warning: SystemIO range 0x00000000000011B0-0x00000000000011BF conflicts with OpRegion 0x0000000000001180-0x00000000000011FF (\_SB.PCI0.LPC.LPIO) (20221020/utaddress-204)
Jun 04 18:48:27 AlexArch kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Jun 04 18:48:27 AlexArch kernel: ACPI Warning: SystemIO range 0x0000000000001180-0x00000000000011AF conflicts with OpRegion 0x0000000000001180-0x00000000000011FF (\_SB.PCI0.LPC.LPIO) (20221020/utaddress-204)
Jun 04 18:48:27 AlexArch kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Jun 04 18:48:27 AlexArch kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
Jun 04 18:48:27 AlexArch kernel: input: PC Speaker as /devices/platform/pcspkr/input/input7
Jun 04 18:48:27 AlexArch systemd-logind[249]: New session 1 of user gdm.
Jun 04 18:48:27 AlexArch systemd[1]: Created slice User Slice of UID 120.
Jun 04 18:48:27 AlexArch systemd[1]: Starting User Runtime Directory /run/user/120...
Jun 04 18:48:27 AlexArch kernel: r592: driver successfully loaded
Jun 04 18:48:27 AlexArch systemd[1]: Finished User Runtime Directory /run/user/120.
Jun 04 18:48:27 AlexArch systemd[1]: Starting User Manager for UID 120...
Jun 04 18:48:27 AlexArch dbus-daemon[248]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.11' (uid=0 pid=305 comm="(systemd)")
Jun 04 18:48:27 AlexArch dbus-daemon[248]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 04 18:48:27 AlexArch (systemd)[305]: pam_systemd_home(systemd-user:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 04 18:48:27 AlexArch (systemd)[305]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[gdm] ruser=[<unknown>] rhost=[<unknown>]
Jun 04 18:48:27 AlexArch (systemd)[305]: pam_unix(systemd-user:session): session opened for user gdm(uid=120) by gdm(uid=0)
Jun 04 18:48:27 AlexArch systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Jun 04 18:48:27 AlexArch systemd[1]: Starting Load/Save RF Kill Switch Status...
Jun 04 18:48:28 AlexArch kernel: yenta_cardbus 0000:15:00.0: CardBus bridge found [17aa:20c6]
Jun 04 18:48:28 AlexArch kernel: i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
Jun 04 18:48:28 AlexArch kernel: iTCO_vendor_support: vendor-support=0
Jun 04 18:48:28 AlexArch kernel: intel_powerclamp: No package C-state available
Jun 04 18:48:28 AlexArch systemd[1]: Started Load/Save RF Kill Switch Status.
Jun 04 18:48:28 AlexArch NetworkManager[251]: <info>  [1685897308.0983] manager: (eth0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
Jun 04 18:48:28 AlexArch kernel: e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 00:1c:25:97:4d:05
Jun 04 18:48:28 AlexArch kernel: e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
Jun 04 18:48:28 AlexArch kernel: e1000e 0000:00:19.0 eth0: MAC: 7, PHY: 8, PBA No: 1008FF-0FF
Jun 04 18:48:28 AlexArch kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Jun 04 18:48:28 AlexArch kernel: i2c i2c-9: 2/2 memory slots populated (from DMI)
Jun 04 18:48:28 AlexArch kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Jun 04 18:48:28 AlexArch kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
Jun 04 18:48:28 AlexArch kernel: cfg80211: failed to load regulatory.db
Jun 04 18:48:28 AlexArch kernel: yenta_cardbus 0000:15:00.0: ISA IRQ mask 0x0cb8, PCI irq 16
Jun 04 18:48:28 AlexArch kernel: yenta_cardbus 0000:15:00.0: Socket status: 30000006
Jun 04 18:48:28 AlexArch kernel: yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge window: [io  0x4000-0x7fff]
Jun 04 18:48:28 AlexArch kernel: yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge window: [mem 0xf4800000-0xf7ffffff]
Jun 04 18:48:28 AlexArch kernel: pcmcia_socket pcmcia_socket0: cs: memory probe 0xf4800000-0xf7ffffff:
Jun 04 18:48:28 AlexArch kernel:  excluding 0xf4800000-0xf4b7ffff
Jun 04 18:48:28 AlexArch kernel: yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge window: [mem 0xf0000000-0xf3ffffff 64bit pref]
Jun 04 18:48:28 AlexArch kernel: pcmcia_socket pcmcia_socket0: cs: memory probe 0xf0000000-0xf3ffffff:
Jun 04 18:48:28 AlexArch kernel:  excluding 0xf0000000-0xf3ffffff
Jun 04 18:48:28 AlexArch kernel: e1000e 0000:00:19.0 enp0s25: renamed from eth0
Jun 04 18:48:28 AlexArch kernel: Intel(R) Wireless WiFi driver for Linux
Jun 04 18:48:28 AlexArch kernel: iwlwifi 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
Jun 04 18:48:28 AlexArch NetworkManager[251]: <info>  [1685897308.2535] device (eth0): interface index 2 renamed iface from 'eth0' to 'enp0s25'
Jun 04 18:48:28 AlexArch kernel: iwlwifi 0000:03:00.0: loaded firmware version 8.83.5.1 build 33692 5000-5.ucode op_mode iwldvm
Jun 04 18:48:28 AlexArch kernel: iTCO_wdt iTCO_wdt.1.auto: Found a ICH9M-E TCO device (Version=2, TCOBASE=0x1060)
Jun 04 18:48:28 AlexArch kernel: iTCO_wdt iTCO_wdt.1.auto: initialized. heartbeat=30 sec (nowayout=0)
Jun 04 18:48:28 AlexArch NetworkManager[251]: <info>  [1685897308.3714] device (enp0s25): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jun 04 18:48:28 AlexArch systemd[305]: Queued start job for default target Main User Target.
Jun 04 18:48:28 AlexArch systemd[305]: Created slice User Application Slice.
Jun 04 18:48:28 AlexArch systemd[305]: Reached target Paths.
Jun 04 18:48:28 AlexArch systemd[305]: Reached target Timers.
Jun 04 18:48:28 AlexArch systemd[305]: Starting D-Bus User Message Bus Socket...
Jun 04 18:48:28 AlexArch systemd[305]: Listening on GnuPG network certificate management daemon.
Jun 04 18:48:28 AlexArch systemd[305]: Listening on GCR ssh-agent wrapper.
Jun 04 18:48:28 AlexArch systemd[305]: Listening on GNOME Keyring daemon.
Jun 04 18:48:28 AlexArch systemd[305]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jun 04 18:48:28 AlexArch systemd[305]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Jun 04 18:48:28 AlexArch systemd[305]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Jun 04 18:48:28 AlexArch systemd[305]: Listening on GnuPG cryptographic agent and passphrase cache.
Jun 04 18:48:28 AlexArch systemd[305]: Listening on p11-kit server.
Jun 04 18:48:28 AlexArch systemd[305]: Listening on PipeWire Multimedia System Socket.
Jun 04 18:48:28 AlexArch systemd[305]: Listening on Sound System.
Jun 04 18:48:28 AlexArch systemd[305]: Listening on D-Bus User Message Bus Socket.
Jun 04 18:48:28 AlexArch systemd[305]: Reached target Sockets.
Jun 04 18:48:28 AlexArch systemd[305]: Reached target Basic System.
Jun 04 18:48:28 AlexArch systemd[1]: Started User Manager for UID 120.
Jun 04 18:48:28 AlexArch systemd[1]: Started Session 1 of User gdm.
Jun 04 18:48:28 AlexArch systemd[305]: Starting Update XDG user dir configuration...
Jun 04 18:48:28 AlexArch systemd[305]: Finished Update XDG user dir configuration.
Jun 04 18:48:28 AlexArch systemd[305]: Reached target Main User Target.
Jun 04 18:48:28 AlexArch systemd[305]: Startup finished in 592ms.
Jun 04 18:48:28 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0: CX20561 (Hermosa): BIOS auto-probing.
Jun 04 18:48:28 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0: autoconfig for CX20561 (Hermosa): line_outs=1 (0x1a/0x0/0x0/0x0/0x0) type:speaker
Jun 04 18:48:28 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Jun 04 18:48:28 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0:    hp_outs=2 (0x19/0x16/0x0/0x0/0x0)
Jun 04 18:48:28 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0:    mono: mono_out=0x0
Jun 04 18:48:28 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0:    dig-out=0x1c/0x0
Jun 04 18:48:28 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0:    inputs:
Jun 04 18:48:28 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0:      Mic=0x18
Jun 04 18:48:28 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0:      Internal Mic=0x1d
Jun 04 18:48:28 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0:      Dock Mic=0x17
Jun 04 18:48:28 AlexArch kernel: input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
Jun 04 18:48:28 AlexArch kernel: input: HDA Intel Dock Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
Jun 04 18:48:28 AlexArch kernel: input: HDA Intel Dock Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
Jun 04 18:48:28 AlexArch kernel: input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
Jun 04 18:48:28 AlexArch systemd[1]: Reached target Sound Card.
Jun 04 18:48:28 AlexArch systemd[305]: Reached target Sound Card.
Jun 04 18:48:28 AlexArch NetworkManager[251]: <info>  [1685897308.5849] settings: (enp0s25): created default wired connection 'Wired connection 1'
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (--) Log file renamed from "/var/lib/gdm/.local/share/xorg/Xorg.pid-332.log" to "/var/lib/gdm/.local/share/xorg/Xorg.0.log"
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: X.Org X Server 1.21.1.8
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: X Protocol Version 11, Revision 0
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: Current Operating System: Linux AlexArch 6.3.5-arch1-1 #1 SMP PREEMPT_DYNAMIC Tue, 30 May 2023 13:44:01 +0000 x86_64
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=882f05fb-ea19-4494-99b9-75cacc2e0493 rw loglevel=3 quiet
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:  
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: Current version of pixman: 0.42.2
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         Before reporting problems, check http://wiki.x.org
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         to make sure that you have the latest version.
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: Markers: (--) probed, (**) from config file, (==) default setting,
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         (++) from command line, (!!) notice, (II) informational,
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (==) Log file: "/var/lib/gdm/.local/share/xorg/Xorg.0.log", Time: Sun Jun  4 18:48:28 2023
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (==) Using system config directory "/usr/share/X11/xorg.conf.d"
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (==) No Layout section.  Using the first Screen section.
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (==) No screen section available. Using defaults.
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (**) |-->Screen "Default Screen Section" (0)
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (**) |   |-->Monitor "<default monitor>"
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (==) No monitor specified for screen "Default Screen Section".
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         Using a default monitor configuration.
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (==) Automatically adding devices
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (==) Automatically enabling devices
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (==) Automatically adding GPU devices
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (==) Automatically binding GPU devices
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (==) Max clients allowed: 256, resource mask: 0x1fffff
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (WW) The directory "/usr/share/fonts/misc" does not exist.
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         Entry deleted from font path.
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (WW) The directory "/usr/share/fonts/TTF" does not exist.
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         Entry deleted from font path.
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (WW) The directory "/usr/share/fonts/OTF" does not exist.
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         Entry deleted from font path.
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (WW) The directory "/usr/share/fonts/Type1" does not exist.
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         Entry deleted from font path.
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (WW) The directory "/usr/share/fonts/100dpi" does not exist.
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         Entry deleted from font path.
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (WW) The directory "/usr/share/fonts/75dpi" does not exist.
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         Entry deleted from font path.
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (==) FontPath set to:
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (==) ModulePath set to "/usr/lib/xorg/modules"
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) The server relies on udev to provide the list of input devices.
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         If no devices become available, reconfigure udev or disable AutoAddDevices.
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) Module ABI versions:
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         X.Org ANSI C Emulation: 0.4
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         X.Org Video Driver: 25.2
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         X.Org XInput driver : 24.4
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         X.Org Server Extension : 10.0
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (++) using VT number 1
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) xfree86: Adding drm device (/dev/dri/card0)
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card0
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 14 paused 0
Jun 04 18:48:28 AlexArch kernel: iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG enabled
Jun 04 18:48:28 AlexArch kernel: iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
Jun 04 18:48:28 AlexArch kernel: iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
Jun 04 18:48:28 AlexArch kernel: iwlwifi 0000:03:00.0: Detected Intel(R) Ultimate N WiFi Link 5300 AGN, REV=0x24
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (--) PCI:*(0@0:2:0) 8086:2a42:17aa:20e4 rev 7, Mem @ 0xf4400000/4194304, 0xd0000000/268435456, I/O @ 0x00001800/8, BIOS @ 0x????????/131072
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (--) PCI: (0@0:2:1) 8086:2a43:17aa:20e4 rev 7, Mem @ 0xf4200000/1048576
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) LoadModule: "glx"
Jun 04 18:48:28 AlexArch kernel: iwlwifi 0000:03:00.0: reporting RF_KILL (radio disabled)
Jun 04 18:48:28 AlexArch kernel: iwlwifi 0000:03:00.0: RF_KILL bit toggled to disable radio.
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) Module glx: vendor="X.Org Foundation"
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         compiled for 1.21.1.8, module version = 1.0.0
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         ABI class: X.Org Server Extension, version 10.0
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (==) Matched intel as autoconfigured driver 0
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (==) Matched modesetting as autoconfigured driver 1
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (==) Matched fbdev as autoconfigured driver 2
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (==) Matched vesa as autoconfigured driver 3
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (==) Assigned the driver to the xf86ConfigLayout
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) LoadModule: "intel"
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (WW) Warning, couldn't open module intel
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (EE) Failed to load module "intel" (module does not exist, 0)
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) LoadModule: "modesetting"
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) Module modesetting: vendor="X.Org Foundation"
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         compiled for 1.21.1.8, module version = 1.21.1
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         Module class: X.Org Video Driver
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         ABI class: X.Org Video Driver, version 25.2
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) LoadModule: "fbdev"
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (WW) Warning, couldn't open module fbdev
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (EE) Failed to load module "fbdev" (module does not exist, 0)
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) LoadModule: "vesa"
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (WW) Warning, couldn't open module vesa
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (EE) Failed to load module "vesa" (module does not exist, 0)
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) modesetting: Driver for Modesetting Kernel Drivers: kms
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): using drv /dev/dri/card0
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Creating default Display subsection in Screen section
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         "Default Screen Section" for depth/fbbpp 24/32
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (==) modeset(0): Depth 24, (==) framebuffer bpp 32
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (==) modeset(0): RGB weight 888
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (==) modeset(0): Default visual is TrueColor
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) Loading sub module "glamoregl"
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) LoadModule: "glamoregl"
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) Loading /usr/lib/xorg/modules/libglamoregl.so
Jun 04 18:48:28 AlexArch kernel: psmouse serio1: synaptics: queried max coordinates: x [..5598], y [..4670]
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) Module glamoregl: vendor="X.Org Foundation"
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         compiled for 1.21.1.8, module version = 1.0.1
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]:         ABI class: X.Org ANSI C Emulation, version 0.4
Jun 04 18:48:28 AlexArch kernel: ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
Jun 04 18:48:28 AlexArch NetworkManager[251]: <info>  [1685897308.6643] rfkill1: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:1c.1/0000:03:00.0/ieee80211/phy0/rfkill1) (driver iwlwifi)
Jun 04 18:48:28 AlexArch NetworkManager[251]: <info>  [1685897308.6646] manager: rfkill: Wi-Fi now disabled by radio killswitch
Jun 04 18:48:28 AlexArch NetworkManager[251]: <info>  [1685897308.6687] manager: (wlan0): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/3)
Jun 04 18:48:28 AlexArch kernel: iwlwifi 0000:03:00.0 wlp3s0: renamed from wlan0
Jun 04 18:48:28 AlexArch kernel: psmouse serio1: synaptics: Touchpad model: 1, fw: 7.0, id: 0x1c0b1, caps: 0xd04791/0xb00000/0x20000/0x0, board id: 0, fw id: 434116
Jun 04 18:48:28 AlexArch kernel: psmouse serio1: synaptics: serio: Synaptics pass-through port at isa0060/serio1/input0
Jun 04 18:48:28 AlexArch NetworkManager[251]: <info>  [1685897308.6871] device (wlan0): interface index 3 renamed iface from 'wlan0' to 'wlp3s0'
Jun 04 18:48:28 AlexArch NetworkManager[251]: <info>  [1685897308.6993] device (wlp3s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jun 04 18:48:28 AlexArch NetworkManager[251]: <info>  [1685897308.7003] device (wlp3s0): set-hw-addr: set MAC address to AE:DE:0A:6E:44:D1 (scanning)
Jun 04 18:48:28 AlexArch kernel: input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input8
Jun 04 18:48:28 AlexArch kernel: mousedev: PS/2 mouse device common for all mice
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): glamor X acceleration enabled on Mesa Mobile Intel® GM45 Express Chipset (CTG)
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): glamor initialized
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (==) modeset(0): VariableRefresh: disabled
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (==) modeset(0): AsyncFlipSecondaries: disabled
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output LVDS-1 has no monitor section
Jun 04 18:48:28 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output VGA-1 has no monitor section
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output HDMI-1 has no monitor section
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output DP-1 has no monitor section
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output HDMI-2 has no monitor section
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output DP-2 has no monitor section
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output DP-3 has no monitor section
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): EDID for output LVDS-1
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Manufacturer: LEN  Model: 4050  Serial#: 0
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Year: 2006  Week: 0
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): EDID Version: 1.3
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Digital Display Input
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Max Image Size [cm]: horiz.: 33  vert.: 21
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Gamma: 2.20
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): DPMS capabilities: StandBy Suspend Off
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): First detailed timing is preferred mode
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): redX: 0.590 redY: 0.340   greenX: 0.320 greenY: 0.550
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): blueX: 0.152 blueY: 0.130   whiteX: 0.313 whiteY: 0.329
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Manufacturer's mask: 0
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Supported detailed timing:
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): clock: 71.1 MHz   Image Size:  331 x 207 mm
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1440 h_border: 0
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 823 v_border: 0
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Supported detailed timing:
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): clock: 60.1 MHz   Image Size:  331 x 207 mm
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1457 h_border: 0
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 825 v_border: 0
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Unknown vendor-specific block f
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0):  LTN154X3-L02
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): EDID (in hex):
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0):         00ffffffffffff0030ae504000000000
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0):         0010010380211578ea03159757528c27
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0):         21505400000001010101010101010101
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0):         010101010101c71b00a0502017303020
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0):         36004bcf100000197a1700b150201930
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0):         302036004bcf100000190000000f0081
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0):         0a32810a281401004ca35833000000fe
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0):         004c544e31353458332d4c30320a00c2
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Printing probed modes for output LVDS-1
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x800"x60.0   71.11  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.4 kHz eP)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x800"x120.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x800"x119.9  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x800"x50.0   60.10  1280 1328 1360 1457  800 803 809 825 -hsync -vsync (41.2 kHz e)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x720"x120.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x720"x120.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1024x576"x119.9   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1024x576"x119.9   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "960x600"x119.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "960x600"x120.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "960x540"x119.9   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "960x540"x120.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "840x525"x120.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "840x525"x119.8   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "800x450"x119.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "800x450"x119.6   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "700x450"x119.9   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "700x450"x119.8   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "684x384"x119.8   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "684x384"x119.7   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "640x400"x119.8   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "640x400"x120.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "640x360"x119.7   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "640x360"x119.7   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "512x288"x120.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "512x288"x119.8   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "480x270"x119.3   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "480x270"x119.6   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "432x243"x119.8   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "432x243"x119.1   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "360x202"x119.0   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "360x202"x118.3   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "320x180"x119.7    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "320x180"x118.6    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): EDID for output VGA-1
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): EDID for output HDMI-1
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): EDID for output DP-1
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): EDID for output HDMI-2
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): EDID for output DP-2
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): EDID for output DP-3
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output LVDS-1 connected
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output VGA-1 disconnected
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output HDMI-1 disconnected
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output DP-1 disconnected
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output HDMI-2 disconnected
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output DP-2 disconnected
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output DP-3 disconnected
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Using exact sizes for initial modes
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output LVDS-1 using initial mode 1280x800 +0+0
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (==) modeset(0): DPI set to (96, 96)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Loading sub module "fb"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) LoadModule: "fb"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Module "fb" already built-in
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (==) modeset(0): Backing store enabled
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (==) modeset(0): Silken mouse enabled
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (==) modeset(0): DPMS enabled
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): [DRI2] Setup complete
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): [DRI2]   DRI driver: crocus
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): [DRI2]   VDPAU driver: va_gl
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension Generic Event Extension
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension SHAPE
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension MIT-SHM
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension XInputExtension
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension XTEST
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension BIG-REQUESTS
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension SYNC
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension XKEYBOARD
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension XC-MISC
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension SECURITY
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension XFIXES
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension RENDER
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension RANDR
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension COMPOSITE
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension DAMAGE
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension MIT-SCREEN-SAVER
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension DOUBLE-BUFFER
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension RECORD
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension DPMS
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension Present
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension DRI3
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension X-Resource
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension XVideo
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension XVideo-MotionCompensation
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension GLX
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) AIGLX: Loaded and initialized crocus
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) GLX: Initialized DRI2 GL provider for screen 0
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension XFree86-VidModeExtension
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension XFree86-DGA
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension XFree86-DRI
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension DRI2
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Damage tracking initialized
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Setting screen physical size to 338 x 211
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device Power Button (/dev/input/event2)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Power Button: Applying InputClass "libinput keyboard catchall"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) LoadModule: "libinput"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
Jun 04 18:48:29 AlexArch kernel: psmouse serio2: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Module libinput: vendor="X.Org Foundation"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]:         compiled for 1.21.1.8, module version = 1.3.0
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]:         Module class: X.Org XInput Driver
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]:         ABI class: X.Org XInput driver, version 24.4
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Using input driver 'libinput' for 'Power Button'
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 28 paused 0
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Power Button: always reports core events
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "Device" "/dev/input/event2"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event2  - Power Button: is tagged by udev as: Keyboard
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event2  - Power Button: device is a keyboard
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event2  - Power Button: device removed
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event2  - Power Button: is tagged by udev as: Keyboard
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event2  - Power Button: device is a keyboard
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device Video Bus (/dev/input/event5)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Video Bus: Applying InputClass "libinput keyboard catchall"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Using input driver 'libinput' for 'Video Bus'
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 31 paused 0
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Video Bus: always reports core events
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "Device" "/dev/input/event5"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event5  - Video Bus: is tagged by udev as: Keyboard
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event5  - Video Bus: device is a keyboard
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event5  - Video Bus: device removed
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input6/event5"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event5  - Video Bus: is tagged by udev as: Keyboard
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event5  - Video Bus: device is a keyboard
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) No input driver specified, ignoring this device.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) This device may have been added with another device file.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Using input driver 'libinput' for 'Sleep Button'
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 32 paused 0
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Sleep Button: always reports core events
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "Device" "/dev/input/event1"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event1  - Sleep Button: is tagged by udev as: Keyboard
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event1  - Sleep Button: device is a keyboard
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event1  - Sleep Button: device removed
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1/event1"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event1  - Sleep Button: is tagged by udev as: Keyboard
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event1  - Sleep Button: device is a keyboard
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device HDA Intel Dock Mic (/dev/input/event8)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) No input driver specified, ignoring this device.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) This device may have been added with another device file.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device HDA Intel Dock Headphone (/dev/input/event9)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) No input driver specified, ignoring this device.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) This device may have been added with another device file.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event10)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) No input driver specified, ignoring this device.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) This device may have been added with another device file.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event7)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) No input driver specified, ignoring this device.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) This device may have been added with another device file.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 33 paused 0
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) AT Translated Set 2 keyboard: always reports core events
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "Device" "/dev/input/event3"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event3  - AT Translated Set 2 keyboard: device removed
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input3/event3"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event11)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Using input driver 'libinput' for 'SynPS/2 Synaptics TouchPad'
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 34 paused 0
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) SynPS/2 Synaptics TouchPad: always reports core events
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "Device" "/dev/input/event11"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event11 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event11 - SynPS/2 Synaptics TouchPad: device is a touchpad
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event11 - SynPS/2 Synaptics TouchPad: device removed
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input8/event11"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 10)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "AccelerationScheme" "none"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) SynPS/2 Synaptics TouchPad: (accel) selected scheme none/0
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event11 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event11 - SynPS/2 Synaptics TouchPad: device is a touchpad
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) No input driver specified, ignoring this device.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) This device may have been added with another device file.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) No input driver specified, ignoring this device.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) This device may have been added with another device file.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event4)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) ThinkPad Extra Buttons: Applying InputClass "libinput keyboard catchall"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Using input driver 'libinput' for 'ThinkPad Extra Buttons'
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 35 paused 0
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) ThinkPad Extra Buttons: always reports core events
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "Device" "/dev/input/event4"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event4  - ThinkPad Extra Buttons: is tagged by udev as: Keyboard Switch
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event4  - ThinkPad Extra Buttons: device is a keyboard
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event4  - ThinkPad Extra Buttons: device removed
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input5/event4"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 11)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event4  - ThinkPad Extra Buttons: is tagged by udev as: Keyboard Switch
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event4  - ThinkPad Extra Buttons: device is a keyboard
Jun 04 18:48:29 AlexArch systemd[305]: Created slice User Core Session Slice.
Jun 04 18:48:29 AlexArch systemd[305]: Starting D-Bus User Message Bus...
Jun 04 18:48:29 AlexArch systemd[305]: Started D-Bus User Message Bus.
Jun 04 18:48:29 AlexArch dbus-daemon[351]: [session uid=120 pid=351] Successfully activated service 'org.freedesktop.systemd1'
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event10)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) No input driver specified, ignoring this device.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) This device may have been added with another device file.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: removing device SynPS/2 Synaptics TouchPad
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "fd" "34"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event11 - SynPS/2 Synaptics TouchPad: device removed
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) UnloadModule: "libinput"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: releasing fd for 13:75
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event11)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Using input driver 'libinput' for 'SynPS/2 Synaptics TouchPad'
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 10 paused 0
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) SynPS/2 Synaptics TouchPad: always reports core events
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "Device" "/dev/input/event11"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event11 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event11 - SynPS/2 Synaptics TouchPad: device is a touchpad
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event11 - SynPS/2 Synaptics TouchPad: device removed
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input8/event11"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 10)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "AccelerationScheme" "none"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) SynPS/2 Synaptics TouchPad: (accel) selected scheme none/0
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event11 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event11 - SynPS/2 Synaptics TouchPad: device is a touchpad
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) No input driver specified, ignoring this device.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) This device may have been added with another device file.
Jun 04 18:48:29 AlexArch kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input13
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse1)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) No input driver specified, ignoring this device.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) This device may have been added with another device file.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event12)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) TPPS/2 IBM TrackPoint: Applying InputClass "libinput pointer catchall"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) Using input driver 'libinput' for 'TPPS/2 IBM TrackPoint'
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 30 paused 0
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) TPPS/2 IBM TrackPoint: always reports core events
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "Device" "/dev/input/event12"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event12 - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse Pointingstick
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event12 - TPPS/2 IBM TrackPoint: device is a pointer
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event12 - TPPS/2 IBM TrackPoint: device removed
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) libinput: TPPS/2 IBM TrackPoint: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) libinput: TPPS/2 IBM TrackPoint: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) libinput: TPPS/2 IBM TrackPoint: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/serio2/input/input13/event12"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 12)
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "AccelerationScheme" "none"
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) TPPS/2 IBM TrackPoint: (accel) selected scheme none/0
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event12 - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse Pointingstick
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[332]: (II) event12 - TPPS/2 IBM TrackPoint: device is a pointer
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[354]: dbus-daemon[354]: [session uid=120 pid=354] Activating service name='org.a11y.Bus' requested by ':1.0' (uid=120 pid=360 comm="/usr/lib/gnome-session-check-accelerated")
Jun 04 18:48:29 AlexArch /usr/lib/gdm-x-session[354]: dbus-daemon[354]: [session uid=120 pid=354] Successfully activated service 'org.a11y.Bus'
Jun 04 18:48:30 AlexArch gnome-shell[379]: Running GNOME Shell (using mutter 44.2) as a X11 window and compositing manager
Jun 04 18:48:30 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): EDID vendor "LEN", prod id 16464
Jun 04 18:48:30 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Printing DDC gathered Modelines:
Jun 04 18:48:30 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x800"x0.0   71.11  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.4 kHz eP)
Jun 04 18:48:30 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x800"x0.0   60.10  1280 1328 1360 1457  800 803 809 825 -hsync -vsync (41.2 kHz e)
Jun 04 18:48:30 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): EDID vendor "LEN", prod id 16464
Jun 04 18:48:30 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Printing DDC gathered Modelines:
Jun 04 18:48:30 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x800"x0.0   71.11  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.4 kHz eP)
Jun 04 18:48:30 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x800"x0.0   60.10  1280 1328 1360 1457  800 803 809 825 -hsync -vsync (41.2 kHz e)
Jun 04 18:48:30 AlexArch gnome-shell[379]: Obtained a high priority EGL context
Jun 04 18:48:30 AlexArch gnome-shell[379]: Obtained a high priority EGL context
Jun 04 18:48:31 AlexArch gnome-shell[379]: Unset XDG_SESSION_ID, getCurrentSessionProxy() called outside a user session. Asking logind directly.
Jun 04 18:48:31 AlexArch gnome-shell[379]: Will monitor session 1
Jun 04 18:48:31 AlexArch dbus-daemon[248]: [system] Activating via systemd: service name='org.freedesktop.locale1' unit='dbus-org.freedesktop.locale1.service' requested by ':1.16' (uid=120 pid=379 comm="/usr/bin/gnome-shell")
Jun 04 18:48:31 AlexArch systemd[1]: Starting Locale Service...
Jun 04 18:48:31 AlexArch /usr/lib/gdm-x-session[354]: dbus-daemon[354]: [session uid=120 pid=354] Activating service name='org.gnome.Shell.Screencast' requested by ':1.5' (uid=120 pid=379 comm="/usr/bin/gnome-shell")
Jun 04 18:48:31 AlexArch dbus-daemon[248]: [system] Successfully activated service 'org.freedesktop.locale1'
Jun 04 18:48:31 AlexArch systemd[1]: Started Locale Service.
Jun 04 18:48:31 AlexArch /usr/lib/gdm-x-session[354]: dbus-daemon[354]: [session uid=120 pid=354] Activating service name='org.freedesktop.impl.portal.PermissionStore' requested by ':1.5' (uid=120 pid=379 comm="/usr/bin/gnome-shell")
Jun 04 18:48:31 AlexArch /usr/lib/gdm-x-session[354]: dbus-daemon[354]: [session uid=120 pid=354] Successfully activated service 'org.freedesktop.impl.portal.PermissionStore'
Jun 04 18:48:31 AlexArch dbus-daemon[248]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service' requested by ':1.16' (uid=120 pid=379 comm="/usr/bin/gnome-shell")
Jun 04 18:48:31 AlexArch systemd[1]: Starting Daemon for power management...
Jun 04 18:48:31 AlexArch systemd[305]: Starting Sound Service...
Jun 04 18:48:31 AlexArch dbus-daemon[248]: [system] Activating via systemd: service name='org.freedesktop.GeoClue2' unit='geoclue.service' requested by ':1.16' (uid=120 pid=379 comm="/usr/bin/gnome-shell")
Jun 04 18:48:31 AlexArch systemd[1]: Starting Location Lookup Service...
Jun 04 18:48:31 AlexArch dbus-daemon[248]: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service' requested by ':1.19' (uid=120 pid=430 comm="/usr/bin/pulseaudio --daemonize=no --log-target=jo")
Jun 04 18:48:31 AlexArch systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Jun 04 18:48:31 AlexArch dbus-daemon[248]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
Jun 04 18:48:31 AlexArch systemd[1]: Started RealtimeKit Scheduling Policy Service.
Jun 04 18:48:31 AlexArch rtkit-daemon[435]: Successfully called chroot.
Jun 04 18:48:31 AlexArch rtkit-daemon[435]: Successfully dropped privileges.
Jun 04 18:48:31 AlexArch rtkit-daemon[435]: Successfully limited resources.
Jun 04 18:48:31 AlexArch rtkit-daemon[435]: Running.
Jun 04 18:48:31 AlexArch rtkit-daemon[435]: Successfully made thread 430 of process 430 owned by '120' high priority at nice level -11.
Jun 04 18:48:31 AlexArch rtkit-daemon[435]: Supervising 1 threads of 1 processes of 1 users.
Jun 04 18:48:31 AlexArch rtkit-daemon[435]: Watchdog thread running.
Jun 04 18:48:31 AlexArch rtkit-daemon[435]: Canary thread running.
Jun 04 18:48:31 AlexArch polkitd[283]: Registered Authentication Agent for unix-session:1 (system bus name :1.16 [/usr/bin/gnome-shell], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale C.UTF-8)
Jun 04 18:48:32 AlexArch dbus-daemon[248]: [system] Successfully activated service 'org.freedesktop.UPower'
Jun 04 18:48:32 AlexArch systemd[1]: Started Daemon for power management.
Jun 04 18:48:32 AlexArch /usr/lib/gdm-x-session[354]: dbus-daemon[354]: [session uid=120 pid=354] Activating service name='org.gnome.Shell.Notifications' requested by ':1.5' (uid=120 pid=379 comm="/usr/bin/gnome-shell")
Jun 04 18:48:32 AlexArch gnome-shell[379]: Extension apps-menu@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 18:48:32 AlexArch dbus-daemon[248]: [system] Activating via systemd: service name='fi.w1.wpa_supplicant1' unit='wpa_supplicant.service' requested by ':1.21' (uid=969 pid=432 comm="/usr/lib/geoclue")
Jun 04 18:48:32 AlexArch gnome-shell[379]: Extension auto-move-windows@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/auto-move-windows@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/auto-move-windows@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 18:48:32 AlexArch gnome-shell[379]: Extension drive-menu@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/drive-menu@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/drive-menu@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 18:48:32 AlexArch gnome-shell[379]: Extension launch-new-instance@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/launch-new-instance@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/launch-new-instance@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 18:48:32 AlexArch gnome-shell[379]: Extension native-window-placement@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/native-window-placement@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/native-window-placement@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 18:48:32 AlexArch gnome-shell[379]: Extension places-menu@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 18:48:32 AlexArch gnome-shell[379]: Extension screenshot-window-sizer@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/screenshot-window-sizer@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/screenshot-window-sizer@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 18:48:32 AlexArch gnome-shell[379]: Extension user-theme@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 18:48:32 AlexArch gnome-shell[379]: Extension window-list@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 18:48:32 AlexArch gnome-shell[379]: Extension windowsNavigator@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/windowsNavigator@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/windowsNavigator@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 18:48:32 AlexArch gnome-shell[379]: Extension workspace-indicator@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/workspace-indicator@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/workspace-indicator@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 18:48:32 AlexArch systemd[1]: Starting WPA supplicant...
Jun 04 18:48:32 AlexArch dbus-daemon[248]: [system] Successfully activated service 'fi.w1.wpa_supplicant1'
Jun 04 18:48:32 AlexArch systemd[1]: Started WPA supplicant.
Jun 04 18:48:32 AlexArch wpa_supplicant[451]: Successfully initialized wpa_supplicant
Jun 04 18:48:32 AlexArch dbus-daemon[248]: [system] Activating via systemd: service name='org.freedesktop.Avahi' unit='dbus-org.freedesktop.Avahi.service' requested by ':1.25' (uid=969 pid=432 comm="/usr/lib/geoclue")
Jun 04 18:48:32 AlexArch /usr/lib/gdm-x-session[370]: dbus-daemon[370]: Activating service name='org.a11y.atspi.Registry' requested by ':1.1' (uid=120 pid=379 comm="/usr/bin/gnome-shell")
Jun 04 18:48:32 AlexArch dbus-daemon[248]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.Avahi.service': Unit dbus-org.freedesktop.Avahi.service not found.
Jun 04 18:48:32 AlexArch geoclue[432]: Failed to connect to avahi service: Daemon not running
Jun 04 18:48:32 AlexArch dbus-daemon[248]: [system] Activating via systemd: service name='org.freedesktop.ColorManager' unit='colord.service' requested by ':1.16' (uid=120 pid=379 comm="/usr/bin/gnome-shell")
Jun 04 18:48:32 AlexArch dbus-daemon[248]: [system] Successfully activated service 'org.freedesktop.GeoClue2'
Jun 04 18:48:32 AlexArch systemd[1]: Starting Manage, Install and Generate Color Profiles...
Jun 04 18:48:32 AlexArch systemd[1]: Started Location Lookup Service.
Jun 04 18:48:32 AlexArch /usr/lib/gdm-x-session[354]: dbus-daemon[354]: [session uid=120 pid=354] Successfully activated service 'org.gnome.Shell.Notifications'
Jun 04 18:48:32 AlexArch /usr/lib/gdm-x-session[370]: dbus-daemon[370]: Successfully activated service 'org.a11y.atspi.Registry'
Jun 04 18:48:32 AlexArch /usr/lib/gdm-x-session[457]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Jun 04 18:48:32 AlexArch org.gnome.Shell.desktop[379]: Window manager warning: Failed to parse saved session file: Failed to open file “/var/lib/gdm/.config/mutter/sessions/10e244974b86787f3e168589730997236900000003550000.ms”: No such file or directory
Jun 04 18:48:32 AlexArch dbus-daemon[248]: [system] Successfully activated service 'org.freedesktop.ColorManager'
Jun 04 18:48:32 AlexArch systemd[1]: Started Manage, Install and Generate Color Profiles.
Jun 04 18:48:32 AlexArch gnome-shell[379]: Failed to launch ibus-daemon: Failed to execute child process “ibus-daemon” (No such file or directory)
Jun 04 18:48:32 AlexArch rtkit-daemon[435]: Supervising 1 threads of 1 processes of 1 users.
Jun 04 18:48:32 AlexArch NetworkManager[251]: <info>  [1685897312.5344] agent-manager: agent[440e46eb03e022a8,:1.16/org.gnome.Shell.NetworkAgent/120]: agent registered
Jun 04 18:48:32 AlexArch rtkit-daemon[435]: Successfully made thread 500 of process 430 owned by '120' RT at priority 5.
Jun 04 18:48:32 AlexArch rtkit-daemon[435]: Supervising 2 threads of 1 processes of 1 users.
Jun 04 18:48:32 AlexArch rtkit-daemon[435]: Supervising 2 threads of 1 processes of 1 users.
Jun 04 18:48:32 AlexArch rtkit-daemon[435]: Successfully made thread 523 of process 430 owned by '120' RT at priority 5.
Jun 04 18:48:32 AlexArch rtkit-daemon[435]: Supervising 3 threads of 1 processes of 1 users.
Jun 04 18:48:32 AlexArch systemd[305]: Started Sound Service.
Jun 04 18:48:32 AlexArch gnome-shell[379]: Error looking up permission: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for geolocation
Jun 04 18:48:32 AlexArch kernel: rfkill: input handler disabled
Jun 04 18:48:32 AlexArch /usr/lib/gdm-x-session[354]: dbus-daemon[354]: [session uid=120 pid=354] Activating service name='org.freedesktop.systemd1' requested by ':1.11' (uid=120 pid=471 comm="/usr/lib/gsd-sharing")
Jun 04 18:48:32 AlexArch /usr/lib/gdm-x-session[354]: dbus-daemon[354]: [session uid=120 pid=354] Activated service 'org.freedesktop.systemd1' failed: Process org.freedesktop.systemd1 exited with status 1
Jun 04 18:48:32 AlexArch gsd-sharing[471]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
Jun 04 18:48:32 AlexArch gsd-sharing[471]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
Jun 04 18:48:33 AlexArch gnome-session-binary[355]: Entering running state
Jun 04 18:48:33 AlexArch xbrlapi.desktop[629]: openConnection: connect: No such file or directory
Jun 04 18:48:33 AlexArch xbrlapi.desktop[629]: cannot connect to braille devices daemon brltty at :0
Jun 04 18:48:33 AlexArch /usr/lib/gdm-x-session[354]: dbus-daemon[354]: [session uid=120 pid=354] Activating service name='org.gnome.ScreenSaver' requested by ':1.25' (uid=120 pid=528 comm="/usr/lib/gsd-power")
Jun 04 18:48:33 AlexArch gsd-media-keys[495]: Failed to grab accelerator for keybinding settings:playback-repeat
Jun 04 18:48:33 AlexArch gsd-media-keys[495]: Failed to grab accelerator for keybinding settings:rotate-video-lock
Jun 04 18:48:33 AlexArch gsd-media-keys[495]: Failed to grab accelerator for keybinding settings:hibernate
Jun 04 18:48:33 AlexArch gsd-media-keys[495]: Failed to grab accelerator for keybinding settings:playback-random
Jun 04 18:48:33 AlexArch /usr/lib/gdm-x-session[354]: dbus-daemon[354]: [session uid=120 pid=354] Successfully activated service 'org.gnome.ScreenSaver'
Jun 04 18:48:33 AlexArch dbus-daemon[248]: [system] Activating via systemd: service name='net.reactivated.Fprint' unit='fprintd.service' requested by ':1.16' (uid=120 pid=379 comm="/usr/bin/gnome-shell")
Jun 04 18:48:33 AlexArch systemd[1]: Starting Fingerprint Authentication Daemon...
Jun 04 18:48:33 AlexArch systemd[1]: systemd-rfkill.service: Deactivated successfully.
Jun 04 18:48:33 AlexArch dbus-daemon[248]: [system] Successfully activated service 'net.reactivated.Fprint'
Jun 04 18:48:33 AlexArch systemd[1]: Started Fingerprint Authentication Daemon.
Jun 04 18:48:34 AlexArch gnome-shell[379]: Registering session with GDM
Jun 04 18:48:37 AlexArch systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Jun 04 18:48:40 AlexArch gdm-password][671]: gkr-pam: unable to locate daemon control file
Jun 04 18:48:40 AlexArch gdm-password][671]: gkr-pam: stashed password to try later in open session
Jun 04 18:48:40 AlexArch gdm-password][671]: pam_unix(gdm-password:session): session opened for user root(uid=0) by root(uid=0)
Jun 04 18:48:40 AlexArch systemd[1]: Created slice User Slice of UID 0.
Jun 04 18:48:40 AlexArch systemd[1]: Starting User Runtime Directory /run/user/0...
Jun 04 18:48:40 AlexArch systemd-logind[249]: New session 3 of user root.
Jun 04 18:48:40 AlexArch systemd[1]: Finished User Runtime Directory /run/user/0.
Jun 04 18:48:40 AlexArch systemd[1]: Starting User Manager for UID 0...
Jun 04 18:48:40 AlexArch (systemd)[687]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[root] ruser=[<unknown>] rhost=[<unknown>]
Jun 04 18:48:40 AlexArch (systemd)[687]: pam_unix(systemd-user:session): session opened for user root(uid=0) by root(uid=0)
Jun 04 18:48:40 AlexArch systemd[687]: Queued start job for default target Main User Target.
Jun 04 18:48:40 AlexArch systemd[687]: Created slice User Application Slice.
Jun 04 18:48:40 AlexArch systemd[687]: Reached target Paths.
Jun 04 18:48:40 AlexArch systemd[687]: Reached target Timers.
Jun 04 18:48:40 AlexArch systemd[687]: Starting D-Bus User Message Bus Socket...
Jun 04 18:48:40 AlexArch systemd[687]: Listening on GnuPG network certificate management daemon.
Jun 04 18:48:40 AlexArch systemd[687]: Listening on GCR ssh-agent wrapper.
Jun 04 18:48:40 AlexArch systemd[687]: Listening on GNOME Keyring daemon.
Jun 04 18:48:40 AlexArch systemd[687]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jun 04 18:48:40 AlexArch systemd[687]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Jun 04 18:48:40 AlexArch systemd[687]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Jun 04 18:48:40 AlexArch systemd[687]: Listening on GnuPG cryptographic agent and passphrase cache.
Jun 04 18:48:40 AlexArch systemd[687]: Listening on p11-kit server.
Jun 04 18:48:40 AlexArch systemd[687]: Listening on PipeWire Multimedia System Socket.
Jun 04 18:48:40 AlexArch systemd[687]: Sound System was skipped because of an unmet condition check (ConditionUser=!root).
Jun 04 18:48:40 AlexArch systemd[687]: Listening on D-Bus User Message Bus Socket.
Jun 04 18:48:40 AlexArch systemd[687]: Reached target Sockets.
Jun 04 18:48:40 AlexArch systemd[687]: Reached target Basic System.
Jun 04 18:48:40 AlexArch systemd[1]: Started User Manager for UID 0.
Jun 04 18:48:40 AlexArch systemd[1]: Started Session 3 of User root.
Jun 04 18:48:40 AlexArch systemd[687]: Starting Update XDG user dir configuration...
Jun 04 18:48:40 AlexArch systemd[687]: Finished Update XDG user dir configuration.
Jun 04 18:48:40 AlexArch systemd[687]: Reached target Main User Target.
Jun 04 18:48:40 AlexArch systemd[687]: Startup finished in 388ms.
Jun 04 18:48:40 AlexArch systemd[687]: Started GNOME Keyring daemon.
Jun 04 18:48:40 AlexArch gnome-keyring-daemon[701]: GNOME_KEYRING_CONTROL=/run/user/0/keyring
Jun 04 18:48:40 AlexArch systemd[687]: Created slice User Core Session Slice.
Jun 04 18:48:40 AlexArch systemd[687]: Starting D-Bus User Message Bus...
Jun 04 18:48:40 AlexArch systemd[687]: Started D-Bus User Message Bus.
Jun 04 18:48:40 AlexArch gdm-password][671]: gkr-pam: unlocked login keyring
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "fd" "28"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[332]: (II) event2  - Power Button: device removed
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "fd" "31"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[332]: (II) event5  - Video Bus: device removed
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "fd" "32"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[332]: (II) event1  - Sleep Button: device removed
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "fd" "33"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[332]: (II) event3  - AT Translated Set 2 keyboard: device removed
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "fd" "35"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[332]: (II) event4  - ThinkPad Extra Buttons: device removed
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "fd" "10"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[332]: (II) event11 - SynPS/2 Synaptics TouchPad: device removed
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "fd" "30"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[332]: (II) event12 - TPPS/2 IBM TrackPoint: device removed
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[332]: (II) AIGLX: Suspending AIGLX clients for VT switch
Jun 04 18:48:41 AlexArch kernel: rfkill: input handler enabled
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[332]: (EE) modeset(0): failed to set mode: Permission denied
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got pause for 13:68
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got pause for 13:76
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got pause for 13:67
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got pause for 13:66
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got pause for 13:65
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got pause for 13:75
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got pause for 13:69
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: _XSERVTransSocketUNIXCreateListener: ...SocketCreateListener() failed
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: _XSERVTransMakeAllCOTSServerListeners: server already running
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (--) Log file renamed from "/var/log/Xorg.pid-715.log" to "/var/log/Xorg.1.log"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: X.Org X Server 1.21.1.8
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: X Protocol Version 11, Revision 0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: Current Operating System: Linux AlexArch 6.3.5-arch1-1 #1 SMP PREEMPT_DYNAMIC Tue, 30 May 2023 13:44:01 +0000 x86_64
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=882f05fb-ea19-4494-99b9-75cacc2e0493 rw loglevel=3 quiet
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:  
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: Current version of pixman: 0.42.2
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         Before reporting problems, check http://wiki.x.org
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         to make sure that you have the latest version.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: Markers: (--) probed, (**) from config file, (==) default setting,
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         (++) from command line, (!!) notice, (II) informational,
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) Log file: "/var/log/Xorg.1.log", Time: Sun Jun  4 18:48:41 2023
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) Using system config directory "/usr/share/X11/xorg.conf.d"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) No Layout section.  Using the first Screen section.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) No screen section available. Using defaults.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) |-->Screen "Default Screen Section" (0)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) |   |-->Monitor "<default monitor>"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) No monitor specified for screen "Default Screen Section".
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         Using a default monitor configuration.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) Automatically adding devices
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) Automatically enabling devices
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) Automatically adding GPU devices
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) Automatically binding GPU devices
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) Max clients allowed: 256, resource mask: 0x1fffff
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (WW) The directory "/usr/share/fonts/misc" does not exist.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         Entry deleted from font path.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (WW) The directory "/usr/share/fonts/TTF" does not exist.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         Entry deleted from font path.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (WW) The directory "/usr/share/fonts/OTF" does not exist.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         Entry deleted from font path.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (WW) The directory "/usr/share/fonts/Type1" does not exist.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         Entry deleted from font path.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (WW) The directory "/usr/share/fonts/100dpi" does not exist.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         Entry deleted from font path.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (WW) The directory "/usr/share/fonts/75dpi" does not exist.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         Entry deleted from font path.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) FontPath set to:
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) ModulePath set to "/usr/lib/xorg/modules"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) The server relies on udev to provide the list of input devices.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         If no devices become available, reconfigure udev or disable AutoAddDevices.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Module ABI versions:
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         X.Org ANSI C Emulation: 0.4
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         X.Org Video Driver: 25.2
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         X.Org XInput driver : 24.4
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         X.Org Server Extension : 10.0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (++) using VT number 2
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) systemd-logind: took control of session /org/freedesktop/login1/session/_33
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) xfree86: Adding drm device (/dev/dri/card0)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 15 paused 0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (--) PCI:*(0@0:2:0) 8086:2a42:17aa:20e4 rev 7, Mem @ 0xf4400000/4194304, 0xd0000000/268435456, I/O @ 0x00001800/8, BIOS @ 0x????????/131072
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (--) PCI: (0@0:2:1) 8086:2a43:17aa:20e4 rev 7, Mem @ 0xf4200000/1048576
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) LoadModule: "glx"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Module glx: vendor="X.Org Foundation"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         compiled for 1.21.1.8, module version = 1.0.0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         ABI class: X.Org Server Extension, version 10.0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) Matched intel as autoconfigured driver 0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) Matched modesetting as autoconfigured driver 1
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) Matched fbdev as autoconfigured driver 2
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) Matched vesa as autoconfigured driver 3
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) Assigned the driver to the xf86ConfigLayout
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) LoadModule: "intel"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (WW) Warning, couldn't open module intel
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (EE) Failed to load module "intel" (module does not exist, 0)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) LoadModule: "modesetting"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Module modesetting: vendor="X.Org Foundation"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         compiled for 1.21.1.8, module version = 1.21.1
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         Module class: X.Org Video Driver
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         ABI class: X.Org Video Driver, version 25.2
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) LoadModule: "fbdev"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (WW) Warning, couldn't open module fbdev
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (EE) Failed to load module "fbdev" (module does not exist, 0)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) LoadModule: "vesa"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (WW) Warning, couldn't open module vesa
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (EE) Failed to load module "vesa" (module does not exist, 0)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modesetting: Driver for Modesetting Kernel Drivers: kms
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): using drv /dev/dri/card0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Creating default Display subsection in Screen section
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         "Default Screen Section" for depth/fbbpp 24/32
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) modeset(0): Depth 24, (==) framebuffer bpp 32
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) modeset(0): RGB weight 888
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) modeset(0): Default visual is TrueColor
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Loading sub module "glamoregl"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) LoadModule: "glamoregl"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Loading /usr/lib/xorg/modules/libglamoregl.so
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Module glamoregl: vendor="X.Org Foundation"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         compiled for 1.21.1.8, module version = 1.0.1
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         ABI class: X.Org ANSI C Emulation, version 0.4
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): glamor X acceleration enabled on Mesa Mobile Intel® GM45 Express Chipset (CTG)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): glamor initialized
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) modeset(0): VariableRefresh: disabled
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) modeset(0): AsyncFlipSecondaries: disabled
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Output LVDS-1 has no monitor section
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Output VGA-1 has no monitor section
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Output HDMI-1 has no monitor section
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Output DP-1 has no monitor section
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Output HDMI-2 has no monitor section
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Output DP-2 has no monitor section
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Output DP-3 has no monitor section
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): EDID for output LVDS-1
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Manufacturer: LEN  Model: 4050  Serial#: 0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Year: 2006  Week: 0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): EDID Version: 1.3
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Digital Display Input
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Max Image Size [cm]: horiz.: 33  vert.: 21
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Gamma: 2.20
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): DPMS capabilities: StandBy Suspend Off
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): First detailed timing is preferred mode
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): redX: 0.590 redY: 0.340   greenX: 0.320 greenY: 0.550
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): blueX: 0.152 blueY: 0.130   whiteX: 0.313 whiteY: 0.329
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Manufacturer's mask: 0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Supported detailed timing:
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): clock: 71.1 MHz   Image Size:  331 x 207 mm
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1440 h_border: 0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 823 v_border: 0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Supported detailed timing:
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): clock: 60.1 MHz   Image Size:  331 x 207 mm
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1457 h_border: 0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 825 v_border: 0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Unknown vendor-specific block f
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0):  LTN154X3-L02
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): EDID (in hex):
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0):         00ffffffffffff0030ae504000000000
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0):         0010010380211578ea03159757528c27
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0):         21505400000001010101010101010101
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0):         010101010101c71b00a0502017303020
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0):         36004bcf100000197a1700b150201930
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0):         302036004bcf100000190000000f0081
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0):         0a32810a281401004ca35833000000fe
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0):         004c544e31353458332d4c30320a00c2
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Printing probed modes for output LVDS-1
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "1280x800"x60.0   71.11  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.4 kHz eP)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "1280x800"x120.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "1280x800"x119.9  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "1280x800"x50.0   60.10  1280 1328 1360 1457  800 803 809 825 -hsync -vsync (41.2 kHz e)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "1280x720"x120.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "1280x720"x120.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "1024x576"x119.9   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "1024x576"x119.9   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "960x600"x119.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "960x600"x120.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "960x540"x119.9   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "960x540"x120.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "840x525"x120.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "840x525"x119.8   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "800x450"x119.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "800x450"x119.6   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "700x450"x119.9   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "700x450"x119.8   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "684x384"x119.8   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "684x384"x119.7   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "640x400"x119.8   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "640x400"x120.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "640x360"x119.7   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "640x360"x119.7   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "512x288"x120.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "512x288"x119.8   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "480x270"x119.3   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "480x270"x119.6   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "432x243"x119.8   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "432x243"x119.1   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "360x202"x119.0   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "360x202"x118.3   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "320x180"x119.7    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "320x180"x118.6    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): EDID for output VGA-1
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): EDID for output HDMI-1
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): EDID for output DP-1
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): EDID for output HDMI-2
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): EDID for output DP-2
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): EDID for output DP-3
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Output LVDS-1 connected
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Output VGA-1 disconnected
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Output HDMI-1 disconnected
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Output DP-1 disconnected
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Output HDMI-2 disconnected
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Output DP-2 disconnected
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Output DP-3 disconnected
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Using exact sizes for initial modes
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Output LVDS-1 using initial mode 1280x800 +0+0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) modeset(0): DPI set to (96, 96)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Loading sub module "fb"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) LoadModule: "fb"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Module "fb" already built-in
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) modeset(0): Backing store enabled
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) modeset(0): Silken mouse enabled
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (==) modeset(0): DPMS enabled
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): [DRI2] Setup complete
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): [DRI2]   DRI driver: crocus
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): [DRI2]   VDPAU driver: va_gl
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension Generic Event Extension
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension SHAPE
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension MIT-SHM
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension XInputExtension
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension XTEST
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension BIG-REQUESTS
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension SYNC
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension XKEYBOARD
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension XC-MISC
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension SECURITY
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension XFIXES
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension RENDER
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension RANDR
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension COMPOSITE
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension DAMAGE
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension MIT-SCREEN-SAVER
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension DOUBLE-BUFFER
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension RECORD
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension DPMS
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension Present
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension DRI3
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension X-Resource
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension XVideo
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension XVideo-MotionCompensation
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension GLX
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) AIGLX: Loaded and initialized crocus
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) GLX: Initialized DRI2 GL provider for screen 0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension XFree86-VidModeExtension
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension XFree86-DGA
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension XFree86-DRI
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Initializing extension DRI2
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Damage tracking initialized
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Setting screen physical size to 338 x 211
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) config/udev: Adding input device Power Button (/dev/input/event2)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) Power Button: Applying InputClass "libinput keyboard catchall"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) LoadModule: "libinput"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Module libinput: vendor="X.Org Foundation"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         compiled for 1.21.1.8, module version = 1.3.0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         Module class: X.Org XInput Driver
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]:         ABI class: X.Org XInput driver, version 24.4
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Using input driver 'libinput' for 'Power Button'
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 32 paused 0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) Power Button: always reports core events
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) Option "Device" "/dev/input/event2"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event2  - Power Button: is tagged by udev as: Keyboard
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event2  - Power Button: device is a keyboard
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event2  - Power Button: device removed
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event2  - Power Button: is tagged by udev as: Keyboard
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event2  - Power Button: device is a keyboard
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) config/udev: Adding input device Video Bus (/dev/input/event5)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) Video Bus: Applying InputClass "libinput keyboard catchall"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Using input driver 'libinput' for 'Video Bus'
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 35 paused 0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) Video Bus: always reports core events
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) Option "Device" "/dev/input/event5"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event5  - Video Bus: is tagged by udev as: Keyboard
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event5  - Video Bus: device is a keyboard
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event5  - Video Bus: device removed
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input6/event5"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event5  - Video Bus: is tagged by udev as: Keyboard
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event5  - Video Bus: device is a keyboard
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) No input driver specified, ignoring this device.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) This device may have been added with another device file.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Using input driver 'libinput' for 'Sleep Button'
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 36 paused 0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) Sleep Button: always reports core events
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) Option "Device" "/dev/input/event1"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event1  - Sleep Button: is tagged by udev as: Keyboard
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event1  - Sleep Button: device is a keyboard
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event1  - Sleep Button: device removed
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1/event1"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event1  - Sleep Button: is tagged by udev as: Keyboard
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event1  - Sleep Button: device is a keyboard
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) config/udev: Adding input device HDA Intel Dock Mic (/dev/input/event8)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) No input driver specified, ignoring this device.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) This device may have been added with another device file.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) config/udev: Adding input device HDA Intel Dock Headphone (/dev/input/event9)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) No input driver specified, ignoring this device.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) This device may have been added with another device file.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event10)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) No input driver specified, ignoring this device.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) This device may have been added with another device file.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event7)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) No input driver specified, ignoring this device.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) This device may have been added with another device file.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 37 paused 0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) AT Translated Set 2 keyboard: always reports core events
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) Option "Device" "/dev/input/event3"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event3  - AT Translated Set 2 keyboard: device removed
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input3/event3"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event11)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Using input driver 'libinput' for 'SynPS/2 Synaptics TouchPad'
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 38 paused 0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) SynPS/2 Synaptics TouchPad: always reports core events
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) Option "Device" "/dev/input/event11"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event11 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event11 - SynPS/2 Synaptics TouchPad: device is a touchpad
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event11 - SynPS/2 Synaptics TouchPad: device removed
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input8/event11"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 10)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) Option "AccelerationScheme" "none"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) SynPS/2 Synaptics TouchPad: (accel) selected scheme none/0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event11 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event11 - SynPS/2 Synaptics TouchPad: device is a touchpad
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) No input driver specified, ignoring this device.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) This device may have been added with another device file.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event12)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) TPPS/2 IBM TrackPoint: Applying InputClass "libinput pointer catchall"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Using input driver 'libinput' for 'TPPS/2 IBM TrackPoint'
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 39 paused 0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) TPPS/2 IBM TrackPoint: always reports core events
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) Option "Device" "/dev/input/event12"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event12 - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse Pointingstick
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event12 - TPPS/2 IBM TrackPoint: device is a pointer
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event12 - TPPS/2 IBM TrackPoint: device removed
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) libinput: TPPS/2 IBM TrackPoint: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) libinput: TPPS/2 IBM TrackPoint: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) libinput: TPPS/2 IBM TrackPoint: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/serio2/input/input13/event12"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 11)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) Option "AccelerationScheme" "none"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) TPPS/2 IBM TrackPoint: (accel) selected scheme none/0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event12 - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse Pointingstick
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event12 - TPPS/2 IBM TrackPoint: device is a pointer
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse1)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) No input driver specified, ignoring this device.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) This device may have been added with another device file.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) No input driver specified, ignoring this device.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) This device may have been added with another device file.
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event4)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) ThinkPad Extra Buttons: Applying InputClass "libinput keyboard catchall"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) Using input driver 'libinput' for 'ThinkPad Extra Buttons'
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 40 paused 0
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) ThinkPad Extra Buttons: always reports core events
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) Option "Device" "/dev/input/event4"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event4  - ThinkPad Extra Buttons: is tagged by udev as: Keyboard Switch
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event4  - ThinkPad Extra Buttons: device is a keyboard
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event4  - ThinkPad Extra Buttons: device removed
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input5/event4"
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 12)
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event4  - ThinkPad Extra Buttons: is tagged by udev as: Keyboard Switch
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[715]: (II) event4  - ThinkPad Extra Buttons: device is a keyboard
Jun 04 18:48:41 AlexArch /usr/lib/gdm-x-session[741]: /etc/gdm/Xsession: Beginning session setup...
Jun 04 18:48:42 AlexArch /usr/lib/gdm-x-session[754]: localuser:root being added to access control list
Jun 04 18:48:42 AlexArch /usr/lib/gdm-x-session[741]: /etc/gdm/Xsession: Setup done, will execute: /usr/bin/gnome-session
Jun 04 18:48:42 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating via systemd: service name='org.gtk.vfs.Daemon' unit='gvfs-daemon.service' requested by ':1.4' (uid=0 pid=762 comm="/usr/lib/gnome-session-check-accelerated")
Jun 04 18:48:42 AlexArch systemd[687]: Starting Virtual filesystem service...
Jun 04 18:48:42 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gtk.vfs.Daemon'
Jun 04 18:48:42 AlexArch systemd[687]: Started Virtual filesystem service.
Jun 04 18:48:42 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating via systemd: service name='org.a11y.Bus' unit='at-spi-dbus-bus.service' requested by ':1.6' (uid=0 pid=762 comm="/usr/lib/gnome-session-check-accelerated")
Jun 04 18:48:42 AlexArch systemd[687]: Starting Accessibility services bus...
Jun 04 18:48:42 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.a11y.Bus'
Jun 04 18:48:42 AlexArch systemd[687]: Started Accessibility services bus.
Jun 04 18:48:42 AlexArch systemd[687]: Created slice Slice /app/gnome-session-manager.
Jun 04 18:48:42 AlexArch systemd[687]: Reached target GNOME X11 Session.
Jun 04 18:48:42 AlexArch systemd[687]: Reached target Session services which should run early before the graphical session is brought up.
Jun 04 18:48:42 AlexArch systemd[687]: Reached target GNOME Shell.
Jun 04 18:48:42 AlexArch systemd[687]: Starting Monitor Session leader for GNOME Session...
Jun 04 18:48:42 AlexArch systemd[687]: Started Monitor Session leader for GNOME Session.
Jun 04 18:48:42 AlexArch systemd[687]: Reached target Tasks to be run before GNOME Session starts.
Jun 04 18:48:42 AlexArch systemd[687]: Starting GNOME Session Manager (session: gnome)...
Jun 04 18:48:42 AlexArch gnome-keyring-daemon[701]: The Secret Service was already initialized
Jun 04 18:48:42 AlexArch gnome-keyring-daemon[810]: discover_other_daemon: 1
Jun 04 18:48:42 AlexArch gnome-keyring-secrets.desktop[810]: discover_other_daemon: 1GNOME_KEYRING_CONTROL=/run/user/0/keyring
Jun 04 18:48:42 AlexArch gnome-keyring-d[701]: The Secret Service was already initialized
Jun 04 18:48:42 AlexArch systemd[687]: app-gnome-gnome\x2dkeyring\x2dsecrets-803.scope: Couldn't move process 803 to requested cgroup '/user.slice/user-0.slice/user@0.service/app.slice/app-gnome-gnome\x2dkeyring\x2dsecrets-803.scope': No such process
Jun 04 18:48:42 AlexArch systemd[687]: app-gnome-gnome\x2dkeyring\x2dsecrets-803.scope: Failed to add PIDs to scope's control group: No such process
Jun 04 18:48:42 AlexArch systemd[687]: app-gnome-gnome\x2dkeyring\x2dsecrets-803.scope: Failed with result 'resources'.
Jun 04 18:48:42 AlexArch systemd[687]: Failed to start Application launched by gnome-session-binary.
Jun 04 18:48:42 AlexArch systemd[687]: Started Application launched by gnome-session-binary.
Jun 04 18:48:42 AlexArch systemd[687]: Started Application launched by gnome-session-binary.
Jun 04 18:48:42 AlexArch gnome-keyring-daemon[811]: discover_other_daemon: 1
Jun 04 18:48:42 AlexArch gnome-keyring-daemon[701]: The PKCS#11 component was already initialized
Jun 04 18:48:42 AlexArch gnome-keyring-pkcs11.desktop[812]: discover_other_daemon: 1GNOME_KEYRING_CONTROL=/run/user/0/keyring
Jun 04 18:48:42 AlexArch gnome-keyring-pkcs11.desktop[812]: SSH_AUTH_SOCK=/run/user/0/keyring/ssh
Jun 04 18:48:42 AlexArch gnome-keyring-d[701]: The PKCS#11 component was already initialized
Jun 04 18:48:42 AlexArch gnome-keyring-daemon[812]: discover_other_daemon: 1
Jun 04 18:48:42 AlexArch gnome-keyring-ssh.desktop[811]: discover_other_daemon: 1GNOME_KEYRING_CONTROL=/run/user/0/keyring
Jun 04 18:48:42 AlexArch gnome-keyring-ssh.desktop[811]: SSH_AUTH_SOCK=/run/user/0/keyring/ssh
Jun 04 18:48:42 AlexArch systemd[687]: Started GNOME Session Manager (session: gnome).
Jun 04 18:48:42 AlexArch systemd[687]: Reached target GNOME Session Manager is ready.
Jun 04 18:48:42 AlexArch systemd[687]: Starting GNOME Shell on Wayland...
Jun 04 18:48:42 AlexArch systemd[687]: Starting GNOME Shell on X11...
Jun 04 18:48:42 AlexArch systemd[687]: org.gnome.Shell@wayland.service: Skipped due to 'exec-condition'.
Jun 04 18:48:42 AlexArch systemd[687]: Condition check resulted in GNOME Shell on Wayland being skipped.
Jun 04 18:48:42 AlexArch gnome-shell[816]: Running GNOME Shell (using mutter 44.2) as a X11 window and compositing manager
Jun 04 18:48:42 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): EDID vendor "LEN", prod id 16464
Jun 04 18:48:42 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Printing DDC gathered Modelines:
Jun 04 18:48:42 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "1280x800"x0.0   71.11  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.4 kHz eP)
Jun 04 18:48:42 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "1280x800"x0.0   60.10  1280 1328 1360 1457  800 803 809 825 -hsync -vsync (41.2 kHz e)
Jun 04 18:48:42 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): EDID vendor "LEN", prod id 16464
Jun 04 18:48:42 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Printing DDC gathered Modelines:
Jun 04 18:48:42 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "1280x800"x0.0   71.11  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.4 kHz eP)
Jun 04 18:48:42 AlexArch /usr/lib/gdm-x-session[715]: (II) modeset(0): Modeline "1280x800"x0.0   60.10  1280 1328 1360 1457  800 803 809 825 -hsync -vsync (41.2 kHz e)
Jun 04 18:48:43 AlexArch gnome-shell[816]: Obtained a high priority EGL context
Jun 04 18:48:43 AlexArch gnome-shell[816]: Obtained a high priority EGL context
Jun 04 18:48:43 AlexArch gnome-shell[816]: Unset XDG_SESSION_ID, getCurrentSessionProxy() called outside a user session. Asking logind directly.
Jun 04 18:48:43 AlexArch gnome-shell[816]: Will monitor session 3
Jun 04 18:48:43 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Shell.Screencast' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:48:43 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating via systemd: service name='org.freedesktop.impl.portal.PermissionStore' unit='xdg-permission-store.service' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:48:43 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Shell.CalendarServer' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:48:43 AlexArch systemd[687]: Starting sandboxed app permission store...
Jun 04 18:48:44 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.freedesktop.impl.portal.PermissionStore'
Jun 04 18:48:44 AlexArch systemd[687]: Started sandboxed app permission store.
Jun 04 18:48:44 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating via systemd: service name='org.gnome.evolution.dataserver.Sources5' unit='evolution-source-registry.service' requested by ':1.21' (uid=0 pid=854 comm="/usr/lib/gnome-shell-calendar-server")
Jun 04 18:48:44 AlexArch systemd[687]: Starting Evolution source registry...
Jun 04 18:48:44 AlexArch polkitd[283]: Registered Authentication Agent for unix-session:3 (system bus name :1.50 [/usr/bin/gnome-shell], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale C.UTF-8)
Jun 04 18:48:44 AlexArch gnome-shell[816]: Telepathy is not available, chat integration will be disabled.
Jun 04 18:48:44 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating via systemd: service name='org.gtk.vfs.UDisks2VolumeMonitor' unit='gvfs-udisks2-volume-monitor.service' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:48:44 AlexArch systemd[687]: Starting Virtual filesystem service - disk device monitor...
Jun 04 18:48:44 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.OnlineAccounts' requested by ':1.22' (uid=0 pid=866 comm="/usr/lib/evolution-source-registry")
Jun 04 18:48:44 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.evolution.dataserver.Sources5'
Jun 04 18:48:44 AlexArch systemd[687]: Started Evolution source registry.
Jun 04 18:48:44 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Shell.CalendarServer'
Jun 04 18:48:44 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating via systemd: service name='org.gnome.evolution.dataserver.Calendar8' unit='evolution-calendar-factory.service' requested by ':1.21' (uid=0 pid=854 comm="/usr/lib/gnome-shell-calendar-server")
Jun 04 18:48:44 AlexArch dbus-daemon[248]: [system] Activating via systemd: service name='org.freedesktop.UDisks2' unit='udisks2.service' requested by ':1.52' (uid=0 pid=875 comm="/usr/lib/gvfs-udisks2-volume-monitor")
Jun 04 18:48:44 AlexArch systemd[687]: Starting Evolution calendar service...
Jun 04 18:48:44 AlexArch systemd[1]: Starting Disk Manager...
Jun 04 18:48:44 AlexArch udisksd[885]: udisks daemon version 2.9.4 starting
Jun 04 18:48:44 AlexArch goa-daemon[878]: goa-daemon version 3.48.0 starting
Jun 04 18:48:44 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Identity' requested by ':1.24' (uid=0 pid=878 comm="/usr/lib/goa-daemon")
Jun 04 18:48:44 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.OnlineAccounts'
Jun 04 18:48:44 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Identity'
Jun 04 18:48:44 AlexArch dbus-daemon[248]: [system] Successfully activated service 'org.freedesktop.UDisks2'
Jun 04 18:48:44 AlexArch systemd[1]: Started Disk Manager.
Jun 04 18:48:44 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.evolution.dataserver.Calendar8'
Jun 04 18:48:44 AlexArch udisksd[885]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Jun 04 18:48:44 AlexArch systemd[687]: Started Evolution calendar service.
Jun 04 18:48:44 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating via systemd: service name='org.gnome.evolution.dataserver.AddressBook10' unit='evolution-addressbook-factory.service' requested by ':1.25' (uid=0 pid=884 comm="/usr/lib/evolution-calendar-factory")
Jun 04 18:48:44 AlexArch systemd[687]: Starting Evolution address book service...
Jun 04 18:48:44 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gtk.vfs.UDisks2VolumeMonitor'
Jun 04 18:48:44 AlexArch systemd[687]: Started Virtual filesystem service - disk device monitor.
Jun 04 18:48:44 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating via systemd: service name='org.gtk.vfs.AfcVolumeMonitor' unit='gvfs-afc-volume-monitor.service' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:48:44 AlexArch systemd[687]: Starting Virtual filesystem service - Apple File Conduit monitor...
Jun 04 18:48:44 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gtk.vfs.AfcVolumeMonitor'
Jun 04 18:48:44 AlexArch systemd[687]: Started Virtual filesystem service - Apple File Conduit monitor.
Jun 04 18:48:44 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.evolution.dataserver.AddressBook10'
Jun 04 18:48:44 AlexArch systemd[687]: Started Evolution address book service.
Jun 04 18:48:44 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating via systemd: service name='org.gtk.vfs.GoaVolumeMonitor' unit='gvfs-goa-volume-monitor.service' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:48:44 AlexArch systemd[687]: Starting Virtual filesystem service - GNOME Online Accounts monitor...
Jun 04 18:48:44 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gtk.vfs.GoaVolumeMonitor'
Jun 04 18:48:44 AlexArch systemd[687]: Started Virtual filesystem service - GNOME Online Accounts monitor.
Jun 04 18:48:44 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating via systemd: service name='org.gtk.vfs.GPhoto2VolumeMonitor' unit='gvfs-gphoto2-volume-monitor.service' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:48:44 AlexArch systemd[687]: Starting Virtual filesystem service - digital camera monitor...
Jun 04 18:48:44 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gtk.vfs.GPhoto2VolumeMonitor'
Jun 04 18:48:44 AlexArch systemd[687]: Started Virtual filesystem service - digital camera monitor.
Jun 04 18:48:44 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating via systemd: service name='org.gtk.vfs.MTPVolumeMonitor' unit='gvfs-mtp-volume-monitor.service' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:48:44 AlexArch systemd[687]: Starting Virtual filesystem service - Media Transfer Protocol monitor...
Jun 04 18:48:44 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gtk.vfs.MTPVolumeMonitor'
Jun 04 18:48:44 AlexArch systemd[687]: Started Virtual filesystem service - Media Transfer Protocol monitor.
Jun 04 18:48:44 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Shell.Notifications' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:48:45 AlexArch at-spi-bus-launcher[787]: dbus-daemon[787]: Activating service name='org.a11y.atspi.Registry' requested by ':1.1' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:48:45 AlexArch at-spi-bus-launcher[787]: dbus-daemon[787]: Successfully activated service 'org.a11y.atspi.Registry'
Jun 04 18:48:45 AlexArch gnome-shell[816]: Could not issue 'GetUnit' systemd call
Jun 04 18:48:45 AlexArch at-spi-bus-launcher[970]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Jun 04 18:48:45 AlexArch systemd[687]: Started GNOME Shell on X11.
Jun 04 18:48:45 AlexArch systemd[687]: Reached target GNOME Session is initialized.
Jun 04 18:48:45 AlexArch systemd[687]: Reached target GNOME session X11 services.
Jun 04 18:48:45 AlexArch systemd[687]: Reached target GNOME Session (session: gnome).
Jun 04 18:48:45 AlexArch systemd[687]: Starting Signal initialization done to GNOME Session Manager...
Jun 04 18:48:45 AlexArch systemd[687]: Starting GNOME accessibility service...
Jun 04 18:48:45 AlexArch systemd[687]: Starting GNOME color management service...
Jun 04 18:48:45 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Shell.Notifications'
Jun 04 18:48:45 AlexArch systemd[687]: Starting GNOME date & time service...
Jun 04 18:48:45 AlexArch systemd[687]: Starting GNOME maintenance of expirable data service...
Jun 04 18:48:45 AlexArch systemd[687]: Starting GNOME keyboard configuration service...
Jun 04 18:48:45 AlexArch systemd[687]: Starting GNOME keyboard shortcuts service...
Jun 04 18:48:45 AlexArch systemd[687]: Starting GNOME power management service...
Jun 04 18:48:45 AlexArch systemd[687]: Starting GNOME printer notifications service...
Jun 04 18:48:45 AlexArch systemd[687]: Starting GNOME RFKill support service...
Jun 04 18:48:45 AlexArch systemd[687]: Starting GNOME FreeDesktop screensaver service...
Jun 04 18:48:45 AlexArch systemd[687]: Starting GNOME file sharing service...
Jun 04 18:48:45 AlexArch systemd[687]: Starting GNOME smartcard service...
Jun 04 18:48:45 AlexArch systemd[687]: Starting GNOME sound sample caching service...
Jun 04 18:48:45 AlexArch systemd[687]: Starting GNOME USB protection service...
Jun 04 18:48:45 AlexArch gnome-shell[816]: Failed to launch ibus-daemon: Failed to execute child process “ibus-daemon” (No such file or directory)
Jun 04 18:48:45 AlexArch systemd[687]: Starting GNOME Wacom tablet support service...
Jun 04 18:48:45 AlexArch systemd[687]: Starting GNOME XSettings service...
Jun 04 18:48:45 AlexArch systemd[687]: Finished Signal initialization done to GNOME Session Manager.
Jun 04 18:48:45 AlexArch systemd[687]: Started Application launched by gnome-session-binary.
Jun 04 18:48:45 AlexArch systemd[687]: Started GNOME accessibility service.
Jun 04 18:48:45 AlexArch systemd[687]: Reached target GNOME accessibility target.
Jun 04 18:48:45 AlexArch gnome-session-binary[797]: Entering running state
Jun 04 18:48:45 AlexArch kernel: rfkill: input handler disabled
Jun 04 18:48:45 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.ScreenSaver' requested by ':1.41' (uid=0 pid=1005 comm="/usr/lib/gsd-usb-protection")
Jun 04 18:48:45 AlexArch systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 1018 (snap)
Jun 04 18:48:45 AlexArch systemd[687]: Started GNOME USB protection service.
Jun 04 18:48:45 AlexArch systemd[687]: Started GNOME smartcard service.
Jun 04 18:48:45 AlexArch systemd[687]: Started GNOME RFKill support service.
Jun 04 18:48:45 AlexArch systemd[687]: Started GNOME maintenance of expirable data service.
Jun 04 18:48:45 AlexArch systemd[1]: Mounting Arbitrary Executable File Formats File System...
Jun 04 18:48:45 AlexArch systemd[687]: Started Application launched by gnome-session-binary.
Jun 04 18:48:45 AlexArch systemd[687]: Started Application launched by gnome-session-binary.
Jun 04 18:48:45 AlexArch systemd[687]: Started Application launched by gnome-session-binary.
Jun 04 18:48:45 AlexArch systemd[687]: Started Application launched by gnome-session-binary.
Jun 04 18:48:45 AlexArch systemd[1]: Mounted Arbitrary Executable File Formats File System.
Jun 04 18:48:45 AlexArch systemd[687]: app-gnome-user\x2ddirs\x2dupdate\x2dgtk-1016.scope: Couldn't move process 1016 to requested cgroup '/user.slice/user-0.slice/user@0.service/app.slice/app-gnome-user\x2ddirs\x2dupdate\x2dgtk-1016.scope': No such process
Jun 04 18:48:45 AlexArch systemd[687]: app-gnome-user\x2ddirs\x2dupdate\x2dgtk-1016.scope: Failed to add PIDs to scope's control group: No such process
Jun 04 18:48:45 AlexArch systemd[687]: app-gnome-user\x2ddirs\x2dupdate\x2dgtk-1016.scope: Failed with result 'resources'.
Jun 04 18:48:45 AlexArch systemd[687]: Failed to start Application launched by gnome-session-binary.
Jun 04 18:48:45 AlexArch systemd[687]: Reached target GNOME maintenance of expirable data target.
Jun 04 18:48:45 AlexArch systemd[687]: Reached target GNOME RFKill support target.
Jun 04 18:48:45 AlexArch systemd[687]: Reached target GNOME smartcard target.
Jun 04 18:48:45 AlexArch systemd[687]: Reached target GNOME USB protection target.
Jun 04 18:48:45 AlexArch systemd[687]: Started GNOME FreeDesktop screensaver service.
Jun 04 18:48:45 AlexArch systemd[687]: Reached target GNOME FreeDesktop screensaver target.
Jun 04 18:48:45 AlexArch systemd[687]: Started GNOME date & time service.
Jun 04 18:48:45 AlexArch systemd[687]: Reached target GNOME date & time target.
Jun 04 18:48:45 AlexArch systemd[687]: Started GNOME sound sample caching service.
Jun 04 18:48:45 AlexArch systemd[687]: Reached target GNOME sound sample caching target.
Jun 04 18:48:45 AlexArch systemd[687]: Started GNOME printer notifications service.
Jun 04 18:48:45 AlexArch systemd[687]: Reached target GNOME printer notifications target.
Jun 04 18:48:45 AlexArch systemd[687]: Started GNOME file sharing service.
Jun 04 18:48:45 AlexArch systemd[687]: Reached target GNOME file sharing target.
Jun 04 18:48:45 AlexArch systemd[687]: Started GNOME color management service.
Jun 04 18:48:45 AlexArch systemd[687]: Reached target GNOME color management target.
Jun 04 18:48:45 AlexArch systemd[687]: Started GNOME keyboard configuration service.
Jun 04 18:48:45 AlexArch systemd[687]: Reached target GNOME keyboard configuration target.
Jun 04 18:48:46 AlexArch systemd[687]: Started GNOME power management service.
Jun 04 18:48:46 AlexArch systemd[687]: Reached target GNOME power management target.
Jun 04 18:48:46 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.ScreenSaver'
Jun 04 18:48:46 AlexArch systemd[687]: Started GNOME keyboard shortcuts service.
Jun 04 18:48:46 AlexArch systemd[687]: Reached target GNOME keyboard shortcuts target.
Jun 04 18:48:46 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating via systemd: service name='org.freedesktop.portal.Desktop' unit='xdg-desktop-portal.service' requested by ':1.48' (uid=0 pid=1036 comm="/usr/bin/gnome-software --gapplication-service")
Jun 04 18:48:46 AlexArch systemd[687]: Starting Portal service...
Jun 04 18:48:46 AlexArch NetworkManager[251]: <info>  [1685897326.2730] agent-manager: agent[dfcf023a4f8001a5,:1.50/org.gnome.Shell.NetworkAgent/0]: agent registered
Jun 04 18:48:46 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating via systemd: service name='org.freedesktop.portal.Documents' unit='xdg-document-portal.service' requested by ':1.59' (uid=0 pid=1147 comm="/usr/lib/xdg-desktop-portal")
Jun 04 18:48:46 AlexArch systemd[687]: Starting flatpak document portal service...
Jun 04 18:48:46 AlexArch systemd[687]: Started GNOME Wacom tablet support service.
Jun 04 18:48:46 AlexArch systemd[687]: Reached target GNOME Wacom tablet support target.
Jun 04 18:48:46 AlexArch gsd-usb-protect[1005]: Failed to fetch USBGuard parameters: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.usbguard1 was not provided by any .service files
Jun 04 18:48:46 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.freedesktop.portal.Documents'
Jun 04 18:48:46 AlexArch systemd[687]: Started flatpak document portal service.
Jun 04 18:48:46 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating via systemd: service name='org.freedesktop.impl.portal.desktop.gnome' unit='xdg-desktop-portal-gnome.service' requested by ':1.59' (uid=0 pid=1147 comm="/usr/lib/xdg-desktop-portal")
Jun 04 18:48:46 AlexArch gnome-shell[816]: Error looking up permission: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for geolocation
Jun 04 18:48:46 AlexArch gsd-media-keys[986]: Failed to grab accelerator for keybinding settings:playback-repeat
Jun 04 18:48:46 AlexArch gsd-media-keys[986]: Failed to grab accelerator for keybinding settings:hibernate
Jun 04 18:48:46 AlexArch gsd-media-keys[986]: Failed to grab accelerator for keybinding settings:rotate-video-lock
Jun 04 18:48:46 AlexArch gsd-media-keys[986]: Failed to grab accelerator for keybinding settings:playback-random
Jun 04 18:48:46 AlexArch systemd[687]: Started GNOME XSettings service.
Jun 04 18:48:46 AlexArch systemd[687]: GNOME session X11 services is inactive.
Jun 04 18:48:46 AlexArch systemd[687]: Reached target GNOME XSettings target.
Jun 04 18:48:46 AlexArch systemd[687]: Reached target GNOME Session.
Jun 04 18:48:46 AlexArch systemd[687]: Reached target GNOME X11 Session (session: gnome).
Jun 04 18:48:46 AlexArch systemd[687]: Reached target Current graphical user session.
Jun 04 18:48:46 AlexArch systemd[687]: Starting Portal service (GNOME implementation)...
Jun 04 18:48:48 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.freedesktop.impl.portal.desktop.gnome'
Jun 04 18:48:48 AlexArch systemd[687]: Started Portal service (GNOME implementation).
Jun 04 18:48:48 AlexArch rtkit-daemon[435]: Supervising 3 threads of 1 processes of 1 users.
Jun 04 18:48:48 AlexArch rtkit-daemon[435]: Supervising 3 threads of 1 processes of 1 users.
Jun 04 18:48:48 AlexArch rtkit-daemon[435]: Supervising 3 threads of 1 processes of 1 users.
Jun 04 18:48:48 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating via systemd: service name='org.freedesktop.impl.portal.desktop.gtk' unit='xdg-desktop-portal-gtk.service' requested by ':1.59' (uid=0 pid=1147 comm="/usr/lib/xdg-desktop-portal")
Jun 04 18:48:48 AlexArch systemd[687]: Starting Portal service (GTK/GNOME implementation)...
Jun 04 18:48:48 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.freedesktop.impl.portal.desktop.gtk'
Jun 04 18:48:48 AlexArch systemd[687]: Started Portal service (GTK/GNOME implementation).
Jun 04 18:48:48 AlexArch systemd[687]: Started PipeWire Multimedia Service.
Jun 04 18:48:49 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.freedesktop.portal.Desktop'
Jun 04 18:48:49 AlexArch systemd[687]: Started Portal service.
Jun 04 18:48:49 AlexArch gnome-software[1036]: Failed to load /usr/lib/gnome-software/plugins-20/libgs_plugin_fwupd.so: failed to open plugin /usr/lib/gnome-software/plugins-20/libgs_plugin_fwupd.so: libfwupd.so.2: cannot open shared object file: No such file or directory
Jun 04 18:48:49 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Epiphany.WebAppProvider' requested by ':1.48' (uid=0 pid=1036 comm="/usr/bin/gnome-software --gapplication-service")
Jun 04 18:48:49 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Epiphany.WebAppProvider'
Jun 04 18:48:49 AlexArch gnome-shell[816]: GNOME Shell started at Sun Jun 04 2023 18:48:44 GMT+0200 (Central European Summer Time)
Jun 04 18:48:49 AlexArch gnome-shell[816]: Registering session with GDM
Jun 04 18:48:49 AlexArch gnome-session[355]: gnome-session-binary[355]: WARNING: App 'org.gnome.SettingsDaemon.MediaKeys.desktop' exited with code 1
Jun 04 18:48:49 AlexArch gnome-session-binary[355]: WARNING: App 'org.gnome.SettingsDaemon.MediaKeys.desktop' exited with code 1
Jun 04 18:48:49 AlexArch org.gnome.Shell.desktop[379]: X connection to :0 broken (explicit kill or server shutdown).
Jun 04 18:48:49 AlexArch gsd-rfkill[485]: Error releasing name org.gnome.SettingsDaemon.Rfkill: The connection is closed
Jun 04 18:48:49 AlexArch gsd-print-notif[483]: Error releasing name org.gnome.SettingsDaemon.PrintNotifications: The connection is closed
Jun 04 18:48:49 AlexArch gsd-sound[516]: Error releasing name org.gnome.SettingsDaemon.Sound: The connection is closed
Jun 04 18:48:49 AlexArch gsd-datetime[490]: Error releasing name org.gnome.SettingsDaemon.Datetime: The connection is closed
Jun 04 18:48:49 AlexArch gsd-screensaver[506]: Error releasing name org.gnome.SettingsDaemon.ScreensaverProxy: The connection is closed
Jun 04 18:48:49 AlexArch /usr/lib/gdm-x-session[332]: (II) UnloadModule: "libinput"
Jun 04 18:48:49 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: releasing fd for 13:76
Jun 04 18:48:49 AlexArch /usr/lib/gdm-x-session[332]: (II) UnloadModule: "libinput"
Jun 04 18:48:49 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: releasing fd for 13:75
Jun 04 18:48:49 AlexArch /usr/lib/gdm-x-session[332]: (II) UnloadModule: "libinput"
Jun 04 18:48:49 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: releasing fd for 13:68
Jun 04 18:48:49 AlexArch /usr/lib/gdm-x-session[332]: (II) UnloadModule: "libinput"
Jun 04 18:48:49 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: releasing fd for 13:67
Jun 04 18:48:49 AlexArch polkitd[283]: Unregistered Authentication Agent for unix-session:1 (system bus name :1.16, object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale C.UTF-8) (disconnected from bus)
Jun 04 18:48:49 AlexArch /usr/lib/gdm-x-session[332]: (II) UnloadModule: "libinput"
Jun 04 18:48:49 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: releasing fd for 13:65
Jun 04 18:48:49 AlexArch /usr/lib/gdm-x-session[332]: (II) UnloadModule: "libinput"
Jun 04 18:48:49 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: releasing fd for 13:69
Jun 04 18:48:49 AlexArch /usr/lib/gdm-x-session[332]: (II) UnloadModule: "libinput"
Jun 04 18:48:49 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: releasing fd for 13:66
Jun 04 18:48:49 AlexArch /usr/lib/gdm-x-session[332]: (II) Server terminated successfully (0). Closing log file.
Jun 04 18:48:49 AlexArch systemd[1]: session-1.scope: Deactivated successfully.
Jun 04 18:48:49 AlexArch systemd[1]: session-1.scope: Consumed 6.087s CPU time.
Jun 04 18:48:49 AlexArch systemd-logind[249]: Session 1 logged out. Waiting for processes to exit.
Jun 04 18:48:49 AlexArch systemd-logind[249]: Removed session 1.
Jun 04 18:48:49 AlexArch gdm[261]: Gdm: Child process -329 was already dead.
Jun 04 18:48:52 AlexArch gnome-software[1036]: Only 5 apps for curated list, hiding
Jun 04 18:48:56 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.kde.WaylandDecoration.QGnomePlatform-decoration/x86_64/5.15-22.08 is already installed: No such ref 'runtime/org.kde.WaylandDecoration.QGnomePlatform-decoration/x86_64/5.15-22.08' in remote flathub
Jun 04 18:48:56 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.kde.PlatformTheme.QGnomePlatform/x86_64/5.15-22.08 is already installed: No such ref 'runtime/org.kde.PlatformTheme.QGnomePlatform/x86_64/5.15-22.08' in remote flathub
Jun 04 18:48:56 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.kde.Platform/x86_64/5.15-22.08 is already installed: No such ref 'runtime/org.kde.Platform/x86_64/5.15-22.08' in remote flathub
Jun 04 18:48:56 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.kde.Platform.Locale/x86_64/5.15-22.08 is already installed: No such ref 'runtime/org.kde.Platform.Locale/x86_64/5.15-22.08' in remote flathub
Jun 04 18:48:56 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.kde.KStyle.Adwaita/x86_64/5.15-22.08 is already installed: No such ref 'runtime/org.kde.KStyle.Adwaita/x86_64/5.15-22.08' in remote flathub
Jun 04 18:48:56 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.gnome.Platform/x86_64/43 is already installed: No such ref 'runtime/org.gnome.Platform/x86_64/43' in remote flathub
Jun 04 18:48:56 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.gnome.Platform.Locale/x86_64/43 is already installed: No such ref 'runtime/org.gnome.Platform.Locale/x86_64/43' in remote flathub
Jun 04 18:48:56 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform/x86_64/21.08 is already installed: No such ref 'runtime/org.freedesktop.Platform/x86_64/21.08' in remote flathub
Jun 04 18:48:56 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.openh264/x86_64/2.2.0 is already installed: No such ref 'runtime/org.freedesktop.Platform.openh264/x86_64/2.2.0' in remote flathub
Jun 04 18:48:56 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.openh264/x86_64/2.0 is already installed: No such ref 'runtime/org.freedesktop.Platform.openh264/x86_64/2.0' in remote flathub
Jun 04 18:48:56 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.VAAPI.Intel/x86_64/22.08 is already installed: No such ref 'runtime/org.freedesktop.Platform.VAAPI.Intel/x86_64/22.08' in remote flathub
Jun 04 18:48:56 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.VAAPI.Intel/x86_64/21.08 is already installed: No such ref 'runtime/org.freedesktop.Platform.VAAPI.Intel/x86_64/21.08' in remote flathub
Jun 04 18:48:56 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.Locale/x86_64/21.08 is already installed: No such ref 'runtime/org.freedesktop.Platform.Locale/x86_64/21.08' in remote flathub
Jun 04 18:48:56 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.GL.default/x86_64/22.08-extra is already installed: No such ref 'runtime/org.freedesktop.Platform.GL.default/x86_64/22.08-extra' in remote flathub
Jun 04 18:48:56 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.GL.default/x86_64/22.08 is already installed: No such ref 'runtime/org.freedesktop.Platform.GL.default/x86_64/22.08' in remote flathub
Jun 04 18:48:56 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.GL.default/x86_64/21.08 is already installed: No such ref 'runtime/org.freedesktop.Platform.GL.default/x86_64/21.08' in remote flathub
Jun 04 18:48:56 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/com.github.liferooter.textpieces.Locale/x86_64/stable is already installed: No such ref 'runtime/com.github.liferooter.textpieces.Locale/x86_64/stable' in remote flathub
Jun 04 18:48:56 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/com.github.debauchee.barrier.Locale/x86_64/stable is already installed: No such ref 'runtime/com.github.debauchee.barrier.Locale/x86_64/stable' in remote flathub
Jun 04 18:48:56 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since app/com.gitlab.coringao.cavestory-nx/x86_64/stable is already installed: No such ref 'app/com.gitlab.coringao.cavestory-nx/x86_64/stable' in remote flathub
Jun 04 18:48:56 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since app/com.github.liferooter.textpieces/x86_64/stable is already installed: No such ref 'app/com.github.liferooter.textpieces/x86_64/stable' in remote flathub
Jun 04 18:48:56 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since app/com.github.debauchee.barrier/x86_64/stable is already installed: No such ref 'app/com.github.debauchee.barrier/x86_64/stable' in remote flathub
Jun 04 18:48:56 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Contacts.SearchProvider' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:48:56 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Nautilus' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:48:56 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Calculator.SearchProvider' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:48:56 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Calendar' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:48:56 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Characters' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:48:56 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.clocks' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:48:56 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Photos' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:48:56 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Settings.SearchProvider' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:48:56 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Epiphany.SearchProvider' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:48:57 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.kde.WaylandDecoration.QGnomePlatform-decoration/x86_64/5.15-22.08 is already installed: No such ref 'runtime/org.kde.WaylandDecoration.QGnomePlatform-decoration/x86_64/5.15-22.08' in remote flathub
Jun 04 18:48:57 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.kde.PlatformTheme.QGnomePlatform/x86_64/5.15-22.08 is already installed: No such ref 'runtime/org.kde.PlatformTheme.QGnomePlatform/x86_64/5.15-22.08' in remote flathub
Jun 04 18:48:57 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.kde.Platform/x86_64/5.15-22.08 is already installed: No such ref 'runtime/org.kde.Platform/x86_64/5.15-22.08' in remote flathub
Jun 04 18:48:57 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.kde.Platform.Locale/x86_64/5.15-22.08 is already installed: No such ref 'runtime/org.kde.Platform.Locale/x86_64/5.15-22.08' in remote flathub
Jun 04 18:48:57 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.kde.KStyle.Adwaita/x86_64/5.15-22.08 is already installed: No such ref 'runtime/org.kde.KStyle.Adwaita/x86_64/5.15-22.08' in remote flathub
Jun 04 18:48:57 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.gnome.Platform/x86_64/43 is already installed: No such ref 'runtime/org.gnome.Platform/x86_64/43' in remote flathub
Jun 04 18:48:57 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.gnome.Platform.Locale/x86_64/43 is already installed: No such ref 'runtime/org.gnome.Platform.Locale/x86_64/43' in remote flathub
Jun 04 18:48:57 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform/x86_64/21.08 is already installed: No such ref 'runtime/org.freedesktop.Platform/x86_64/21.08' in remote flathub
Jun 04 18:48:57 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.openh264/x86_64/2.2.0 is already installed: No such ref 'runtime/org.freedesktop.Platform.openh264/x86_64/2.2.0' in remote flathub
Jun 04 18:48:57 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.openh264/x86_64/2.0 is already installed: No such ref 'runtime/org.freedesktop.Platform.openh264/x86_64/2.0' in remote flathub
Jun 04 18:48:57 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.VAAPI.Intel/x86_64/22.08 is already installed: No such ref 'runtime/org.freedesktop.Platform.VAAPI.Intel/x86_64/22.08' in remote flathub
Jun 04 18:48:57 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.VAAPI.Intel/x86_64/21.08 is already installed: No such ref 'runtime/org.freedesktop.Platform.VAAPI.Intel/x86_64/21.08' in remote flathub
Jun 04 18:48:57 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.Locale/x86_64/21.08 is already installed: No such ref 'runtime/org.freedesktop.Platform.Locale/x86_64/21.08' in remote flathub
Jun 04 18:48:57 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.GL.default/x86_64/22.08-extra is already installed: No such ref 'runtime/org.freedesktop.Platform.GL.default/x86_64/22.08-extra' in remote flathub
Jun 04 18:48:57 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.GL.default/x86_64/22.08 is already installed: No such ref 'runtime/org.freedesktop.Platform.GL.default/x86_64/22.08' in remote flathub
Jun 04 18:48:57 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/org.freedesktop.Platform.GL.default/x86_64/21.08 is already installed: No such ref 'runtime/org.freedesktop.Platform.GL.default/x86_64/21.08' in remote flathub
Jun 04 18:48:57 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/com.github.liferooter.textpieces.Locale/x86_64/stable is already installed: No such ref 'runtime/com.github.liferooter.textpieces.Locale/x86_64/stable' in remote flathub
Jun 04 18:48:57 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since runtime/com.github.debauchee.barrier.Locale/x86_64/stable is already installed: No such ref 'runtime/com.github.debauchee.barrier.Locale/x86_64/stable' in remote flathub
Jun 04 18:48:57 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since app/com.gitlab.coringao.cavestory-nx/x86_64/stable is already installed: No such ref 'app/com.gitlab.coringao.cavestory-nx/x86_64/stable' in remote flathub
Jun 04 18:48:57 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since app/com.github.liferooter.textpieces/x86_64/stable is already installed: No such ref 'app/com.github.liferooter.textpieces/x86_64/stable' in remote flathub
Jun 04 18:48:57 AlexArch gnome-software[1036]: Warning: Treating remote fetch error as non-fatal since app/com.github.debauchee.barrier/x86_64/stable is already installed: No such ref 'app/com.github.debauchee.barrier/x86_64/stable' in remote flathub
Jun 04 18:48:57 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Settings.SearchProvider'
Jun 04 18:48:57 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.clocks'
Jun 04 18:48:57 AlexArch nautilus[1272]: Connecting to org.freedesktop.Tracker3.Miner.Files
Jun 04 18:48:57 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Nautilus'
Jun 04 18:48:58 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Contacts.SearchProvider'
Jun 04 18:48:58 AlexArch dbus-daemon[248]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service' requested by ':1.74' (uid=0 pid=1273 comm="/usr/lib/gnome-contacts-search-provider")
Jun 04 18:48:58 AlexArch dbus-daemon[248]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service not found.
Jun 04 18:48:58 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Photos'
Jun 04 18:48:58 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Calculator.SearchProvider'
Jun 04 18:48:58 AlexArch dbus-daemon[248]: [system] Activating via systemd: service name='org.freedesktop.timedate1' unit='dbus-org.freedesktop.timedate1.service' requested by ':1.75' (uid=0 pid=1261 comm="/usr/bin/gnome-calendar --gapplication-service")
Jun 04 18:48:58 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Characters'
Jun 04 18:48:58 AlexArch systemd[1]: Starting Time & Date Service...
Jun 04 18:48:58 AlexArch dbus-daemon[248]: [system] Successfully activated service 'org.freedesktop.timedate1'
Jun 04 18:48:58 AlexArch systemd[1]: Started Time & Date Service.
Jun 04 18:48:58 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Calendar'
Jun 04 18:48:59 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Epiphany.SearchProvider'
Jun 04 18:48:59 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating via systemd: service name='ca.desrt.dconf' unit='dconf.service' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:48:59 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Console' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:48:59 AlexArch systemd[687]: Starting User preferences database...
Jun 04 18:48:59 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'ca.desrt.dconf'
Jun 04 18:48:59 AlexArch systemd[687]: Started User preferences database.
Jun 04 18:49:00 AlexArch systemd[1]: Stopping User Manager for UID 120...
Jun 04 18:49:00 AlexArch systemd[305]: Activating special unit Exit the Session...
Jun 04 18:49:00 AlexArch systemd[305]: Stopped target Main User Target.
Jun 04 18:49:00 AlexArch systemd[305]: Stopped target Sound Card.
Jun 04 18:49:00 AlexArch systemd[305]: Stopping D-Bus User Message Bus...
Jun 04 18:49:00 AlexArch systemd[305]: Stopped D-Bus User Message Bus.
Jun 04 18:49:00 AlexArch systemd[305]: Removed slice User Core Session Slice.
Jun 04 18:49:00 AlexArch systemd[305]: Stopped target Basic System.
Jun 04 18:49:00 AlexArch systemd[305]: Stopped target Paths.
Jun 04 18:49:00 AlexArch systemd[305]: Stopped target Sockets.
Jun 04 18:49:00 AlexArch systemd[305]: Stopped target Timers.
Jun 04 18:49:00 AlexArch systemd[305]: Closed D-Bus User Message Bus Socket.
Jun 04 18:49:00 AlexArch systemd[305]: Closed GnuPG network certificate management daemon.
Jun 04 18:49:00 AlexArch systemd[305]: Closed GCR ssh-agent wrapper.
Jun 04 18:49:00 AlexArch systemd[305]: Closed GNOME Keyring daemon.
Jun 04 18:49:00 AlexArch systemd[305]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jun 04 18:49:00 AlexArch systemd[305]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
Jun 04 18:49:00 AlexArch systemd[305]: Closed GnuPG cryptographic agent (ssh-agent emulation).
Jun 04 18:49:00 AlexArch systemd[305]: Closed GnuPG cryptographic agent and passphrase cache.
Jun 04 18:49:00 AlexArch systemd[305]: Closed p11-kit server.
Jun 04 18:49:00 AlexArch systemd[305]: Closed PipeWire Multimedia System Socket.
Jun 04 18:49:00 AlexArch systemd[305]: Closed Sound System.
Jun 04 18:49:00 AlexArch systemd[305]: Removed slice User Application Slice.
Jun 04 18:49:00 AlexArch systemd[305]: Reached target Shutdown.
Jun 04 18:49:00 AlexArch systemd[305]: Finished Exit the Session.
Jun 04 18:49:00 AlexArch systemd[305]: Reached target Exit the Session.
Jun 04 18:49:00 AlexArch systemd[1]: user@120.service: Deactivated successfully.
Jun 04 18:49:00 AlexArch systemd[1]: Stopped User Manager for UID 120.
Jun 04 18:49:00 AlexArch systemd[1]: Stopping User Runtime Directory /run/user/120...
Jun 04 18:49:00 AlexArch systemd[1]: run-user-120.mount: Deactivated successfully.
Jun 04 18:49:00 AlexArch systemd[1]: user-runtime-dir@120.service: Deactivated successfully.
Jun 04 18:49:00 AlexArch systemd[1]: Stopped User Runtime Directory /run/user/120.
Jun 04 18:49:00 AlexArch systemd[1]: Removed slice User Slice of UID 120.
Jun 04 18:49:00 AlexArch systemd[1]: user-120.slice: Consumed 6.653s CPU time.
Jun 04 18:49:00 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Console'
Jun 04 18:49:00 AlexArch gnome-character[1263]: JS LOG: Characters Application started
Jun 04 18:49:00 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating via systemd: service name='org.freedesktop.Tracker3.Miner.Files' unit='tracker-miner-fs-3.service' requested by ':1.68' (uid=0 pid=1272 comm="/usr/bin/nautilus --gapplication-service")
Jun 04 18:49:00 AlexArch systemd[687]: Created slice User Background Tasks Slice.
Jun 04 18:49:00 AlexArch systemd[687]: Tracker file system data miner was skipped because of an unmet condition check (ConditionUser=!root).
Jun 04 18:49:00 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.DiskUtility' requested by ':1.68' (uid=0 pid=1272 comm="/usr/bin/nautilus --gapplication-service")
Jun 04 18:49:00 AlexArch gnome-software[1036]: Only 5 apps for curated list, hiding
Jun 04 18:49:00 AlexArch epiphany-search[1271]: Failed to canonicalize path /root/.config/epiphany: No such file or directory
Jun 04 18:49:00 AlexArch epiphany-search[1271]: Attempted to add disallowed path to sandbox: /root/.config/epiphany
Jun 04 18:49:01 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.DiskUtility'
Jun 04 18:49:02 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='com.intel.dleyna-renderer' requested by ':1.70' (uid=0 pid=1267 comm="/usr/bin/gnome-photos --gapplication-service")
Jun 04 18:49:02 AlexArch dleyna-renderer-service[1480]: dLeyna core version 0.8.2
Jun 04 18:49:02 AlexArch dleyna-renderer-service[1480]: dleyna-renderer-service version 0.8.2
Jun 04 18:49:02 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'com.intel.dleyna-renderer'
Jun 04 18:49:02 AlexArch systemd[687]: Started VTE child process 1486 launched by kgx process 1429.
Jun 04 18:49:03 AlexArch gnome-shell[816]: Window manager warning: Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x2e00004
Jun 04 18:49:08 AlexArch systemd[1]: fprintd.service: Deactivated successfully.
Jun 04 18:49:08 AlexArch gnome-shell[816]: Error connecting to the screencast service
Jun 04 18:49:10 AlexArch gnome-character[1263]: JS LOG: Characters Application exiting
Jun 04 18:49:16 AlexArch systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Jun 04 18:49:26 AlexArch systemd[1]: systemd-localed.service: Deactivated successfully.
Jun 04 18:49:28 AlexArch systemd[1]: systemd-timedated.service: Deactivated successfully.
Jun 04 18:49:32 AlexArch geoclue[432]: Service not used for 60 seconds. Shutting down..
Jun 04 18:49:32 AlexArch systemd[1]: geoclue.service: Deactivated successfully.
Jun 04 18:49:44 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating via systemd: service name='org.gtk.vfs.Metadata' unit='gvfs-metadata.service' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:49:45 AlexArch systemd[687]: Starting Virtual filesystem metadata service...
Jun 04 18:49:45 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gtk.vfs.Metadata'
Jun 04 18:49:45 AlexArch systemd[687]: Started Virtual filesystem metadata service.
Jun 04 18:49:51 AlexArch /usr/lib/gdm-x-session[715]: (II) Axis 0x1 value 1207 is outside expected range [1244, 4833]
Jun 04 18:49:51 AlexArch /usr/lib/gdm-x-session[715]: See https://wayland.freedesktop.org/libinput/doc/1.23.0/absolute_coordinate_ranges.html for details
Jun 04 18:49:52 AlexArch systemd[687]: vte-spawn-12a4eabe-f257-4432-82b5-5ec7d65c876a.scope: Consumed 2.262s CPU time.
Jun 04 18:49:56 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Contacts.SearchProvider' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:49:56 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Nautilus' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:49:56 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Calculator.SearchProvider' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:49:56 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Characters' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:49:56 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.clocks' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:49:56 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.clocks'
Jun 04 18:49:56 AlexArch nautilus[1549]: Connecting to org.freedesktop.Tracker3.Miner.Files
Jun 04 18:49:56 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Nautilus'
Jun 04 18:49:57 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Contacts.SearchProvider'
Jun 04 18:49:57 AlexArch dbus-daemon[248]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service' requested by ':1.78' (uid=0 pid=1543 comm="/usr/lib/gnome-contacts-search-provider")
Jun 04 18:49:57 AlexArch dbus-daemon[248]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service not found.
Jun 04 18:49:57 AlexArch gnome-shell[816]: Received error from D-Bus search provider org.gnome.Settings.desktop: Gio.DBusError: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name :1.67 was not provided by any .service files
Jun 04 18:49:57 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Characters'
Jun 04 18:49:57 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Calculator.SearchProvider'
Jun 04 18:49:57 AlexArch gnome-calculato[1551]: search-provider.vala:117: Failed to spawn Calculator: Child process killed by signal 9
Jun 04 18:49:58 AlexArch gnome-character[1552]: JS LOG: Characters Application started
Jun 04 18:49:59 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.DiskUtility' requested by ':1.85' (uid=0 pid=1549 comm="/usr/bin/nautilus --gapplication-service")
Jun 04 18:49:59 AlexArch gnome-shell[816]: Window manager warning: Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x2400004
Jun 04 18:49:59 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Console' requested by ':1.85' (uid=0 pid=1549 comm="/usr/bin/nautilus --gapplication-service")
Jun 04 18:49:59 AlexArch dbus-daemon[248]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.79' (uid=0 pid=1549 comm="/usr/bin/nautilus --gapplication-service")
Jun 04 18:49:59 AlexArch systemd[1]: Starting Hostname Service...
Jun 04 18:49:59 AlexArch dbus-daemon[248]: [system] Successfully activated service 'org.freedesktop.hostname1'
Jun 04 18:49:59 AlexArch systemd[1]: Started Hostname Service.
Jun 04 18:49:59 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.DiskUtility'
Jun 04 18:49:59 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Console'
Jun 04 18:50:01 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating via systemd: service name='org.freedesktop.Flatpak' unit='flatpak-session-helper.service' requested by ':1.92' (uid=0 pid=1668 comm="/usr/bin/flatpak run --branch=stable --arch=x86_64")
Jun 04 18:50:01 AlexArch systemd[687]: Starting flatpak session helper...
Jun 04 18:50:01 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.freedesktop.Flatpak'
Jun 04 18:50:01 AlexArch systemd[687]: Started flatpak session helper.
Jun 04 18:50:01 AlexArch systemd[687]: Started app-flatpak-com.github.liferooter.textpieces-1668.scope.
Jun 04 18:50:05 AlexArch gnome-shell[816]: Window manager warning: Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x3000004
Jun 04 18:50:08 AlexArch gnome-character[1552]: JS LOG: Characters Application exiting
Jun 04 18:50:10 AlexArch gnome-shell[816]: Can't update stage views actor <unnamed>[<MetaWindowActorX11>:0x55e51ad6c360] is on because it needs an allocation.
Jun 04 18:50:10 AlexArch gnome-shell[816]: Can't update stage views actor <unnamed>[<MetaSurfaceActorX11>:0x55e51bc9dd40] is on because it needs an allocation.
Jun 04 18:50:22 AlexArch textpieces[1690]: SearchBar.vala:199: failed to move to next search match: Operation was cancelled
Jun 04 18:50:23 AlexArch textpieces[1690]: SearchBar.vala:165: failed to move to next search match: Operation was cancelled
Jun 04 18:50:23 AlexArch textpieces[1690]: SearchBar.vala:199: failed to move to next search match: Operation was cancelled
Jun 04 18:50:25 AlexArch textpieces[1690]: SearchBar.vala:199: failed to move to next search match: Operation was cancelled
Jun 04 18:50:28 AlexArch nautilus[1549]: Unable to create connection for session-wide Tracker indexer: Timeout was reached
Jun 04 18:50:29 AlexArch systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Jun 04 18:50:31 AlexArch textpieces[1690]: SearchBar.vala:199: failed to move to next search match: Operation was cancelled
Jun 04 18:50:32 AlexArch textpieces[1690]: SearchBar.vala:165: failed to move to next search match: Operation was cancelled
Jun 04 18:50:40 AlexArch textpieces[1690]: SearchBar.vala:199: failed to move to next search match: Operation was cancelled
Jun 04 18:50:41 AlexArch textpieces[1690]: SearchBar.vala:165: failed to move to next search match: Operation was cancelled
Jun 04 18:50:41 AlexArch textpieces[1690]: SearchBar.vala:165: failed to move to next search match: Operation was cancelled
Jun 04 18:50:42 AlexArch textpieces[1690]: SearchBar.vala:165: failed to move to next search match: Operation was cancelled
Jun 04 18:50:42 AlexArch textpieces[1690]: SearchBar.vala:165: failed to move to next search match: Operation was cancelled
Jun 04 18:50:43 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Failed to activate service 'org.gnome.Shell.Screencast': timed out (service_start_timeout=120000ms)
Jun 04 18:50:57 AlexArch epiphany-search[1271]: Error loading plugin: libvoikko.so.1: cannot open shared object file: No such file or directory
Jun 04 18:50:57 AlexArch epiphany-search[1271]: Error loading plugin: libhspell.so.0: cannot open shared object file: No such file or directory
Jun 04 18:50:57 AlexArch epiphany-search[1271]: Error loading plugin: libnuspell.so.5: cannot open shared object file: No such file or directory
Jun 04 18:50:57 AlexArch epiphany-search[1271]: Error loading plugin: libaspell.so.15: cannot open shared object file: No such file or directory
Jun 04 18:50:57 AlexArch epiphany-search[1271]: Error loading plugin: libhunspell-1.7.so.0: cannot open shared object file: No such file or directory
Jun 04 18:51:00 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Failed to activate service 'org.freedesktop.Tracker3.Miner.Files': timed out (service_start_timeout=120000ms)
Jun 04 18:51:01 AlexArch dleyna-renderer-service[1480]: dLeyna: Exit
Jun 04 18:52:02 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Contacts.SearchProvider' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:52:02 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Calculator.SearchProvider' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:52:02 AlexArch nautilus[1549]: Could not establish a connection to Tracker: Timeout was reached
Jun 04 18:52:02 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Characters' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:52:02 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.clocks' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:52:02 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Photos' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:52:02 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Settings.SearchProvider' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:52:02 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Epiphany.SearchProvider' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:52:02 AlexArch nautilus[1549]: Source ID 1086 was not found when attempting to remove it
Jun 04 18:52:02 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Settings.SearchProvider'
Jun 04 18:52:02 AlexArch nautilus[1549]: Could not establish a connection to Tracker: Timeout was reached
Jun 04 18:52:02 AlexArch nautilus[1549]: Source ID 1090 was not found when attempting to remove it
Jun 04 18:52:02 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.clocks'
Jun 04 18:52:03 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Contacts.SearchProvider'
Jun 04 18:52:03 AlexArch dbus-daemon[248]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service' requested by ':1.82' (uid=0 pid=1771 comm="/usr/lib/gnome-contacts-search-provider")
Jun 04 18:52:03 AlexArch dbus-daemon[248]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service not found.
Jun 04 18:52:03 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Characters'
Jun 04 18:52:03 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Photos'
Jun 04 18:52:03 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Calculator.SearchProvider'
Jun 04 18:52:03 AlexArch gnome-calculato[1773]: search-provider.vala:117: Failed to spawn Calculator: Child process killed by signal 9
Jun 04 18:52:03 AlexArch systemd[687]: Started Application launched by gnome-shell.
Jun 04 18:52:03 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Epiphany.SearchProvider'
Jun 04 18:52:04 AlexArch gnome-character[1772]: JS LOG: Characters Application started
Jun 04 18:52:04 AlexArch gnome-character[1772]: JS LOG: Failed to search by keywords: Operation was cancelled
Jun 04 18:52:04 AlexArch epiphany-search[1775]: Failed to canonicalize path /root/.config/epiphany: No such file or directory
Jun 04 18:52:04 AlexArch epiphany-search[1775]: Attempted to add disallowed path to sandbox: /root/.config/epiphany
Jun 04 18:52:04 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='com.intel.dleyna-renderer' requested by ':1.101' (uid=0 pid=1776 comm="/usr/bin/gnome-photos --gapplication-service")
Jun 04 18:52:04 AlexArch dleyna-renderer-service[1914]: dLeyna core version 0.8.2
Jun 04 18:52:04 AlexArch dleyna-renderer-service[1914]: dleyna-renderer-service version 0.8.2
Jun 04 18:52:04 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'com.intel.dleyna-renderer'
Jun 04 18:52:04 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating via systemd: service name='org.freedesktop.Tracker3.Miner.Files' unit='tracker-miner-fs-3.service' requested by ':1.101' (uid=0 pid=1776 comm="/usr/bin/gnome-photos --gapplication-service")
Jun 04 18:52:04 AlexArch systemd[687]: Tracker file system data miner was skipped because of an unmet condition check (ConditionUser=!root).
Jun 04 18:52:05 AlexArch firefox.desktop[1840]: [GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
Jun 04 18:52:05 AlexArch firefox.desktop[1840]: ATTENTION: default value of option mesa_glthread overridden by environment.
Jun 04 18:52:06 AlexArch rtkit-daemon[435]: Supervising 0 threads of 0 processes of 0 users.
Jun 04 18:52:06 AlexArch rtkit-daemon[435]: Supervising 0 threads of 0 processes of 0 users.
Jun 04 18:52:06 AlexArch rtkit-daemon[435]: Supervising 0 threads of 0 processes of 0 users.
Jun 04 18:52:06 AlexArch rtkit-daemon[435]: Supervising 0 threads of 0 processes of 0 users.
Jun 04 18:52:06 AlexArch rtkit-daemon[435]: Supervising 0 threads of 0 processes of 0 users.
Jun 04 18:52:06 AlexArch rtkit-daemon[435]: Supervising 0 threads of 0 processes of 0 users.
Jun 04 18:52:06 AlexArch rtkit-daemon[435]: Supervising 0 threads of 0 processes of 0 users.
Jun 04 18:52:06 AlexArch rtkit-daemon[435]: Supervising 0 threads of 0 processes of 0 users.
Jun 04 18:52:06 AlexArch rtkit-daemon[435]: Successfully made thread 1995 of process 1840 owned by '0' RT at priority 10.
Jun 04 18:52:06 AlexArch rtkit-daemon[435]: Supervising 1 threads of 1 processes of 1 users.
Jun 04 18:52:07 AlexArch rtkit-daemon[435]: Supervising 1 threads of 1 processes of 1 users.
Jun 04 18:52:07 AlexArch rtkit-daemon[435]: Supervising 1 threads of 1 processes of 1 users.
Jun 04 18:52:09 AlexArch firefox.desktop[1840]: [ERROR glean_core] Error setting metrics feature config: Json(Error("EOF while parsing a value", line: 1, column: 0))
Jun 04 18:52:10 AlexArch rtkit-daemon[435]: Supervising 1 threads of 1 processes of 1 users.
Jun 04 18:52:10 AlexArch rtkit-daemon[435]: Supervising 1 threads of 1 processes of 1 users.
Jun 04 18:52:10 AlexArch rtkit-daemon[435]: Supervising 1 threads of 1 processes of 1 users.
Jun 04 18:52:10 AlexArch rtkit-daemon[435]: Supervising 1 threads of 1 processes of 1 users.
Jun 04 18:52:10 AlexArch rtkit-daemon[435]: Supervising 1 threads of 1 processes of 1 users.
Jun 04 18:52:10 AlexArch rtkit-daemon[435]: Supervising 1 threads of 1 processes of 1 users.
Jun 04 18:52:14 AlexArch gnome-character[1772]: JS LOG: Characters Application exiting
Jun 04 18:52:14 AlexArch kernel: iwlwifi 0000:03:00.0: RF_KILL bit toggled to enable radio.
Jun 04 18:52:14 AlexArch kernel: iwlwifi 0000:03:00.0: reporting RF_KILL (radio enabled)
Jun 04 18:52:14 AlexArch NetworkManager[251]: <info>  [1685897534.6703] manager: rfkill: Wi-Fi now enabled by radio killswitch
Jun 04 18:52:14 AlexArch kernel: iwlwifi 0000:03:00.0: Radio type=0x0-0x2-0x0
Jun 04 18:52:14 AlexArch systemd[1]: Starting Load/Save RF Kill Switch Status...
Jun 04 18:52:14 AlexArch systemd[1]: Started Load/Save RF Kill Switch Status.
Jun 04 18:52:14 AlexArch kernel: iwlwifi 0000:03:00.0: Radio type=0x0-0x2-0x0
Jun 04 18:52:14 AlexArch wpa_supplicant[451]: dbus: fill_dict_with_properties dbus_interface=fi.w1.wpa_supplicant1.Interface.P2PDevice dbus_property=P2PDeviceConfig getter failed
Jun 04 18:52:14 AlexArch NetworkManager[251]: <info>  [1685897534.9213] device (wlp3s0): supplicant interface state: internal-starting -> disconnected
Jun 04 18:52:14 AlexArch NetworkManager[251]: <info>  [1685897534.9216] device (wlp3s0): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-state: 'managed')
Jun 04 18:52:15 AlexArch kernel: usb 2-2: new full-speed USB device number 3 using uhci_hcd
Jun 04 18:52:15 AlexArch kernel: usb 2-2: New USB device found, idVendor=0a5c, idProduct=2145, bcdDevice= 3.99
Jun 04 18:52:15 AlexArch kernel: usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun 04 18:52:15 AlexArch kernel: usb 2-2: Product: ThinkPad Bluetooth with Enhanced Data Rate II
Jun 04 18:52:15 AlexArch kernel: usb 2-2: Manufacturer: Lenovo Computer Corp
Jun 04 18:52:15 AlexArch kernel: Bluetooth: Core ver 2.22
Jun 04 18:52:15 AlexArch kernel: NET: Registered PF_BLUETOOTH protocol family
Jun 04 18:52:15 AlexArch kernel: Bluetooth: HCI device and connection manager initialized
Jun 04 18:52:15 AlexArch kernel: Bluetooth: HCI socket layer initialized
Jun 04 18:52:15 AlexArch kernel: Bluetooth: L2CAP socket layer initialized
Jun 04 18:52:15 AlexArch kernel: Bluetooth: SCO socket layer initialized
Jun 04 18:52:15 AlexArch kernel: usbcore: registered new interface driver btusb
Jun 04 18:52:15 AlexArch systemd[1]: Reached target Bluetooth Support.
Jun 04 18:52:15 AlexArch systemd[687]: Reached target Bluetooth.
Jun 04 18:52:17 AlexArch NetworkManager[251]: <info>  [1685897537.9068] policy: auto-activating connection 'EOLO - FRITZ!Box 7530 BI' (85c7088b-d0e4-49e5-a8e2-36affc78ebd2)
Jun 04 18:52:17 AlexArch NetworkManager[251]: <info>  [1685897537.9122] device (wlp3s0): Activation: starting connection 'EOLO - FRITZ!Box 7530 BI' (85c7088b-d0e4-49e5-a8e2-36affc78ebd2)
Jun 04 18:52:17 AlexArch NetworkManager[251]: <info>  [1685897537.9140] device (wlp3s0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jun 04 18:52:17 AlexArch NetworkManager[251]: <info>  [1685897537.9172] manager: NetworkManager state is now CONNECTING
Jun 04 18:52:17 AlexArch NetworkManager[251]: <info>  [1685897537.9474] device (wlp3s0): set-hw-addr: reset MAC address to 00:21:6A:0F:BF:F2 (preserve)
Jun 04 18:52:17 AlexArch kernel: iwlwifi 0000:03:00.0: Radio type=0x0-0x2-0x0
Jun 04 18:52:18 AlexArch kernel: iwlwifi 0000:03:00.0: Radio type=0x0-0x2-0x0
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.1420] device (wlp3s0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.1431] device (wlp3s0): Activation: (wifi) access point 'EOLO - FRITZ!Box 7530 BI' has security, but secrets are required.
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.1432] device (wlp3s0): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.1434] sup-iface[3352cd4d22309ae7,0,wlp3s0]: wps: type pbc start...
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.1441] device (wlp3s0): supplicant interface state: disconnected -> interface_disabled
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.1456] device (wlp3s0): state change: need-auth -> prepare (reason 'none', sys-iface-state: 'managed')
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.1471] device (wlp3s0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.1514] device (wlp3s0): Activation: (wifi) connection 'EOLO - FRITZ!Box 7530 BI' has security, and secrets exist.  No new secrets needed.
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.1519] Config: added 'ssid' value 'EOLO - FRITZ!Box 7530 BI'
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.1521] Config: added 'scan_ssid' value '1'
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.1523] Config: added 'bgscan' value 'simple:30:-65:300'
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.1524] Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 FT-PSK'
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.1526] Config: added 'auth_alg' value 'OPEN'
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.1527] Config: added 'psk' value '<hidden>'
Jun 04 18:52:18 AlexArch wpa_supplicant[451]: wlp3s0: WPS-CANCEL
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.1578] device (wlp3s0): supplicant interface state: interface_disabled -> inactive
Jun 04 18:52:18 AlexArch wpa_supplicant[451]: wlp3s0: SME: Trying to authenticate with 3c:a6:2f:ae:86:98 (SSID='EOLO - FRITZ!Box 7530 BI' freq=5220 MHz)
Jun 04 18:52:18 AlexArch kernel: wlp3s0: authenticate with 3c:a6:2f:ae:86:98
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.1825] device (wlp3s0): supplicant interface state: inactive -> authenticating
Jun 04 18:52:18 AlexArch kernel: wlp3s0: send auth to 3c:a6:2f:ae:86:98 (try 1/3)
Jun 04 18:52:18 AlexArch wpa_supplicant[451]: wlp3s0: Trying to associate with 3c:a6:2f:ae:86:98 (SSID='EOLO - FRITZ!Box 7530 BI' freq=5220 MHz)
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.2236] device (wlp3s0): supplicant interface state: authenticating -> associating
Jun 04 18:52:18 AlexArch kernel: wlp3s0: authenticated
Jun 04 18:52:18 AlexArch kernel: wlp3s0: waiting for beacon from 3c:a6:2f:ae:86:98
Jun 04 18:52:18 AlexArch kernel: wlp3s0: associate with 3c:a6:2f:ae:86:98 (try 1/3)
Jun 04 18:52:18 AlexArch kernel: wlp3s0: RX AssocResp from 3c:a6:2f:ae:86:98 (capab=0x1511 status=0 aid=2)
Jun 04 18:52:18 AlexArch kernel: wlp3s0: associated
Jun 04 18:52:18 AlexArch wpa_supplicant[451]: wlp3s0: Associated with 3c:a6:2f:ae:86:98
Jun 04 18:52:18 AlexArch wpa_supplicant[451]: wlp3s0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.3404] device (wlp3s0): supplicant interface state: associating -> associated
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.3457] device (wlp3s0): supplicant interface state: associated -> 4way_handshake
Jun 04 18:52:18 AlexArch wpa_supplicant[451]: wlp3s0: WPA: Key negotiation completed with 3c:a6:2f:ae:86:98 [PTK=CCMP GTK=TKIP]
Jun 04 18:52:18 AlexArch wpa_supplicant[451]: wlp3s0: CTRL-EVENT-CONNECTED - Connection to 3c:a6:2f:ae:86:98 completed [id=0 id_str=]
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.4076] device (wlp3s0): supplicant interface state: 4way_handshake -> completed
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.4077] device (wlp3s0): Activation: (wifi) Stage 2 of 5 (Device Configure) successful. Connected to wireless network "EOLO - FRITZ!Box 7530 BI"
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.4084] device (wlp3s0): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
Jun 04 18:52:18 AlexArch kernel: IPv6: ADDRCONF(NETDEV_CHANGE): wlp3s0: link becomes ready
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.4097] dhcp4 (wlp3s0): activation: beginning transaction (timeout in 45 seconds)
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.4195] dhcp4 (wlp3s0): state changed new lease, address=192.168.178.129
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.4206] policy: set 'EOLO - FRITZ!Box 7530 BI' (wlp3s0) as default for IPv4 routing and DNS
Jun 04 18:52:18 AlexArch dbus-daemon[248]: [system] Activating via systemd: service name='org.freedesktop.resolve1' unit='dbus-org.freedesktop.resolve1.service' requested by ':1.2' (uid=0 pid=251 comm="/usr/bin/NetworkManager --no-daemon")
Jun 04 18:52:18 AlexArch dbus-daemon[248]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.resolve1.service': Unit dbus-org.freedesktop.resolve1.service not found.
Jun 04 18:52:18 AlexArch kernel: wlp3s0: Limiting TX power to 23 (23 - 0) dBm as advertised by 3c:a6:2f:ae:86:98
Jun 04 18:52:18 AlexArch kernel: warning: `dleyna-renderer' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
Jun 04 18:52:18 AlexArch dbus-daemon[248]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.2' (uid=0 pid=251 comm="/usr/bin/NetworkManager --no-daemon")
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.4371] device (wlp3s0): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
Jun 04 18:52:18 AlexArch systemd[1]: Starting Network Manager Script Dispatcher Service...
Jun 04 18:52:18 AlexArch dbus-daemon[248]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Jun 04 18:52:18 AlexArch systemd[1]: Started Network Manager Script Dispatcher Service.
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.4723] device (wlp3s0): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.4726] device (wlp3s0): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.4731] manager: NetworkManager state is now CONNECTED_SITE
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.4737] device (wlp3s0): Activation: successful, device activated.
Jun 04 18:52:18 AlexArch NetworkManager[251]: <info>  [1685897538.6005] manager: NetworkManager state is now CONNECTED_GLOBAL
Jun 04 18:52:18 AlexArch wpa_supplicant[451]: wlp3s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-42 noise=9999 txrate=40500
Jun 04 18:52:20 AlexArch rtkit-daemon[435]: Supervising 1 threads of 1 processes of 1 users.
Jun 04 18:52:20 AlexArch rtkit-daemon[435]: Supervising 1 threads of 1 processes of 1 users.
Jun 04 18:52:20 AlexArch systemd[1]: systemd-rfkill.service: Deactivated successfully.
Jun 04 18:52:26 AlexArch rtkit-daemon[435]: Supervising 1 threads of 1 processes of 1 users.
Jun 04 18:52:26 AlexArch rtkit-daemon[435]: Supervising 1 threads of 1 processes of 1 users.
Jun 04 18:52:28 AlexArch systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Jun 04 18:54:11 AlexArch systemd-timesyncd[242]: Contacted time server 37.247.53.178:123 (0.arch.pool.ntp.org).
Jun 04 18:54:11 AlexArch systemd-timesyncd[242]: Initial clock synchronization to Sun 2023-06-04 18:54:11.368590 CEST.
Jun 04 18:54:46 AlexArch epiphany-search[1775]: Error loading plugin: libvoikko.so.1: cannot open shared object file: No such file or directory
Jun 04 18:54:46 AlexArch epiphany-search[1775]: Error loading plugin: libhspell.so.0: cannot open shared object file: No such file or directory
Jun 04 18:54:46 AlexArch epiphany-search[1775]: Error loading plugin: libnuspell.so.5: cannot open shared object file: No such file or directory
Jun 04 18:54:46 AlexArch epiphany-search[1775]: Error loading plugin: libaspell.so.15: cannot open shared object file: No such file or directory
Jun 04 18:54:46 AlexArch epiphany-search[1775]: Error loading plugin: libhunspell-1.7.so.0: cannot open shared object file: No such file or directory
Jun 04 18:54:48 AlexArch dleyna-renderer-service[1914]: dLeyna: Exit
Jun 04 18:54:58 AlexArch rtkit-daemon[435]: Supervising 1 threads of 1 processes of 1 users.
Jun 04 18:54:58 AlexArch rtkit-daemon[435]: Supervising 1 threads of 1 processes of 1 users.
Jun 04 18:55:40 AlexArch firefox.desktop[1960]: [Child 1960, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:55:42 AlexArch firefox.desktop[2052]: [Child 2052, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:55:42 AlexArch firefox.desktop[2052]: [Child 2052, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:55:47 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Failed to activate service 'org.freedesktop.Tracker3.Miner.Files': timed out (service_start_timeout=120000ms)
Jun 04 18:55:50 AlexArch firefox.desktop[1960]: [Child 1960, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:55:50 AlexArch firefox.desktop[1960]: [Child 1960, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:55:50 AlexArch firefox.desktop[1960]: [Child 1960, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:55:50 AlexArch firefox.desktop[2052]: [Child 2052, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:55:50 AlexArch firefox.desktop[2052]: [Child 2052, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:55:50 AlexArch firefox.desktop[2052]: [Child 2052, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:55:50 AlexArch firefox.desktop[2052]: [Child 2052, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:55:50 AlexArch firefox.desktop[2052]: [Child 2052, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:55:52 AlexArch firefox.desktop[2052]: [Child 2052, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:55:52 AlexArch firefox.desktop[2052]: [Child 2052, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:55:52 AlexArch firefox.desktop[2052]: [Child 2052, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:55:52 AlexArch firefox.desktop[2052]: [Child 2052, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:55:52 AlexArch firefox.desktop[2052]: [Child 2052, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:55:53 AlexArch firefox.desktop[2168]: [Child 2168, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, PortMessage) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:55:53 AlexArch firefox.desktop[2168]: [Child 2168, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:55:53 AlexArch firefox.desktop[2168]: [Child 2168, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:55:53 AlexArch firefox.desktop[2168]: [Child 2168, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:55:53 AlexArch firefox.desktop[2168]: [Child 2168, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:55:53 AlexArch firefox.desktop[2168]: [Child 2168, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:55:56 AlexArch rtkit-daemon[435]: Supervising 1 threads of 1 processes of 1 users.
Jun 04 18:55:56 AlexArch rtkit-daemon[435]: Supervising 1 threads of 1 processes of 1 users.
Jun 04 18:56:15 AlexArch firefox.desktop[1960]: [Child 1960, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:56:15 AlexArch firefox.desktop[1960]: [Child 1960, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:56:28 AlexArch firefox.desktop[1960]: [Child 1960, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:56:28 AlexArch firefox.desktop[1960]: [Child 1960, Main Thread] WARNING: JSWindowActorChild::SendRawMessage (Conduits, ConduitClosed) not sent: !CanSend() || !mManager || !mManager->CanSend(): file /build/firefox/src/firefox-113.0.2/dom/ipc/jsactor/JSWindowActorChild.cpp:57
Jun 04 18:56:34 AlexArch wpa_supplicant[451]: wlp3s0: WNM: Preferred List Available
Jun 04 18:56:34 AlexArch wpa_supplicant[451]: wlp3s0: SME: Trying to authenticate with 3c:a6:2f:ae:86:97 (SSID='EOLO - FRITZ!Box 7530 BI' freq=2412 MHz)
Jun 04 18:56:34 AlexArch kernel: wlp3s0: disconnect from AP 3c:a6:2f:ae:86:98 for new auth to 3c:a6:2f:ae:86:97
Jun 04 18:56:34 AlexArch kernel: wlp3s0: authenticate with 3c:a6:2f:ae:86:97
Jun 04 18:56:34 AlexArch kernel: wlp3s0: send auth to 3c:a6:2f:ae:86:97 (try 1/3)
Jun 04 18:56:34 AlexArch wpa_supplicant[451]: wlp3s0: CTRL-EVENT-REGDOM-CHANGE init=CORE type=WORLD
Jun 04 18:56:34 AlexArch NetworkManager[251]: <info>  [1685897794.2129] device (wlp3s0): supplicant interface state: completed -> authenticating
Jun 04 18:56:34 AlexArch wpa_supplicant[451]: wlp3s0: Trying to associate with 3c:a6:2f:ae:86:97 (SSID='EOLO - FRITZ!Box 7530 BI' freq=2412 MHz)
Jun 04 18:56:34 AlexArch kernel: wlp3s0: authenticated
Jun 04 18:56:34 AlexArch kernel: wlp3s0: waiting for beacon from 3c:a6:2f:ae:86:97
Jun 04 18:56:34 AlexArch NetworkManager[251]: <info>  [1685897794.2197] device (wlp3s0): supplicant interface state: authenticating -> associating
Jun 04 18:56:34 AlexArch kernel: wlp3s0: associate with 3c:a6:2f:ae:86:97 (try 1/3)
Jun 04 18:56:34 AlexArch kernel: wlp3s0: RX ReassocResp from 3c:a6:2f:ae:86:97 (capab=0x1431 status=0 aid=1)
Jun 04 18:56:34 AlexArch wpa_supplicant[451]: wlp3s0: Associated with 3c:a6:2f:ae:86:97
Jun 04 18:56:34 AlexArch kernel: wlp3s0: associated
Jun 04 18:56:34 AlexArch wpa_supplicant[451]: wlp3s0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Jun 04 18:56:34 AlexArch NetworkManager[251]: <info>  [1685897794.3107] device (wlp3s0): supplicant interface state: associating -> associated
Jun 04 18:56:34 AlexArch NetworkManager[251]: <info>  [1685897794.4925] device (wlp3s0): supplicant interface state: associated -> 4way_handshake
Jun 04 18:56:34 AlexArch kernel: wlp3s0: Limiting TX power to 20 (20 - 0) dBm as advertised by 3c:a6:2f:ae:86:97
Jun 04 18:56:34 AlexArch wpa_supplicant[451]: wlp3s0: WPA: Key negotiation completed with 3c:a6:2f:ae:86:97 [PTK=CCMP GTK=TKIP]
Jun 04 18:56:34 AlexArch wpa_supplicant[451]: wlp3s0: CTRL-EVENT-CONNECTED - Connection to 3c:a6:2f:ae:86:97 completed [id=0 id_str=]
Jun 04 18:56:34 AlexArch NetworkManager[251]: <info>  [1685897794.5115] device (wlp3s0): supplicant interface state: 4way_handshake -> completed
Jun 04 18:56:34 AlexArch NetworkManager[251]: <info>  [1685897794.5118] device (wlp3s0): ip:dhcp4: restarting
Jun 04 18:56:34 AlexArch NetworkManager[251]: <info>  [1685897794.5225] dhcp4 (wlp3s0): canceled DHCP transaction
Jun 04 18:56:34 AlexArch NetworkManager[251]: <info>  [1685897794.5226] dhcp4 (wlp3s0): activation: beginning transaction (timeout in 45 seconds)
Jun 04 18:56:34 AlexArch NetworkManager[251]: <info>  [1685897794.5226] dhcp4 (wlp3s0): state changed no lease
Jun 04 18:56:34 AlexArch NetworkManager[251]: <info>  [1685897794.5227] dhcp4 (wlp3s0): activation: beginning transaction (timeout in 45 seconds)
Jun 04 18:56:34 AlexArch NetworkManager[251]: <info>  [1685897794.5351] dhcp4 (wlp3s0): state changed new lease, address=192.168.178.129
Jun 04 18:56:34 AlexArch dbus-daemon[248]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.2' (uid=0 pid=251 comm="/usr/bin/NetworkManager --no-daemon")
Jun 04 18:56:34 AlexArch systemd[1]: Starting Network Manager Script Dispatcher Service...
Jun 04 18:56:34 AlexArch dbus-daemon[248]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Jun 04 18:56:34 AlexArch systemd[1]: Started Network Manager Script Dispatcher Service.
Jun 04 18:56:34 AlexArch wpa_supplicant[451]: wlp3s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-42 noise=9999 txrate=1000
Jun 04 18:56:44 AlexArch systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Jun 04 18:56:48 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Contacts.SearchProvider' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:56:48 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Calculator.SearchProvider' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:56:48 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Characters' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:56:48 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.clocks' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:56:48 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Photos' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:56:48 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Settings.SearchProvider' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:56:48 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Epiphany.SearchProvider' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:56:48 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Settings.SearchProvider'
Jun 04 18:56:48 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.clocks'
Jun 04 18:56:49 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Contacts.SearchProvider'
Jun 04 18:56:49 AlexArch dbus-daemon[248]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service' requested by ':1.100' (uid=0 pid=2421 comm="/usr/lib/gnome-contacts-search-provider")
Jun 04 18:56:49 AlexArch dbus-daemon[248]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service not found.
Jun 04 18:56:49 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Photos'
Jun 04 18:56:49 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Calculator.SearchProvider'
Jun 04 18:56:49 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Characters'
Jun 04 18:56:49 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Epiphany.SearchProvider'
Jun 04 18:56:49 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='org.gnome.Console' requested by ':1.17' (uid=0 pid=816 comm="/usr/bin/gnome-shell")
Jun 04 18:56:49 AlexArch gnome-character[2415]: JS LOG: Characters Application started
Jun 04 18:56:50 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'org.gnome.Console'
Jun 04 18:56:50 AlexArch epiphany-search[2423]: Failed to canonicalize path /root/.config/epiphany: No such file or directory
Jun 04 18:56:50 AlexArch epiphany-search[2423]: Attempted to add disallowed path to sandbox: /root/.config/epiphany
Jun 04 18:56:50 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating service name='com.intel.dleyna-renderer' requested by ':1.111' (uid=0 pid=2419 comm="/usr/bin/gnome-photos --gapplication-service")
Jun 04 18:56:50 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Activating via systemd: service name='org.freedesktop.Tracker3.Miner.Files' unit='tracker-miner-fs-3.service' requested by ':1.111' (uid=0 pid=2419 comm="/usr/bin/gnome-photos --gapplication-service")
Jun 04 18:56:50 AlexArch systemd[687]: Tracker file system data miner was skipped because of an unmet condition check (ConditionUser=!root).
Jun 04 18:56:50 AlexArch dleyna-renderer-service[2534]: dLeyna core version 0.8.2
Jun 04 18:56:50 AlexArch dleyna-renderer-service[2534]: dleyna-renderer-service version 0.8.2
Jun 04 18:56:50 AlexArch dbus-daemon[708]: [session uid=0 pid=708] Successfully activated service 'com.intel.dleyna-renderer'
Jun 04 18:56:50 AlexArch systemd[687]: Started VTE child process 2551 launched by kgx process 2505.
Jun 04 18:56:51 AlexArch gnome-shell[816]: Window manager warning: Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x2e00004
Jun 04 18:56:59 AlexArch gnome-character[2415]: JS LOG: Characters Application exiting

Offline

#8 2023-06-04 20:03:08

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

Re: [SOLVED] Hardware clock updating only when plugged in.

Jun 04 18:48:25 AlexArch kernel: rtc_cmos 00:02: setting system clock to 2023-06-04T16:48:16 UTC (1685897296)

Is this from a boot on AC where the time gets correctly synced to the RTC?


Jun 04 18:48:25 AlexArch kernel: clocksource: timekeeping watchdog on CPU1: Marking clocksource 'tsc' as unstable because the skew is too large:
Jun 04 18:48:25 AlexArch kernel: clocksource:                       'hpet' wd_nsec: 47281649853 wd_now: 5913c382 wd_last: 30b9c28c mask: ffffffff
Jun 04 18:48:25 AlexArch kernel: clocksource:                       'tsc' cs_nsec: 506642187 cs_now: b5657196f cs_last: b120ebcf2 mask: ffffffffffffffff
Jun 04 18:48:25 AlexArch kernel: clocksource:                       Clocksource 'tsc' skewed -46775007666 ns (18446744026934 ms) over watchdog 'hpet' interval of 47281649853 ns (47281 ms)
Jun 04 18:48:25 AlexArch kernel: clocksource:                       'tsc' is current clocksource.
Jun 04 18:48:25 AlexArch kernel: tsc: Marking TSC unstable due to clocksource watchdog
Jun 04 18:48:25 AlexArch kernel: TSC found unstable after boot, most likely due to broken BIOS. Use 'tsc=unstable'.
Jun 04 18:48:25 AlexArch kernel: sched_clock: Marking unstable (2503396349, 1124168)<-(2719036609, -214515760)
Jun 04 18:48:25 AlexArch kernel: clocksource: Checking clocksource tsc synchronization from CPU 0 to CPUs 1.
Jun 04 18:48:25 AlexArch kernel: clocksource: Switched to clocksource hpet

Does this show up every time?
What if you add "hpet=disable" to the kernel commandline?

Offline

#9 2023-06-04 20:45:02

Alexjust
Member
Registered: 2022-09-01
Posts: 15

Re: [SOLVED] Hardware clock updating only when plugged in.

No that was from a boot that wasn't connected, that's the weird part, i have no clue what could cause it.

I don't think the TSC is the problem because that is not connected in any way to the system time. From what I can gather it is an arcane method of keeping cpu timing. (https://superuser.com/questions/393969/ … table-mean)

Offline

#10 2023-06-04 20:47:09

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

Re: [SOLVED] Hardware clock updating only when plugged in.

I know, I'm just speculating what might throw systemd off.
Do you also have the journal of a good boot?

Offline

#11 2023-06-04 20:56:31

Alexjust
Member
Registered: 2022-09-01
Posts: 15

Re: [SOLVED] Hardware clock updating only when plugged in.

Ok now I really don't know what to think...
This was a 1min43s boot:

Jun 04 22:45:57 AlexArch kernel: Linux version 6.3.5-arch1-1 (linux@archlinux) (gcc (GCC) 13.1.1 20230429, GNU ld (GNU Binutils) 2.40.0) #1 SMP PREEMPT_DYNAMIC Tue, 30 May 2023 13:44:01 +0000
Jun 04 22:45:57 AlexArch kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=882f05fb-ea19-4494-99b9-75cacc2e0493 rw loglevel=3 quiet
Jun 04 22:45:57 AlexArch kernel: Disabled fast string operations
Jun 04 22:45:57 AlexArch kernel: x86/fpu: x87 FPU will use FXSAVE
Jun 04 22:45:57 AlexArch kernel: signal: max sigframe size: 1440
Jun 04 22:45:57 AlexArch kernel: BIOS-provided physical RAM map:
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009ebff] usable
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x000000000009ec00-0x000000000009ffff] reserved
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000000dc000-0x00000000000fffff] reserved
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000bd6a0fff] usable
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000bd6a1000-0x00000000bd6a6fff] reserved
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000bd6a7000-0x00000000bd7b6fff] usable
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000bd7b7000-0x00000000bd80efff] reserved
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000bd80f000-0x00000000bd8c6fff] usable
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000bd8c7000-0x00000000bd8d1fff] ACPI NVS
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000bd8d2000-0x00000000bd8d4fff] ACPI data
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000bd8d5000-0x00000000bd8d8fff] reserved
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000bd8d9000-0x00000000bd8dcfff] ACPI NVS
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000bd8dd000-0x00000000bd8dffff] reserved
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000bd8e0000-0x00000000bd906fff] ACPI NVS
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000bd907000-0x00000000bd907fff] ACPI data
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000bd908000-0x00000000bdb0efff] reserved
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000bdb0f000-0x00000000bdb9efff] ACPI NVS
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000bdb9f000-0x00000000bdbfefff] ACPI data
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000bdbff000-0x00000000bdbfffff] usable
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000bdc00000-0x00000000bfffffff] reserved
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed003ff] reserved
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed8ffff] reserved
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
Jun 04 22:45:57 AlexArch kernel: BIOS-e820: [mem 0x0000000100000000-0x000000023bffffff] usable
Jun 04 22:45:57 AlexArch kernel: NX (Execute Disable) protection: active
Jun 04 22:45:57 AlexArch kernel: SMBIOS 2.4 present.
Jun 04 22:45:57 AlexArch kernel: DMI: LENOVO 22434EG/22434EG, BIOS 6FET50WW (1.20 ) 10/30/2008
Jun 04 22:45:57 AlexArch kernel: tsc: Fast TSC calibration using PIT
Jun 04 22:45:57 AlexArch kernel: tsc: Detected 2261.080 MHz processor
Jun 04 22:45:57 AlexArch kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jun 04 22:45:57 AlexArch kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Jun 04 22:45:57 AlexArch kernel: last_pfn = 0x23c000 max_arch_pfn = 0x400000000
Jun 04 22:45:57 AlexArch kernel: total RAM covered: 8094M
Jun 04 22:45:57 AlexArch kernel: Found optimal setting for mtrr clean up
Jun 04 22:45:57 AlexArch kernel:  gran_size: 64K         chunk_size: 128M         num_reg: 7          lose cover RAM: 0G
Jun 04 22:45:57 AlexArch kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Jun 04 22:45:57 AlexArch kernel: e820: update [mem 0xbde00000-0xffffffff] usable ==> reserved
Jun 04 22:45:57 AlexArch kernel: last_pfn = 0xbdc00 max_arch_pfn = 0x400000000
Jun 04 22:45:57 AlexArch kernel: found SMP MP-table at [mem 0x000f6570-0x000f657f]
Jun 04 22:45:57 AlexArch kernel: RAMDISK: [mem 0x3647b000-0x37234fff]
Jun 04 22:45:57 AlexArch kernel: ACPI: Early table checksum verification disabled
Jun 04 22:45:57 AlexArch kernel: ACPI: RSDP 0x00000000000F6530 000024 (v02 LENOVO)
Jun 04 22:45:57 AlexArch kernel: ACPI: XSDT 0x00000000BDB6A5B6 000094 (v01 LENOVO TP-6F    00001200  LTP 00000000)
Jun 04 22:45:57 AlexArch kernel: ACPI: FACP 0x00000000BDB6A700 0000F4 (v03 LENOVO TP-6F    00001200 LNVO 00000001)
Jun 04 22:45:57 AlexArch kernel: ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Pm1aControlBlock: 16/32 (20221020/tbfadt-564)
Jun 04 22:45:57 AlexArch kernel: ACPI BIOS Warning (bug): Invalid length for FADT/Pm1aControlBlock: 32, using default 16 (20221020/tbfadt-669)
Jun 04 22:45:57 AlexArch kernel: ACPI: DSDT 0x00000000BDB6AADB 00F0B8 (v01 LENOVO TP-6F    00001200 MSFT 03000000)
Jun 04 22:45:57 AlexArch kernel: ACPI: FACS 0x00000000BDB8E000 000040
Jun 04 22:45:57 AlexArch kernel: ACPI: FACS 0x00000000BDB8E000 000040
Jun 04 22:45:57 AlexArch kernel: ACPI: SSDT 0x00000000BDB6A8B4 000227 (v01 LENOVO TP-6F    00001200 MSFT 03000000)
Jun 04 22:45:57 AlexArch kernel: ACPI: ECDT 0x00000000BDB79B93 000052 (v01 LENOVO TP-6F    00001200 LNVO 00000001)
Jun 04 22:45:57 AlexArch kernel: ACPI: APIC 0x00000000BDB79BE5 000078 (v01 LENOVO TP-6F    00001200 LNVO 00000001)
Jun 04 22:45:57 AlexArch kernel: ACPI: MCFG 0x00000000BDB79C5D 00003C (v01 LENOVO TP-6F    00001200 LNVO 00000001)
Jun 04 22:45:57 AlexArch kernel: ACPI: HPET 0x00000000BDB79C99 000038 (v01 LENOVO TP-6F    00001200 LNVO 00000001)
Jun 04 22:45:57 AlexArch kernel: ACPI: SLIC 0x00000000BDB79DC2 000176 (v01 LENOVO TP-6F    00001200  LTP 00000000)
Jun 04 22:45:57 AlexArch kernel: ACPI: BOOT 0x00000000BDB79F38 000028 (v01 LENOVO TP-6F    00001200  LTP 00000001)
Jun 04 22:45:57 AlexArch kernel: ACPI: ASF! 0x00000000BDB79F60 0000A0 (v16 LENOVO TP-6F    00001200 PTL  00000001)
Jun 04 22:45:57 AlexArch kernel: ACPI: SSDT 0x00000000BDB8D213 00054F (v01 LENOVO TP-6F    00001200 INTL 20050513)
Jun 04 22:45:57 AlexArch kernel: ACPI: TCPA 0x00000000BD907000 000032 (v00                 00000000      00000000)
Jun 04 22:45:57 AlexArch kernel: ACPI: SSDT 0x00000000BD8D4000 000655 (v01 PmRef  CpuPm    00003000 INTL 20050624)
Jun 04 22:45:57 AlexArch kernel: ACPI: SSDT 0x00000000BD8D3000 000274 (v01 PmRef  Cpu0Tst  00003000 INTL 20050624)
Jun 04 22:45:57 AlexArch kernel: ACPI: SSDT 0x00000000BD8D2000 000242 (v01 PmRef  ApTst    00003000 INTL 20050624)
Jun 04 22:45:57 AlexArch kernel: ACPI: Reserving FACP table memory at [mem 0xbdb6a700-0xbdb6a7f3]
Jun 04 22:45:57 AlexArch kernel: ACPI: Reserving DSDT table memory at [mem 0xbdb6aadb-0xbdb79b92]
Jun 04 22:45:57 AlexArch kernel: ACPI: Reserving FACS table memory at [mem 0xbdb8e000-0xbdb8e03f]
Jun 04 22:45:57 AlexArch kernel: ACPI: Reserving FACS table memory at [mem 0xbdb8e000-0xbdb8e03f]
Jun 04 22:45:57 AlexArch kernel: ACPI: Reserving SSDT table memory at [mem 0xbdb6a8b4-0xbdb6aada]
Jun 04 22:45:57 AlexArch kernel: ACPI: Reserving ECDT table memory at [mem 0xbdb79b93-0xbdb79be4]
Jun 04 22:45:57 AlexArch kernel: ACPI: Reserving APIC table memory at [mem 0xbdb79be5-0xbdb79c5c]
Jun 04 22:45:57 AlexArch kernel: ACPI: Reserving MCFG table memory at [mem 0xbdb79c5d-0xbdb79c98]
Jun 04 22:45:57 AlexArch kernel: ACPI: Reserving HPET table memory at [mem 0xbdb79c99-0xbdb79cd0]
Jun 04 22:45:57 AlexArch kernel: ACPI: Reserving SLIC table memory at [mem 0xbdb79dc2-0xbdb79f37]
Jun 04 22:45:57 AlexArch kernel: ACPI: Reserving BOOT table memory at [mem 0xbdb79f38-0xbdb79f5f]
Jun 04 22:45:57 AlexArch kernel: ACPI: Reserving ASF! table memory at [mem 0xbdb79f60-0xbdb79fff]
Jun 04 22:45:57 AlexArch kernel: ACPI: Reserving SSDT table memory at [mem 0xbdb8d213-0xbdb8d761]
Jun 04 22:45:57 AlexArch kernel: ACPI: Reserving TCPA table memory at [mem 0xbd907000-0xbd907031]
Jun 04 22:45:57 AlexArch kernel: ACPI: Reserving SSDT table memory at [mem 0xbd8d4000-0xbd8d4654]
Jun 04 22:45:57 AlexArch kernel: ACPI: Reserving SSDT table memory at [mem 0xbd8d3000-0xbd8d3273]
Jun 04 22:45:57 AlexArch kernel: ACPI: Reserving SSDT table memory at [mem 0xbd8d2000-0xbd8d2241]
Jun 04 22:45:57 AlexArch kernel: No NUMA configuration found
Jun 04 22:45:57 AlexArch kernel: Faking a node at [mem 0x0000000000000000-0x000000023bffffff]
Jun 04 22:45:57 AlexArch kernel: NODE_DATA(0) allocated [mem 0x23bff7000-0x23bffbfff]
Jun 04 22:45:57 AlexArch kernel: Zone ranges:
Jun 04 22:45:57 AlexArch kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Jun 04 22:45:57 AlexArch kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Jun 04 22:45:57 AlexArch kernel:   Normal   [mem 0x0000000100000000-0x000000023bffffff]
Jun 04 22:45:57 AlexArch kernel:   Device   empty
Jun 04 22:45:57 AlexArch kernel: Movable zone start for each node
Jun 04 22:45:57 AlexArch kernel: Early memory node ranges
Jun 04 22:45:57 AlexArch kernel:   node   0: [mem 0x0000000000001000-0x000000000009dfff]
Jun 04 22:45:57 AlexArch kernel:   node   0: [mem 0x0000000000100000-0x00000000bd6a0fff]
Jun 04 22:45:57 AlexArch kernel:   node   0: [mem 0x00000000bd6a7000-0x00000000bd7b6fff]
Jun 04 22:45:57 AlexArch kernel:   node   0: [mem 0x00000000bd80f000-0x00000000bd8c6fff]
Jun 04 22:45:57 AlexArch kernel:   node   0: [mem 0x00000000bdbff000-0x00000000bdbfffff]
Jun 04 22:45:57 AlexArch kernel:   node   0: [mem 0x0000000100000000-0x000000023bffffff]
Jun 04 22:45:57 AlexArch kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000023bffffff]
Jun 04 22:45:57 AlexArch kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Jun 04 22:45:57 AlexArch kernel: On node 0, zone DMA: 98 pages in unavailable ranges
Jun 04 22:45:57 AlexArch kernel: On node 0, zone DMA32: 6 pages in unavailable ranges
Jun 04 22:45:57 AlexArch kernel: On node 0, zone DMA32: 88 pages in unavailable ranges
Jun 04 22:45:57 AlexArch kernel: On node 0, zone DMA32: 824 pages in unavailable ranges
Jun 04 22:45:57 AlexArch kernel: On node 0, zone Normal: 9216 pages in unavailable ranges
Jun 04 22:45:57 AlexArch kernel: On node 0, zone Normal: 16384 pages in unavailable ranges
Jun 04 22:45:57 AlexArch kernel: Reserving Intel graphics memory at [mem 0xbe000000-0xbfffffff]
Jun 04 22:45:57 AlexArch kernel: ACPI: PM-Timer IO Port: 0x1008
Jun 04 22:45:57 AlexArch kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
Jun 04 22:45:57 AlexArch kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Jun 04 22:45:57 AlexArch kernel: IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
Jun 04 22:45:57 AlexArch kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jun 04 22:45:57 AlexArch kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jun 04 22:45:57 AlexArch kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Jun 04 22:45:57 AlexArch kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Jun 04 22:45:57 AlexArch kernel: smpboot: Allowing 4 CPUs, 2 hotplug CPUs
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009efff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dbfff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0x000dc000-0x000fffff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd6a1000-0xbd6a6fff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd7b7000-0xbd80efff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd8c7000-0xbd8d1fff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd8d2000-0xbd8d4fff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd8d5000-0xbd8d8fff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd8d9000-0xbd8dcfff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd8dd000-0xbd8dffff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd8e0000-0xbd906fff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd907000-0xbd907fff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd908000-0xbdb0efff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbdb0f000-0xbdb9efff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbdb9f000-0xbdbfefff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbdc00000-0xbfffffff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xdfffffff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xefffffff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec0ffff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfec10000-0xfecfffff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed0ffff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed10000-0xfed13fff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed14000-0xfed17fff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed18000-0xfed19fff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed8ffff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed90000-0xfedfffff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xff7fffff]
Jun 04 22:45:57 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xff800000-0xffffffff]
Jun 04 22:45:57 AlexArch kernel: [mem 0xc0000000-0xdfffffff] available for PCI devices
Jun 04 22:45:57 AlexArch kernel: Booting paravirtualized kernel on bare hardware
Jun 04 22:45:57 AlexArch kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
Jun 04 22:45:57 AlexArch kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
Jun 04 22:45:57 AlexArch kernel: percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u524288
Jun 04 22:45:57 AlexArch kernel: pcpu-alloc: s225280 r8192 d28672 u524288 alloc=1*2097152
Jun 04 22:45:57 AlexArch kernel: pcpu-alloc: [0] 0 1 2 3 
Jun 04 22:45:57 AlexArch kernel: Fallback order for Node 0: 0 
Jun 04 22:45:57 AlexArch kernel: Built 1 zonelists, mobility grouping on.  Total pages: 2038024
Jun 04 22:45:57 AlexArch kernel: Policy zone: Normal
Jun 04 22:45:57 AlexArch kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=882f05fb-ea19-4494-99b9-75cacc2e0493 rw loglevel=3 quiet
Jun 04 22:45:57 AlexArch kernel: Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-linux", will be passed to user space.
Jun 04 22:45:57 AlexArch kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
Jun 04 22:45:57 AlexArch kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
Jun 04 22:45:57 AlexArch kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
Jun 04 22:45:57 AlexArch kernel: software IO TLB: area num 4.
Jun 04 22:45:57 AlexArch kernel: Memory: 8009220K/8282140K available (16384K kernel code, 2107K rwdata, 12656K rodata, 3324K init, 4000K bss, 272660K reserved, 0K cma-reserved)
Jun 04 22:45:57 AlexArch kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Jun 04 22:45:57 AlexArch kernel: Kernel/User page tables isolation: enabled
Jun 04 22:45:57 AlexArch kernel: ftrace: allocating 47292 entries in 185 pages
Jun 04 22:45:57 AlexArch kernel: ftrace: allocated 185 pages with 5 groups
Jun 04 22:45:57 AlexArch kernel: Dynamic Preempt: full
Jun 04 22:45:57 AlexArch kernel: rcu: Preemptible hierarchical RCU implementation.
Jun 04 22:45:57 AlexArch kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=4.
Jun 04 22:45:57 AlexArch kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
Jun 04 22:45:57 AlexArch kernel:         Trampoline variant of Tasks RCU enabled.
Jun 04 22:45:57 AlexArch kernel:         Rude variant of Tasks RCU enabled.
Jun 04 22:45:57 AlexArch kernel:         Tracing variant of Tasks RCU enabled.
Jun 04 22:45:57 AlexArch kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
Jun 04 22:45:57 AlexArch kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
Jun 04 22:45:57 AlexArch kernel: NR_IRQS: 20736, nr_irqs: 456, preallocated irqs: 16
Jun 04 22:45:57 AlexArch kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
Jun 04 22:45:57 AlexArch kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
Jun 04 22:45:57 AlexArch kernel: Console: colour dummy device 80x25
Jun 04 22:45:57 AlexArch kernel: printk: console [tty0] enabled
Jun 04 22:45:57 AlexArch kernel: ACPI: Core revision 20221020
Jun 04 22:45:57 AlexArch kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
Jun 04 22:45:57 AlexArch kernel: APIC: Switch to symmetric I/O mode setup
Jun 04 22:45:57 AlexArch kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jun 04 22:45:57 AlexArch kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x209796ce0a4, max_idle_ns: 440795215355 ns
Jun 04 22:45:57 AlexArch kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4523.58 BogoMIPS (lpj=7536933)
Jun 04 22:45:57 AlexArch kernel: pid_max: default: 32768 minimum: 301
Jun 04 22:45:57 AlexArch kernel: LSM: initializing lsm=capability,landlock,lockdown,yama,integrity,bpf
Jun 04 22:45:57 AlexArch kernel: landlock: Up and running.
Jun 04 22:45:57 AlexArch kernel: Yama: becoming mindful.
Jun 04 22:45:57 AlexArch kernel: LSM support for eBPF active
Jun 04 22:45:57 AlexArch kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Jun 04 22:45:57 AlexArch kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Jun 04 22:45:57 AlexArch kernel: Disabled fast string operations
Jun 04 22:45:57 AlexArch kernel: x86/cpu: VMX (outside TXT) disabled by BIOS
Jun 04 22:45:57 AlexArch kernel: CPU0: Thermal monitoring enabled (TM2)
Jun 04 22:45:57 AlexArch kernel: process: using mwait in idle threads
Jun 04 22:45:57 AlexArch kernel: Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
Jun 04 22:45:57 AlexArch kernel: Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32, 1GB 0
Jun 04 22:45:57 AlexArch kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Jun 04 22:45:57 AlexArch kernel: Spectre V2 : Mitigation: Retpolines
Jun 04 22:45:57 AlexArch kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Jun 04 22:45:57 AlexArch kernel: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
Jun 04 22:45:57 AlexArch kernel: Speculative Store Bypass: Vulnerable
Jun 04 22:45:57 AlexArch kernel: MDS: Vulnerable: Clear CPU buffers attempted, no microcode
Jun 04 22:45:57 AlexArch kernel: MMIO Stale Data: Unknown: No mitigations
Jun 04 22:45:57 AlexArch kernel: Freeing SMP alternatives memory: 40K
Jun 04 22:45:57 AlexArch kernel: smpboot: CPU0: Intel(R) Core(TM)2 Duo CPU     P8400  @ 2.26GHz (family: 0x6, model: 0x17, stepping: 0x6)
Jun 04 22:45:57 AlexArch kernel: cblist_init_generic: Setting adjustable number of callback queues.
Jun 04 22:45:57 AlexArch kernel: cblist_init_generic: Setting shift to 2 and lim to 1.
Jun 04 22:45:57 AlexArch kernel: cblist_init_generic: Setting shift to 2 and lim to 1.
Jun 04 22:45:57 AlexArch kernel: cblist_init_generic: Setting shift to 2 and lim to 1.
Jun 04 22:45:57 AlexArch kernel: Performance Events: PEBS fmt0+, Core2 events, 4-deep LBR, Intel PMU driver.
Jun 04 22:45:57 AlexArch kernel: ... version:                2
Jun 04 22:45:57 AlexArch kernel: ... bit width:              40
Jun 04 22:45:57 AlexArch kernel: ... generic registers:      2
Jun 04 22:45:57 AlexArch kernel: ... value mask:             000000ffffffffff
Jun 04 22:45:57 AlexArch kernel: ... max period:             000000007fffffff
Jun 04 22:45:57 AlexArch kernel: ... fixed-purpose events:   3
Jun 04 22:45:57 AlexArch kernel: ... event mask:             0000000700000003
Jun 04 22:45:57 AlexArch kernel: rcu: Hierarchical SRCU implementation.
Jun 04 22:45:57 AlexArch kernel: rcu:         Max phase no-delay instances is 1000.
Jun 04 22:45:57 AlexArch kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Jun 04 22:45:57 AlexArch kernel: smp: Bringing up secondary CPUs ...
Jun 04 22:45:57 AlexArch kernel: x86: Booting SMP configuration:
Jun 04 22:45:57 AlexArch kernel: .... node  #0, CPUs:      #1
Jun 04 22:45:57 AlexArch kernel: Disabled fast string operations
Jun 04 22:45:57 AlexArch kernel: smp: Brought up 1 node, 2 CPUs
Jun 04 22:45:57 AlexArch kernel: smpboot: Max logical packages: 2
Jun 04 22:45:57 AlexArch kernel: smpboot: Total of 2 processors activated (9047.16 BogoMIPS)
Jun 04 22:45:57 AlexArch kernel: devtmpfs: initialized
Jun 04 22:45:57 AlexArch kernel: x86/mm: Memory block size: 128MB
Jun 04 22:45:57 AlexArch kernel: ACPI: PM: Registering ACPI NVS region [mem 0xbd8c7000-0xbd8d1fff] (45056 bytes)
Jun 04 22:45:57 AlexArch kernel: ACPI: PM: Registering ACPI NVS region [mem 0xbd8d9000-0xbd8dcfff] (16384 bytes)
Jun 04 22:45:57 AlexArch kernel: ACPI: PM: Registering ACPI NVS region [mem 0xbd8e0000-0xbd906fff] (159744 bytes)
Jun 04 22:45:57 AlexArch kernel: ACPI: PM: Registering ACPI NVS region [mem 0xbdb0f000-0xbdb9efff] (589824 bytes)
Jun 04 22:45:57 AlexArch kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
Jun 04 22:45:57 AlexArch kernel: futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
Jun 04 22:45:57 AlexArch kernel: pinctrl core: initialized pinctrl subsystem
Jun 04 22:45:57 AlexArch kernel: PM: RTC time: 20:45:49, date: 2023-06-04
Jun 04 22:45:57 AlexArch kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Jun 04 22:45:57 AlexArch kernel: DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
Jun 04 22:45:57 AlexArch kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Jun 04 22:45:57 AlexArch kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Jun 04 22:45:57 AlexArch kernel: audit: initializing netlink subsys (disabled)
Jun 04 22:45:57 AlexArch kernel: audit: type=2000 audit(1685911548.216:1): state=initialized audit_enabled=0 res=1
Jun 04 22:45:57 AlexArch kernel: thermal_sys: Registered thermal governor 'fair_share'
Jun 04 22:45:57 AlexArch kernel: thermal_sys: Registered thermal governor 'bang_bang'
Jun 04 22:45:57 AlexArch kernel: thermal_sys: Registered thermal governor 'step_wise'
Jun 04 22:45:57 AlexArch kernel: thermal_sys: Registered thermal governor 'user_space'
Jun 04 22:45:57 AlexArch kernel: thermal_sys: Registered thermal governor 'power_allocator'
Jun 04 22:45:57 AlexArch kernel: cpuidle: using governor ladder
Jun 04 22:45:57 AlexArch kernel: cpuidle: using governor menu
Jun 04 22:45:57 AlexArch kernel: Simple Boot Flag at 0x35 set to 0x80
Jun 04 22:45:57 AlexArch kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Jun 04 22:45:57 AlexArch kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jun 04 22:45:57 AlexArch kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
Jun 04 22:45:57 AlexArch kernel: PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved as E820 entry
Jun 04 22:45:57 AlexArch kernel: PCI: Using configuration type 1 for base access
Jun 04 22:45:57 AlexArch kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
Jun 04 22:45:57 AlexArch kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
Jun 04 22:45:57 AlexArch kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
Jun 04 22:45:57 AlexArch kernel: ACPI: Added _OSI(Module Device)
Jun 04 22:45:57 AlexArch kernel: ACPI: Added _OSI(Processor Device)
Jun 04 22:45:57 AlexArch kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jun 04 22:45:57 AlexArch kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jun 04 22:45:57 AlexArch kernel: ACPI: 6 ACPI AML tables successfully acquired and loaded
Jun 04 22:45:57 AlexArch kernel: ACPI: EC: EC started
Jun 04 22:45:57 AlexArch kernel: ACPI: EC: interrupt blocked
Jun 04 22:45:57 AlexArch kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Jun 04 22:45:57 AlexArch kernel: ACPI: EC: Boot ECDT EC used to handle transactions
Jun 04 22:45:57 AlexArch kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Jun 04 22:45:57 AlexArch kernel: ACPI: Dynamic OEM Table Load:
Jun 04 22:45:57 AlexArch kernel: ACPI: SSDT 0xFFFF93CD80B83400 0002C8 (v01 PmRef  Cpu0Ist  00003000 INTL 20050624)
Jun 04 22:45:57 AlexArch kernel: ACPI: Dynamic OEM Table Load:
Jun 04 22:45:57 AlexArch kernel: ACPI: SSDT 0xFFFF93CD80321000 00087A (v01 PmRef  Cpu0Cst  00003001 INTL 20050624)
Jun 04 22:45:57 AlexArch kernel: ACPI: Dynamic OEM Table Load:
Jun 04 22:45:57 AlexArch kernel: ACPI: SSDT 0xFFFF93CD808F8C00 0001CF (v01 PmRef  ApIst    00003000 INTL 20050624)
Jun 04 22:45:57 AlexArch kernel: ACPI: Dynamic OEM Table Load:
Jun 04 22:45:57 AlexArch kernel: ACPI: SSDT 0xFFFF93CD80B729C0 00008D (v01 PmRef  ApCst    00003000 INTL 20050624)
Jun 04 22:45:57 AlexArch kernel: ACPI: Interpreter enabled
Jun 04 22:45:57 AlexArch kernel: ACPI: PM: (supports S0 S3 S4 S5)
Jun 04 22:45:57 AlexArch kernel: ACPI: Using IOAPIC for interrupt routing
Jun 04 22:45:57 AlexArch kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jun 04 22:45:57 AlexArch kernel: PCI: Using E820 reservations for host bridge windows
Jun 04 22:45:57 AlexArch kernel: ACPI: Enabled 5 GPEs in block 00 to 3F
Jun 04 22:45:57 AlexArch kernel: ACPI: \_SB_.PCI0.LPC_.EC__.PUBS: New power resource
Jun 04 22:45:57 AlexArch kernel: acpi PNP0C0A:01: ACPI dock station (docks/bays count: 1)
Jun 04 22:45:57 AlexArch kernel: acpi LNXIOBAY:00: ACPI dock station (docks/bays count: 2)
Jun 04 22:45:57 AlexArch kernel: acpi IBM0079:00: ACPI dock station (docks/bays count: 3)
Jun 04 22:45:57 AlexArch kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 11
Jun 04 22:45:57 AlexArch kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 11
Jun 04 22:45:57 AlexArch kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 11
Jun 04 22:45:57 AlexArch kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 11
Jun 04 22:45:57 AlexArch kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 11
Jun 04 22:45:57 AlexArch kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 11
Jun 04 22:45:57 AlexArch kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 11
Jun 04 22:45:57 AlexArch kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 11
Jun 04 22:45:57 AlexArch kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Jun 04 22:45:57 AlexArch kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Jun 04 22:45:57 AlexArch kernel: acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR DPC]
Jun 04 22:45:57 AlexArch kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
Jun 04 22:45:57 AlexArch kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
Jun 04 22:45:57 AlexArch kernel: acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
Jun 04 22:45:57 AlexArch kernel: PCI host bridge to bus 0000:00
Jun 04 22:45:57 AlexArch kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Jun 04 22:45:57 AlexArch kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Jun 04 22:45:57 AlexArch kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Jun 04 22:45:57 AlexArch kernel: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000dbfff window]
Jun 04 22:45:57 AlexArch kernel: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]
Jun 04 22:45:57 AlexArch kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:00.0: [8086:2a40] type 00 class 0x060000
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:00.0: DMAR: Disabling IOMMU for graphics on this chipset
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:00.0: DMAR: Forcing write-buffer flush capability
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:02.0: [8086:2a42] type 00 class 0x030000
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:02.0: reg 0x10: [mem 0xf4400000-0xf47fffff 64bit]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff 64bit pref]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:02.0: reg 0x20: [io  0x1800-0x1807]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:02.1: [8086:2a43] type 00 class 0x038000
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:02.1: reg 0x10: [mem 0xf4200000-0xf42fffff 64bit]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:03.0: [8086:2a44] type 00 class 0x078000
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:03.0: reg 0x10: [mem 0xfc226800-0xfc22680f 64bit]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:03.2: [8086:2a46] type 00 class 0x010185
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:03.2: reg 0x10: [io  0x1828-0x182f]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:03.2: reg 0x14: [io  0x180c-0x180f]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:03.2: reg 0x18: [io  0x1820-0x1827]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:03.2: reg 0x1c: [io  0x1808-0x180b]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:03.2: reg 0x20: [io  0x1810-0x181f]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:03.3: [8086:2a47] type 00 class 0x070002
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:03.3: reg 0x10: [io  0x1830-0x1837]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:03.3: reg 0x14: [mem 0xfc024000-0xfc024fff]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:19.0: [8086:10f5] type 00 class 0x020000
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:19.0: reg 0x10: [mem 0xfc000000-0xfc01ffff]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:19.0: reg 0x14: [mem 0xfc025000-0xfc025fff]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:19.0: reg 0x18: [io  0x1840-0x185f]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1a.0: [8086:2937] type 00 class 0x0c0300
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1a.0: reg 0x20: [io  0x1860-0x187f]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1a.1: [8086:2938] type 00 class 0x0c0300
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1a.1: reg 0x20: [io  0x1880-0x189f]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1a.2: [8086:2939] type 00 class 0x0c0300
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1a.2: reg 0x20: [io  0x18a0-0x18bf]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1a.7: [8086:293c] type 00 class 0x0c0320
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1a.7: reg 0x10: [mem 0xfc226c00-0xfc226fff]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xfc020000-0xfc023fff 64bit]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1c.0: [8086:2940] type 01 class 0x060400
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1c.1: [8086:2942] type 01 class 0x060400
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1c.3: [8086:2946] type 01 class 0x060400
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1c.4: [8086:2948] type 01 class 0x060400
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1d.0: reg 0x20: [io  0x18c0-0x18df]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1d.1: reg 0x20: [io  0x18e0-0x18ff]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1d.2: reg 0x20: [io  0x1c00-0x1c1f]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1d.7: reg 0x10: [mem 0xfc227000-0xfc2273ff]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1f.0: [8086:2917] type 00 class 0x060100
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1f.2: [8086:2929] type 00 class 0x010601
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1f.2: reg 0x10: [io  0x1c48-0x1c4f]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1f.2: reg 0x14: [io  0x183c-0x183f]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1f.2: reg 0x18: [io  0x1c40-0x1c47]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1f.2: reg 0x1c: [io  0x1838-0x183b]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1f.2: reg 0x20: [io  0x1c20-0x1c3f]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xfc226000-0xfc2267ff]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1f.2: PME# supported from D3hot
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xfc227400-0xfc2274ff 64bit]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1f.3: reg 0x20: [io  0x1c60-0x1c7f]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
Jun 04 22:45:57 AlexArch kernel: pci 0000:03:00.0: [8086:4236] type 00 class 0x028000
Jun 04 22:45:57 AlexArch kernel: pci 0000:03:00.0: reg 0x10: [mem 0xf4300000-0xf4301fff 64bit]
Jun 04 22:45:57 AlexArch kernel: pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1c.1:   bridge window [mem 0xf4300000-0xf43fffff]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1c.3: PCI bridge to [bus 05-0c]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1c.3:   bridge window [mem 0xf8000000-0xf9ffffff]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1c.3:   bridge window [mem 0xf4000000-0xf40fffff 64bit pref]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1c.4: PCI bridge to [bus 0d-14]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1c.4:   bridge window [io  0x3000-0x3fff]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1c.4:   bridge window [mem 0xfa000000-0xfbffffff]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1c.4:   bridge window [mem 0xf4100000-0xf41fffff 64bit pref]
Jun 04 22:45:57 AlexArch kernel: pci_bus 0000:15: extended config space not accessible
Jun 04 22:45:57 AlexArch kernel: pci 0000:15:00.0: proprietary Ricoh MMC controller disabled (via CardBus function)
Jun 04 22:45:57 AlexArch kernel: pci 0000:15:00.0: MMC cards are now supported by standard SDHCI controller
Jun 04 22:45:57 AlexArch kernel: pci 0000:15:00.0: [1180:0476] type 02 class 0x060700
Jun 04 22:45:57 AlexArch kernel: pci 0000:15:00.0: reg 0x10: [mem 0xf4800000-0xf4800fff]
Jun 04 22:45:57 AlexArch kernel: pci 0000:15:00.0: supports D1 D2
Jun 04 22:45:57 AlexArch kernel: pci 0000:15:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Jun 04 22:45:57 AlexArch kernel: pci 0000:15:00.1: [1180:0832] type 00 class 0x0c0010
Jun 04 22:45:57 AlexArch kernel: pci 0000:15:00.1: reg 0x10: [mem 0xf4801000-0xf48017ff]
Jun 04 22:45:57 AlexArch kernel: pci 0000:15:00.1: supports D1 D2
Jun 04 22:45:57 AlexArch kernel: pci 0000:15:00.1: PME# supported from D0 D1 D2 D3hot D3cold
Jun 04 22:45:57 AlexArch kernel: pci 0000:15:00.2: [1180:0822] type 00 class 0x080500
Jun 04 22:45:57 AlexArch kernel: pci 0000:15:00.2: reg 0x10: [mem 0xf4801800-0xf48018ff]
Jun 04 22:45:57 AlexArch kernel: pci 0000:15:00.2: supports D1 D2
Jun 04 22:45:57 AlexArch kernel: pci 0000:15:00.2: PME# supported from D0 D1 D2 D3hot D3cold
Jun 04 22:45:57 AlexArch kernel: pci 0000:15:00.4: [1180:0592] type 00 class 0x088000
Jun 04 22:45:57 AlexArch kernel: pci 0000:15:00.4: reg 0x10: [mem 0xf4802000-0xf48020ff]
Jun 04 22:45:57 AlexArch kernel: pci 0000:15:00.4: supports D1 D2
Jun 04 22:45:57 AlexArch kernel: pci 0000:15:00.4: PME# supported from D0 D1 D2 D3hot D3cold
Jun 04 22:45:57 AlexArch kernel: pci 0000:15:00.5: [1180:0852] type 00 class 0x088000
Jun 04 22:45:57 AlexArch kernel: pci 0000:15:00.5: reg 0x10: [mem 0xf4802400-0xf48024ff]
Jun 04 22:45:57 AlexArch kernel: pci 0000:15:00.5: supports D1 D2
Jun 04 22:45:57 AlexArch kernel: pci 0000:15:00.5: PME# supported from D0 D1 D2 D3hot D3cold
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1e.0: PCI bridge to [bus 15-18] (subtractive decode)
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1e.0:   bridge window [io  0x4000-0x7fff]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1e.0:   bridge window [mem 0xf4800000-0xf7ffffff]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1e.0:   bridge window [mem 0xf0000000-0xf3ffffff 64bit pref]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1e.0:   bridge window [mem 0x000d4000-0x000dbfff window] (subtractive decode)
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:1e.0:   bridge window [mem 0xc0000000-0xfebfffff window] (subtractive decode)
Jun 04 22:45:57 AlexArch kernel: pci_bus 0000:16: extended config space not accessible
Jun 04 22:45:57 AlexArch kernel: pci_bus 0000:16: busn_res: [bus 16-18] end is updated to 17
Jun 04 22:45:57 AlexArch kernel: ACPI: EC: interrupt unblocked
Jun 04 22:45:57 AlexArch kernel: ACPI: EC: event unblocked
Jun 04 22:45:57 AlexArch kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Jun 04 22:45:57 AlexArch kernel: ACPI: EC: GPE=0x11
Jun 04 22:45:57 AlexArch kernel: ACPI: \_SB_.PCI0.LPC_.EC__: Boot ECDT EC initialization complete
Jun 04 22:45:57 AlexArch kernel: ACPI: \_SB_.PCI0.LPC_.EC__: EC: Used to handle transactions and events
Jun 04 22:45:57 AlexArch kernel: iommu: Default domain type: Translated 
Jun 04 22:45:57 AlexArch kernel: iommu: DMA domain TLB invalidation policy: lazy mode 
Jun 04 22:45:57 AlexArch kernel: SCSI subsystem initialized
Jun 04 22:45:57 AlexArch kernel: libata version 3.00 loaded.
Jun 04 22:45:57 AlexArch kernel: ACPI: bus type USB registered
Jun 04 22:45:57 AlexArch kernel: usbcore: registered new interface driver usbfs
Jun 04 22:45:57 AlexArch kernel: usbcore: registered new interface driver hub
Jun 04 22:45:57 AlexArch kernel: usbcore: registered new device driver usb
Jun 04 22:45:57 AlexArch kernel: pps_core: LinuxPPS API ver. 1 registered
Jun 04 22:45:57 AlexArch kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Jun 04 22:45:57 AlexArch kernel: PTP clock support registered
Jun 04 22:45:57 AlexArch kernel: EDAC MC: Ver: 3.0.0
Jun 04 22:45:57 AlexArch kernel: NetLabel: Initializing
Jun 04 22:45:57 AlexArch kernel: NetLabel:  domain hash size = 128
Jun 04 22:45:57 AlexArch kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Jun 04 22:45:57 AlexArch kernel: NetLabel:  unlabeled traffic allowed by default
Jun 04 22:45:57 AlexArch kernel: mctp: management component transport protocol core
Jun 04 22:45:57 AlexArch kernel: NET: Registered PF_MCTP protocol family
Jun 04 22:45:57 AlexArch kernel: PCI: Using ACPI for IRQ routing
Jun 04 22:45:57 AlexArch kernel: PCI: pci_cache_line_size set to 64 bytes
Jun 04 22:45:57 AlexArch kernel: e820: reserve RAM buffer [mem 0x0009ec00-0x0009ffff]
Jun 04 22:45:57 AlexArch kernel: e820: reserve RAM buffer [mem 0xbd6a1000-0xbfffffff]
Jun 04 22:45:57 AlexArch kernel: e820: reserve RAM buffer [mem 0xbd7b7000-0xbfffffff]
Jun 04 22:45:57 AlexArch kernel: e820: reserve RAM buffer [mem 0xbd8c7000-0xbfffffff]
Jun 04 22:45:57 AlexArch kernel: e820: reserve RAM buffer [mem 0xbdc00000-0xbfffffff]
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:02.0: vgaarb: bridge control possible
Jun 04 22:45:57 AlexArch kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Jun 04 22:45:57 AlexArch kernel: vgaarb: loaded
Jun 04 22:45:57 AlexArch kernel: hpet: 4 channels of 0 reserved for per-cpu timers
Jun 04 22:45:57 AlexArch kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
Jun 04 22:45:57 AlexArch kernel: hpet0: 4 comparators, 64-bit 14.318180 MHz counter
Jun 04 22:45:57 AlexArch kernel: clocksource: Switched to clocksource tsc-early
Jun 04 22:45:57 AlexArch kernel: VFS: Disk quotas dquot_6.6.0
Jun 04 22:45:57 AlexArch kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jun 04 22:45:57 AlexArch kernel: pnp: PnP ACPI init
Jun 04 22:45:57 AlexArch kernel: pnp 00:00: disabling [mem 0x000c0000-0x000c3fff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
Jun 04 22:45:57 AlexArch kernel: pnp 00:00: disabling [mem 0x000c4000-0x000c7fff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
Jun 04 22:45:57 AlexArch kernel: pnp 00:00: disabling [mem 0x000c8000-0x000cbfff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
Jun 04 22:45:57 AlexArch kernel: pnp 00:00: disabling [mem 0x000cc000-0x000cffff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
Jun 04 22:45:57 AlexArch kernel: pnp 00:00: disabling [mem 0x000d0000-0x000d3fff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
Jun 04 22:45:57 AlexArch kernel: pnp 00:00: disabling [mem 0x000dc000-0x000dffff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
Jun 04 22:45:57 AlexArch kernel: system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
Jun 04 22:45:57 AlexArch kernel: system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved
Jun 04 22:45:57 AlexArch kernel: system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved
Jun 04 22:45:57 AlexArch kernel: system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved
Jun 04 22:45:57 AlexArch kernel: system 00:00: [mem 0x000ec000-0x000effff] could not be reserved
Jun 04 22:45:57 AlexArch kernel: system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
Jun 04 22:45:57 AlexArch kernel: system 00:00: [mem 0x00100000-0xbfffffff] could not be reserved
Jun 04 22:45:57 AlexArch kernel: system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
Jun 04 22:45:57 AlexArch kernel: system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved
Jun 04 22:45:57 AlexArch kernel: system 00:01: [io  0x164e-0x164f] has been reserved
Jun 04 22:45:57 AlexArch kernel: system 00:01: [io  0x1000-0x107f] has been reserved
Jun 04 22:45:57 AlexArch kernel: system 00:01: [io  0x1180-0x11ff] has been reserved
Jun 04 22:45:57 AlexArch kernel: system 00:01: [io  0x0800-0x080f] has been reserved
Jun 04 22:45:57 AlexArch kernel: system 00:01: [io  0x15e0-0x15ef] has been reserved
Jun 04 22:45:57 AlexArch kernel: system 00:01: [io  0x1600-0x1641] has been reserved
Jun 04 22:45:57 AlexArch kernel: system 00:01: [io  0x1600-0x161b] has been reserved
Jun 04 22:45:57 AlexArch kernel: system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
Jun 04 22:45:57 AlexArch kernel: system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
Jun 04 22:45:57 AlexArch kernel: system 00:01: [mem 0xfed10000-0xfed13fff] has been reserved
Jun 04 22:45:57 AlexArch kernel: system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
Jun 04 22:45:57 AlexArch kernel: system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
Jun 04 22:45:57 AlexArch kernel: system 00:01: [mem 0xfed45000-0xfed4bfff] has been reserved
Jun 04 22:45:57 AlexArch kernel: pnp: PnP ACPI: found 6 devices
Jun 04 22:45:57 AlexArch kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Jun 04 22:45:57 AlexArch kernel: NET: Registered PF_INET protocol family
Jun 04 22:45:57 AlexArch kernel: IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Jun 04 22:45:57 AlexArch kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
Jun 04 22:45:57 AlexArch kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
Jun 04 22:45:57 AlexArch kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
Jun 04 22:45:57 AlexArch kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
Jun 04 22:45:57 AlexArch kernel: TCP: Hash tables configured (established 65536 bind 65536)
Jun 04 22:45:57 AlexArch kernel: MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
Jun 04 22:45:58 AlexArch kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
Jun 04 22:45:58 AlexArch kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
Jun 04 22:45:58 AlexArch kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Jun 04 22:45:58 AlexArch kernel: NET: Registered PF_XDP protocol family
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 02] add_size 200000 add_align 100000
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.1: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.0: BAR 14: assigned [mem 0xc0000000-0xc01fffff]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.0: BAR 15: assigned [mem 0xc0200000-0xc03fffff 64bit pref]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.1: BAR 15: assigned [mem 0xc0400000-0xc05fffff 64bit pref]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.0: BAR 13: assigned [io  0x8000-0x8fff]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.1: BAR 13: assigned [io  0x9000-0x9fff]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.0:   bridge window [io  0x8000-0x8fff]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.0:   bridge window [mem 0xc0000000-0xc01fffff]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.0:   bridge window [mem 0xc0200000-0xc03fffff 64bit pref]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.1:   bridge window [io  0x9000-0x9fff]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.1:   bridge window [mem 0xf4300000-0xf43fffff]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.1:   bridge window [mem 0xc0400000-0xc05fffff 64bit pref]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.3: PCI bridge to [bus 05-0c]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.3:   bridge window [mem 0xf8000000-0xf9ffffff]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.3:   bridge window [mem 0xf4000000-0xf40fffff 64bit pref]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.4: PCI bridge to [bus 0d-14]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.4:   bridge window [io  0x3000-0x3fff]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.4:   bridge window [mem 0xfa000000-0xfbffffff]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1c.4:   bridge window [mem 0xf4100000-0xf41fffff 64bit pref]
Jun 04 22:45:58 AlexArch kernel: pci 0000:15:00.0: BAR 15: assigned [mem 0xf0000000-0xf3ffffff pref]
Jun 04 22:45:58 AlexArch kernel: pci 0000:15:00.0: BAR 16: assigned [mem 0xc4000000-0xc7ffffff]
Jun 04 22:45:58 AlexArch kernel: pci 0000:15:00.0: BAR 13: assigned [io  0x4000-0x40ff]
Jun 04 22:45:58 AlexArch kernel: pci 0000:15:00.0: BAR 14: assigned [io  0x4400-0x44ff]
Jun 04 22:45:58 AlexArch kernel: pci 0000:15:00.0: CardBus bridge to [bus 16-17]
Jun 04 22:45:58 AlexArch kernel: pci 0000:15:00.0:   bridge window [io  0x4000-0x40ff]
Jun 04 22:45:58 AlexArch kernel: pci 0000:15:00.0:   bridge window [io  0x4400-0x44ff]
Jun 04 22:45:58 AlexArch kernel: pci 0000:15:00.0:   bridge window [mem 0xf0000000-0xf3ffffff pref]
Jun 04 22:45:58 AlexArch kernel: pci 0000:15:00.0:   bridge window [mem 0xc4000000-0xc7ffffff]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1e.0: PCI bridge to [bus 15-18]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1e.0:   bridge window [io  0x4000-0x7fff]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1e.0:   bridge window [mem 0xf4800000-0xf7ffffff]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1e.0:   bridge window [mem 0xf0000000-0xf3ffffff 64bit pref]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000dbfff window]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:00: resource 8 [mem 0xc0000000-0xfebfffff window]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:02: resource 0 [io  0x8000-0x8fff]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:02: resource 1 [mem 0xc0000000-0xc01fffff]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:02: resource 2 [mem 0xc0200000-0xc03fffff 64bit pref]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:03: resource 0 [io  0x9000-0x9fff]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:03: resource 1 [mem 0xf4300000-0xf43fffff]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:03: resource 2 [mem 0xc0400000-0xc05fffff 64bit pref]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:05: resource 0 [io  0x2000-0x2fff]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:05: resource 1 [mem 0xf8000000-0xf9ffffff]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:05: resource 2 [mem 0xf4000000-0xf40fffff 64bit pref]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:0d: resource 0 [io  0x3000-0x3fff]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:0d: resource 1 [mem 0xfa000000-0xfbffffff]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:0d: resource 2 [mem 0xf4100000-0xf41fffff 64bit pref]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:15: resource 0 [io  0x4000-0x7fff]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:15: resource 1 [mem 0xf4800000-0xf7ffffff]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:15: resource 2 [mem 0xf0000000-0xf3ffffff 64bit pref]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:15: resource 4 [io  0x0000-0x0cf7 window]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:15: resource 5 [io  0x0d00-0xffff window]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:15: resource 6 [mem 0x000a0000-0x000bffff window]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:15: resource 7 [mem 0x000d4000-0x000dbfff window]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:15: resource 8 [mem 0xc0000000-0xfebfffff window]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:16: resource 0 [io  0x4000-0x40ff]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:16: resource 1 [io  0x4400-0x44ff]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:16: resource 2 [mem 0xf0000000-0xf3ffffff pref]
Jun 04 22:45:58 AlexArch kernel: pci_bus 0000:16: resource 3 [mem 0xc4000000-0xc7ffffff]
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1a.0: Refused to change power state from D1 to D0
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1a.2: Refused to change power state from D1 to D0
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:1d.0: Refused to change power state from D1 to D0
Jun 04 22:45:58 AlexArch kernel: PCI: CLS 64 bytes, default 64
Jun 04 22:45:58 AlexArch kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Jun 04 22:45:58 AlexArch kernel: software IO TLB: mapped [mem 0x00000000b96a1000-0x00000000bd6a1000] (64MB)
Jun 04 22:45:58 AlexArch kernel: Trying to unpack rootfs image as initramfs...
Jun 04 22:45:58 AlexArch kernel: Initialise system trusted keyrings
Jun 04 22:45:58 AlexArch kernel: Key type blacklist registered
Jun 04 22:45:58 AlexArch kernel: workingset: timestamp_bits=41 max_order=21 bucket_order=0
Jun 04 22:45:58 AlexArch kernel: zbud: loaded
Jun 04 22:45:58 AlexArch kernel: integrity: Platform Keyring initialized
Jun 04 22:45:58 AlexArch kernel: integrity: Machine keyring initialized
Jun 04 22:45:58 AlexArch kernel: Key type asymmetric registered
Jun 04 22:45:58 AlexArch kernel: Asymmetric key parser 'x509' registered
Jun 04 22:45:58 AlexArch kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
Jun 04 22:45:58 AlexArch kernel: io scheduler mq-deadline registered
Jun 04 22:45:58 AlexArch kernel: io scheduler kyber registered
Jun 04 22:45:58 AlexArch kernel: io scheduler bfq registered
Jun 04 22:45:58 AlexArch kernel: pcieport 0000:00:1c.0: PME: Signaling with IRQ 24
Jun 04 22:45:58 AlexArch kernel: pcieport 0000:00:1c.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
Jun 04 22:45:58 AlexArch kernel: pcieport 0000:00:1c.1: PME: Signaling with IRQ 25
Jun 04 22:45:58 AlexArch kernel: pcieport 0000:00:1c.1: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
Jun 04 22:45:58 AlexArch kernel: pcieport 0000:00:1c.3: PME: Signaling with IRQ 26
Jun 04 22:45:58 AlexArch kernel: pcieport 0000:00:1c.3: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
Jun 04 22:45:58 AlexArch kernel: pcieport 0000:00:1c.4: PME: Signaling with IRQ 27
Jun 04 22:45:58 AlexArch kernel: pcieport 0000:00:1c.4: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
Jun 04 22:45:58 AlexArch kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jun 04 22:45:58 AlexArch kernel: Monitor-Mwait will be used to enter C-1 state
Jun 04 22:45:58 AlexArch kernel: Monitor-Mwait will be used to enter C-2 state
Jun 04 22:45:58 AlexArch kernel: Monitor-Mwait will be used to enter C-3 state
Jun 04 22:45:58 AlexArch kernel: ACPI: \_PR_.CPU0: Found 3 idle states
Jun 04 22:45:58 AlexArch kernel: ACPI: AC: AC Adapter [AC] (off-line)
Jun 04 22:45:58 AlexArch kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
Jun 04 22:45:58 AlexArch kernel: ACPI: button: Lid Switch [LID]
Jun 04 22:45:58 AlexArch kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
Jun 04 22:45:58 AlexArch kernel: ACPI: button: Sleep Button [SLPB]
Jun 04 22:45:58 AlexArch kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
Jun 04 22:45:58 AlexArch kernel: ACPI: button: Power Button [PWRF]
Jun 04 22:45:58 AlexArch kernel: thermal LNXTHERM:00: registered as thermal_zone0
Jun 04 22:45:58 AlexArch kernel: ACPI: thermal: Thermal Zone [THM0] (42 C)
Jun 04 22:45:58 AlexArch kernel: thermal LNXTHERM:01: registered as thermal_zone1
Jun 04 22:45:58 AlexArch kernel: ACPI: thermal: Thermal Zone [THM1] (38 C)
Jun 04 22:45:58 AlexArch kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Jun 04 22:45:58 AlexArch kernel: ACPI: battery: Slot [BAT0] (battery present)
Jun 04 22:45:58 AlexArch kernel: 0000:00:03.3: ttyS4 at I/O 0x1830 (irq = 17, base_baud = 115200) is a 16550A
Jun 04 22:45:58 AlexArch kernel: Non-volatile memory driver v1.3
Jun 04 22:45:58 AlexArch kernel: Linux agpgart interface v0.103
Jun 04 22:45:58 AlexArch kernel: tpm_tis 00:05: 1.2 TPM (device-id 0x1020, rev-id 6)
Jun 04 22:45:58 AlexArch kernel: random: crng init done
Jun 04 22:45:58 AlexArch kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
Jun 04 22:45:58 AlexArch kernel: ACPI: bus type drm_connector registered
Jun 04 22:45:58 AlexArch kernel: ahci 0000:00:1f.2: version 3.0
Jun 04 22:45:58 AlexArch kernel: ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
Jun 04 22:45:58 AlexArch kernel: ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x3 impl SATA mode
Jun 04 22:45:58 AlexArch kernel: ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ccc sxs 
Jun 04 22:45:58 AlexArch kernel: scsi host0: ahci
Jun 04 22:45:58 AlexArch kernel: scsi host1: ahci
Jun 04 22:45:58 AlexArch kernel: scsi host2: ahci
Jun 04 22:45:58 AlexArch kernel: scsi host3: ahci
Jun 04 22:45:58 AlexArch kernel: ata1: SATA max UDMA/133 abar m2048@0xfc226000 port 0xfc226100 irq 28
Jun 04 22:45:58 AlexArch kernel: ata2: SATA max UDMA/133 abar m2048@0xfc226000 port 0xfc226180 irq 28
Jun 04 22:45:58 AlexArch kernel: ata3: DUMMY
Jun 04 22:45:58 AlexArch kernel: ata4: DUMMY
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1a.0: Refused to change power state from D1 to D0
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1a.0: UHCI Host Controller
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1a.0: detected 2 ports
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1a.0: irq 20, io port 0x00001860
Jun 04 22:45:58 AlexArch kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.03
Jun 04 22:45:58 AlexArch kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 04 22:45:58 AlexArch kernel: usb usb1: Product: UHCI Host Controller
Jun 04 22:45:58 AlexArch kernel: usb usb1: Manufacturer: Linux 6.3.5-arch1-1 uhci_hcd
Jun 04 22:45:58 AlexArch kernel: usb usb1: SerialNumber: 0000:00:1a.0
Jun 04 22:45:58 AlexArch kernel: hub 1-0:1.0: USB hub found
Jun 04 22:45:58 AlexArch kernel: hub 1-0:1.0: 2 ports detected
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1a.1: UHCI Host Controller
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 2
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1a.1: detected 2 ports
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1a.1: irq 21, io port 0x00001880
Jun 04 22:45:58 AlexArch kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.03
Jun 04 22:45:58 AlexArch kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 04 22:45:58 AlexArch kernel: usb usb2: Product: UHCI Host Controller
Jun 04 22:45:58 AlexArch kernel: usb usb2: Manufacturer: Linux 6.3.5-arch1-1 uhci_hcd
Jun 04 22:45:58 AlexArch kernel: usb usb2: SerialNumber: 0000:00:1a.1
Jun 04 22:45:58 AlexArch kernel: hub 2-0:1.0: USB hub found
Jun 04 22:45:58 AlexArch kernel: hub 2-0:1.0: 2 ports detected
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1a.2: Refused to change power state from D1 to D0
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1a.2: UHCI Host Controller
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 3
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1a.2: detected 2 ports
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1a.2: irq 22, io port 0x000018a0
Jun 04 22:45:58 AlexArch kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.03
Jun 04 22:45:58 AlexArch kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 04 22:45:58 AlexArch kernel: usb usb3: Product: UHCI Host Controller
Jun 04 22:45:58 AlexArch kernel: usb usb3: Manufacturer: Linux 6.3.5-arch1-1 uhci_hcd
Jun 04 22:45:58 AlexArch kernel: usb usb3: SerialNumber: 0000:00:1a.2
Jun 04 22:45:58 AlexArch kernel: hub 3-0:1.0: USB hub found
Jun 04 22:45:58 AlexArch kernel: hub 3-0:1.0: 2 ports detected
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1d.0: Refused to change power state from D1 to D0
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1d.0: detected 2 ports
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1d.0: irq 16, io port 0x000018c0
Jun 04 22:45:58 AlexArch kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.03
Jun 04 22:45:58 AlexArch kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 04 22:45:58 AlexArch kernel: usb usb4: Product: UHCI Host Controller
Jun 04 22:45:58 AlexArch kernel: usb usb4: Manufacturer: Linux 6.3.5-arch1-1 uhci_hcd
Jun 04 22:45:58 AlexArch kernel: usb usb4: SerialNumber: 0000:00:1d.0
Jun 04 22:45:58 AlexArch kernel: hub 4-0:1.0: USB hub found
Jun 04 22:45:58 AlexArch kernel: hub 4-0:1.0: 2 ports detected
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 5
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1d.1: detected 2 ports
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1d.1: irq 17, io port 0x000018e0
Jun 04 22:45:58 AlexArch kernel: usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.03
Jun 04 22:45:58 AlexArch kernel: usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 04 22:45:58 AlexArch kernel: usb usb5: Product: UHCI Host Controller
Jun 04 22:45:58 AlexArch kernel: usb usb5: Manufacturer: Linux 6.3.5-arch1-1 uhci_hcd
Jun 04 22:45:58 AlexArch kernel: usb usb5: SerialNumber: 0000:00:1d.1
Jun 04 22:45:58 AlexArch kernel: hub 5-0:1.0: USB hub found
Jun 04 22:45:58 AlexArch kernel: hub 5-0:1.0: 2 ports detected
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 6
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1d.2: detected 2 ports
Jun 04 22:45:58 AlexArch kernel: uhci_hcd 0000:00:1d.2: irq 18, io port 0x00001c00
Jun 04 22:45:58 AlexArch kernel: usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.03
Jun 04 22:45:58 AlexArch kernel: usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 04 22:45:58 AlexArch kernel: usb usb6: Product: UHCI Host Controller
Jun 04 22:45:58 AlexArch kernel: usb usb6: Manufacturer: Linux 6.3.5-arch1-1 uhci_hcd
Jun 04 22:45:58 AlexArch kernel: usb usb6: SerialNumber: 0000:00:1d.2
Jun 04 22:45:58 AlexArch kernel: hub 6-0:1.0: USB hub found
Jun 04 22:45:58 AlexArch kernel: hub 6-0:1.0: 2 ports detected
Jun 04 22:45:58 AlexArch kernel: usbcore: registered new interface driver usbserial_generic
Jun 04 22:45:58 AlexArch kernel: usbserial: USB Serial support registered for generic
Jun 04 22:45:58 AlexArch kernel: rtc_cmos 00:02: RTC can wake from S4
Jun 04 22:45:58 AlexArch kernel: rtc_cmos 00:02: registered as rtc0
Jun 04 22:45:58 AlexArch kernel: rtc_cmos 00:02: setting system clock to 2023-06-04T20:45:49 UTC (1685911549)
Jun 04 22:45:58 AlexArch kernel: rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Jun 04 22:45:58 AlexArch kernel: intel_pstate: CPU model not supported
Jun 04 22:45:58 AlexArch kernel: ledtrig-cpu: registered to indicate activity on CPUs
Jun 04 22:45:58 AlexArch kernel: vesafb: mode is 1280x800x32, linelength=5120, pages=0
Jun 04 22:45:58 AlexArch kernel: vesafb: scrolling: redraw
Jun 04 22:45:58 AlexArch kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Jun 04 22:45:58 AlexArch kernel: vesafb: framebuffer at 0xd0000000, mapped to 0x000000009c772376, using 4032k, total 4032k
Jun 04 22:45:58 AlexArch kernel: fbcon: Deferring console take-over
Jun 04 22:45:58 AlexArch kernel: fb0: VESA VGA frame buffer device
Jun 04 22:45:58 AlexArch kernel: hid: raw HID events driver (C) Jiri Kosina
Jun 04 22:45:58 AlexArch kernel: drop_monitor: Initializing network drop monitor service
Jun 04 22:45:58 AlexArch kernel: ehci-pci 0000:00:1a.7: EHCI Host Controller
Jun 04 22:45:58 AlexArch kernel: ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 7
Jun 04 22:45:58 AlexArch kernel: ehci-pci 0000:00:1a.7: debug port 1
Jun 04 22:45:58 AlexArch kernel: ehci-pci 0000:00:1a.7: irq 23, io mem 0xfc226c00
Jun 04 22:45:58 AlexArch kernel: ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
Jun 04 22:45:58 AlexArch kernel: usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.03
Jun 04 22:45:58 AlexArch kernel: usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 04 22:45:58 AlexArch kernel: usb usb7: Product: EHCI Host Controller
Jun 04 22:45:58 AlexArch kernel: usb usb7: Manufacturer: Linux 6.3.5-arch1-1 ehci_hcd
Jun 04 22:45:58 AlexArch kernel: usb usb7: SerialNumber: 0000:00:1a.7
Jun 04 22:45:58 AlexArch kernel: hub 7-0:1.0: USB hub found
Jun 04 22:45:58 AlexArch kernel: hub 7-0:1.0: 6 ports detected
Jun 04 22:45:58 AlexArch kernel: Initializing XFRM netlink socket
Jun 04 22:45:58 AlexArch kernel: NET: Registered PF_INET6 protocol family
Jun 04 22:45:58 AlexArch kernel: hub 1-0:1.0: USB hub found
Jun 04 22:45:58 AlexArch kernel: hub 1-0:1.0: 2 ports detected
Jun 04 22:45:58 AlexArch kernel: hub 2-0:1.0: USB hub found
Jun 04 22:45:58 AlexArch kernel: hub 2-0:1.0: 2 ports detected
Jun 04 22:45:58 AlexArch kernel: hub 3-0:1.0: USB hub found
Jun 04 22:45:58 AlexArch kernel: hub 3-0:1.0: 2 ports detected
Jun 04 22:45:58 AlexArch kernel: Freeing initrd memory: 14056K
Jun 04 22:45:58 AlexArch kernel: ehci-pci 0000:00:1d.7: EHCI Host Controller
Jun 04 22:45:58 AlexArch kernel: ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 8
Jun 04 22:45:58 AlexArch kernel: ehci-pci 0000:00:1d.7: debug port 1
Jun 04 22:45:58 AlexArch kernel: ehci-pci 0000:00:1d.7: irq 19, io mem 0xfc227000
Jun 04 22:45:58 AlexArch kernel: Segment Routing with IPv6
Jun 04 22:45:58 AlexArch kernel: RPL Segment Routing with IPv6
Jun 04 22:45:58 AlexArch kernel: In-situ OAM (IOAM) with IPv6
Jun 04 22:45:58 AlexArch kernel: NET: Registered PF_PACKET protocol family
Jun 04 22:45:58 AlexArch kernel: microcode: Microcode Update Driver: v2.2.
Jun 04 22:45:58 AlexArch kernel: IPI shorthand broadcast: enabled
Jun 04 22:45:58 AlexArch kernel: sched_clock: Marking stable (1489888097, 1123637)->(1703033119, -212021385)
Jun 04 22:45:58 AlexArch kernel: registered taskstats version 1
Jun 04 22:45:58 AlexArch kernel: Loading compiled-in X.509 certificates
Jun 04 22:45:58 AlexArch kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 708d14cc5059e65191b3ff221a9bc4f4725df7c2'
Jun 04 22:45:58 AlexArch kernel: zswap: loaded using pool zstd/zsmalloc
Jun 04 22:45:58 AlexArch kernel: Key type .fscrypt registered
Jun 04 22:45:58 AlexArch kernel: Key type fscrypt-provisioning registered
Jun 04 22:45:58 AlexArch kernel: PM:   Magic number: 11:657:800
Jun 04 22:45:58 AlexArch kernel: RAS: Correctable Errors collector initialized.
Jun 04 22:45:58 AlexArch kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Jun 04 22:45:58 AlexArch kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0(SECURITY FREEZE LOCK) filtered out
Jun 04 22:45:58 AlexArch kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
Jun 04 22:45:58 AlexArch kernel: ata1.00: supports DRM functions and may not be fully accessible
Jun 04 22:45:58 AlexArch kernel: ata1.00: ATA-11: Samsung SSD 870 EVO 500GB, SVT02B6Q, max UDMA/133
Jun 04 22:45:58 AlexArch kernel: ata1.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 32), AA
Jun 04 22:45:58 AlexArch kernel: ata1.00: Features: Trust Dev-Sleep NCQ-sndrcv
Jun 04 22:45:58 AlexArch kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0(SECURITY FREEZE LOCK) filtered out
Jun 04 22:45:58 AlexArch kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
Jun 04 22:45:58 AlexArch kernel: ata1.00: supports DRM functions and may not be fully accessible
Jun 04 22:45:58 AlexArch kernel: ata1.00: configured for UDMA/133
Jun 04 22:45:58 AlexArch kernel: scsi 0:0:0:0: Direct-Access     ATA      Samsung SSD 870  2B6Q PQ: 0 ANSI: 5
Jun 04 22:45:58 AlexArch kernel: ata1.00: Enabling discard_zeroes_data
Jun 04 22:45:58 AlexArch kernel: sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
Jun 04 22:45:58 AlexArch kernel: sd 0:0:0:0: [sda] Write Protect is off
Jun 04 22:45:58 AlexArch kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Jun 04 22:45:58 AlexArch kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jun 04 22:45:58 AlexArch kernel: sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
Jun 04 22:45:58 AlexArch kernel: ata1.00: Enabling discard_zeroes_data
Jun 04 22:45:58 AlexArch kernel:  sda: sda1 sda2
Jun 04 22:45:58 AlexArch kernel: sd 0:0:0:0: [sda] supports TCG Opal
Jun 04 22:45:58 AlexArch kernel: sd 0:0:0:0: [sda] Attached SCSI disk
Jun 04 22:45:58 AlexArch kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Jun 04 22:45:58 AlexArch kernel: ata2.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
Jun 04 22:45:58 AlexArch kernel: ata2.00: ATAPI: Optiarc  DVD RW AD-7910S, 1.D0, max UDMA/100
Jun 04 22:45:58 AlexArch kernel: ata2.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
Jun 04 22:45:58 AlexArch kernel: ata2.00: configured for UDMA/100
Jun 04 22:45:58 AlexArch kernel: scsi 1:0:0:0: CD-ROM            Optiarc  DVD RW AD-7910S  1.D0 PQ: 0 ANSI: 5
Jun 04 22:45:58 AlexArch kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x209796ce0a4, max_idle_ns: 440795215355 ns
Jun 04 22:45:58 AlexArch kernel: clocksource: Switched to clocksource tsc
Jun 04 22:45:58 AlexArch kernel: ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Jun 04 22:45:58 AlexArch kernel: usb usb8: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.03
Jun 04 22:45:58 AlexArch kernel: usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 04 22:45:58 AlexArch kernel: usb usb8: Product: EHCI Host Controller
Jun 04 22:45:58 AlexArch kernel: usb usb8: Manufacturer: Linux 6.3.5-arch1-1 ehci_hcd
Jun 04 22:45:58 AlexArch kernel: usb usb8: SerialNumber: 0000:00:1d.7
Jun 04 22:45:58 AlexArch kernel: hub 8-0:1.0: USB hub found
Jun 04 22:45:58 AlexArch kernel: hub 8-0:1.0: 6 ports detected
Jun 04 22:45:58 AlexArch kernel: hub 4-0:1.0: USB hub found
Jun 04 22:45:58 AlexArch kernel: hub 4-0:1.0: 2 ports detected
Jun 04 22:45:58 AlexArch kernel: hub 5-0:1.0: USB hub found
Jun 04 22:45:58 AlexArch kernel: hub 5-0:1.0: 2 ports detected
Jun 04 22:45:58 AlexArch kernel: hub 6-0:1.0: USB hub found
Jun 04 22:45:58 AlexArch kernel: hub 6-0:1.0: 2 ports detected
Jun 04 22:45:58 AlexArch kernel: Freeing unused decrypted memory: 2036K
Jun 04 22:45:58 AlexArch kernel: Freeing unused kernel image (initmem) memory: 3324K
Jun 04 22:45:58 AlexArch kernel: Write protecting the kernel read-only data: 30720k
Jun 04 22:45:58 AlexArch kernel: Freeing unused kernel image (rodata/data gap) memory: 1680K
Jun 04 22:45:58 AlexArch kernel: usb 2-1: new full-speed USB device number 2 using uhci_hcd
Jun 04 22:45:58 AlexArch kernel: clocksource: timekeeping watchdog on CPU1: Marking clocksource 'tsc' as unstable because the skew is too large:
Jun 04 22:45:58 AlexArch kernel: clocksource:                       'hpet' wd_nsec: 45966206597 wd_now: 47becde8 wd_last: 20843232 mask: ffffffff
Jun 04 22:45:58 AlexArch kernel: clocksource:                       'tsc' cs_nsec: 506662205 cs_now: b5bd7216c cs_last: b178e9a9e mask: ffffffffffffffff
Jun 04 22:45:58 AlexArch kernel: clocksource:                       Clocksource 'tsc' skewed -45459544392 ns (18446744028250 ms) over watchdog 'hpet' interval of 45966206597 ns (45966 ms)
Jun 04 22:45:58 AlexArch kernel: clocksource:                       'tsc' is current clocksource.
Jun 04 22:45:58 AlexArch kernel: tsc: Marking TSC unstable due to clocksource watchdog
Jun 04 22:45:58 AlexArch kernel: TSC found unstable after boot, most likely due to broken BIOS. Use 'tsc=unstable'.
Jun 04 22:45:58 AlexArch kernel: sched_clock: Marking unstable (2503422080, 1123728)<-(2716567430, -212021385)
Jun 04 22:45:58 AlexArch kernel: clocksource: Checking clocksource tsc synchronization from CPU 1 to CPUs 0.
Jun 04 22:45:58 AlexArch kernel: clocksource: Switched to clocksource hpet
Jun 04 22:45:58 AlexArch kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jun 04 22:45:58 AlexArch kernel: rodata_test: all tests were successful
Jun 04 22:45:58 AlexArch kernel: x86/mm: Checking user space page tables
Jun 04 22:45:58 AlexArch kernel: usb 2-1: New USB device found, idVendor=08ff, idProduct=2810, bcdDevice=17.03
Jun 04 22:45:58 AlexArch kernel: usb 2-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
Jun 04 22:45:58 AlexArch kernel: usb 2-1: Product: Fingerprint Sensor
Jun 04 22:45:58 AlexArch kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jun 04 22:45:58 AlexArch kernel: Run /init as init process
Jun 04 22:45:58 AlexArch kernel:   with arguments:
Jun 04 22:45:58 AlexArch kernel:     /init
Jun 04 22:45:58 AlexArch kernel:   with environment:
Jun 04 22:45:58 AlexArch kernel:     HOME=/
Jun 04 22:45:58 AlexArch kernel:     TERM=linux
Jun 04 22:45:58 AlexArch kernel:     BOOT_IMAGE=/boot/vmlinuz-linux
Jun 04 22:45:58 AlexArch kernel: usb 2-2: new full-speed USB device number 3 using uhci_hcd
Jun 04 22:45:58 AlexArch kernel: usb 2-2: New USB device found, idVendor=0a5c, idProduct=2145, bcdDevice= 3.99
Jun 04 22:45:58 AlexArch kernel: usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun 04 22:45:58 AlexArch kernel: usb 2-2: Product: ThinkPad Bluetooth with Enhanced Data Rate II
Jun 04 22:45:58 AlexArch kernel: usb 2-2: Manufacturer: Lenovo Computer Corp
Jun 04 22:45:58 AlexArch kernel: i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
Jun 04 22:45:58 AlexArch kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Jun 04 22:45:58 AlexArch kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Jun 04 22:45:58 AlexArch kernel: scsi host4: ata_generic
Jun 04 22:45:58 AlexArch kernel: scsi host5: ata_generic
Jun 04 22:45:58 AlexArch kernel: ata5: PATA max UDMA/100 cmd 0x1828 ctl 0x180c bmdma 0x1810 irq 18
Jun 04 22:45:58 AlexArch kernel: ata6: PATA max UDMA/100 cmd 0x1820 ctl 0x1808 bmdma 0x1818 irq 18
Jun 04 22:45:58 AlexArch kernel: sdhci: Secure Digital Host Controller Interface driver
Jun 04 22:45:58 AlexArch kernel: sdhci: Copyright(c) Pierre Ossman
Jun 04 22:45:58 AlexArch kernel: sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
Jun 04 22:45:58 AlexArch kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
Jun 04 22:45:58 AlexArch kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
Jun 04 22:45:58 AlexArch kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
Jun 04 22:45:58 AlexArch kernel: sdhci-pci 0000:15:00.2: SDHCI controller found [1180:0822] (rev 21)
Jun 04 22:45:58 AlexArch kernel: sdhci-pci 0000:15:00.2: Will use DMA mode even though HW doesn't fully claim to support it.
Jun 04 22:45:58 AlexArch kernel: mmc0 bounce up to 128 segments into one, max segment size 65536 bytes
Jun 04 22:45:58 AlexArch kernel: thinkpad_acpi: ThinkPad ACPI Extras v0.26
Jun 04 22:45:58 AlexArch kernel: thinkpad_acpi: http://ibm-acpi.sf.net/
Jun 04 22:45:58 AlexArch kernel: thinkpad_acpi: ThinkPad BIOS 6FET50WW (1.20 ), EC 7VHT12WW-1.01
Jun 04 22:45:58 AlexArch kernel: thinkpad_acpi: Lenovo ThinkPad T500, model 22434EG
Jun 04 22:45:58 AlexArch kernel: sdhci-pci 0000:15:00.2: Will use DMA mode even though HW doesn't fully claim to support it.
Jun 04 22:45:58 AlexArch kernel: mmc0: SDHCI controller on PCI [0000:15:00.2] using DMA
Jun 04 22:45:58 AlexArch kernel: sdhci-pci 0000:15:00.2: Will use DMA mode even though HW doesn't fully claim to support it.
Jun 04 22:45:58 AlexArch kernel: firewire_ohci 0000:15:00.1: added OHCI v1.10 device as card 0, 4 IR + 4 IT contexts, quirks 0x11
Jun 04 22:45:58 AlexArch kernel: thinkpad_acpi: radio switch found; radios are enabled
Jun 04 22:45:58 AlexArch kernel: thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
Jun 04 22:45:58 AlexArch kernel: thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
Jun 04 22:45:58 AlexArch kernel: thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
Jun 04 22:45:58 AlexArch kernel: thinkpad_acpi: Standard ACPI backlight interface available, not loading native one
Jun 04 22:45:58 AlexArch kernel: thinkpad_acpi: secondary fan control detected & enabled
Jun 04 22:45:58 AlexArch kernel: thinkpad_acpi: battery 1 registered (start 0, stop 0, behaviours: 0x1)
Jun 04 22:45:58 AlexArch kernel: ACPI: battery: new extension: ThinkPad Battery Extension
Jun 04 22:45:58 AlexArch kernel: input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input5
Jun 04 22:45:58 AlexArch kernel: firewire_core 0000:15:00.1: created device fw0: GUID 00016c00006e952d, S400
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:00.0: Intel GM45 Chipset
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
Jun 04 22:45:58 AlexArch kernel: pci 0000:00:00.0: detected 32768K stolen memory
Jun 04 22:45:58 AlexArch kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
Jun 04 22:45:58 AlexArch kernel: ------------[ cut here ]------------
Jun 04 22:45:58 AlexArch kernel: WARNING: CPU: 0 PID: 89 at kernel/workqueue.c:3167 __flush_work.isra.0+0x270/0x280
Jun 04 22:45:58 AlexArch kernel: Modules linked in: i915(+) sdhci_pci i2c_algo_bit cqhci thinkpad_acpi serio_raw firewire_ohci drm_buddy drm_display_helper atkbd cec firewire_core sdhci sr_mod ledtrig_audio libps2 vivaldi_fmap platform_profile cdrom intel_agp ttm mmc_core snd crc_itu_t soundcore ata_generic intel_gtt pata_acpi rfkill i8042 video wmi serio
Jun 04 22:45:58 AlexArch kernel: CPU: 0 PID: 89 Comm: kworker/0:2 Not tainted 6.3.5-arch1-1 #1 649d963afc0261175aabf0511660febbb7b06177
Jun 04 22:45:58 AlexArch kernel: Hardware name: LENOVO 22434EG/22434EG, BIOS 6FET50WW (1.20 ) 10/30/2008
Jun 04 22:45:58 AlexArch kernel: Workqueue: events i915_hotplug_work_func [i915]
Jun 04 22:45:58 AlexArch kernel: RIP: 0010:__flush_work.isra.0+0x270/0x280
Jun 04 22:45:58 AlexArch kernel: Code: 8b 04 25 80 36 03 00 48 89 44 24 40 48 8b 73 30 8b 4b 28 e9 e3 fe ff ff 40 30 f6 4c 8b 3e e9 21 fe ff ff 0f 0b e9 3a ff ff ff <0f> 0b e9 33 ff ff ff e8 f4 97 c7 00 0f 1f 40 00 90 90 90 90 90 90
Jun 04 22:45:58 AlexArch kernel: RSP: 0018:ffffaec0802efb70 EFLAGS: 00010246
Jun 04 22:45:58 AlexArch kernel: RAX: 0000000000000000 RBX: ffff93cd8635c718 RCX: 0000000000000000
Jun 04 22:45:58 AlexArch kernel: RDX: 0000000000000001 RSI: 0000000000000001 RDI: ffffaec0802efbb8
Jun 04 22:45:58 AlexArch kernel: RBP: ffff93cd8635c718 R08: 0000000000000200 R09: ffff93cd853f8938
Jun 04 22:45:58 AlexArch kernel: R10: 0000000000000080 R11: ffff93cd8635c000 R12: 0000000000000001
Jun 04 22:45:58 AlexArch kernel: R13: ffffaec0802efb70 R14: 0000000000000001 R15: ffff93cd86348000
Jun 04 22:45:58 AlexArch kernel: FS:  0000000000000000(0000) GS:ffff93ceb3c00000(0000) knlGS:0000000000000000
Jun 04 22:45:58 AlexArch kernel: CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
Jun 04 22:45:58 AlexArch kernel: CR2: 00007fff036c4fc8 CR3: 0000000190220000 CR4: 00000000000006f0
Jun 04 22:45:58 AlexArch kernel: Call Trace:
Jun 04 22:45:58 AlexArch kernel:  <TASK>
Jun 04 22:45:58 AlexArch kernel:  ? __flush_work.isra.0+0x270/0x280
Jun 04 22:45:58 AlexArch kernel:  ? __warn+0x81/0x130
Jun 04 22:45:58 AlexArch kernel:  ? __flush_work.isra.0+0x270/0x280
Jun 04 22:45:58 AlexArch kernel:  ? report_bug+0x171/0x1a0
Jun 04 22:45:58 AlexArch kernel:  ? handle_bug+0x3c/0x80
Jun 04 22:45:58 AlexArch kernel:  ? exc_invalid_op+0x17/0x70
Jun 04 22:45:58 AlexArch kernel:  ? asm_exc_invalid_op+0x1a/0x20
Jun 04 22:45:58 AlexArch kernel:  ? __flush_work.isra.0+0x270/0x280
Jun 04 22:45:58 AlexArch kernel:  __cancel_work_timer+0xff/0x190
Jun 04 22:45:58 AlexArch kernel:  ? ktime_get_mono_fast_ns+0x3d/0x90
Jun 04 22:45:58 AlexArch kernel:  ? __pm_runtime_suspend+0x6f/0xd0
Jun 04 22:45:58 AlexArch kernel:  drm_dp_cec_unset_edid+0x44/0x100 [drm_display_helper bdc07091766e602cc03a6f6e307e33189cf7766d]
Jun 04 22:45:58 AlexArch kernel:  ? intel_digital_port_connected+0x55/0x80 [i915 0064ab97cf984a3bd35172634e1d6f65877e9eef]
Jun 04 22:45:58 AlexArch kernel:  intel_dp_detect+0x46d/0x640 [i915 0064ab97cf984a3bd35172634e1d6f65877e9eef]
Jun 04 22:45:58 AlexArch kernel:  drm_helper_probe_detect_ctx+0x55/0x110
Jun 04 22:45:58 AlexArch kernel:  intel_encoder_hotplug+0x47/0x100 [i915 0064ab97cf984a3bd35172634e1d6f65877e9eef]
Jun 04 22:45:58 AlexArch kernel:  intel_dp_hotplug+0x73/0x160 [i915 0064ab97cf984a3bd35172634e1d6f65877e9eef]
Jun 04 22:45:58 AlexArch kernel:  i915_hotplug_work_func+0x215/0x310 [i915 0064ab97cf984a3bd35172634e1d6f65877e9eef]
Jun 04 22:45:58 AlexArch kernel:  process_one_work+0x1c7/0x3d0
Jun 04 22:45:58 AlexArch kernel:  worker_thread+0x51/0x390
Jun 04 22:45:58 AlexArch kernel:  ? __pfx_worker_thread+0x10/0x10
Jun 04 22:45:58 AlexArch kernel:  kthread+0xde/0x110
Jun 04 22:45:58 AlexArch kernel:  ? __pfx_kthread+0x10/0x10
Jun 04 22:45:58 AlexArch kernel:  ret_from_fork+0x2c/0x50
Jun 04 22:45:58 AlexArch kernel:  </TASK>
Jun 04 22:45:58 AlexArch kernel: ---[ end trace 0000000000000000 ]---
Jun 04 22:45:58 AlexArch kernel: i915 0000:00:02.0: [drm] Skipping intel_backlight registration
Jun 04 22:45:58 AlexArch kernel: [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
Jun 04 22:45:58 AlexArch kernel: ACPI: video: Video Device [VID] (multi-head: yes  rom: no  post: no)
Jun 04 22:45:58 AlexArch kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input6
Jun 04 22:45:58 AlexArch kernel: acpi device:01: registered as cooling_device2
Jun 04 22:45:58 AlexArch kernel: fbcon: i915drmfb (fb0) is primary device
Jun 04 22:45:58 AlexArch kernel: fbcon: Deferring console take-over
Jun 04 22:45:58 AlexArch kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
Jun 04 22:45:58 AlexArch kernel: fbcon: Taking over console
Jun 04 22:45:58 AlexArch kernel: Console: switching to colour frame buffer device 160x50
Jun 04 22:45:58 AlexArch kernel: EXT4-fs (sda1): mounted filesystem 882f05fb-ea19-4494-99b9-75cacc2e0493 with ordered data mode. Quota mode: none.
Jun 04 22:45:58 AlexArch systemd[1]: systemd 253.4-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT -QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
Jun 04 22:45:58 AlexArch systemd[1]: Detected architecture x86-64.
Jun 04 22:45:58 AlexArch systemd[1]: Hostname set to <AlexArch>.
Jun 04 22:45:58 AlexArch systemd[1]: bpf-lsm: LSM BPF program attached
Jun 04 22:45:58 AlexArch kernel: memfd_create() without MFD_EXEC nor MFD_NOEXEC_SEAL, pid=1 'systemd'
Jun 04 22:45:58 AlexArch systemd[1]: Queued start job for default target Graphical Interface.
Jun 04 22:45:58 AlexArch systemd[1]: Created slice Slice /system/getty.
Jun 04 22:45:58 AlexArch systemd[1]: Created slice Slice /system/modprobe.
Jun 04 22:45:58 AlexArch systemd[1]: Created slice User and Session Slice.
Jun 04 22:45:58 AlexArch systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Jun 04 22:45:58 AlexArch systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Jun 04 22:45:58 AlexArch systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Jun 04 22:45:58 AlexArch systemd[1]: Reached target Local Encrypted Volumes.
Jun 04 22:45:58 AlexArch systemd[1]: Reached target Login Prompts.
Jun 04 22:45:58 AlexArch systemd[1]: Reached target Local Integrity Protected Volumes.
Jun 04 22:45:58 AlexArch systemd[1]: Reached target Path Units.
Jun 04 22:45:58 AlexArch systemd[1]: Reached target Remote File Systems.
Jun 04 22:45:58 AlexArch systemd[1]: Reached target Slice Units.
Jun 04 22:45:58 AlexArch systemd[1]: Reached target Swaps.
Jun 04 22:45:58 AlexArch systemd[1]: Reached target Local Verity Protected Volumes.
Jun 04 22:45:58 AlexArch systemd[1]: Listening on Device-mapper event daemon FIFOs.
Jun 04 22:45:58 AlexArch systemd[1]: Listening on LVM2 poll daemon socket.
Jun 04 22:45:58 AlexArch systemd[1]: Listening on Process Core Dump Socket.
Jun 04 22:45:58 AlexArch systemd[1]: Listening on Journal Socket (/dev/log).
Jun 04 22:45:58 AlexArch systemd[1]: Listening on Journal Socket.
Jun 04 22:45:58 AlexArch systemd[1]: Listening on udev Control Socket.
Jun 04 22:45:58 AlexArch systemd[1]: Listening on udev Kernel Socket.
Jun 04 22:45:58 AlexArch systemd[1]: Mounting Huge Pages File System...
Jun 04 22:45:58 AlexArch systemd[1]: Mounting POSIX Message Queue File System...
Jun 04 22:45:58 AlexArch systemd[1]: Mounting Kernel Debug File System...
Jun 04 22:45:58 AlexArch systemd[1]: Mounting Kernel Trace File System...
Jun 04 22:45:58 AlexArch systemd[1]: Mounting Temporary Directory /tmp...
Jun 04 22:45:58 AlexArch systemd[1]: Starting Create List of Static Device Nodes...
Jun 04 22:45:58 AlexArch systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Jun 04 22:45:58 AlexArch systemd[1]: Starting Load Kernel Module configfs...
Jun 04 22:45:58 AlexArch systemd[1]: Starting Load Kernel Module dm_mod...
Jun 04 22:45:58 AlexArch systemd[1]: Starting Load Kernel Module drm...
Jun 04 22:45:58 AlexArch systemd[1]: Starting Load Kernel Module fuse...
Jun 04 22:45:58 AlexArch systemd[1]: Starting Load Kernel Module loop...
Jun 04 22:45:58 AlexArch systemd[1]: Load AppArmor profiles managed internally by snapd was skipped because of an unmet condition check (ConditionSecurity=apparmor).
Jun 04 22:45:58 AlexArch systemd[1]: Starting Journal Service...
Jun 04 22:45:58 AlexArch systemd[1]: Starting Load Kernel Modules...
Jun 04 22:45:58 AlexArch systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Jun 04 22:45:58 AlexArch systemd[1]: Starting Remount Root and Kernel File Systems...
Jun 04 22:45:58 AlexArch systemd[1]: Starting Coldplug All udev Devices...
Jun 04 22:45:58 AlexArch kernel: loop: module loaded
Jun 04 22:45:58 AlexArch systemd[1]: Mounted Huge Pages File System.
Jun 04 22:45:58 AlexArch systemd[1]: Mounted POSIX Message Queue File System.
Jun 04 22:45:58 AlexArch systemd[1]: Mounted Kernel Debug File System.
Jun 04 22:45:58 AlexArch systemd[1]: Mounted Kernel Trace File System.
Jun 04 22:45:58 AlexArch systemd[1]: Mounted Temporary Directory /tmp.
Jun 04 22:45:58 AlexArch systemd[1]: Finished Create List of Static Device Nodes.
Jun 04 22:45:58 AlexArch systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Jun 04 22:45:58 AlexArch systemd[1]: modprobe@configfs.service: Deactivated successfully.
Jun 04 22:45:58 AlexArch systemd[1]: Finished Load Kernel Module configfs.
Jun 04 22:45:58 AlexArch systemd[1]: modprobe@drm.service: Deactivated successfully.
Jun 04 22:45:58 AlexArch systemd[1]: Finished Load Kernel Module drm.
Jun 04 22:45:58 AlexArch systemd[1]: modprobe@loop.service: Deactivated successfully.
Jun 04 22:45:58 AlexArch kernel: device-mapper: uevent: version 1.0.3
Jun 04 22:45:58 AlexArch kernel: device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
Jun 04 22:45:58 AlexArch systemd[1]: Finished Load Kernel Module loop.
Jun 04 22:45:58 AlexArch systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
Jun 04 22:45:58 AlexArch kernel: fuse: init (API version 7.38)
Jun 04 22:45:58 AlexArch systemd-journald[196]: Collecting audit messages is disabled.
Jun 04 22:45:58 AlexArch systemd[1]: Finished Load Kernel Module dm_mod.
Jun 04 22:45:58 AlexArch systemd[1]: modprobe@fuse.service: Deactivated successfully.
Jun 04 22:45:58 AlexArch systemd[1]: Finished Load Kernel Module fuse.
Jun 04 22:45:58 AlexArch systemd[1]: Finished Load Kernel Modules.
Jun 04 22:45:58 AlexArch systemd[1]: Finished Remount Root and Kernel File Systems.
Jun 04 22:45:58 AlexArch systemd[1]: Mounting FUSE Control File System...
Jun 04 22:45:58 AlexArch systemd[1]: Mounting Kernel Configuration File System...
Jun 04 22:45:58 AlexArch systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Jun 04 22:45:58 AlexArch systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
Jun 04 22:45:58 AlexArch systemd[1]: Starting Load/Save OS Random Seed...
Jun 04 22:45:58 AlexArch systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
Jun 04 22:45:58 AlexArch systemd[1]: Starting Apply Kernel Variables...
Jun 04 22:45:58 AlexArch systemd[1]: Create System Users was skipped because no trigger condition checks were met.
Jun 04 22:45:58 AlexArch systemd[1]: Starting Create Static Device Nodes in /dev...
Jun 04 22:45:58 AlexArch systemd[1]: Mounted FUSE Control File System.
Jun 04 22:45:58 AlexArch systemd[1]: Mounted Kernel Configuration File System.
Jun 04 22:45:58 AlexArch systemd[1]: Finished Load/Save OS Random Seed.
Jun 04 22:45:58 AlexArch systemd[1]: Finished Apply Kernel Variables.
Jun 04 22:45:58 AlexArch systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Jun 04 22:45:58 AlexArch systemd[1]: Finished Create Static Device Nodes in /dev.
Jun 04 22:45:58 AlexArch systemd[1]: Reached target Preparation for Local File Systems.
Jun 04 22:45:58 AlexArch systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
Jun 04 22:45:58 AlexArch systemd[1]: var-lib-snapd-snap.mount: Directory /var/lib/snapd/snap to mount over is not empty, mounting anyway.
Jun 04 22:45:58 AlexArch systemd[1]: Mounting Ensure that the snap directory shares mount events....
Jun 04 22:45:58 AlexArch systemd-journald[196]: Journal started
Jun 04 22:45:58 AlexArch systemd-journald[196]: Runtime Journal (/run/log/journal/951764c72dc84868a26e5614ab3564a8) is 8.0M, max 392.1M, 384.1M free.
Jun 04 22:45:58 AlexArch systemd[1]: Starting Rule-based Manager for Device Events and Files...
Jun 04 22:45:57 AlexArch systemd-modules-load[197]: Inserted module 'crypto_user'
Jun 04 22:45:58 AlexArch systemd[1]: Started Journal Service.
Jun 04 22:45:58 AlexArch systemd[1]: Mounted Ensure that the snap directory shares mount events..
Jun 04 22:45:58 AlexArch systemd[1]: Mounting Mount unit for core18, revision 2751...
Jun 04 22:45:58 AlexArch systemd[1]: Mounting Mount unit for snapd, revision 19361...
Jun 04 22:45:58 AlexArch systemd[1]: Starting Flush Journal to Persistent Storage...
Jun 04 22:45:58 AlexArch systemd-udevd[208]: Using default interface naming scheme 'v253'.
Jun 04 22:45:58 AlexArch kernel: loop0: detected capacity change from 0 to 113944
Jun 04 22:45:58 AlexArch kernel: loop1: detected capacity change from 0 to 109072
Jun 04 22:45:58 AlexArch systemd-journald[196]: Time spent on flushing to /var/log/journal/951764c72dc84868a26e5614ab3564a8 is 319.914ms for 1053 entries.
Jun 04 22:45:58 AlexArch systemd-journald[196]: System Journal (/var/log/journal/951764c72dc84868a26e5614ab3564a8) is 378.0M, max 4.0G, 3.6G free.
Jun 04 22:45:58 AlexArch systemd-journald[196]: Received client request to flush runtime journal.
Jun 04 22:45:58 AlexArch systemd-journald[196]: /var/log/journal/951764c72dc84868a26e5614ab3564a8/system.journal: Monotonic clock jumped backwards relative to last journal entry, rotating.
Jun 04 22:45:58 AlexArch systemd-journald[196]: Rotating system journal.
Jun 04 22:45:58 AlexArch kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
Jun 04 22:45:58 AlexArch systemd[1]: Mounted Mount unit for core18, revision 2751.
Jun 04 22:45:58 AlexArch systemd[1]: Mounted Mount unit for snapd, revision 19361.
Jun 04 22:45:58 AlexArch systemd[1]: Reached target Local File Systems.
Jun 04 22:45:58 AlexArch systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
Jun 04 22:45:58 AlexArch systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
Jun 04 22:45:58 AlexArch systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
Jun 04 22:45:58 AlexArch systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
Jun 04 22:45:58 AlexArch systemd[1]: Started Rule-based Manager for Device Events and Files.
Jun 04 22:45:58 AlexArch systemd[1]: Finished Coldplug All udev Devices.
Jun 04 22:45:58 AlexArch systemd[1]: Finished Flush Journal to Persistent Storage.
Jun 04 22:45:58 AlexArch systemd[1]: Starting Create Volatile Files and Directories...
Jun 04 22:45:59 AlexArch systemd[1]: Finished Create Volatile Files and Directories.
Jun 04 22:45:59 AlexArch systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
Jun 04 22:45:59 AlexArch systemd[1]: Starting Network Time Synchronization...
Jun 04 22:45:59 AlexArch systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
Jun 04 22:45:59 AlexArch systemd[1]: Starting Record System Boot/Shutdown in UTMP...
Jun 04 22:45:59 AlexArch systemd[1]: Finished Record System Boot/Shutdown in UTMP.
Jun 04 22:45:59 AlexArch systemd[1]: Started Network Time Synchronization.
Jun 04 22:45:59 AlexArch systemd[1]: Reached target System Initialization.
Jun 04 22:45:59 AlexArch systemd[1]: Started Daily Cleanup of Temporary Directories.
Jun 04 22:45:59 AlexArch systemd[1]: Reached target System Time Set.
Jun 04 22:45:59 AlexArch systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
Jun 04 22:45:59 AlexArch systemd[1]: Started Daily verification of password and group files.
Jun 04 22:45:59 AlexArch systemd[1]: Reached target Timer Units.
Jun 04 22:45:59 AlexArch systemd[1]: Listening on D-Bus System Message Bus Socket.
Jun 04 22:45:59 AlexArch systemd[1]: Starting Socket activation for snappy daemon...
Jun 04 22:45:59 AlexArch systemd[1]: TPM2 PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Jun 04 22:45:59 AlexArch systemd[1]: Listening on Socket activation for snappy daemon.
Jun 04 22:45:59 AlexArch systemd[1]: Reached target Socket Units.
Jun 04 22:45:59 AlexArch systemd[1]: Reached target Basic System.
Jun 04 22:45:59 AlexArch systemd[1]: Starting D-Bus System Message Bus...
Jun 04 22:45:59 AlexArch systemd[1]: Starting User Login Management...
Jun 04 22:45:59 AlexArch systemd[1]: TPM2 PCR Barrier (User) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Jun 04 22:45:59 AlexArch systemd[1]: Started D-Bus System Message Bus.
Jun 04 22:45:59 AlexArch systemd[1]: Starting Network Manager...
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.0685] NetworkManager (version 1.42.6-1) is starting... (boot:731c4aee-5c23-4741-ba84-9771a0a8caa0)
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.0687] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 20-connectivity.conf)
Jun 04 22:46:00 AlexArch systemd[1]: Started Network Manager.
Jun 04 22:46:00 AlexArch systemd[1]: Reached target Network.
Jun 04 22:46:00 AlexArch systemd-logind[256]: Watching system buttons on /dev/input/event2 (Power Button)
Jun 04 22:46:00 AlexArch systemd-logind[256]: Watching system buttons on /dev/input/event0 (Lid Switch)
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.0903] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Jun 04 22:46:00 AlexArch systemd-logind[256]: Watching system buttons on /dev/input/event1 (Sleep Button)
Jun 04 22:46:00 AlexArch systemd-logind[256]: Watching system buttons on /dev/input/event3 (AT Translated Set 2 keyboard)
Jun 04 22:46:00 AlexArch systemd-logind[256]: Watching system buttons on /dev/input/event4 (ThinkPad Extra Buttons)
Jun 04 22:46:00 AlexArch systemd[1]: Starting Permit User Sessions...
Jun 04 22:46:00 AlexArch systemd-logind[256]: New seat seat0.
Jun 04 22:46:00 AlexArch systemd[1]: Started User Login Management.
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.1263] manager[0x56439527edc0]: monitoring kernel firmware directory '/lib/firmware'.
Jun 04 22:46:00 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.2' (uid=0 pid=257 comm="/usr/bin/NetworkManager --no-daemon")
Jun 04 22:46:00 AlexArch systemd[1]: Finished Permit User Sessions.
Jun 04 22:46:00 AlexArch systemd[1]: Reached target Multi-User System.
Jun 04 22:46:00 AlexArch systemd[1]: Starting GNOME Display Manager...
Jun 04 22:46:00 AlexArch systemd[1]: Starting Hostname Service...
Jun 04 22:46:00 AlexArch systemd[1]: Started GNOME Display Manager.
Jun 04 22:46:00 AlexArch systemd[1]: Reached target Graphical Interface.
Jun 04 22:46:00 AlexArch dbus-daemon[255]: [system] Successfully activated service 'org.freedesktop.hostname1'
Jun 04 22:46:00 AlexArch systemd[1]: Started Hostname Service.
Jun 04 22:46:00 AlexArch systemd[1]: Startup finished in 7.861s (kernel) + 4.259s (userspace) = 12.120s.
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.3783] hostname: hostname: using hostnamed
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.3783] hostname: static hostname changed from (none) to "AlexArch"
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.3788] dns-mgr: init: dns=default,systemd-resolved rc-manager=symlink
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.3797] manager[0x56439527edc0]: rfkill: Wi-Fi hardware radio set enabled
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.3797] manager[0x56439527edc0]: rfkill: WWAN hardware radio set enabled
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.3999] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.42.6-1/libnm-device-plugin-wwan.so)
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.4052] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.42.6-1/libnm-device-plugin-ovs.so)
Jun 04 22:46:00 AlexArch systemd[1]: Created slice Slice /system/systemd-backlight.
Jun 04 22:46:00 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='org.freedesktop.Accounts' unit='accounts-daemon.service' requested by ':1.4' (uid=0 pid=264 comm="/usr/bin/gdm")
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.4101] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.42.6-1/libnm-device-plugin-wifi.so)
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.4128] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.42.6-1/libnm-device-plugin-bluetooth.so)
Jun 04 22:46:00 AlexArch systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:acpi_video0...
Jun 04 22:46:00 AlexArch systemd[1]: Reached target User and Group Name Lookups.
Jun 04 22:46:00 AlexArch systemd[1]: Starting Accounts Service...
Jun 04 22:46:00 AlexArch systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:acpi_video0.
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.4633] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.42.6-1/libnm-device-plugin-team.so)
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.4648] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.42.6-1/libnm-device-plugin-adsl.so)
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.4655] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.4657] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.4658] manager: Networking is enabled by state file
Jun 04 22:46:00 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.2' (uid=0 pid=257 comm="/usr/bin/NetworkManager --no-daemon")
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.4677] settings: Loaded settings plugin: keyfile (internal)
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.4748] dhcp: init: Using DHCP client 'internal'
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.4756] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1)
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.4786] device (lo): state change: unmanaged -> unavailable (reason 'connection-assumed', sys-iface-state: 'external')
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.4820] device (lo): state change: unavailable -> disconnected (reason 'connection-assumed', sys-iface-state: 'external')
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.4844] device (lo): Activation: starting connection 'lo' (c406448e-0778-47bc-9eb2-92717eb0d2a9)
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.4934] ovsdb: disconnected from ovsdb
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.4940] device (lo): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'external')
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.4953] device (lo): state change: prepare -> config (reason 'none', sys-iface-state: 'external')
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.4964] device (lo): state change: config -> ip-config (reason 'none', sys-iface-state: 'external')
Jun 04 22:46:00 AlexArch systemd[1]: Starting Network Manager Script Dispatcher Service...
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.5033] device (lo): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'external')
Jun 04 22:46:00 AlexArch dbus-daemon[255]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Jun 04 22:46:00 AlexArch systemd[1]: Started Network Manager Script Dispatcher Service.
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.5303] device (lo): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'external')
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.5306] device (lo): state change: secondaries -> activated (reason 'none', sys-iface-state: 'external')
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.5312] device (lo): Activation: successful, device activated.
Jun 04 22:46:00 AlexArch NetworkManager[257]: <info>  [1685911560.5326] manager: startup complete
Jun 04 22:46:00 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' requested by ':1.7' (uid=0 pid=272 comm="/usr/lib/accounts-daemon")
Jun 04 22:46:00 AlexArch systemd[1]: Starting Authorization Manager...
Jun 04 22:46:00 AlexArch mtp-probe[278]: checking bus 2, device 2: "/sys/devices/pci0000:00/0000:00:1a.1/usb2/2-1"
Jun 04 22:46:00 AlexArch mtp-probe[278]: bus: 2, device: 2 was not an MTP device
Jun 04 22:46:00 AlexArch polkitd[283]: Started polkitd version 122
Jun 04 22:46:00 AlexArch polkitd[283]: Loading rules from directory /etc/polkit-1/rules.d
Jun 04 22:46:00 AlexArch polkitd[283]: Loading rules from directory /usr/share/polkit-1/rules.d
Jun 04 22:46:00 AlexArch polkitd[283]: Finished loading, compiling and executing 9 rules
Jun 04 22:46:00 AlexArch dbus-daemon[255]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Jun 04 22:46:00 AlexArch systemd[1]: Started Authorization Manager.
Jun 04 22:46:00 AlexArch polkitd[283]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
Jun 04 22:46:00 AlexArch accounts-daemon[272]: started daemon version 23.13.0
Jun 04 22:46:00 AlexArch dbus-daemon[255]: [system] Successfully activated service 'org.freedesktop.Accounts'
Jun 04 22:46:00 AlexArch systemd[1]: Started Accounts Service.
Jun 04 22:46:00 AlexArch kernel: ACPI Warning: SystemIO range 0x0000000000001028-0x000000000000102F conflicts with OpRegion 0x0000000000001000-0x000000000000107F (\_SB.PCI0.LPC.PMIO) (20221020/utaddress-204)
Jun 04 22:46:00 AlexArch kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Jun 04 22:46:00 AlexArch kernel: ACPI Warning: SystemIO range 0x00000000000011B0-0x00000000000011BF conflicts with OpRegion 0x0000000000001180-0x00000000000011FF (\_SB.PCI0.LPC.LPIO) (20221020/utaddress-204)
Jun 04 22:46:00 AlexArch kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Jun 04 22:46:00 AlexArch kernel: ACPI Warning: SystemIO range 0x0000000000001180-0x00000000000011AF conflicts with OpRegion 0x0000000000001180-0x00000000000011FF (\_SB.PCI0.LPC.LPIO) (20221020/utaddress-204)
Jun 04 22:46:00 AlexArch kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Jun 04 22:46:00 AlexArch kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
Jun 04 22:46:00 AlexArch systemd[1]: Created slice User Slice of UID 120.
Jun 04 22:46:00 AlexArch systemd[1]: Starting User Runtime Directory /run/user/120...
Jun 04 22:46:00 AlexArch systemd-logind[256]: New session 1 of user gdm.
Jun 04 22:46:00 AlexArch kernel: e1000e: Intel(R) PRO/1000 Network Driver
Jun 04 22:46:00 AlexArch kernel: e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
Jun 04 22:46:00 AlexArch kernel: e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
Jun 04 22:46:00 AlexArch kernel: r592: driver successfully loaded
Jun 04 22:46:00 AlexArch kernel: input: PC Speaker as /devices/platform/pcspkr/input/input7
Jun 04 22:46:00 AlexArch kernel: intel_powerclamp: No package C-state available
Jun 04 22:46:00 AlexArch kernel: i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
Jun 04 22:46:00 AlexArch kernel: i2c i2c-9: 2/2 memory slots populated (from DMI)
Jun 04 22:46:00 AlexArch systemd[1]: Finished User Runtime Directory /run/user/120.
Jun 04 22:46:00 AlexArch systemd[1]: Starting User Manager for UID 120...
Jun 04 22:46:00 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.11' (uid=0 pid=305 comm="(systemd)")
Jun 04 22:46:00 AlexArch dbus-daemon[255]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 04 22:46:00 AlexArch (systemd)[305]: pam_systemd_home(systemd-user:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 04 22:46:00 AlexArch systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Jun 04 22:46:00 AlexArch systemd[1]: Starting Load/Save RF Kill Switch Status...
Jun 04 22:46:00 AlexArch (systemd)[305]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[gdm] ruser=[<unknown>] rhost=[<unknown>]
Jun 04 22:46:00 AlexArch (systemd)[305]: pam_unix(systemd-user:session): session opened for user gdm(uid=120) by gdm(uid=0)
Jun 04 22:46:01 AlexArch kernel: e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 00:1c:25:97:4d:05
Jun 04 22:46:01 AlexArch kernel: e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
Jun 04 22:46:01 AlexArch kernel: e1000e 0000:00:19.0 eth0: MAC: 7, PHY: 8, PBA No: 1008FF-0FF
Jun 04 22:46:01 AlexArch NetworkManager[257]: <info>  [1685911561.0188] manager: (eth0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
Jun 04 22:46:01 AlexArch systemd[1]: Started Load/Save RF Kill Switch Status.
Jun 04 22:46:01 AlexArch kernel: e1000e 0000:00:19.0 enp0s25: renamed from eth0
Jun 04 22:46:01 AlexArch NetworkManager[257]: <info>  [1685911561.1147] device (eth0): interface index 2 renamed iface from 'eth0' to 'enp0s25'
Jun 04 22:46:01 AlexArch NetworkManager[257]: <info>  [1685911561.1330] device (enp0s25): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jun 04 22:46:01 AlexArch kernel: yenta_cardbus 0000:15:00.0: CardBus bridge found [17aa:20c6]
Jun 04 22:46:01 AlexArch kernel: iTCO_vendor_support: vendor-support=0
Jun 04 22:46:01 AlexArch kernel: yenta_cardbus 0000:15:00.0: ISA IRQ mask 0x0cb8, PCI irq 16
Jun 04 22:46:01 AlexArch kernel: yenta_cardbus 0000:15:00.0: Socket status: 30000006
Jun 04 22:46:01 AlexArch kernel: yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge window: [io  0x4000-0x7fff]
Jun 04 22:46:01 AlexArch kernel: yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge window: [mem 0xf4800000-0xf7ffffff]
Jun 04 22:46:01 AlexArch kernel: pcmcia_socket pcmcia_socket0: cs: memory probe 0xf4800000-0xf7ffffff:
Jun 04 22:46:01 AlexArch kernel:  excluding 0xf4800000-0xf4b7ffff
Jun 04 22:46:01 AlexArch kernel: yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge window: [mem 0xf0000000-0xf3ffffff 64bit pref]
Jun 04 22:46:01 AlexArch kernel: pcmcia_socket pcmcia_socket0: cs: memory probe 0xf0000000-0xf3ffffff:
Jun 04 22:46:01 AlexArch kernel:  excluding 0xf0000000-0xf3ffffff
Jun 04 22:46:01 AlexArch kernel: iTCO_wdt iTCO_wdt.1.auto: Found a ICH9M-E TCO device (Version=2, TCOBASE=0x1060)
Jun 04 22:46:01 AlexArch kernel: iTCO_wdt iTCO_wdt.1.auto: initialized. heartbeat=30 sec (nowayout=0)
Jun 04 22:46:01 AlexArch kernel: Bluetooth: Core ver 2.22
Jun 04 22:46:01 AlexArch kernel: NET: Registered PF_BLUETOOTH protocol family
Jun 04 22:46:01 AlexArch kernel: Bluetooth: HCI device and connection manager initialized
Jun 04 22:46:01 AlexArch kernel: Bluetooth: HCI socket layer initialized
Jun 04 22:46:01 AlexArch kernel: Bluetooth: L2CAP socket layer initialized
Jun 04 22:46:01 AlexArch kernel: Bluetooth: SCO socket layer initialized
Jun 04 22:46:01 AlexArch kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Jun 04 22:46:01 AlexArch kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Jun 04 22:46:01 AlexArch NetworkManager[257]: <info>  [1685911561.3281] settings: (enp0s25): created default wired connection 'Wired connection 1'
Jun 04 22:46:01 AlexArch kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
Jun 04 22:46:01 AlexArch kernel: cfg80211: failed to load regulatory.db
Jun 04 22:46:01 AlexArch kernel: Intel(R) Wireless WiFi driver for Linux
Jun 04 22:46:01 AlexArch kernel: iwlwifi 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
Jun 04 22:46:01 AlexArch kernel: iwlwifi 0000:03:00.0: loaded firmware version 8.83.5.1 build 33692 5000-5.ucode op_mode iwldvm
Jun 04 22:46:01 AlexArch systemd[305]: Queued start job for default target Main User Target.
Jun 04 22:46:01 AlexArch kernel: usbcore: registered new interface driver btusb
Jun 04 22:46:01 AlexArch systemd[305]: Created slice User Application Slice.
Jun 04 22:46:01 AlexArch systemd[305]: Reached target Paths.
Jun 04 22:46:01 AlexArch systemd[305]: Reached target Timers.
Jun 04 22:46:01 AlexArch systemd[305]: Starting D-Bus User Message Bus Socket...
Jun 04 22:46:01 AlexArch systemd[305]: Listening on GnuPG network certificate management daemon.
Jun 04 22:46:01 AlexArch systemd[305]: Listening on GCR ssh-agent wrapper.
Jun 04 22:46:01 AlexArch systemd[305]: Listening on GNOME Keyring daemon.
Jun 04 22:46:01 AlexArch systemd[305]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jun 04 22:46:01 AlexArch systemd[305]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Jun 04 22:46:01 AlexArch systemd[305]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Jun 04 22:46:01 AlexArch systemd[305]: Listening on GnuPG cryptographic agent and passphrase cache.
Jun 04 22:46:01 AlexArch systemd[305]: Listening on p11-kit server.
Jun 04 22:46:01 AlexArch systemd[305]: Listening on PipeWire Multimedia System Socket.
Jun 04 22:46:01 AlexArch systemd[305]: Listening on Sound System.
Jun 04 22:46:01 AlexArch systemd[305]: Listening on D-Bus User Message Bus Socket.
Jun 04 22:46:01 AlexArch systemd[305]: Reached target Sockets.
Jun 04 22:46:01 AlexArch systemd[305]: Reached target Basic System.
Jun 04 22:46:01 AlexArch systemd[1]: Started User Manager for UID 120.
Jun 04 22:46:01 AlexArch systemd[1]: Started Session 1 of User gdm.
Jun 04 22:46:01 AlexArch systemd[305]: Starting Update XDG user dir configuration...
Jun 04 22:46:01 AlexArch systemd[1]: Reached target Bluetooth Support.
Jun 04 22:46:01 AlexArch systemd[305]: Reached target Bluetooth.
Jun 04 22:46:01 AlexArch systemd[305]: Finished Update XDG user dir configuration.
Jun 04 22:46:01 AlexArch systemd[305]: Reached target Main User Target.
Jun 04 22:46:01 AlexArch systemd[305]: Startup finished in 571ms.
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (--) Log file renamed from "/var/lib/gdm/.local/share/xorg/Xorg.pid-332.log" to "/var/lib/gdm/.local/share/xorg/Xorg.0.log"
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: X.Org X Server 1.21.1.8
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: X Protocol Version 11, Revision 0
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: Current Operating System: Linux AlexArch 6.3.5-arch1-1 #1 SMP PREEMPT_DYNAMIC Tue, 30 May 2023 13:44:01 +0000 x86_64
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=882f05fb-ea19-4494-99b9-75cacc2e0493 rw loglevel=3 quiet
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:  
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: Current version of pixman: 0.42.2
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         Before reporting problems, check http://wiki.x.org
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         to make sure that you have the latest version.
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: Markers: (--) probed, (**) from config file, (==) default setting,
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         (++) from command line, (!!) notice, (II) informational,
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (==) Log file: "/var/lib/gdm/.local/share/xorg/Xorg.0.log", Time: Sun Jun  4 22:46:01 2023
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (==) Using system config directory "/usr/share/X11/xorg.conf.d"
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (==) No Layout section.  Using the first Screen section.
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (==) No screen section available. Using defaults.
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (**) |-->Screen "Default Screen Section" (0)
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (**) |   |-->Monitor "<default monitor>"
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (==) No monitor specified for screen "Default Screen Section".
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         Using a default monitor configuration.
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (==) Automatically adding devices
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (==) Automatically enabling devices
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (==) Automatically adding GPU devices
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (==) Automatically binding GPU devices
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (==) Max clients allowed: 256, resource mask: 0x1fffff
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (WW) The directory "/usr/share/fonts/misc" does not exist.
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         Entry deleted from font path.
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (WW) The directory "/usr/share/fonts/TTF" does not exist.
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         Entry deleted from font path.
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (WW) The directory "/usr/share/fonts/OTF" does not exist.
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         Entry deleted from font path.
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (WW) The directory "/usr/share/fonts/Type1" does not exist.
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         Entry deleted from font path.
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (WW) The directory "/usr/share/fonts/100dpi" does not exist.
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         Entry deleted from font path.
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (WW) The directory "/usr/share/fonts/75dpi" does not exist.
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         Entry deleted from font path.
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (==) FontPath set to:
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (==) ModulePath set to "/usr/lib/xorg/modules"
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (II) The server relies on udev to provide the list of input devices.
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         If no devices become available, reconfigure udev or disable AutoAddDevices.
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (II) Module ABI versions:
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         X.Org ANSI C Emulation: 0.4
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         X.Org Video Driver: 25.2
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         X.Org XInput driver : 24.4
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         X.Org Server Extension : 10.0
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (++) using VT number 1
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (II) xfree86: Adding drm device (/dev/dri/card0)
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card0
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 14 paused 0
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (--) PCI:*(0@0:2:0) 8086:2a42:17aa:20e4 rev 7, Mem @ 0xf4400000/4194304, 0xd0000000/268435456, I/O @ 0x00001800/8, BIOS @ 0x????????/131072
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (--) PCI: (0@0:2:1) 8086:2a43:17aa:20e4 rev 7, Mem @ 0xf4200000/1048576
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (II) LoadModule: "glx"
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
Jun 04 22:46:01 AlexArch kernel: iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG enabled
Jun 04 22:46:01 AlexArch kernel: iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
Jun 04 22:46:01 AlexArch kernel: iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
Jun 04 22:46:01 AlexArch kernel: iwlwifi 0000:03:00.0: Detected Intel(R) Ultimate N WiFi Link 5300 AGN, REV=0x24
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (II) Module glx: vendor="X.Org Foundation"
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         compiled for 1.21.1.8, module version = 1.0.0
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         ABI class: X.Org Server Extension, version 10.0
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (==) Matched intel as autoconfigured driver 0
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (==) Matched modesetting as autoconfigured driver 1
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (==) Matched fbdev as autoconfigured driver 2
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (==) Matched vesa as autoconfigured driver 3
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (==) Assigned the driver to the xf86ConfigLayout
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (II) LoadModule: "intel"
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (WW) Warning, couldn't open module intel
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (EE) Failed to load module "intel" (module does not exist, 0)
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (II) LoadModule: "modesetting"
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (II) Module modesetting: vendor="X.Org Foundation"
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         compiled for 1.21.1.8, module version = 1.21.1
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         Module class: X.Org Video Driver
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         ABI class: X.Org Video Driver, version 25.2
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (II) LoadModule: "fbdev"
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (WW) Warning, couldn't open module fbdev
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (EE) Failed to load module "fbdev" (module does not exist, 0)
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (II) LoadModule: "vesa"
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (WW) Warning, couldn't open module vesa
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (EE) Failed to load module "vesa" (module does not exist, 0)
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (II) modesetting: Driver for Modesetting Kernel Drivers: kms
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): using drv /dev/dri/card0
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Creating default Display subsection in Screen section
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         "Default Screen Section" for depth/fbbpp 24/32
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (==) modeset(0): Depth 24, (==) framebuffer bpp 32
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (==) modeset(0): RGB weight 888
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (==) modeset(0): Default visual is TrueColor
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (II) Loading sub module "glamoregl"
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (II) LoadModule: "glamoregl"
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (II) Loading /usr/lib/xorg/modules/libglamoregl.so
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]: (II) Module glamoregl: vendor="X.Org Foundation"
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         compiled for 1.21.1.8, module version = 1.0.1
Jun 04 22:46:01 AlexArch /usr/lib/gdm-x-session[332]:         ABI class: X.Org ANSI C Emulation, version 0.4
Jun 04 22:46:01 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0: CX20561 (Hermosa): BIOS auto-probing.
Jun 04 22:46:01 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0: autoconfig for CX20561 (Hermosa): line_outs=1 (0x1a/0x0/0x0/0x0/0x0) type:speaker
Jun 04 22:46:01 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Jun 04 22:46:01 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0:    hp_outs=2 (0x19/0x16/0x0/0x0/0x0)
Jun 04 22:46:01 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0:    mono: mono_out=0x0
Jun 04 22:46:01 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0:    dig-out=0x1c/0x0
Jun 04 22:46:01 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0:    inputs:
Jun 04 22:46:01 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0:      Mic=0x18
Jun 04 22:46:01 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0:      Internal Mic=0x1d
Jun 04 22:46:01 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0:      Dock Mic=0x17
Jun 04 22:46:01 AlexArch kernel: ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
Jun 04 22:46:01 AlexArch NetworkManager[257]: <info>  [1685911561.7850] manager: (wlan0): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/3)
Jun 04 22:46:01 AlexArch NetworkManager[257]: <info>  [1685911561.7909] rfkill2: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:1c.1/0000:03:00.0/ieee80211/phy0/rfkill2) (driver iwlwifi)
Jun 04 22:46:01 AlexArch kernel: iwlwifi 0000:03:00.0 wlp3s0: renamed from wlan0
Jun 04 22:46:01 AlexArch kernel: input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
Jun 04 22:46:01 AlexArch kernel: input: HDA Intel Dock Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
Jun 04 22:46:01 AlexArch kernel: input: HDA Intel Dock Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
Jun 04 22:46:01 AlexArch kernel: input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
Jun 04 22:46:01 AlexArch systemd[1]: Reached target Sound Card.
Jun 04 22:46:01 AlexArch NetworkManager[257]: <info>  [1685911561.8191] device (wlan0): interface index 3 renamed iface from 'wlan0' to 'wlp3s0'
Jun 04 22:46:01 AlexArch systemd[305]: Reached target Sound Card.
Jun 04 22:46:01 AlexArch NetworkManager[257]: <info>  [1685911561.8384] device (wlp3s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jun 04 22:46:01 AlexArch kernel: iwlwifi 0000:03:00.0: Radio type=0x0-0x2-0x0
Jun 04 22:46:01 AlexArch kernel: psmouse serio1: synaptics: queried max coordinates: x [..5598], y [..4670]
Jun 04 22:46:01 AlexArch kernel: psmouse serio1: synaptics: Touchpad model: 1, fw: 7.0, id: 0x1c0b1, caps: 0xd04791/0xb00000/0x20000/0x0, board id: 0, fw id: 434116
Jun 04 22:46:01 AlexArch kernel: psmouse serio1: synaptics: serio: Synaptics pass-through port at isa0060/serio1/input0
Jun 04 22:46:01 AlexArch kernel: input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input8
Jun 04 22:46:01 AlexArch kernel: mousedev: PS/2 mouse device common for all mice
Jun 04 22:46:02 AlexArch kernel: iwlwifi 0000:03:00.0: Radio type=0x0-0x2-0x0
Jun 04 22:46:02 AlexArch NetworkManager[257]: <info>  [1685911562.0531] device (wlp3s0): set-hw-addr: set MAC address to 3E:D2:53:35:82:DE (scanning)
Jun 04 22:46:02 AlexArch kernel: iwlwifi 0000:03:00.0: Radio type=0x0-0x2-0x0
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): glamor X acceleration enabled on Mesa Mobile Intel® GM45 Express Chipset (CTG)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): glamor initialized
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (==) modeset(0): VariableRefresh: disabled
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (==) modeset(0): AsyncFlipSecondaries: disabled
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output LVDS-1 has no monitor section
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output VGA-1 has no monitor section
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output HDMI-1 has no monitor section
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output DP-1 has no monitor section
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output HDMI-2 has no monitor section
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output DP-2 has no monitor section
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output DP-3 has no monitor section
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): EDID for output LVDS-1
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Manufacturer: LEN  Model: 4050  Serial#: 0
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Year: 2006  Week: 0
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): EDID Version: 1.3
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Digital Display Input
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Max Image Size [cm]: horiz.: 33  vert.: 21
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Gamma: 2.20
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): DPMS capabilities: StandBy Suspend Off
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): First detailed timing is preferred mode
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): redX: 0.590 redY: 0.340   greenX: 0.320 greenY: 0.550
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): blueX: 0.152 blueY: 0.130   whiteX: 0.313 whiteY: 0.329
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Manufacturer's mask: 0
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Supported detailed timing:
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): clock: 71.1 MHz   Image Size:  331 x 207 mm
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1440 h_border: 0
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 823 v_border: 0
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Supported detailed timing:
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): clock: 60.1 MHz   Image Size:  331 x 207 mm
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1457 h_border: 0
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 825 v_border: 0
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Unknown vendor-specific block f
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0):  LTN154X3-L02
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): EDID (in hex):
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0):         00ffffffffffff0030ae504000000000
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0):         0010010380211578ea03159757528c27
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0):         21505400000001010101010101010101
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0):         010101010101c71b00a0502017303020
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0):         36004bcf100000197a1700b150201930
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0):         302036004bcf100000190000000f0081
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0):         0a32810a281401004ca35833000000fe
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0):         004c544e31353458332d4c30320a00c2
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Printing probed modes for output LVDS-1
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x800"x60.0   71.11  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.4 kHz eP)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x800"x120.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x800"x119.9  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x800"x50.0   60.10  1280 1328 1360 1457  800 803 809 825 -hsync -vsync (41.2 kHz e)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x720"x120.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x720"x120.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1024x576"x119.9   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1024x576"x119.9   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "960x600"x119.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "960x600"x120.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "960x540"x119.9   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "960x540"x120.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "840x525"x120.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "840x525"x119.8   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "800x450"x119.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "800x450"x119.6   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "700x450"x119.9   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "700x450"x119.8   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "684x384"x119.8   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "684x384"x119.7   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "640x400"x119.8   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "640x400"x120.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "640x360"x119.7   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "640x360"x119.7   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "512x288"x120.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "512x288"x119.8   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "480x270"x119.3   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "480x270"x119.6   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "432x243"x119.8   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "432x243"x119.1   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "360x202"x119.0   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "360x202"x118.3   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "320x180"x119.7    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "320x180"x118.6    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
Jun 04 22:46:02 AlexArch kernel: iwlwifi 0000:03:00.0: Radio type=0x0-0x2-0x0
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): EDID for output VGA-1
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): EDID for output HDMI-1
Jun 04 22:46:02 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='fi.w1.wpa_supplicant1' unit='wpa_supplicant.service' requested by ':1.2' (uid=0 pid=257 comm="/usr/bin/NetworkManager --no-daemon")
Jun 04 22:46:02 AlexArch systemd[1]: Starting WPA supplicant...
Jun 04 22:46:02 AlexArch dbus-daemon[255]: [system] Successfully activated service 'fi.w1.wpa_supplicant1'
Jun 04 22:46:02 AlexArch systemd[1]: Started WPA supplicant.
Jun 04 22:46:02 AlexArch wpa_supplicant[348]: Successfully initialized wpa_supplicant
Jun 04 22:46:02 AlexArch wpa_supplicant[348]: dbus: fill_dict_with_properties dbus_interface=fi.w1.wpa_supplicant1.Interface.P2PDevice dbus_property=P2PDeviceConfig getter failed
Jun 04 22:46:02 AlexArch NetworkManager[257]: <info>  [1685911562.3322] device (wlp3s0): supplicant interface state: internal-starting -> disconnected
Jun 04 22:46:02 AlexArch NetworkManager[257]: <info>  [1685911562.3330] device (wlp3s0): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-state: 'managed')
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): EDID for output DP-1
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): EDID for output HDMI-2
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): EDID for output DP-2
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): EDID for output DP-3
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output LVDS-1 connected
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output VGA-1 disconnected
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output HDMI-1 disconnected
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output DP-1 disconnected
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output HDMI-2 disconnected
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output DP-2 disconnected
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output DP-3 disconnected
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Using exact sizes for initial modes
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Output LVDS-1 using initial mode 1280x800 +0+0
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (==) modeset(0): DPI set to (96, 96)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Loading sub module "fb"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) LoadModule: "fb"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Module "fb" already built-in
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (==) modeset(0): Backing store enabled
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (==) modeset(0): Silken mouse enabled
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (==) modeset(0): DPMS enabled
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): [DRI2] Setup complete
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): [DRI2]   DRI driver: crocus
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): [DRI2]   VDPAU driver: va_gl
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension Generic Event Extension
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension SHAPE
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension MIT-SHM
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension XInputExtension
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension XTEST
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension BIG-REQUESTS
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension SYNC
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension XKEYBOARD
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension XC-MISC
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension SECURITY
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension XFIXES
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension RENDER
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension RANDR
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension COMPOSITE
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension DAMAGE
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension MIT-SCREEN-SAVER
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension DOUBLE-BUFFER
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension RECORD
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension DPMS
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension Present
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension DRI3
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension X-Resource
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension XVideo
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension XVideo-MotionCompensation
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension GLX
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) AIGLX: Loaded and initialized crocus
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) GLX: Initialized DRI2 GL provider for screen 0
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension XFree86-VidModeExtension
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension XFree86-DGA
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension XFree86-DRI
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Initializing extension DRI2
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Damage tracking initialized
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Setting screen physical size to 338 x 211
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device Power Button (/dev/input/event2)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Power Button: Applying InputClass "libinput keyboard catchall"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) LoadModule: "libinput"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Module libinput: vendor="X.Org Foundation"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]:         compiled for 1.21.1.8, module version = 1.3.0
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]:         Module class: X.Org XInput Driver
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]:         ABI class: X.Org XInput driver, version 24.4
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Using input driver 'libinput' for 'Power Button'
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 28 paused 0
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Power Button: always reports core events
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "Device" "/dev/input/event2"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event2  - Power Button: is tagged by udev as: Keyboard
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event2  - Power Button: device is a keyboard
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event2  - Power Button: device removed
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event2  - Power Button: is tagged by udev as: Keyboard
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event2  - Power Button: device is a keyboard
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device Video Bus (/dev/input/event5)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Video Bus: Applying InputClass "libinput keyboard catchall"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Using input driver 'libinput' for 'Video Bus'
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 31 paused 0
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Video Bus: always reports core events
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "Device" "/dev/input/event5"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event5  - Video Bus: is tagged by udev as: Keyboard
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event5  - Video Bus: device is a keyboard
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event5  - Video Bus: device removed
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input6/event5"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event5  - Video Bus: is tagged by udev as: Keyboard
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event5  - Video Bus: device is a keyboard
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) No input driver specified, ignoring this device.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) This device may have been added with another device file.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Using input driver 'libinput' for 'Sleep Button'
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 32 paused 0
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Sleep Button: always reports core events
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "Device" "/dev/input/event1"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event1  - Sleep Button: is tagged by udev as: Keyboard
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event1  - Sleep Button: device is a keyboard
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event1  - Sleep Button: device removed
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1/event1"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event1  - Sleep Button: is tagged by udev as: Keyboard
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event1  - Sleep Button: device is a keyboard
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device HDA Intel Dock Mic (/dev/input/event8)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) No input driver specified, ignoring this device.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) This device may have been added with another device file.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device HDA Intel Dock Headphone (/dev/input/event9)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) No input driver specified, ignoring this device.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) This device may have been added with another device file.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event10)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) No input driver specified, ignoring this device.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) This device may have been added with another device file.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event7)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) No input driver specified, ignoring this device.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) This device may have been added with another device file.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 33 paused 0
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) AT Translated Set 2 keyboard: always reports core events
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "Device" "/dev/input/event3"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event3  - AT Translated Set 2 keyboard: device removed
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input3/event3"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event11)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Using input driver 'libinput' for 'SynPS/2 Synaptics TouchPad'
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 34 paused 0
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) SynPS/2 Synaptics TouchPad: always reports core events
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "Device" "/dev/input/event11"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event11 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event11 - SynPS/2 Synaptics TouchPad: device is a touchpad
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event11 - SynPS/2 Synaptics TouchPad: device removed
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input8/event11"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 10)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "AccelerationScheme" "none"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) SynPS/2 Synaptics TouchPad: (accel) selected scheme none/0
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event11 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event11 - SynPS/2 Synaptics TouchPad: device is a touchpad
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) No input driver specified, ignoring this device.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) This device may have been added with another device file.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) No input driver specified, ignoring this device.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) This device may have been added with another device file.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event4)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) ThinkPad Extra Buttons: Applying InputClass "libinput keyboard catchall"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Using input driver 'libinput' for 'ThinkPad Extra Buttons'
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 35 paused 0
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) ThinkPad Extra Buttons: always reports core events
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "Device" "/dev/input/event4"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event4  - ThinkPad Extra Buttons: is tagged by udev as: Keyboard Switch
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event4  - ThinkPad Extra Buttons: device is a keyboard
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event4  - ThinkPad Extra Buttons: device removed
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input5/event4"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 11)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event4  - ThinkPad Extra Buttons: is tagged by udev as: Keyboard Switch
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event4  - ThinkPad Extra Buttons: device is a keyboard
Jun 04 22:46:02 AlexArch systemd[305]: Created slice User Core Session Slice.
Jun 04 22:46:02 AlexArch systemd[305]: Starting D-Bus User Message Bus...
Jun 04 22:46:02 AlexArch kernel: psmouse serio2: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Jun 04 22:46:02 AlexArch systemd[305]: Started D-Bus User Message Bus.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device HDA Intel Dock Mic (/dev/input/event8)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) No input driver specified, ignoring this device.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) This device may have been added with another device file.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device HDA Intel Dock Headphone (/dev/input/event9)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) No input driver specified, ignoring this device.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) This device may have been added with another device file.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event7)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) No input driver specified, ignoring this device.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) This device may have been added with another device file.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event10)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) No input driver specified, ignoring this device.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) This device may have been added with another device file.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: removing device SynPS/2 Synaptics TouchPad
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "fd" "34"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event11 - SynPS/2 Synaptics TouchPad: device removed
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) UnloadModule: "libinput"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: releasing fd for 13:75
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event11)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Using input driver 'libinput' for 'SynPS/2 Synaptics TouchPad'
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 10 paused 0
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) SynPS/2 Synaptics TouchPad: always reports core events
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "Device" "/dev/input/event11"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event11 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event11 - SynPS/2 Synaptics TouchPad: device is a touchpad
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event11 - SynPS/2 Synaptics TouchPad: device removed
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input8/event11"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 10)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "AccelerationScheme" "none"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) SynPS/2 Synaptics TouchPad: (accel) selected scheme none/0
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event11 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event11 - SynPS/2 Synaptics TouchPad: device is a touchpad
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) No input driver specified, ignoring this device.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) This device may have been added with another device file.
Jun 04 22:46:02 AlexArch kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input13
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse1)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) No input driver specified, ignoring this device.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) This device may have been added with another device file.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[356]: dbus-daemon[356]: [session uid=120 pid=356] Activating service name='org.a11y.Bus' requested by ':1.0' (uid=120 pid=362 comm="/usr/lib/gnome-session-check-accelerated")
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[356]: dbus-daemon[356]: [session uid=120 pid=356] Successfully activated service 'org.a11y.Bus'
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event12)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) TPPS/2 IBM TrackPoint: Applying InputClass "libinput pointer catchall"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) Using input driver 'libinput' for 'TPPS/2 IBM TrackPoint'
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 34 paused 0
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) TPPS/2 IBM TrackPoint: always reports core events
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "Device" "/dev/input/event12"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event12 - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse Pointingstick
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event12 - TPPS/2 IBM TrackPoint: device is a pointer
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event12 - TPPS/2 IBM TrackPoint: device removed
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) libinput: TPPS/2 IBM TrackPoint: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) libinput: TPPS/2 IBM TrackPoint: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) libinput: TPPS/2 IBM TrackPoint: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/serio2/input/input13/event12"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 12)
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "AccelerationScheme" "none"
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) TPPS/2 IBM TrackPoint: (accel) selected scheme none/0
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event12 - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse Pointingstick
Jun 04 22:46:02 AlexArch /usr/lib/gdm-x-session[332]: (II) event12 - TPPS/2 IBM TrackPoint: device is a pointer
Jun 04 22:46:03 AlexArch gnome-shell[381]: Running GNOME Shell (using mutter 44.2) as a X11 window and compositing manager
Jun 04 22:46:03 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): EDID vendor "LEN", prod id 16464
Jun 04 22:46:03 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Printing DDC gathered Modelines:
Jun 04 22:46:03 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x800"x0.0   71.11  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.4 kHz eP)
Jun 04 22:46:03 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x800"x0.0   60.10  1280 1328 1360 1457  800 803 809 825 -hsync -vsync (41.2 kHz e)
Jun 04 22:46:03 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): EDID vendor "LEN", prod id 16464
Jun 04 22:46:03 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Printing DDC gathered Modelines:
Jun 04 22:46:03 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x800"x0.0   71.11  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.4 kHz eP)
Jun 04 22:46:03 AlexArch /usr/lib/gdm-x-session[332]: (II) modeset(0): Modeline "1280x800"x0.0   60.10  1280 1328 1360 1457  800 803 809 825 -hsync -vsync (41.2 kHz e)
Jun 04 22:46:03 AlexArch gnome-shell[381]: Obtained a high priority EGL context
Jun 04 22:46:03 AlexArch gnome-shell[381]: Obtained a high priority EGL context
Jun 04 22:46:04 AlexArch gnome-shell[381]: Unset XDG_SESSION_ID, getCurrentSessionProxy() called outside a user session. Asking logind directly.
Jun 04 22:46:04 AlexArch gnome-shell[381]: Will monitor session 1
Jun 04 22:46:04 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='org.freedesktop.locale1' unit='dbus-org.freedesktop.locale1.service' requested by ':1.17' (uid=120 pid=381 comm="/usr/bin/gnome-shell")
Jun 04 22:46:04 AlexArch systemd[1]: Starting Locale Service...
Jun 04 22:46:04 AlexArch /usr/lib/gdm-x-session[356]: dbus-daemon[356]: [session uid=120 pid=356] Activating service name='org.gnome.Shell.Screencast' requested by ':1.5' (uid=120 pid=381 comm="/usr/bin/gnome-shell")
Jun 04 22:46:04 AlexArch dbus-daemon[255]: [system] Successfully activated service 'org.freedesktop.locale1'
Jun 04 22:46:04 AlexArch systemd[1]: Started Locale Service.
Jun 04 22:46:04 AlexArch /usr/lib/gdm-x-session[356]: dbus-daemon[356]: [session uid=120 pid=356] Activating service name='org.freedesktop.impl.portal.PermissionStore' requested by ':1.5' (uid=120 pid=381 comm="/usr/bin/gnome-shell")
Jun 04 22:46:04 AlexArch /usr/lib/gdm-x-session[356]: dbus-daemon[356]: [session uid=120 pid=356] Successfully activated service 'org.freedesktop.impl.portal.PermissionStore'
Jun 04 22:46:04 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service' requested by ':1.17' (uid=120 pid=381 comm="/usr/bin/gnome-shell")
Jun 04 22:46:04 AlexArch systemd[1]: Starting Daemon for power management...
Jun 04 22:46:05 AlexArch systemd[305]: Starting Sound Service...
Jun 04 22:46:05 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='org.freedesktop.GeoClue2' unit='geoclue.service' requested by ':1.17' (uid=120 pid=381 comm="/usr/bin/gnome-shell")
Jun 04 22:46:05 AlexArch systemd[1]: Starting Location Lookup Service...
Jun 04 22:46:05 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service' requested by ':1.20' (uid=120 pid=432 comm="/usr/bin/pulseaudio --daemonize=no --log-target=jo")
Jun 04 22:46:05 AlexArch systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Jun 04 22:46:05 AlexArch dbus-daemon[255]: [system] Successfully activated service 'org.freedesktop.UPower'
Jun 04 22:46:05 AlexArch systemd[1]: Started Daemon for power management.
Jun 04 22:46:05 AlexArch polkitd[283]: Registered Authentication Agent for unix-session:1 (system bus name :1.17 [/usr/bin/gnome-shell], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale C.UTF-8)
Jun 04 22:46:05 AlexArch dbus-daemon[255]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
Jun 04 22:46:05 AlexArch systemd[1]: Started RealtimeKit Scheduling Policy Service.
Jun 04 22:46:05 AlexArch rtkit-daemon[436]: Successfully called chroot.
Jun 04 22:46:05 AlexArch rtkit-daemon[436]: Successfully dropped privileges.
Jun 04 22:46:05 AlexArch rtkit-daemon[436]: Successfully limited resources.
Jun 04 22:46:05 AlexArch rtkit-daemon[436]: Running.
Jun 04 22:46:05 AlexArch rtkit-daemon[436]: Canary thread running.
Jun 04 22:46:05 AlexArch rtkit-daemon[436]: Watchdog thread running.
Jun 04 22:46:05 AlexArch rtkit-daemon[436]: Successfully made thread 432 of process 432 owned by '120' high priority at nice level -11.
Jun 04 22:46:05 AlexArch rtkit-daemon[436]: Supervising 1 threads of 1 processes of 1 users.
Jun 04 22:46:05 AlexArch /usr/lib/gdm-x-session[356]: dbus-daemon[356]: [session uid=120 pid=356] Activating service name='org.gnome.Shell.Notifications' requested by ':1.5' (uid=120 pid=381 comm="/usr/bin/gnome-shell")
Jun 04 22:46:05 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='org.freedesktop.Avahi' unit='dbus-org.freedesktop.Avahi.service' requested by ':1.25' (uid=969 pid=435 comm="/usr/lib/geoclue")
Jun 04 22:46:05 AlexArch dbus-daemon[255]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.Avahi.service': Unit dbus-org.freedesktop.Avahi.service not found.
Jun 04 22:46:05 AlexArch geoclue[435]: Failed to connect to avahi service: Daemon not running
Jun 04 22:46:05 AlexArch dbus-daemon[255]: [system] Successfully activated service 'org.freedesktop.GeoClue2'
Jun 04 22:46:05 AlexArch systemd[1]: Started Location Lookup Service.
Jun 04 22:46:05 AlexArch gnome-shell[381]: Extension apps-menu@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 22:46:05 AlexArch gnome-shell[381]: Extension auto-move-windows@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/auto-move-windows@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/auto-move-windows@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 22:46:05 AlexArch gnome-shell[381]: Extension drive-menu@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/drive-menu@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/drive-menu@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 22:46:05 AlexArch gnome-shell[381]: Extension launch-new-instance@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/launch-new-instance@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/launch-new-instance@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 22:46:05 AlexArch gnome-shell[381]: Extension native-window-placement@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/native-window-placement@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/native-window-placement@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 22:46:05 AlexArch gnome-shell[381]: Extension places-menu@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 22:46:05 AlexArch gnome-shell[381]: Extension screenshot-window-sizer@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/screenshot-window-sizer@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/screenshot-window-sizer@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 22:46:05 AlexArch gnome-shell[381]: Extension user-theme@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 22:46:05 AlexArch gnome-shell[381]: Extension window-list@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 22:46:05 AlexArch gnome-shell[381]: Extension windowsNavigator@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/windowsNavigator@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/windowsNavigator@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 22:46:05 AlexArch gnome-shell[381]: Extension workspace-indicator@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/workspace-indicator@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/workspace-indicator@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 22:46:05 AlexArch /usr/lib/gdm-x-session[371]: dbus-daemon[371]: Activating service name='org.a11y.atspi.Registry' requested by ':1.1' (uid=120 pid=381 comm="/usr/bin/gnome-shell")
Jun 04 22:46:05 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='org.freedesktop.ColorManager' unit='colord.service' requested by ':1.17' (uid=120 pid=381 comm="/usr/bin/gnome-shell")
Jun 04 22:46:05 AlexArch systemd[1]: Starting Manage, Install and Generate Color Profiles...
Jun 04 22:46:05 AlexArch dbus-daemon[255]: [system] Successfully activated service 'org.freedesktop.ColorManager'
Jun 04 22:46:05 AlexArch systemd[1]: Started Manage, Install and Generate Color Profiles.
Jun 04 22:46:05 AlexArch /usr/lib/gdm-x-session[371]: dbus-daemon[371]: Successfully activated service 'org.a11y.atspi.Registry'
Jun 04 22:46:05 AlexArch org.gnome.Shell.desktop[381]: Window manager warning: Failed to parse saved session file: Failed to open file “/var/lib/gdm/.config/mutter/sessions/104b13fe2470a4cdaa16859115639517300000003570000.ms”: No such file or directory
Jun 04 22:46:05 AlexArch /usr/lib/gdm-x-session[455]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Jun 04 22:46:05 AlexArch /usr/lib/gdm-x-session[356]: dbus-daemon[356]: [session uid=120 pid=356] Successfully activated service 'org.gnome.Shell.Notifications'
Jun 04 22:46:05 AlexArch gnome-shell[381]: Failed to launch ibus-daemon: Failed to execute child process “ibus-daemon” (No such file or directory)
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.4333] policy: auto-activating connection 'EOLO - FRITZ!Box 7530 BI' (85c7088b-d0e4-49e5-a8e2-36affc78ebd2)
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.4339] device (wlp3s0): Activation: starting connection 'EOLO - FRITZ!Box 7530 BI' (85c7088b-d0e4-49e5-a8e2-36affc78ebd2)
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.4341] device (wlp3s0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.4345] manager: NetworkManager state is now CONNECTING
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.4664] device (wlp3s0): set-hw-addr: reset MAC address to 00:21:6A:0F:BF:F2 (preserve)
Jun 04 22:46:05 AlexArch kernel: iwlwifi 0000:03:00.0: Radio type=0x0-0x2-0x0
Jun 04 22:46:05 AlexArch gnome-shell[381]: Error looking up permission: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for geolocation
Jun 04 22:46:05 AlexArch rtkit-daemon[436]: Supervising 1 threads of 1 processes of 1 users.
Jun 04 22:46:05 AlexArch rtkit-daemon[436]: Successfully made thread 495 of process 432 owned by '120' RT at priority 5.
Jun 04 22:46:05 AlexArch rtkit-daemon[436]: Supervising 2 threads of 1 processes of 1 users.
Jun 04 22:46:05 AlexArch rtkit-daemon[436]: Supervising 2 threads of 1 processes of 1 users.
Jun 04 22:46:05 AlexArch kernel: iwlwifi 0000:03:00.0: Radio type=0x0-0x2-0x0
Jun 04 22:46:05 AlexArch rtkit-daemon[436]: Successfully made thread 500 of process 432 owned by '120' RT at priority 5.
Jun 04 22:46:05 AlexArch rtkit-daemon[436]: Supervising 3 threads of 1 processes of 1 users.
Jun 04 22:46:05 AlexArch systemd[305]: Started Sound Service.
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.6652] device (wlp3s0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.6659] device (wlp3s0): Activation: (wifi) access point 'EOLO - FRITZ!Box 7530 BI' has security, but secrets are required.
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.6660] device (wlp3s0): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.6667] sup-iface[18276d24a34a20c5,0,wlp3s0]: wps: type pbc start...
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.6778] device (wlp3s0): supplicant interface state: disconnected -> interface_disabled
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.6793] device (wlp3s0): supplicant interface state: interface_disabled -> inactive
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.6808] device (wlp3s0): state change: need-auth -> prepare (reason 'none', sys-iface-state: 'managed')
Jun 04 22:46:05 AlexArch wpa_supplicant[348]: wlp3s0: WPS-PBC-ACTIVE
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.6872] device (wlp3s0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.6880] device (wlp3s0): Activation: (wifi) connection 'EOLO - FRITZ!Box 7530 BI' has security, and secrets exist.  No new secrets needed.
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.6883] Config: added 'ssid' value 'EOLO - FRITZ!Box 7530 BI'
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.6884] Config: added 'scan_ssid' value '1'
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.6885] Config: added 'bgscan' value 'simple:30:-65:300'
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.6887] Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 FT-PSK'
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.6888] Config: added 'auth_alg' value 'OPEN'
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.6889] Config: added 'psk' value '<hidden>'
Jun 04 22:46:05 AlexArch wpa_supplicant[348]: wlp3s0: WPS-CANCEL
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.6976] device (wlp3s0): supplicant interface state: inactive -> scanning
Jun 04 22:46:05 AlexArch wpa_supplicant[348]: wlp3s0: SME: Trying to authenticate with 3c:a6:2f:ae:86:98 (SSID='EOLO - FRITZ!Box 7530 BI' freq=5180 MHz)
Jun 04 22:46:05 AlexArch kernel: wlp3s0: authenticate with 3c:a6:2f:ae:86:98
Jun 04 22:46:05 AlexArch kernel: wlp3s0: send auth to 3c:a6:2f:ae:86:98 (try 1/3)
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.7835] device (wlp3s0): supplicant interface state: scanning -> authenticating
Jun 04 22:46:05 AlexArch kernel: rfkill: input handler disabled
Jun 04 22:46:05 AlexArch /usr/lib/gdm-x-session[356]: dbus-daemon[356]: [session uid=120 pid=356] Activating service name='org.freedesktop.systemd1' requested by ':1.11' (uid=120 pid=461 comm="/usr/lib/gsd-sharing")
Jun 04 22:46:05 AlexArch wpa_supplicant[348]: wlp3s0: Trying to associate with 3c:a6:2f:ae:86:98 (SSID='EOLO - FRITZ!Box 7530 BI' freq=5180 MHz)
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.8293] device (wlp3s0): supplicant interface state: authenticating -> associating
Jun 04 22:46:05 AlexArch kernel: wlp3s0: authenticated
Jun 04 22:46:05 AlexArch kernel: wlp3s0: waiting for beacon from 3c:a6:2f:ae:86:98
Jun 04 22:46:05 AlexArch /usr/lib/gdm-x-session[356]: dbus-daemon[356]: [session uid=120 pid=356] Activated service 'org.freedesktop.systemd1' failed: Process org.freedesktop.systemd1 exited with status 1
Jun 04 22:46:05 AlexArch gsd-sharing[461]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
Jun 04 22:46:05 AlexArch gsd-sharing[461]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.8627] agent-manager: agent[eea8fdbf0fe03c05,:1.17/org.gnome.Shell.NetworkAgent/120]: agent registered
Jun 04 22:46:05 AlexArch kernel: wlp3s0: associate with 3c:a6:2f:ae:86:98 (try 1/3)
Jun 04 22:46:05 AlexArch kernel: wlp3s0: RX AssocResp from 3c:a6:2f:ae:86:98 (capab=0x1511 status=0 aid=1)
Jun 04 22:46:05 AlexArch wpa_supplicant[348]: wlp3s0: Associated with 3c:a6:2f:ae:86:98
Jun 04 22:46:05 AlexArch wpa_supplicant[348]: wlp3s0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Jun 04 22:46:05 AlexArch kernel: wlp3s0: associated
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.9445] device (wlp3s0): supplicant interface state: associating -> associated
Jun 04 22:46:05 AlexArch NetworkManager[257]: <info>  [1685911565.9500] device (wlp3s0): supplicant interface state: associated -> 4way_handshake
Jun 04 22:46:06 AlexArch kernel: wlp3s0: Limiting TX power to 23 (23 - 0) dBm as advertised by 3c:a6:2f:ae:86:98
Jun 04 22:46:06 AlexArch wpa_supplicant[348]: wlp3s0: WPA: Key negotiation completed with 3c:a6:2f:ae:86:98 [PTK=CCMP GTK=TKIP]
Jun 04 22:46:06 AlexArch wpa_supplicant[348]: wlp3s0: CTRL-EVENT-CONNECTED - Connection to 3c:a6:2f:ae:86:98 completed [id=0 id_str=]
Jun 04 22:46:06 AlexArch kernel: IPv6: ADDRCONF(NETDEV_CHANGE): wlp3s0: link becomes ready
Jun 04 22:46:06 AlexArch NetworkManager[257]: <info>  [1685911566.0899] device (wlp3s0): supplicant interface state: 4way_handshake -> completed
Jun 04 22:46:06 AlexArch NetworkManager[257]: <info>  [1685911566.0899] device (wlp3s0): Activation: (wifi) Stage 2 of 5 (Device Configure) successful. Connected to wireless network "EOLO - FRITZ!Box 7530 BI"
Jun 04 22:46:06 AlexArch NetworkManager[257]: <info>  [1685911566.0903] device (wlp3s0): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
Jun 04 22:46:06 AlexArch NetworkManager[257]: <info>  [1685911566.0916] dhcp4 (wlp3s0): activation: beginning transaction (timeout in 45 seconds)
Jun 04 22:46:06 AlexArch NetworkManager[257]: <info>  [1685911566.1005] dhcp4 (wlp3s0): state changed new lease, address=192.168.178.129
Jun 04 22:46:06 AlexArch NetworkManager[257]: <info>  [1685911566.1027] policy: set 'EOLO - FRITZ!Box 7530 BI' (wlp3s0) as default for IPv4 routing and DNS
Jun 04 22:46:06 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='org.freedesktop.resolve1' unit='dbus-org.freedesktop.resolve1.service' requested by ':1.2' (uid=0 pid=257 comm="/usr/bin/NetworkManager --no-daemon")
Jun 04 22:46:06 AlexArch dbus-daemon[255]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.resolve1.service': Unit dbus-org.freedesktop.resolve1.service not found.
Jun 04 22:46:06 AlexArch /usr/lib/gdm-x-session[356]: dbus-daemon[356]: [session uid=120 pid=356] Activating service name='org.freedesktop.systemd1' requested by ':1.11' (uid=120 pid=461 comm="/usr/lib/gsd-sharing")
Jun 04 22:46:06 AlexArch /usr/lib/gdm-x-session[356]: dbus-daemon[356]: [session uid=120 pid=356] Activated service 'org.freedesktop.systemd1' failed: Process org.freedesktop.systemd1 exited with status 1
Jun 04 22:46:06 AlexArch gsd-sharing[461]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
Jun 04 22:46:06 AlexArch gsd-sharing[461]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
Jun 04 22:46:06 AlexArch NetworkManager[257]: <info>  [1685911566.1294] device (wlp3s0): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
Jun 04 22:46:06 AlexArch NetworkManager[257]: <info>  [1685911566.1381] device (wlp3s0): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
Jun 04 22:46:06 AlexArch NetworkManager[257]: <info>  [1685911566.1393] device (wlp3s0): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
Jun 04 22:46:06 AlexArch NetworkManager[257]: <info>  [1685911566.1457] manager: NetworkManager state is now CONNECTED_SITE
Jun 04 22:46:06 AlexArch NetworkManager[257]: <info>  [1685911566.1497] device (wlp3s0): Activation: successful, device activated.
Jun 04 22:46:06 AlexArch NetworkManager[257]: <info>  [1685911566.2868] manager: NetworkManager state is now CONNECTED_GLOBAL
Jun 04 22:46:06 AlexArch wpa_supplicant[348]: wlp3s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-43 noise=9999 txrate=27000
Jun 04 22:46:06 AlexArch gnome-session-binary[357]: Entering running state
Jun 04 22:46:06 AlexArch xbrlapi.desktop[644]: openConnection: connect: No such file or directory
Jun 04 22:46:06 AlexArch xbrlapi.desktop[644]: cannot connect to braille devices daemon brltty at :0
Jun 04 22:46:06 AlexArch /usr/lib/gdm-x-session[356]: dbus-daemon[356]: [session uid=120 pid=356] Activating service name='org.gnome.ScreenSaver' requested by ':1.24' (uid=120 pid=513 comm="/usr/lib/gsd-power")
Jun 04 22:46:06 AlexArch gsd-media-keys[486]: Failed to grab accelerator for keybinding settings:playback-random
Jun 04 22:46:06 AlexArch gsd-media-keys[486]: Failed to grab accelerator for keybinding settings:hibernate
Jun 04 22:46:06 AlexArch gsd-media-keys[486]: Failed to grab accelerator for keybinding settings:playback-repeat
Jun 04 22:46:06 AlexArch gsd-media-keys[486]: Failed to grab accelerator for keybinding settings:rotate-video-lock
Jun 04 22:46:06 AlexArch /usr/lib/gdm-x-session[356]: dbus-daemon[356]: [session uid=120 pid=356] Successfully activated service 'org.gnome.ScreenSaver'
Jun 04 22:46:06 AlexArch systemd[1]: systemd-rfkill.service: Deactivated successfully.
Jun 04 22:46:06 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='net.reactivated.Fprint' unit='fprintd.service' requested by ':1.17' (uid=120 pid=381 comm="/usr/bin/gnome-shell")
Jun 04 22:46:06 AlexArch systemd[1]: Starting Fingerprint Authentication Daemon...
Jun 04 22:46:07 AlexArch dbus-daemon[255]: [system] Successfully activated service 'net.reactivated.Fprint'
Jun 04 22:46:07 AlexArch systemd[1]: Started Fingerprint Authentication Daemon.
Jun 04 22:46:07 AlexArch gnome-shell[381]: Registering session with GDM
Jun 04 22:46:10 AlexArch systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Jun 04 22:46:29 AlexArch gnome-shell[381]: Error connecting to the screencast service
Jun 04 22:47:52 AlexArch systemd-timesyncd[237]: Contacted time server 95.110.254.234:123 (2.arch.pool.ntp.org).
Jun 04 22:47:52 AlexArch systemd-timesyncd[237]: Initial clock synchronization to Sun 2023-06-04 22:47:52.194233 CEST.
Jun 04 22:47:58 AlexArch systemd[1]: systemd-localed.service: Deactivated successfully.
Jun 04 22:47:58 AlexArch systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Jun 04 22:47:59 AlexArch systemd[1]: fprintd.service: Deactivated successfully.
Jun 04 22:48:27 AlexArch geoclue[435]: Service not used for 60 seconds. Shutting down..
Jun 04 22:48:27 AlexArch systemd[1]: geoclue.service: Deactivated successfully.
Jun 04 22:49:15 AlexArch wpa_supplicant[348]: wlp3s0: WPA: Group rekeying completed with 3c:a6:2f:ae:86:98 [GTK=TKIP]
Jun 04 22:49:26 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='net.reactivated.Fprint' unit='fprintd.service' requested by ':1.17' (uid=120 pid=381 comm="/usr/bin/gnome-shell")
Jun 04 22:49:26 AlexArch systemd[1]: Starting Fingerprint Authentication Daemon...
Jun 04 22:49:26 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.39' (uid=0 pid=716 comm="gdm-session-worker [pam/gdm-password]")
Jun 04 22:49:26 AlexArch dbus-daemon[255]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 04 22:49:26 AlexArch gdm-password][716]: pam_systemd_home(gdm-password:auth): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 04 22:49:26 AlexArch dbus-daemon[255]: [system] Successfully activated service 'net.reactivated.Fprint'
Jun 04 22:49:26 AlexArch systemd[1]: Started Fingerprint Authentication Daemon.
Jun 04 22:49:26 AlexArch /usr/lib/gdm-x-session[356]: dbus-daemon[356]: [session uid=120 pid=356] Failed to activate service 'org.gnome.Shell.Screencast': timed out (service_start_timeout=120000ms)
Jun 04 22:49:32 AlexArch gdm-password][716]: gkr-pam: unable to locate daemon control file
Jun 04 22:49:32 AlexArch gdm-password][716]: gkr-pam: stashed password to try later in open session
Jun 04 22:49:32 AlexArch gdm-password][716]: pam_unix(gdm-password:session): session opened for user alex(uid=1000) by alex(uid=0)
Jun 04 22:49:32 AlexArch systemd[1]: Created slice User Slice of UID 1000.
Jun 04 22:49:32 AlexArch systemd[1]: Starting User Runtime Directory /run/user/1000...
Jun 04 22:49:32 AlexArch systemd-logind[256]: New session 3 of user alex.
Jun 04 22:49:32 AlexArch systemd[1]: Finished User Runtime Directory /run/user/1000.
Jun 04 22:49:32 AlexArch systemd[1]: Starting User Manager for UID 1000...
Jun 04 22:49:32 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.43' (uid=0 pid=732 comm="(systemd)")
Jun 04 22:49:32 AlexArch dbus-daemon[255]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 04 22:49:32 AlexArch (systemd)[732]: pam_systemd_home(systemd-user:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 04 22:49:32 AlexArch (systemd)[732]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[alex] ruser=[<unknown>] rhost=[<unknown>]
Jun 04 22:49:32 AlexArch (systemd)[732]: pam_unix(systemd-user:session): session opened for user alex(uid=1000) by alex(uid=0)
Jun 04 22:49:32 AlexArch systemd[732]: Queued start job for default target Main User Target.
Jun 04 22:49:32 AlexArch systemd-journald[196]: /var/log/journal/951764c72dc84868a26e5614ab3564a8/user-1000.journal: Monotonic clock jumped backwards relative to last journal entry, rotating.
Jun 04 22:49:32 AlexArch systemd[732]: Created slice User Application Slice.
Jun 04 22:49:32 AlexArch systemd[732]: Reached target Paths.
Jun 04 22:49:32 AlexArch systemd[732]: Reached target Timers.
Jun 04 22:49:32 AlexArch systemd[732]: Starting D-Bus User Message Bus Socket...
Jun 04 22:49:32 AlexArch gnome-keyring-daemon[750]: GNOME_KEYRING_CONTROL=/run/user/1000/keyring
Jun 04 22:49:32 AlexArch systemd[732]: Listening on GnuPG network certificate management daemon.
Jun 04 22:49:32 AlexArch systemd[732]: Listening on GCR ssh-agent wrapper.
Jun 04 22:49:32 AlexArch systemd[732]: Listening on GNOME Keyring daemon.
Jun 04 22:49:32 AlexArch systemd[732]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jun 04 22:49:32 AlexArch systemd[732]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Jun 04 22:49:32 AlexArch systemd[732]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Jun 04 22:49:32 AlexArch systemd[732]: Listening on GnuPG cryptographic agent and passphrase cache.
Jun 04 22:49:32 AlexArch systemd[732]: Listening on p11-kit server.
Jun 04 22:49:32 AlexArch systemd[732]: Listening on PipeWire Multimedia System Socket.
Jun 04 22:49:32 AlexArch systemd[732]: Listening on Sound System.
Jun 04 22:49:32 AlexArch systemd[732]: Listening on D-Bus User Message Bus Socket.
Jun 04 22:49:32 AlexArch systemd[732]: Reached target Sockets.
Jun 04 22:49:32 AlexArch systemd[732]: Reached target Basic System.
Jun 04 22:49:32 AlexArch systemd[1]: Started User Manager for UID 1000.
Jun 04 22:49:32 AlexArch systemd[1]: Started Session 3 of User alex.
Jun 04 22:49:32 AlexArch systemd[732]: Starting Update XDG user dir configuration...
Jun 04 22:49:32 AlexArch systemd[732]: Finished Update XDG user dir configuration.
Jun 04 22:49:32 AlexArch systemd[732]: Reached target Main User Target.
Jun 04 22:49:32 AlexArch systemd[732]: Startup finished in 318ms.
Jun 04 22:49:32 AlexArch systemd[732]: Started GNOME Keyring daemon.
Jun 04 22:49:32 AlexArch systemd[732]: Created slice User Core Session Slice.
Jun 04 22:49:32 AlexArch systemd[732]: Starting D-Bus User Message Bus...
Jun 04 22:49:32 AlexArch systemd[732]: Started D-Bus User Message Bus.
Jun 04 22:49:32 AlexArch gdm-password][716]: gkr-pam: unlocked login keyring
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "fd" "28"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[332]: (II) event2  - Power Button: device removed
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "fd" "31"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[332]: (II) event5  - Video Bus: device removed
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "fd" "32"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[332]: (II) event1  - Sleep Button: device removed
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "fd" "33"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[332]: (II) event3  - AT Translated Set 2 keyboard: device removed
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "fd" "35"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[332]: (II) event4  - ThinkPad Extra Buttons: device removed
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "fd" "10"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[332]: (II) event11 - SynPS/2 Synaptics TouchPad: device removed
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[332]: (**) Option "fd" "34"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[332]: (II) event12 - TPPS/2 IBM TrackPoint: device removed
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[332]: (II) AIGLX: Suspending AIGLX clients for VT switch
Jun 04 22:49:33 AlexArch kernel: rfkill: input handler enabled
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[332]: (EE) modeset(0): failed to set mode: Permission denied
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got pause for 13:66
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got pause for 13:68
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got pause for 13:67
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got pause for 13:75
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got pause for 13:76
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got pause for 13:65
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: got pause for 13:69
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: _XSERVTransSocketUNIXCreateListener: ...SocketCreateListener() failed
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: _XSERVTransMakeAllCOTSServerListeners: server already running
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (--) Log file renamed from "/home/alex/.local/share/xorg/Xorg.pid-769.log" to "/home/alex/.local/share/xorg/Xorg.1.log"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: X.Org X Server 1.21.1.8
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: X Protocol Version 11, Revision 0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: Current Operating System: Linux AlexArch 6.3.5-arch1-1 #1 SMP PREEMPT_DYNAMIC Tue, 30 May 2023 13:44:01 +0000 x86_64
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=882f05fb-ea19-4494-99b9-75cacc2e0493 rw loglevel=3 quiet
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:  
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: Current version of pixman: 0.42.2
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         Before reporting problems, check http://wiki.x.org
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         to make sure that you have the latest version.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: Markers: (--) probed, (**) from config file, (==) default setting,
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         (++) from command line, (!!) notice, (II) informational,
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) Log file: "/home/alex/.local/share/xorg/Xorg.1.log", Time: Sun Jun  4 22:49:33 2023
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) Using system config directory "/usr/share/X11/xorg.conf.d"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) No Layout section.  Using the first Screen section.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) No screen section available. Using defaults.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) |-->Screen "Default Screen Section" (0)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) |   |-->Monitor "<default monitor>"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) No monitor specified for screen "Default Screen Section".
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         Using a default monitor configuration.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) Automatically adding devices
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) Automatically enabling devices
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) Automatically adding GPU devices
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) Automatically binding GPU devices
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) Max clients allowed: 256, resource mask: 0x1fffff
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (WW) The directory "/usr/share/fonts/misc" does not exist.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         Entry deleted from font path.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (WW) The directory "/usr/share/fonts/TTF" does not exist.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         Entry deleted from font path.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (WW) The directory "/usr/share/fonts/OTF" does not exist.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         Entry deleted from font path.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (WW) The directory "/usr/share/fonts/Type1" does not exist.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         Entry deleted from font path.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (WW) The directory "/usr/share/fonts/100dpi" does not exist.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         Entry deleted from font path.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (WW) The directory "/usr/share/fonts/75dpi" does not exist.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         Entry deleted from font path.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) FontPath set to:
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) ModulePath set to "/usr/lib/xorg/modules"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) The server relies on udev to provide the list of input devices.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         If no devices become available, reconfigure udev or disable AutoAddDevices.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Module ABI versions:
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         X.Org ANSI C Emulation: 0.4
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         X.Org Video Driver: 25.2
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         X.Org XInput driver : 24.4
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         X.Org Server Extension : 10.0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (++) using VT number 2
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) systemd-logind: took control of session /org/freedesktop/login1/session/_33
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) xfree86: Adding drm device (/dev/dri/card0)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 15 paused 0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (--) PCI:*(0@0:2:0) 8086:2a42:17aa:20e4 rev 7, Mem @ 0xf4400000/4194304, 0xd0000000/268435456, I/O @ 0x00001800/8, BIOS @ 0x????????/131072
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (--) PCI: (0@0:2:1) 8086:2a43:17aa:20e4 rev 7, Mem @ 0xf4200000/1048576
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) LoadModule: "glx"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Module glx: vendor="X.Org Foundation"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         compiled for 1.21.1.8, module version = 1.0.0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         ABI class: X.Org Server Extension, version 10.0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) Matched intel as autoconfigured driver 0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) Matched modesetting as autoconfigured driver 1
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) Matched fbdev as autoconfigured driver 2
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) Matched vesa as autoconfigured driver 3
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) Assigned the driver to the xf86ConfigLayout
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) LoadModule: "intel"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (WW) Warning, couldn't open module intel
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (EE) Failed to load module "intel" (module does not exist, 0)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) LoadModule: "modesetting"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Module modesetting: vendor="X.Org Foundation"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         compiled for 1.21.1.8, module version = 1.21.1
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         Module class: X.Org Video Driver
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         ABI class: X.Org Video Driver, version 25.2
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) LoadModule: "fbdev"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (WW) Warning, couldn't open module fbdev
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (EE) Failed to load module "fbdev" (module does not exist, 0)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) LoadModule: "vesa"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (WW) Warning, couldn't open module vesa
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (EE) Failed to load module "vesa" (module does not exist, 0)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modesetting: Driver for Modesetting Kernel Drivers: kms
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): using drv /dev/dri/card0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Creating default Display subsection in Screen section
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         "Default Screen Section" for depth/fbbpp 24/32
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) modeset(0): Depth 24, (==) framebuffer bpp 32
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) modeset(0): RGB weight 888
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) modeset(0): Default visual is TrueColor
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Loading sub module "glamoregl"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) LoadModule: "glamoregl"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Loading /usr/lib/xorg/modules/libglamoregl.so
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Module glamoregl: vendor="X.Org Foundation"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         compiled for 1.21.1.8, module version = 1.0.1
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         ABI class: X.Org ANSI C Emulation, version 0.4
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): glamor X acceleration enabled on Mesa Mobile Intel® GM45 Express Chipset (CTG)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): glamor initialized
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) modeset(0): VariableRefresh: disabled
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) modeset(0): AsyncFlipSecondaries: disabled
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Output LVDS-1 has no monitor section
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Output VGA-1 has no monitor section
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Output HDMI-1 has no monitor section
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Output DP-1 has no monitor section
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Output HDMI-2 has no monitor section
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Output DP-2 has no monitor section
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Output DP-3 has no monitor section
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): EDID for output LVDS-1
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Manufacturer: LEN  Model: 4050  Serial#: 0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Year: 2006  Week: 0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): EDID Version: 1.3
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Digital Display Input
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Max Image Size [cm]: horiz.: 33  vert.: 21
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Gamma: 2.20
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): DPMS capabilities: StandBy Suspend Off
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): First detailed timing is preferred mode
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): redX: 0.590 redY: 0.340   greenX: 0.320 greenY: 0.550
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): blueX: 0.152 blueY: 0.130   whiteX: 0.313 whiteY: 0.329
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Manufacturer's mask: 0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Supported detailed timing:
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): clock: 71.1 MHz   Image Size:  331 x 207 mm
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1440 h_border: 0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 823 v_border: 0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Supported detailed timing:
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): clock: 60.1 MHz   Image Size:  331 x 207 mm
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1457 h_border: 0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 825 v_border: 0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Unknown vendor-specific block f
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0):  LTN154X3-L02
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): EDID (in hex):
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0):         00ffffffffffff0030ae504000000000
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0):         0010010380211578ea03159757528c27
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0):         21505400000001010101010101010101
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0):         010101010101c71b00a0502017303020
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0):         36004bcf100000197a1700b150201930
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0):         302036004bcf100000190000000f0081
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0):         0a32810a281401004ca35833000000fe
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0):         004c544e31353458332d4c30320a00c2
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Printing probed modes for output LVDS-1
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "1280x800"x60.0   71.11  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.4 kHz eP)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "1280x800"x120.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "1280x800"x119.9  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "1280x800"x50.0   60.10  1280 1328 1360 1457  800 803 809 825 -hsync -vsync (41.2 kHz e)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "1280x720"x120.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "1280x720"x120.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "1024x576"x119.9   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "1024x576"x119.9   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "960x600"x119.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "960x600"x120.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "960x540"x119.9   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "960x540"x120.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "840x525"x120.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "840x525"x119.8   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "800x450"x119.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "800x450"x119.6   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "700x450"x119.9   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "700x450"x119.8   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "684x384"x119.8   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "684x384"x119.7   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "640x400"x119.8   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "640x400"x120.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "640x360"x119.7   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "640x360"x119.7   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "512x288"x120.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "512x288"x119.8   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "480x270"x119.3   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "480x270"x119.6   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "432x243"x119.8   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "432x243"x119.1   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "360x202"x119.0   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "360x202"x118.3   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "320x180"x119.7    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "320x180"x118.6    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): EDID for output VGA-1
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): EDID for output HDMI-1
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): EDID for output DP-1
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): EDID for output HDMI-2
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): EDID for output DP-2
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): EDID for output DP-3
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Output LVDS-1 connected
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Output VGA-1 disconnected
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Output HDMI-1 disconnected
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Output DP-1 disconnected
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Output HDMI-2 disconnected
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Output DP-2 disconnected
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Output DP-3 disconnected
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Using exact sizes for initial modes
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Output LVDS-1 using initial mode 1280x800 +0+0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) modeset(0): DPI set to (96, 96)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Loading sub module "fb"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) LoadModule: "fb"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Module "fb" already built-in
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) modeset(0): Backing store enabled
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) modeset(0): Silken mouse enabled
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (==) modeset(0): DPMS enabled
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): [DRI2] Setup complete
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): [DRI2]   DRI driver: crocus
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): [DRI2]   VDPAU driver: va_gl
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension Generic Event Extension
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension SHAPE
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension MIT-SHM
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension XInputExtension
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension XTEST
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension BIG-REQUESTS
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension SYNC
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension XKEYBOARD
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension XC-MISC
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension SECURITY
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension XFIXES
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension RENDER
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension RANDR
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension COMPOSITE
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension DAMAGE
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension MIT-SCREEN-SAVER
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension DOUBLE-BUFFER
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension RECORD
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension DPMS
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension Present
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension DRI3
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension X-Resource
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension XVideo
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension XVideo-MotionCompensation
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension GLX
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) AIGLX: Loaded and initialized crocus
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) GLX: Initialized DRI2 GL provider for screen 0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension XFree86-VidModeExtension
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension XFree86-DGA
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension XFree86-DRI
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Initializing extension DRI2
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Damage tracking initialized
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Setting screen physical size to 338 x 211
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) config/udev: Adding input device Power Button (/dev/input/event2)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) Power Button: Applying InputClass "libinput keyboard catchall"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) LoadModule: "libinput"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Module libinput: vendor="X.Org Foundation"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         compiled for 1.21.1.8, module version = 1.3.0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         Module class: X.Org XInput Driver
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]:         ABI class: X.Org XInput driver, version 24.4
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Using input driver 'libinput' for 'Power Button'
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 29 paused 0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) Power Button: always reports core events
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) Option "Device" "/dev/input/event2"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event2  - Power Button: is tagged by udev as: Keyboard
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event2  - Power Button: device is a keyboard
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event2  - Power Button: device removed
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event2  - Power Button: is tagged by udev as: Keyboard
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event2  - Power Button: device is a keyboard
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) config/udev: Adding input device Video Bus (/dev/input/event5)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) Video Bus: Applying InputClass "libinput keyboard catchall"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Using input driver 'libinput' for 'Video Bus'
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 32 paused 0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) Video Bus: always reports core events
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) Option "Device" "/dev/input/event5"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event5  - Video Bus: is tagged by udev as: Keyboard
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event5  - Video Bus: device is a keyboard
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event5  - Video Bus: device removed
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input6/event5"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event5  - Video Bus: is tagged by udev as: Keyboard
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event5  - Video Bus: device is a keyboard
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) No input driver specified, ignoring this device.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) This device may have been added with another device file.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Using input driver 'libinput' for 'Sleep Button'
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 33 paused 0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) Sleep Button: always reports core events
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) Option "Device" "/dev/input/event1"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event1  - Sleep Button: is tagged by udev as: Keyboard
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event1  - Sleep Button: device is a keyboard
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event1  - Sleep Button: device removed
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1/event1"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event1  - Sleep Button: is tagged by udev as: Keyboard
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event1  - Sleep Button: device is a keyboard
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) config/udev: Adding input device HDA Intel Dock Mic (/dev/input/event8)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) No input driver specified, ignoring this device.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) This device may have been added with another device file.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) config/udev: Adding input device HDA Intel Dock Headphone (/dev/input/event9)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) No input driver specified, ignoring this device.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) This device may have been added with another device file.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event10)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) No input driver specified, ignoring this device.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) This device may have been added with another device file.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event7)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) No input driver specified, ignoring this device.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) This device may have been added with another device file.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 34 paused 0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) AT Translated Set 2 keyboard: always reports core events
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) Option "Device" "/dev/input/event3"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event3  - AT Translated Set 2 keyboard: device removed
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input3/event3"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event11)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Using input driver 'libinput' for 'SynPS/2 Synaptics TouchPad'
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 35 paused 0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) SynPS/2 Synaptics TouchPad: always reports core events
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) Option "Device" "/dev/input/event11"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event11 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event11 - SynPS/2 Synaptics TouchPad: device is a touchpad
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event11 - SynPS/2 Synaptics TouchPad: device removed
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input8/event11"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 10)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) Option "AccelerationScheme" "none"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) SynPS/2 Synaptics TouchPad: (accel) selected scheme none/0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event11 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event11 - SynPS/2 Synaptics TouchPad: device is a touchpad
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) No input driver specified, ignoring this device.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) This device may have been added with another device file.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event12)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) TPPS/2 IBM TrackPoint: Applying InputClass "libinput pointer catchall"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Using input driver 'libinput' for 'TPPS/2 IBM TrackPoint'
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 36 paused 0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) TPPS/2 IBM TrackPoint: always reports core events
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) Option "Device" "/dev/input/event12"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event12 - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse Pointingstick
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event12 - TPPS/2 IBM TrackPoint: device is a pointer
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event12 - TPPS/2 IBM TrackPoint: device removed
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) libinput: TPPS/2 IBM TrackPoint: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) libinput: TPPS/2 IBM TrackPoint: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) libinput: TPPS/2 IBM TrackPoint: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/serio2/input/input13/event12"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 11)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) Option "AccelerationScheme" "none"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) TPPS/2 IBM TrackPoint: (accel) selected scheme none/0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event12 - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse Pointingstick
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event12 - TPPS/2 IBM TrackPoint: device is a pointer
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse1)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) No input driver specified, ignoring this device.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) This device may have been added with another device file.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) No input driver specified, ignoring this device.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) This device may have been added with another device file.
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event4)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) ThinkPad Extra Buttons: Applying InputClass "libinput keyboard catchall"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) Using input driver 'libinput' for 'ThinkPad Extra Buttons'
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 37 paused 0
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) ThinkPad Extra Buttons: always reports core events
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) Option "Device" "/dev/input/event4"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event4  - ThinkPad Extra Buttons: is tagged by udev as: Keyboard Switch
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event4  - ThinkPad Extra Buttons: device is a keyboard
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event4  - ThinkPad Extra Buttons: device removed
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input5/event4"
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 12)
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event4  - ThinkPad Extra Buttons: is tagged by udev as: Keyboard Switch
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[769]: (II) event4  - ThinkPad Extra Buttons: device is a keyboard
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[799]: /etc/gdm/Xsession: Beginning session setup...
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[812]: localuser:alex being added to access control list
Jun 04 22:49:33 AlexArch /usr/lib/gdm-x-session[799]: /etc/gdm/Xsession: Setup done, will execute: /usr/bin/gnome-session
Jun 04 22:49:34 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating via systemd: service name='org.gtk.vfs.Daemon' unit='gvfs-daemon.service' requested by ':1.4' (uid=1000 pid=820 comm="/usr/lib/gnome-session-check-accelerated")
Jun 04 22:49:34 AlexArch systemd[732]: Starting Virtual filesystem service...
Jun 04 22:49:34 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gtk.vfs.Daemon'
Jun 04 22:49:34 AlexArch systemd[732]: Started Virtual filesystem service.
Jun 04 22:49:34 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating via systemd: service name='org.a11y.Bus' unit='at-spi-dbus-bus.service' requested by ':1.6' (uid=1000 pid=820 comm="/usr/lib/gnome-session-check-accelerated")
Jun 04 22:49:34 AlexArch systemd[732]: Starting Accessibility services bus...
Jun 04 22:49:34 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.a11y.Bus'
Jun 04 22:49:34 AlexArch systemd[732]: Started Accessibility services bus.
Jun 04 22:49:34 AlexArch systemd[732]: Created slice Slice /app/gnome-session-manager.
Jun 04 22:49:34 AlexArch systemd[732]: Reached target GNOME X11 Session.
Jun 04 22:49:34 AlexArch systemd[732]: Reached target Session services which should run early before the graphical session is brought up.
Jun 04 22:49:34 AlexArch systemd[732]: Reached target GNOME Shell.
Jun 04 22:49:34 AlexArch systemd[732]: Starting Monitor Session leader for GNOME Session...
Jun 04 22:49:34 AlexArch systemd[732]: Started Monitor Session leader for GNOME Session.
Jun 04 22:49:34 AlexArch systemd[732]: Reached target Tasks to be run before GNOME Session starts.
Jun 04 22:49:34 AlexArch systemd[732]: Starting GNOME Session Manager (session: gnome)...
Jun 04 22:49:34 AlexArch gnome-keyring-daemon[750]: The Secret Service was already initialized
Jun 04 22:49:34 AlexArch gnome-keyring-d[750]: The Secret Service was already initialized
Jun 04 22:49:34 AlexArch gnome-keyring-daemon[871]: discover_other_daemon: 1
Jun 04 22:49:34 AlexArch gnome-keyring-secrets.desktop[871]: discover_other_daemon: 1GNOME_KEYRING_CONTROL=/run/user/1000/keyring
Jun 04 22:49:34 AlexArch systemd[732]: Started Application launched by gnome-session-binary.
Jun 04 22:49:34 AlexArch systemd[732]: app-gnome-gnome\x2dkeyring\x2dsecrets-864.scope: Couldn't move process 864 to requested cgroup '/user.slice/user-1000.slice/user@1000.service/app.slice/app-gnome-gnome\x2dkeyring\x2dsecrets-864.scope': No such process
Jun 04 22:49:34 AlexArch systemd[732]: app-gnome-gnome\x2dkeyring\x2dsecrets-864.scope: Failed to add PIDs to scope's control group: No such process
Jun 04 22:49:34 AlexArch systemd[732]: app-gnome-gnome\x2dkeyring\x2dsecrets-864.scope: Failed with result 'resources'.
Jun 04 22:49:34 AlexArch systemd[732]: Failed to start Application launched by gnome-session-binary.
Jun 04 22:49:34 AlexArch systemd[732]: Started Application launched by gnome-session-binary.
Jun 04 22:49:34 AlexArch gnome-keyring-daemon[750]: The PKCS#11 component was already initialized
Jun 04 22:49:34 AlexArch gnome-keyring-d[750]: The PKCS#11 component was already initialized
Jun 04 22:49:34 AlexArch gnome-keyring-daemon[872]: discover_other_daemon: 1
Jun 04 22:49:34 AlexArch gnome-keyring-daemon[873]: discover_other_daemon: 1
Jun 04 22:49:34 AlexArch gnome-keyring-pkcs11.desktop[873]: discover_other_daemon: 1GNOME_KEYRING_CONTROL=/run/user/1000/keyring
Jun 04 22:49:34 AlexArch gnome-keyring-pkcs11.desktop[873]: SSH_AUTH_SOCK=/run/user/1000/keyring/ssh
Jun 04 22:49:34 AlexArch gnome-keyring-ssh.desktop[872]: discover_other_daemon: 1GNOME_KEYRING_CONTROL=/run/user/1000/keyring
Jun 04 22:49:34 AlexArch gnome-keyring-ssh.desktop[872]: SSH_AUTH_SOCK=/run/user/1000/keyring/ssh
Jun 04 22:49:34 AlexArch systemd[732]: Started GNOME Session Manager (session: gnome).
Jun 04 22:49:34 AlexArch systemd[732]: Reached target GNOME Session Manager is ready.
Jun 04 22:49:34 AlexArch systemd[732]: Starting GNOME Shell on Wayland...
Jun 04 22:49:34 AlexArch systemd[732]: Starting GNOME Shell on X11...
Jun 04 22:49:34 AlexArch systemd[732]: org.gnome.Shell@wayland.service: Skipped due to 'exec-condition'.
Jun 04 22:49:34 AlexArch systemd[732]: Condition check resulted in GNOME Shell on Wayland being skipped.
Jun 04 22:49:34 AlexArch gnome-shell[877]: Running GNOME Shell (using mutter 44.2) as a X11 window and compositing manager
Jun 04 22:49:34 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): EDID vendor "LEN", prod id 16464
Jun 04 22:49:34 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Printing DDC gathered Modelines:
Jun 04 22:49:34 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "1280x800"x0.0   71.11  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.4 kHz eP)
Jun 04 22:49:34 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "1280x800"x0.0   60.10  1280 1328 1360 1457  800 803 809 825 -hsync -vsync (41.2 kHz e)
Jun 04 22:49:34 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): EDID vendor "LEN", prod id 16464
Jun 04 22:49:34 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Printing DDC gathered Modelines:
Jun 04 22:49:34 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "1280x800"x0.0   71.11  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.4 kHz eP)
Jun 04 22:49:34 AlexArch /usr/lib/gdm-x-session[769]: (II) modeset(0): Modeline "1280x800"x0.0   60.10  1280 1328 1360 1457  800 803 809 825 -hsync -vsync (41.2 kHz e)
Jun 04 22:49:34 AlexArch gnome-shell[877]: Obtained a high priority EGL context
Jun 04 22:49:34 AlexArch gnome-shell[877]: Obtained a high priority EGL context
Jun 04 22:49:35 AlexArch gnome-shell[877]: Unset XDG_SESSION_ID, getCurrentSessionProxy() called outside a user session. Asking logind directly.
Jun 04 22:49:35 AlexArch gnome-shell[877]: Will monitor session 3
Jun 04 22:49:35 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating service name='org.gnome.Shell.Screencast' requested by ':1.17' (uid=1000 pid=877 comm="/usr/bin/gnome-shell")
Jun 04 22:49:35 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating via systemd: service name='org.freedesktop.impl.portal.PermissionStore' unit='xdg-permission-store.service' requested by ':1.17' (uid=1000 pid=877 comm="/usr/bin/gnome-shell")
Jun 04 22:49:35 AlexArch systemd[732]: Starting sandboxed app permission store...
Jun 04 22:49:35 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.freedesktop.impl.portal.PermissionStore'
Jun 04 22:49:35 AlexArch systemd[732]: Started sandboxed app permission store.
Jun 04 22:49:35 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating service name='org.gnome.Shell.CalendarServer' requested by ':1.17' (uid=1000 pid=877 comm="/usr/bin/gnome-shell")
Jun 04 22:49:35 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating via systemd: service name='org.gnome.evolution.dataserver.Sources5' unit='evolution-source-registry.service' requested by ':1.22' (uid=1000 pid=919 comm="/usr/lib/gnome-shell-calendar-server")
Jun 04 22:49:35 AlexArch systemd[732]: Starting Evolution source registry...
Jun 04 22:49:36 AlexArch systemd[732]: Starting Sound Service...
Jun 04 22:49:36 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='org.freedesktop.GeoClue2' unit='geoclue.service' requested by ':1.49' (uid=1000 pid=877 comm="/usr/bin/gnome-shell")
Jun 04 22:49:36 AlexArch systemd[1]: Starting Location Lookup Service...
Jun 04 22:49:36 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating service name='org.gnome.OnlineAccounts' requested by ':1.23' (uid=1000 pid=927 comm="/usr/lib/evolution-source-registry")
Jun 04 22:49:36 AlexArch rtkit-daemon[436]: Successfully made thread 937 of process 937 owned by '1000' high priority at nice level -11.
Jun 04 22:49:36 AlexArch rtkit-daemon[436]: Supervising 4 threads of 2 processes of 2 users.
Jun 04 22:49:36 AlexArch polkitd[283]: Registered Authentication Agent for unix-session:3 (system bus name :1.49 [/usr/bin/gnome-shell], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale C.UTF-8)
Jun 04 22:49:36 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='org.freedesktop.Avahi' unit='dbus-org.freedesktop.Avahi.service' requested by ':1.54' (uid=969 pid=938 comm="/usr/lib/geoclue")
Jun 04 22:49:36 AlexArch dbus-daemon[255]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.Avahi.service': Unit dbus-org.freedesktop.Avahi.service not found.
Jun 04 22:49:36 AlexArch geoclue[938]: Failed to connect to avahi service: Daemon not running
Jun 04 22:49:36 AlexArch dbus-daemon[255]: [system] Successfully activated service 'org.freedesktop.GeoClue2'
Jun 04 22:49:36 AlexArch systemd[1]: Started Location Lookup Service.
Jun 04 22:49:36 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gnome.evolution.dataserver.Sources5'
Jun 04 22:49:36 AlexArch systemd[732]: Started Evolution source registry.
Jun 04 22:49:36 AlexArch gnome-shell[877]: Telepathy is not available, chat integration will be disabled.
Jun 04 22:49:36 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating via systemd: service name='org.gnome.evolution.dataserver.Calendar8' unit='evolution-calendar-factory.service' requested by ':1.22' (uid=1000 pid=919 comm="/usr/lib/gnome-shell-calendar-server")
Jun 04 22:49:36 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating via systemd: service name='org.gtk.vfs.UDisks2VolumeMonitor' unit='gvfs-udisks2-volume-monitor.service' requested by ':1.17' (uid=1000 pid=877 comm="/usr/bin/gnome-shell")
Jun 04 22:49:36 AlexArch systemd[732]: Starting Evolution calendar service...
Jun 04 22:49:36 AlexArch systemd[732]: Starting Virtual filesystem service - disk device monitor...
Jun 04 22:49:36 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gnome.Shell.CalendarServer'
Jun 04 22:49:36 AlexArch goa-daemon[946]: goa-daemon version 3.48.0 starting
Jun 04 22:49:36 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating service name='org.gnome.Identity' requested by ':1.26' (uid=1000 pid=946 comm="/usr/lib/goa-daemon")
Jun 04 22:49:36 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='org.freedesktop.UDisks2' unit='udisks2.service' requested by ':1.55' (uid=1000 pid=958 comm="/usr/lib/gvfs-udisks2-volume-monitor")
Jun 04 22:49:36 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gnome.OnlineAccounts'
Jun 04 22:49:36 AlexArch systemd[1]: Starting Disk Manager...
Jun 04 22:49:36 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gnome.Identity'
Jun 04 22:49:36 AlexArch udisksd[973]: udisks daemon version 2.9.4 starting
Jun 04 22:49:36 AlexArch rtkit-daemon[436]: Supervising 4 threads of 2 processes of 2 users.
Jun 04 22:49:36 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gnome.evolution.dataserver.Calendar8'
Jun 04 22:49:36 AlexArch rtkit-daemon[436]: Successfully made thread 981 of process 937 owned by '1000' RT at priority 5.
Jun 04 22:49:36 AlexArch systemd[732]: Started Evolution calendar service.
Jun 04 22:49:36 AlexArch rtkit-daemon[436]: Supervising 5 threads of 2 processes of 2 users.
Jun 04 22:49:36 AlexArch rtkit-daemon[436]: Supervising 5 threads of 2 processes of 2 users.
Jun 04 22:49:36 AlexArch rtkit-daemon[436]: Successfully made thread 990 of process 937 owned by '1000' RT at priority 5.
Jun 04 22:49:36 AlexArch rtkit-daemon[436]: Supervising 6 threads of 2 processes of 2 users.
Jun 04 22:49:36 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating via systemd: service name='org.gnome.evolution.dataserver.AddressBook10' unit='evolution-addressbook-factory.service' requested by ':1.25' (uid=1000 pid=957 comm="/usr/lib/evolution-calendar-factory")
Jun 04 22:49:36 AlexArch systemd[732]: Starting Evolution address book service...
Jun 04 22:49:36 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service' requested by ':1.61' (uid=1000 pid=937 comm="/usr/bin/pulseaudio --daemonize=no --log-target=jo")
Jun 04 22:49:36 AlexArch dbus-daemon[255]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service not found.
Jun 04 22:49:36 AlexArch pulseaudio[937]: stat('/etc/pulse/default.pa.d'): No such file or directory
Jun 04 22:49:36 AlexArch systemd[732]: Started Sound Service.
Jun 04 22:49:36 AlexArch pulseaudio[937]: GetManagedObjects() failed: org.freedesktop.systemd1.NoSuchUnit: Unit dbus-org.bluez.service not found.
Jun 04 22:49:36 AlexArch dbus-daemon[255]: [system] Successfully activated service 'org.freedesktop.UDisks2'
Jun 04 22:49:36 AlexArch systemd[1]: Started Disk Manager.
Jun 04 22:49:36 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gnome.evolution.dataserver.AddressBook10'
Jun 04 22:49:36 AlexArch systemd[732]: Started Evolution address book service.
Jun 04 22:49:36 AlexArch udisksd[973]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Jun 04 22:49:36 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gtk.vfs.UDisks2VolumeMonitor'
Jun 04 22:49:36 AlexArch systemd[732]: Started Virtual filesystem service - disk device monitor.
Jun 04 22:49:36 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating via systemd: service name='org.gtk.vfs.AfcVolumeMonitor' unit='gvfs-afc-volume-monitor.service' requested by ':1.17' (uid=1000 pid=877 comm="/usr/bin/gnome-shell")
Jun 04 22:49:36 AlexArch systemd[732]: Starting Virtual filesystem service - Apple File Conduit monitor...
Jun 04 22:49:36 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gtk.vfs.AfcVolumeMonitor'
Jun 04 22:49:36 AlexArch systemd[732]: Started Virtual filesystem service - Apple File Conduit monitor.
Jun 04 22:49:36 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating via systemd: service name='org.gtk.vfs.GoaVolumeMonitor' unit='gvfs-goa-volume-monitor.service' requested by ':1.17' (uid=1000 pid=877 comm="/usr/bin/gnome-shell")
Jun 04 22:49:36 AlexArch systemd[732]: Starting Virtual filesystem service - GNOME Online Accounts monitor...
Jun 04 22:49:36 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gtk.vfs.GoaVolumeMonitor'
Jun 04 22:49:36 AlexArch systemd[732]: Started Virtual filesystem service - GNOME Online Accounts monitor.
Jun 04 22:49:36 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating via systemd: service name='org.gtk.vfs.GPhoto2VolumeMonitor' unit='gvfs-gphoto2-volume-monitor.service' requested by ':1.17' (uid=1000 pid=877 comm="/usr/bin/gnome-shell")
Jun 04 22:49:36 AlexArch systemd[732]: Starting Virtual filesystem service - digital camera monitor...
Jun 04 22:49:36 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gtk.vfs.GPhoto2VolumeMonitor'
Jun 04 22:49:36 AlexArch systemd[732]: Started Virtual filesystem service - digital camera monitor.
Jun 04 22:49:36 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating via systemd: service name='org.gtk.vfs.MTPVolumeMonitor' unit='gvfs-mtp-volume-monitor.service' requested by ':1.17' (uid=1000 pid=877 comm="/usr/bin/gnome-shell")
Jun 04 22:49:36 AlexArch systemd[732]: Starting Virtual filesystem service - Media Transfer Protocol monitor...
Jun 04 22:49:36 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gtk.vfs.MTPVolumeMonitor'
Jun 04 22:49:36 AlexArch systemd[732]: Started Virtual filesystem service - Media Transfer Protocol monitor.
Jun 04 22:49:36 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating service name='org.gnome.Shell.Notifications' requested by ':1.17' (uid=1000 pid=877 comm="/usr/bin/gnome-shell")
Jun 04 22:49:37 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gnome.Shell.Notifications'
Jun 04 22:49:37 AlexArch at-spi-bus-launcher[847]: dbus-daemon[847]: Activating service name='org.a11y.atspi.Registry' requested by ':1.1' (uid=1000 pid=877 comm="/usr/bin/gnome-shell")
Jun 04 22:49:37 AlexArch at-spi-bus-launcher[847]: dbus-daemon[847]: Successfully activated service 'org.a11y.atspi.Registry'
Jun 04 22:49:37 AlexArch at-spi-bus-launcher[1062]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Jun 04 22:49:37 AlexArch gnome-shell[877]: Could not issue 'GetUnit' systemd call
Jun 04 22:49:37 AlexArch systemd[732]: Started GNOME Shell on X11.
Jun 04 22:49:37 AlexArch systemd[732]: Reached target GNOME Session is initialized.
Jun 04 22:49:37 AlexArch systemd[732]: Reached target GNOME session X11 services.
Jun 04 22:49:37 AlexArch systemd[732]: Reached target GNOME Session (session: gnome).
Jun 04 22:49:37 AlexArch systemd[732]: Starting Signal initialization done to GNOME Session Manager...
Jun 04 22:49:37 AlexArch systemd[732]: Starting GNOME accessibility service...
Jun 04 22:49:37 AlexArch systemd[732]: Starting GNOME color management service...
Jun 04 22:49:37 AlexArch systemd[732]: Starting GNOME date & time service...
Jun 04 22:49:37 AlexArch systemd[732]: Starting GNOME maintenance of expirable data service...
Jun 04 22:49:37 AlexArch systemd[732]: Starting GNOME keyboard configuration service...
Jun 04 22:49:37 AlexArch systemd[732]: Starting GNOME keyboard shortcuts service...
Jun 04 22:49:37 AlexArch systemd[732]: Starting GNOME power management service...
Jun 04 22:49:37 AlexArch systemd[732]: Starting GNOME printer notifications service...
Jun 04 22:49:37 AlexArch systemd[732]: Starting GNOME RFKill support service...
Jun 04 22:49:37 AlexArch systemd[732]: Starting GNOME FreeDesktop screensaver service...
Jun 04 22:49:37 AlexArch systemd[732]: Starting GNOME file sharing service...
Jun 04 22:49:37 AlexArch gnome-shell[877]: Failed to launch ibus-daemon: Failed to execute child process “ibus-daemon” (No such file or directory)
Jun 04 22:49:37 AlexArch systemd[732]: Starting GNOME smartcard service...
Jun 04 22:49:37 AlexArch systemd[732]: Starting GNOME sound sample caching service...
Jun 04 22:49:37 AlexArch systemd[732]: Starting GNOME USB protection service...
Jun 04 22:49:37 AlexArch systemd[732]: Starting GNOME Wacom tablet support service...
Jun 04 22:49:37 AlexArch systemd[732]: Starting GNOME XSettings service...
Jun 04 22:49:37 AlexArch systemd[732]: Finished Signal initialization done to GNOME Session Manager.
Jun 04 22:49:37 AlexArch systemd[732]: Started GNOME accessibility service.
Jun 04 22:49:37 AlexArch systemd[732]: Started Application launched by gnome-session-binary.
Jun 04 22:49:37 AlexArch systemd[732]: Reached target GNOME accessibility target.
Jun 04 22:49:37 AlexArch systemd[732]: Started GNOME maintenance of expirable data service.
Jun 04 22:49:37 AlexArch systemd[732]: Reached target GNOME maintenance of expirable data target.
Jun 04 22:49:37 AlexArch systemd[732]: Started GNOME FreeDesktop screensaver service.
Jun 04 22:49:37 AlexArch systemd[732]: Reached target GNOME FreeDesktop screensaver target.
Jun 04 22:49:37 AlexArch gnome-session-binary[858]: Entering running state
Jun 04 22:49:37 AlexArch systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 1146 (snap)
Jun 04 22:49:37 AlexArch systemd[1]: Mounting Arbitrary Executable File Formats File System...
Jun 04 22:49:37 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.63' (uid=1000 pid=1089 comm="/usr/lib/gsd-rfkill")
Jun 04 22:49:37 AlexArch systemd[1]: Starting Hostname Service...
Jun 04 22:49:37 AlexArch systemd[1]: Mounted Arbitrary Executable File Formats File System.
Jun 04 22:49:37 AlexArch systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 1168 ((ostnamed))
Jun 04 22:49:37 AlexArch systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Jun 04 22:49:37 AlexArch systemd[732]: Started Application launched by gnome-session-binary.
Jun 04 22:49:37 AlexArch systemd[732]: Started Application launched by gnome-session-binary.
Jun 04 22:49:37 AlexArch systemd[732]: Started Application launched by gnome-session-binary.
Jun 04 22:49:37 AlexArch systemd[732]: Started Application launched by gnome-session-binary.
Jun 04 22:49:37 AlexArch systemd[732]: Started Application launched by gnome-session-binary.
Jun 04 22:49:37 AlexArch dbus-daemon[255]: [system] Successfully activated service 'org.freedesktop.hostname1'
Jun 04 22:49:37 AlexArch systemd[1]: Started Hostname Service.
Jun 04 22:49:37 AlexArch systemd[732]: Started GNOME date & time service.
Jun 04 22:49:37 AlexArch systemd[732]: Started GNOME USB protection service.
Jun 04 22:49:37 AlexArch systemd[732]: Reached target GNOME date & time target.
Jun 04 22:49:37 AlexArch systemd[732]: Reached target GNOME USB protection target.
Jun 04 22:49:37 AlexArch systemd[732]: Started GNOME smartcard service.
Jun 04 22:49:37 AlexArch systemd[732]: Reached target GNOME smartcard target.
Jun 04 22:49:37 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating service name='org.gnome.ScreenSaver' requested by ':1.47' (uid=1000 pid=1099 comm="/usr/lib/gsd-usb-protection")
Jun 04 22:49:37 AlexArch systemd[732]: Started GNOME printer notifications service.
Jun 04 22:49:37 AlexArch systemd[732]: Reached target GNOME printer notifications target.
Jun 04 22:49:37 AlexArch systemd[732]: Started GNOME file sharing service.
Jun 04 22:49:37 AlexArch systemd[732]: Reached target GNOME file sharing target.
Jun 04 22:49:37 AlexArch systemd[732]: Started GNOME sound sample caching service.
Jun 04 22:49:37 AlexArch systemd[732]: Reached target GNOME sound sample caching target.
Jun 04 22:49:38 AlexArch kernel: rfkill: input handler disabled
Jun 04 22:49:38 AlexArch systemd[732]: Started GNOME RFKill support service.
Jun 04 22:49:38 AlexArch systemd[732]: Reached target GNOME RFKill support target.
Jun 04 22:49:38 AlexArch systemd[732]: Started GNOME power management service.
Jun 04 22:49:38 AlexArch systemd[732]: Reached target GNOME power management target.
Jun 04 22:49:38 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='org.freedesktop.locale1' unit='dbus-org.freedesktop.locale1.service' requested by ':1.73' (uid=1000 pid=1083 comm="/usr/lib/gsd-keyboard")
Jun 04 22:49:38 AlexArch systemd[732]: Started GNOME keyboard configuration service.
Jun 04 22:49:38 AlexArch systemd[732]: Reached target GNOME keyboard configuration target.
Jun 04 22:49:38 AlexArch systemd[1]: Starting Locale Service...
Jun 04 22:49:38 AlexArch systemd[732]: Started GNOME keyboard shortcuts service.
Jun 04 22:49:38 AlexArch systemd[732]: Reached target GNOME keyboard shortcuts target.
Jun 04 22:49:38 AlexArch dbus-daemon[255]: [system] Successfully activated service 'org.freedesktop.locale1'
Jun 04 22:49:38 AlexArch systemd[1]: Started Locale Service.
Jun 04 22:49:38 AlexArch systemd[732]: Started GNOME color management service.
Jun 04 22:49:38 AlexArch systemd[732]: Reached target GNOME color management target.
Jun 04 22:49:38 AlexArch systemd[732]: Started GNOME Wacom tablet support service.
Jun 04 22:49:38 AlexArch systemd[732]: Reached target GNOME Wacom tablet support target.
Jun 04 22:49:38 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating via systemd: service name='org.freedesktop.portal.Desktop' unit='xdg-desktop-portal.service' requested by ':1.51' (uid=1000 pid=1149 comm="/usr/bin/gnome-software --gapplication-service")
Jun 04 22:49:38 AlexArch systemd[732]: Starting Portal service...
Jun 04 22:49:38 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating via systemd: service name='org.freedesktop.portal.Documents' unit='xdg-document-portal.service' requested by ':1.60' (uid=1000 pid=1283 comm="/usr/lib/xdg-desktop-portal")
Jun 04 22:49:38 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gnome.ScreenSaver'
Jun 04 22:49:38 AlexArch systemd[732]: Starting flatpak document portal service...
Jun 04 22:49:38 AlexArch NetworkManager[257]: <info>  [1685911778.7251] agent-manager: agent[e6326e0c7109f50a,:1.49/org.gnome.Shell.NetworkAgent/1000]: agent registered
Jun 04 22:49:38 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.freedesktop.portal.Documents'
Jun 04 22:49:38 AlexArch systemd[732]: Started flatpak document portal service.
Jun 04 22:49:38 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating via systemd: service name='org.freedesktop.impl.portal.desktop.gnome' unit='xdg-desktop-portal-gnome.service' requested by ':1.60' (uid=1000 pid=1283 comm="/usr/lib/xdg-desktop-portal")
Jun 04 22:49:38 AlexArch gsd-usb-protect[1099]: Failed to fetch USBGuard parameters: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.usbguard1 was not provided by any .service files
Jun 04 22:49:39 AlexArch gnome-shell[877]: Error looking up permission: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for geolocation
Jun 04 22:49:39 AlexArch gsd-media-keys[1085]: Failed to grab accelerator for keybinding settings:playback-repeat
Jun 04 22:49:39 AlexArch gsd-media-keys[1085]: Failed to grab accelerator for keybinding settings:hibernate
Jun 04 22:49:39 AlexArch gsd-media-keys[1085]: Failed to grab accelerator for keybinding settings:rotate-video-lock
Jun 04 22:49:39 AlexArch gsd-media-keys[1085]: Failed to grab accelerator for keybinding settings:playback-random
Jun 04 22:49:39 AlexArch systemd[732]: Started GNOME XSettings service.
Jun 04 22:49:39 AlexArch systemd[732]: GNOME session X11 services is inactive.
Jun 04 22:49:39 AlexArch systemd[732]: Reached target GNOME XSettings target.
Jun 04 22:49:39 AlexArch systemd[732]: Reached target GNOME Session.
Jun 04 22:49:39 AlexArch systemd[732]: Reached target GNOME X11 Session (session: gnome).
Jun 04 22:49:39 AlexArch systemd[732]: Reached target Current graphical user session.
Jun 04 22:49:39 AlexArch systemd[732]: Starting Portal service (GNOME implementation)...
Jun 04 22:49:39 AlexArch gnome-shell[877]: Failed to create color profile from colord profile: Error opening file /var/lib/gdm/.local/share/icc/edid-63f6c8fb53dd6a0a0e962f6e6fd746a2.icc: Permission denied
Jun 04 22:49:40 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating via systemd: service name='org.gtk.vfs.Metadata' unit='gvfs-metadata.service' requested by ':1.17' (uid=1000 pid=877 comm="/usr/bin/gnome-shell")
Jun 04 22:49:40 AlexArch systemd[732]: Starting Virtual filesystem metadata service...
Jun 04 22:49:40 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gtk.vfs.Metadata'
Jun 04 22:49:40 AlexArch systemd[732]: Started Virtual filesystem metadata service.
Jun 04 22:49:40 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.freedesktop.impl.portal.desktop.gnome'
Jun 04 22:49:40 AlexArch systemd[732]: Started Portal service (GNOME implementation).
Jun 04 22:49:40 AlexArch rtkit-daemon[436]: Supervising 6 threads of 2 processes of 2 users.
Jun 04 22:49:40 AlexArch rtkit-daemon[436]: Supervising 6 threads of 2 processes of 2 users.
Jun 04 22:49:40 AlexArch rtkit-daemon[436]: Supervising 6 threads of 2 processes of 2 users.
Jun 04 22:49:40 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating via systemd: service name='org.freedesktop.impl.portal.desktop.gtk' unit='xdg-desktop-portal-gtk.service' requested by ':1.60' (uid=1000 pid=1283 comm="/usr/lib/xdg-desktop-portal")
Jun 04 22:49:40 AlexArch systemd[732]: Starting Portal service (GTK/GNOME implementation)...
Jun 04 22:49:41 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.freedesktop.impl.portal.desktop.gtk'
Jun 04 22:49:41 AlexArch systemd[732]: Started Portal service (GTK/GNOME implementation).
Jun 04 22:49:41 AlexArch systemd[732]: Started PipeWire Multimedia Service.
Jun 04 22:49:41 AlexArch rtkit-daemon[436]: Supervising 6 threads of 2 processes of 2 users.
Jun 04 22:49:41 AlexArch rtkit-daemon[436]: Successfully made thread 1379 of process 1379 owned by '1000' high priority at nice level -11.
Jun 04 22:49:41 AlexArch rtkit-daemon[436]: Supervising 7 threads of 3 processes of 2 users.
Jun 04 22:49:41 AlexArch rtkit-daemon[436]: Supervising 7 threads of 3 processes of 2 users.
Jun 04 22:49:41 AlexArch rtkit-daemon[436]: Supervising 7 threads of 3 processes of 2 users.
Jun 04 22:49:41 AlexArch rtkit-daemon[436]: Successfully made thread 1381 of process 1379 owned by '1000' RT at priority 20.
Jun 04 22:49:41 AlexArch rtkit-daemon[436]: Supervising 8 threads of 3 processes of 2 users.
Jun 04 22:49:41 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.freedesktop.portal.Desktop'
Jun 04 22:49:41 AlexArch systemd[732]: Started Portal service.
Jun 04 22:49:41 AlexArch gnome-software[1149]: Failed to load /usr/lib/gnome-software/plugins-20/libgs_plugin_fwupd.so: failed to open plugin /usr/lib/gnome-software/plugins-20/libgs_plugin_fwupd.so: libfwupd.so.2: cannot open shared object file: No such file or directory
Jun 04 22:49:41 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating service name='org.gnome.Epiphany.WebAppProvider' requested by ':1.51' (uid=1000 pid=1149 comm="/usr/bin/gnome-software --gapplication-service")
Jun 04 22:49:42 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gnome.Epiphany.WebAppProvider'
Jun 04 22:49:42 AlexArch gnome-shell[877]: GNOME Shell started at Sun Jun 04 2023 22:49:36 GMT+0200 (Central European Summer Time)
Jun 04 22:49:42 AlexArch gnome-shell[877]: Registering session with GDM
Jun 04 22:49:42 AlexArch gsd-rfkill[482]: Error releasing name org.gnome.SettingsDaemon.Rfkill: The connection is closed
Jun 04 22:49:42 AlexArch gsd-screensaver[490]: Error releasing name org.freedesktop.ScreenSaver: The connection is closed
Jun 04 22:49:42 AlexArch gsd-print-notif[478]: Error releasing name org.gnome.SettingsDaemon.PrintNotifications: The connection is closed
Jun 04 22:49:42 AlexArch gsd-a11y-settin[494]: Error releasing name org.gnome.SettingsDaemon.A11ySettings: The connection is closed
Jun 04 22:49:42 AlexArch gsd-datetime[485]: Error releasing name org.gnome.SettingsDaemon.Datetime: The connection is closed
Jun 04 22:49:42 AlexArch org.gnome.Shell.desktop[381]: XIO:  fatal IO error 104 (Connection reset by peer) on X server ":0"
Jun 04 22:49:42 AlexArch org.gnome.Shell.desktop[381]:       after 3606 requests (3605 known processed) with 4 events remaining.
Jun 04 22:49:42 AlexArch gsd-housekeepin[509]: Error releasing name org.gnome.SettingsDaemon.Housekeeping: The connection is closed
Jun 04 22:49:42 AlexArch gsd-smartcard[484]: Error releasing name org.gnome.SettingsDaemon.Smartcard: The connection is closed
Jun 04 22:49:42 AlexArch /usr/lib/gdm-x-session[332]: (II) UnloadModule: "libinput"
Jun 04 22:49:42 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: releasing fd for 13:76
Jun 04 22:49:42 AlexArch /usr/lib/gdm-x-session[332]: (II) UnloadModule: "libinput"
Jun 04 22:49:42 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: releasing fd for 13:75
Jun 04 22:49:42 AlexArch /usr/lib/gdm-x-session[332]: (II) UnloadModule: "libinput"
Jun 04 22:49:42 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: releasing fd for 13:68
Jun 04 22:49:42 AlexArch /usr/lib/gdm-x-session[332]: (II) UnloadModule: "libinput"
Jun 04 22:49:42 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: releasing fd for 13:67
Jun 04 22:49:42 AlexArch /usr/lib/gdm-x-session[332]: (II) UnloadModule: "libinput"
Jun 04 22:49:42 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: releasing fd for 13:65
Jun 04 22:49:42 AlexArch polkitd[283]: Unregistered Authentication Agent for unix-session:1 (system bus name :1.17, object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale C.UTF-8) (disconnected from bus)
Jun 04 22:49:42 AlexArch /usr/lib/gdm-x-session[332]: (II) UnloadModule: "libinput"
Jun 04 22:49:42 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: releasing fd for 13:69
Jun 04 22:49:42 AlexArch /usr/lib/gdm-x-session[332]: (II) UnloadModule: "libinput"
Jun 04 22:49:42 AlexArch /usr/lib/gdm-x-session[332]: (II) systemd-logind: releasing fd for 13:66
Jun 04 22:49:42 AlexArch /usr/lib/gdm-x-session[332]: (II) Server terminated successfully (0). Closing log file.
Jun 04 22:49:42 AlexArch systemd[1]: session-1.scope: Deactivated successfully.
Jun 04 22:49:42 AlexArch systemd[1]: session-1.scope: Consumed 6.369s CPU time.
Jun 04 22:49:42 AlexArch systemd-logind[256]: Session 1 logged out. Waiting for processes to exit.
Jun 04 22:49:42 AlexArch systemd-logind[256]: Removed session 1.
Jun 04 22:49:42 AlexArch gdm[264]: Gdm: Child process -330 was already dead.
Jun 04 22:49:44 AlexArch gnome-software[1149]: Only 5 apps for curated list, hiding
Jun 04 22:49:45 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating service name='org.gnome.Contacts.SearchProvider' requested by ':1.17' (uid=1000 pid=877 comm="/usr/bin/gnome-shell")
Jun 04 22:49:45 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating service name='org.gnome.Nautilus' requested by ':1.17' (uid=1000 pid=877 comm="/usr/bin/gnome-shell")
Jun 04 22:49:45 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating service name='org.gnome.Calculator.SearchProvider' requested by ':1.17' (uid=1000 pid=877 comm="/usr/bin/gnome-shell")
Jun 04 22:49:45 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating service name='org.gnome.Calendar' requested by ':1.17' (uid=1000 pid=877 comm="/usr/bin/gnome-shell")
Jun 04 22:49:45 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating service name='org.gnome.clocks' requested by ':1.17' (uid=1000 pid=877 comm="/usr/bin/gnome-shell")
Jun 04 22:49:45 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating service name='org.gnome.Photos' requested by ':1.17' (uid=1000 pid=877 comm="/usr/bin/gnome-shell")
Jun 04 22:49:45 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating service name='org.gnome.Settings.SearchProvider' requested by ':1.17' (uid=1000 pid=877 comm="/usr/bin/gnome-shell")
Jun 04 22:49:45 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gnome.Settings.SearchProvider'
Jun 04 22:49:45 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gnome.clocks'
Jun 04 22:49:46 AlexArch nautilus[1429]: Connecting to org.freedesktop.Tracker3.Miner.Files
Jun 04 22:49:46 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gnome.Nautilus'
Jun 04 22:49:46 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gnome.Contacts.SearchProvider'
Jun 04 22:49:46 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service' requested by ':1.82' (uid=1000 pid=1430 comm="/usr/lib/gnome-contacts-search-provider")
Jun 04 22:49:46 AlexArch dbus-daemon[255]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service not found.
Jun 04 22:49:46 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gnome.Calculator.SearchProvider'
Jun 04 22:49:46 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gnome.Photos'
Jun 04 22:49:46 AlexArch dbus-daemon[255]: [system] Activating via systemd: service name='org.freedesktop.timedate1' unit='dbus-org.freedesktop.timedate1.service' requested by ':1.83' (uid=1000 pid=1434 comm="/usr/bin/gnome-calendar --gapplication-service")
Jun 04 22:49:46 AlexArch systemd[1]: Starting Time & Date Service...
Jun 04 22:49:47 AlexArch dbus-daemon[255]: [system] Successfully activated service 'org.freedesktop.timedate1'
Jun 04 22:49:47 AlexArch systemd[1]: Started Time & Date Service.
Jun 04 22:49:47 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gnome.Calendar'
Jun 04 22:49:47 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating via systemd: service name='ca.desrt.dconf' unit='dconf.service' requested by ':1.17' (uid=1000 pid=877 comm="/usr/bin/gnome-shell")
Jun 04 22:49:47 AlexArch systemd[732]: Starting User preferences database...
Jun 04 22:49:47 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'ca.desrt.dconf'
Jun 04 22:49:47 AlexArch systemd[732]: Started User preferences database.
Jun 04 22:49:47 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating service name='org.gnome.Console' requested by ':1.17' (uid=1000 pid=877 comm="/usr/bin/gnome-shell")
Jun 04 22:49:48 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating via systemd: service name='org.freedesktop.Tracker3.Miner.Files' unit='tracker-miner-fs-3.service' requested by ':1.70' (uid=1000 pid=1429 comm="/usr/bin/nautilus --gapplication-service")
Jun 04 22:49:48 AlexArch systemd[732]: Created slice User Background Tasks Slice.
Jun 04 22:49:48 AlexArch systemd[732]: Starting Tracker file system data miner...
Jun 04 22:49:48 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating service name='org.gnome.DiskUtility' requested by ':1.70' (uid=1000 pid=1429 comm="/usr/bin/nautilus --gapplication-service")
Jun 04 22:49:48 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gnome.Console'
Jun 04 22:49:48 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.gnome.DiskUtility'
Jun 04 22:49:49 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Activating service name='com.intel.dleyna-renderer' requested by ':1.75' (uid=1000 pid=1436 comm="/usr/bin/gnome-photos --gapplication-service")
Jun 04 22:49:49 AlexArch dleyna-renderer-service[1572]: dLeyna core version 0.8.2
Jun 04 22:49:49 AlexArch dleyna-renderer-service[1572]: dleyna-renderer-service version 0.8.2
Jun 04 22:49:49 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'com.intel.dleyna-renderer'
Jun 04 22:49:49 AlexArch kernel: warning: `dleyna-renderer' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
Jun 04 22:49:49 AlexArch dbus-daemon[761]: [session uid=1000 pid=761] Successfully activated service 'org.freedesktop.Tracker3.Miner.Files'
Jun 04 22:49:49 AlexArch systemd[732]: Started Tracker file system data miner.
Jun 04 22:49:50 AlexArch systemd[732]: Started VTE child process 1581 launched by kgx process 1537.
Jun 04 22:49:51 AlexArch gnome-shell[877]: Window manager warning: Buggy client sent a _NET_ACTIVE_WINDOW message with a timestamp of 0 for 0x2a00004
Jun 04 22:49:51 AlexArch dleyna-renderer-service[1572]: dLeyna: Exit
Jun 04 22:49:52 AlexArch systemd[1]: Stopping User Manager for UID 120...
Jun 04 22:49:52 AlexArch systemd[305]: Activating special unit Exit the Session...
Jun 04 22:49:52 AlexArch systemd[305]: Stopped target Bluetooth.
Jun 04 22:49:52 AlexArch systemd[305]: Stopped target Main User Target.
Jun 04 22:49:52 AlexArch systemd[305]: Stopped target Sound Card.
Jun 04 22:49:52 AlexArch systemd[305]: Stopping D-Bus User Message Bus...
Jun 04 22:49:52 AlexArch systemd[305]: Stopped D-Bus User Message Bus.
Jun 04 22:49:52 AlexArch systemd[305]: Removed slice User Core Session Slice.
Jun 04 22:49:52 AlexArch systemd[305]: Stopped target Basic System.
Jun 04 22:49:52 AlexArch systemd[305]: Stopped target Paths.
Jun 04 22:49:52 AlexArch systemd[305]: Stopped target Sockets.
Jun 04 22:49:52 AlexArch systemd[305]: Stopped target Timers.
Jun 04 22:49:52 AlexArch systemd[305]: Closed D-Bus User Message Bus Socket.
Jun 04 22:49:52 AlexArch systemd[305]: Closed GnuPG network certificate management daemon.
Jun 04 22:49:52 AlexArch systemd[305]: Closed GCR ssh-agent wrapper.
Jun 04 22:49:52 AlexArch systemd[305]: Closed GNOME Keyring daemon.
Jun 04 22:49:52 AlexArch systemd[305]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jun 04 22:49:52 AlexArch systemd[305]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
Jun 04 22:49:52 AlexArch systemd[305]: Closed GnuPG cryptographic agent (ssh-agent emulation).
Jun 04 22:49:52 AlexArch systemd[305]: Closed GnuPG cryptographic agent and passphrase cache.
Jun 04 22:49:52 AlexArch systemd[305]: Closed p11-kit server.
Jun 04 22:49:52 AlexArch systemd[305]: Closed PipeWire Multimedia System Socket.
Jun 04 22:49:52 AlexArch systemd[305]: Closed Sound System.
Jun 04 22:49:52 AlexArch systemd[305]: Removed slice User Application Slice.
Jun 04 22:49:52 AlexArch systemd[305]: Reached target Shutdown.
Jun 04 22:49:52 AlexArch systemd[305]: Finished Exit the Session.
Jun 04 22:49:52 AlexArch systemd[305]: Reached target Exit the Session.
Jun 04 22:49:52 AlexArch systemd[1]: user@120.service: Deactivated successfully.
Jun 04 22:49:52 AlexArch systemd[1]: Stopped User Manager for UID 120.
Jun 04 22:49:52 AlexArch systemd[1]: Stopping User Runtime Directory /run/user/120...
Jun 04 22:49:52 AlexArch systemd[1]: run-user-120.mount: Deactivated successfully.
Jun 04 22:49:52 AlexArch systemd[1]: user-runtime-dir@120.service: Deactivated successfully.
Jun 04 22:49:52 AlexArch systemd[1]: Stopped User Runtime Directory /run/user/120.
Jun 04 22:49:52 AlexArch systemd[1]: Removed slice User Slice of UID 120.
Jun 04 22:49:52 AlexArch systemd[1]: user-120.slice: Consumed 6.934s CPU time.

but judging by the timestamps it was just 10 seconds...
90% of the time was on the "loading initial ramdisk...".
I really have no idea...

Offline

#12 2023-06-04 21:00:10

Alexjust
Member
Registered: 2022-09-01
Posts: 15

Re: [SOLVED] Hardware clock updating only when plugged in.

here it is:

Jun 04 22:57:47 AlexArch kernel: Linux version 6.3.5-arch1-1 (linux@archlinux) (gcc (GCC) 13.1.1 20230429, GNU ld (GNU Binutils) 2.40.0) #1 SMP PREEMPT_DYNAMIC Tue, 30 May 2023 13:44:01 +0000
Jun 04 22:57:47 AlexArch kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=882f05fb-ea19-4494-99b9-75cacc2e0493 rw loglevel=3 quiet
Jun 04 22:57:47 AlexArch kernel: Disabled fast string operations
Jun 04 22:57:47 AlexArch kernel: x86/fpu: x87 FPU will use FXSAVE
Jun 04 22:57:47 AlexArch kernel: signal: max sigframe size: 1440
Jun 04 22:57:47 AlexArch kernel: BIOS-provided physical RAM map:
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009ebff] usable
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x000000000009ec00-0x000000000009ffff] reserved
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000000dc000-0x00000000000fffff] reserved
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000bd6a0fff] usable
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000bd6a1000-0x00000000bd6a6fff] reserved
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000bd6a7000-0x00000000bd7b6fff] usable
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000bd7b7000-0x00000000bd80efff] reserved
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000bd80f000-0x00000000bd8c6fff] usable
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000bd8c7000-0x00000000bd8d1fff] ACPI NVS
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000bd8d2000-0x00000000bd8d4fff] ACPI data
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000bd8d5000-0x00000000bd8d8fff] reserved
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000bd8d9000-0x00000000bd8dcfff] ACPI NVS
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000bd8dd000-0x00000000bd8dffff] reserved
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000bd8e0000-0x00000000bd906fff] ACPI NVS
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000bd907000-0x00000000bd907fff] ACPI data
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000bd908000-0x00000000bdb0efff] reserved
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000bdb0f000-0x00000000bdb9efff] ACPI NVS
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000bdb9f000-0x00000000bdbfefff] ACPI data
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000bdbff000-0x00000000bdbfffff] usable
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000bdc00000-0x00000000bfffffff] reserved
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed003ff] reserved
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed8ffff] reserved
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
Jun 04 22:57:47 AlexArch kernel: BIOS-e820: [mem 0x0000000100000000-0x000000023bffffff] usable
Jun 04 22:57:47 AlexArch kernel: NX (Execute Disable) protection: active
Jun 04 22:57:47 AlexArch kernel: SMBIOS 2.4 present.
Jun 04 22:57:47 AlexArch kernel: DMI: LENOVO 22434EG/22434EG, BIOS 6FET50WW (1.20 ) 10/30/2008
Jun 04 22:57:47 AlexArch kernel: tsc: Fast TSC calibration using PIT
Jun 04 22:57:47 AlexArch kernel: tsc: Detected 2260.771 MHz processor
Jun 04 22:57:47 AlexArch kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jun 04 22:57:47 AlexArch kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Jun 04 22:57:47 AlexArch kernel: last_pfn = 0x23c000 max_arch_pfn = 0x400000000
Jun 04 22:57:47 AlexArch kernel: total RAM covered: 8094M
Jun 04 22:57:47 AlexArch kernel: Found optimal setting for mtrr clean up
Jun 04 22:57:47 AlexArch kernel:  gran_size: 64K         chunk_size: 128M         num_reg: 7          lose cover RAM: 0G
Jun 04 22:57:47 AlexArch kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Jun 04 22:57:47 AlexArch kernel: e820: update [mem 0xbde00000-0xffffffff] usable ==> reserved
Jun 04 22:57:47 AlexArch kernel: last_pfn = 0xbdc00 max_arch_pfn = 0x400000000
Jun 04 22:57:47 AlexArch kernel: found SMP MP-table at [mem 0x000f6570-0x000f657f]
Jun 04 22:57:47 AlexArch kernel: RAMDISK: [mem 0x3647b000-0x37234fff]
Jun 04 22:57:47 AlexArch kernel: ACPI: Early table checksum verification disabled
Jun 04 22:57:47 AlexArch kernel: ACPI: RSDP 0x00000000000F6530 000024 (v02 LENOVO)
Jun 04 22:57:47 AlexArch kernel: ACPI: XSDT 0x00000000BDB6A5B6 000094 (v01 LENOVO TP-6F    00001200  LTP 00000000)
Jun 04 22:57:47 AlexArch kernel: ACPI: FACP 0x00000000BDB6A700 0000F4 (v03 LENOVO TP-6F    00001200 LNVO 00000001)
Jun 04 22:57:47 AlexArch kernel: ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Pm1aControlBlock: 16/32 (20221020/tbfadt-564)
Jun 04 22:57:47 AlexArch kernel: ACPI BIOS Warning (bug): Invalid length for FADT/Pm1aControlBlock: 32, using default 16 (20221020/tbfadt-669)
Jun 04 22:57:47 AlexArch kernel: ACPI: DSDT 0x00000000BDB6AADB 00F0B8 (v01 LENOVO TP-6F    00001200 MSFT 03000000)
Jun 04 22:57:47 AlexArch kernel: ACPI: FACS 0x00000000BDB8E000 000040
Jun 04 22:57:47 AlexArch kernel: ACPI: FACS 0x00000000BDB8E000 000040
Jun 04 22:57:47 AlexArch kernel: ACPI: SSDT 0x00000000BDB6A8B4 000227 (v01 LENOVO TP-6F    00001200 MSFT 03000000)
Jun 04 22:57:47 AlexArch kernel: ACPI: ECDT 0x00000000BDB79B93 000052 (v01 LENOVO TP-6F    00001200 LNVO 00000001)
Jun 04 22:57:47 AlexArch kernel: ACPI: APIC 0x00000000BDB79BE5 000078 (v01 LENOVO TP-6F    00001200 LNVO 00000001)
Jun 04 22:57:47 AlexArch kernel: ACPI: MCFG 0x00000000BDB79C5D 00003C (v01 LENOVO TP-6F    00001200 LNVO 00000001)
Jun 04 22:57:47 AlexArch kernel: ACPI: HPET 0x00000000BDB79C99 000038 (v01 LENOVO TP-6F    00001200 LNVO 00000001)
Jun 04 22:57:47 AlexArch kernel: ACPI: SLIC 0x00000000BDB79DC2 000176 (v01 LENOVO TP-6F    00001200  LTP 00000000)
Jun 04 22:57:47 AlexArch kernel: ACPI: BOOT 0x00000000BDB79F38 000028 (v01 LENOVO TP-6F    00001200  LTP 00000001)
Jun 04 22:57:47 AlexArch kernel: ACPI: ASF! 0x00000000BDB79F60 0000A0 (v16 LENOVO TP-6F    00001200 PTL  00000001)
Jun 04 22:57:47 AlexArch kernel: ACPI: SSDT 0x00000000BDB8D213 00054F (v01 LENOVO TP-6F    00001200 INTL 20050513)
Jun 04 22:57:47 AlexArch kernel: ACPI: TCPA 0x00000000BD907000 000032 (v00                 00000000      00000000)
Jun 04 22:57:47 AlexArch kernel: ACPI: SSDT 0x00000000BD8D4000 000655 (v01 PmRef  CpuPm    00003000 INTL 20050624)
Jun 04 22:57:47 AlexArch kernel: ACPI: SSDT 0x00000000BD8D3000 000274 (v01 PmRef  Cpu0Tst  00003000 INTL 20050624)
Jun 04 22:57:47 AlexArch kernel: ACPI: SSDT 0x00000000BD8D2000 000242 (v01 PmRef  ApTst    00003000 INTL 20050624)
Jun 04 22:57:47 AlexArch kernel: ACPI: Reserving FACP table memory at [mem 0xbdb6a700-0xbdb6a7f3]
Jun 04 22:57:47 AlexArch kernel: ACPI: Reserving DSDT table memory at [mem 0xbdb6aadb-0xbdb79b92]
Jun 04 22:57:47 AlexArch kernel: ACPI: Reserving FACS table memory at [mem 0xbdb8e000-0xbdb8e03f]
Jun 04 22:57:47 AlexArch kernel: ACPI: Reserving FACS table memory at [mem 0xbdb8e000-0xbdb8e03f]
Jun 04 22:57:47 AlexArch kernel: ACPI: Reserving SSDT table memory at [mem 0xbdb6a8b4-0xbdb6aada]
Jun 04 22:57:47 AlexArch kernel: ACPI: Reserving ECDT table memory at [mem 0xbdb79b93-0xbdb79be4]
Jun 04 22:57:47 AlexArch kernel: ACPI: Reserving APIC table memory at [mem 0xbdb79be5-0xbdb79c5c]
Jun 04 22:57:47 AlexArch kernel: ACPI: Reserving MCFG table memory at [mem 0xbdb79c5d-0xbdb79c98]
Jun 04 22:57:47 AlexArch kernel: ACPI: Reserving HPET table memory at [mem 0xbdb79c99-0xbdb79cd0]
Jun 04 22:57:47 AlexArch kernel: ACPI: Reserving SLIC table memory at [mem 0xbdb79dc2-0xbdb79f37]
Jun 04 22:57:47 AlexArch kernel: ACPI: Reserving BOOT table memory at [mem 0xbdb79f38-0xbdb79f5f]
Jun 04 22:57:47 AlexArch kernel: ACPI: Reserving ASF! table memory at [mem 0xbdb79f60-0xbdb79fff]
Jun 04 22:57:47 AlexArch kernel: ACPI: Reserving SSDT table memory at [mem 0xbdb8d213-0xbdb8d761]
Jun 04 22:57:47 AlexArch kernel: ACPI: Reserving TCPA table memory at [mem 0xbd907000-0xbd907031]
Jun 04 22:57:47 AlexArch kernel: ACPI: Reserving SSDT table memory at [mem 0xbd8d4000-0xbd8d4654]
Jun 04 22:57:47 AlexArch kernel: ACPI: Reserving SSDT table memory at [mem 0xbd8d3000-0xbd8d3273]
Jun 04 22:57:47 AlexArch kernel: ACPI: Reserving SSDT table memory at [mem 0xbd8d2000-0xbd8d2241]
Jun 04 22:57:47 AlexArch kernel: No NUMA configuration found
Jun 04 22:57:47 AlexArch kernel: Faking a node at [mem 0x0000000000000000-0x000000023bffffff]
Jun 04 22:57:47 AlexArch kernel: NODE_DATA(0) allocated [mem 0x23bff7000-0x23bffbfff]
Jun 04 22:57:47 AlexArch kernel: Zone ranges:
Jun 04 22:57:47 AlexArch kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Jun 04 22:57:47 AlexArch kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Jun 04 22:57:47 AlexArch kernel:   Normal   [mem 0x0000000100000000-0x000000023bffffff]
Jun 04 22:57:47 AlexArch kernel:   Device   empty
Jun 04 22:57:47 AlexArch kernel: Movable zone start for each node
Jun 04 22:57:47 AlexArch kernel: Early memory node ranges
Jun 04 22:57:47 AlexArch kernel:   node   0: [mem 0x0000000000001000-0x000000000009dfff]
Jun 04 22:57:47 AlexArch kernel:   node   0: [mem 0x0000000000100000-0x00000000bd6a0fff]
Jun 04 22:57:47 AlexArch kernel:   node   0: [mem 0x00000000bd6a7000-0x00000000bd7b6fff]
Jun 04 22:57:47 AlexArch kernel:   node   0: [mem 0x00000000bd80f000-0x00000000bd8c6fff]
Jun 04 22:57:47 AlexArch kernel:   node   0: [mem 0x00000000bdbff000-0x00000000bdbfffff]
Jun 04 22:57:47 AlexArch kernel:   node   0: [mem 0x0000000100000000-0x000000023bffffff]
Jun 04 22:57:47 AlexArch kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000023bffffff]
Jun 04 22:57:47 AlexArch kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Jun 04 22:57:47 AlexArch kernel: On node 0, zone DMA: 98 pages in unavailable ranges
Jun 04 22:57:47 AlexArch kernel: On node 0, zone DMA32: 6 pages in unavailable ranges
Jun 04 22:57:47 AlexArch kernel: On node 0, zone DMA32: 88 pages in unavailable ranges
Jun 04 22:57:47 AlexArch kernel: On node 0, zone DMA32: 824 pages in unavailable ranges
Jun 04 22:57:47 AlexArch kernel: On node 0, zone Normal: 9216 pages in unavailable ranges
Jun 04 22:57:47 AlexArch kernel: On node 0, zone Normal: 16384 pages in unavailable ranges
Jun 04 22:57:47 AlexArch kernel: Reserving Intel graphics memory at [mem 0xbe000000-0xbfffffff]
Jun 04 22:57:47 AlexArch kernel: ACPI: PM-Timer IO Port: 0x1008
Jun 04 22:57:47 AlexArch kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
Jun 04 22:57:47 AlexArch kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Jun 04 22:57:47 AlexArch kernel: IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
Jun 04 22:57:47 AlexArch kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jun 04 22:57:47 AlexArch kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jun 04 22:57:47 AlexArch kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Jun 04 22:57:47 AlexArch kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Jun 04 22:57:47 AlexArch kernel: smpboot: Allowing 4 CPUs, 2 hotplug CPUs
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009efff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dbfff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0x000dc000-0x000fffff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd6a1000-0xbd6a6fff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd7b7000-0xbd80efff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd8c7000-0xbd8d1fff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd8d2000-0xbd8d4fff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd8d5000-0xbd8d8fff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd8d9000-0xbd8dcfff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd8dd000-0xbd8dffff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd8e0000-0xbd906fff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd907000-0xbd907fff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbd908000-0xbdb0efff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbdb0f000-0xbdb9efff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbdb9f000-0xbdbfefff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xbdc00000-0xbfffffff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xdfffffff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xefffffff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec0ffff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfec10000-0xfecfffff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed0ffff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed10000-0xfed13fff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed14000-0xfed17fff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed18000-0xfed19fff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed8ffff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfed90000-0xfedfffff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xff7fffff]
Jun 04 22:57:47 AlexArch kernel: PM: hibernation: Registered nosave memory: [mem 0xff800000-0xffffffff]
Jun 04 22:57:47 AlexArch kernel: [mem 0xc0000000-0xdfffffff] available for PCI devices
Jun 04 22:57:47 AlexArch kernel: Booting paravirtualized kernel on bare hardware
Jun 04 22:57:47 AlexArch kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
Jun 04 22:57:47 AlexArch kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
Jun 04 22:57:47 AlexArch kernel: percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u524288
Jun 04 22:57:47 AlexArch kernel: pcpu-alloc: s225280 r8192 d28672 u524288 alloc=1*2097152
Jun 04 22:57:47 AlexArch kernel: pcpu-alloc: [0] 0 1 2 3 
Jun 04 22:57:47 AlexArch kernel: Fallback order for Node 0: 0 
Jun 04 22:57:47 AlexArch kernel: Built 1 zonelists, mobility grouping on.  Total pages: 2038024
Jun 04 22:57:47 AlexArch kernel: Policy zone: Normal
Jun 04 22:57:47 AlexArch kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=882f05fb-ea19-4494-99b9-75cacc2e0493 rw loglevel=3 quiet
Jun 04 22:57:47 AlexArch kernel: Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-linux", will be passed to user space.
Jun 04 22:57:47 AlexArch kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
Jun 04 22:57:47 AlexArch kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
Jun 04 22:57:47 AlexArch kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
Jun 04 22:57:47 AlexArch kernel: software IO TLB: area num 4.
Jun 04 22:57:47 AlexArch kernel: Memory: 8009220K/8282140K available (16384K kernel code, 2107K rwdata, 12656K rodata, 3324K init, 4000K bss, 272660K reserved, 0K cma-reserved)
Jun 04 22:57:47 AlexArch kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Jun 04 22:57:47 AlexArch kernel: Kernel/User page tables isolation: enabled
Jun 04 22:57:47 AlexArch kernel: ftrace: allocating 47292 entries in 185 pages
Jun 04 22:57:47 AlexArch kernel: ftrace: allocated 185 pages with 5 groups
Jun 04 22:57:47 AlexArch kernel: Dynamic Preempt: full
Jun 04 22:57:47 AlexArch kernel: rcu: Preemptible hierarchical RCU implementation.
Jun 04 22:57:47 AlexArch kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=4.
Jun 04 22:57:47 AlexArch kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
Jun 04 22:57:47 AlexArch kernel:         Trampoline variant of Tasks RCU enabled.
Jun 04 22:57:47 AlexArch kernel:         Rude variant of Tasks RCU enabled.
Jun 04 22:57:47 AlexArch kernel:         Tracing variant of Tasks RCU enabled.
Jun 04 22:57:47 AlexArch kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
Jun 04 22:57:47 AlexArch kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
Jun 04 22:57:47 AlexArch kernel: NR_IRQS: 20736, nr_irqs: 456, preallocated irqs: 16
Jun 04 22:57:47 AlexArch kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
Jun 04 22:57:47 AlexArch kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
Jun 04 22:57:47 AlexArch kernel: Console: colour dummy device 80x25
Jun 04 22:57:47 AlexArch kernel: printk: console [tty0] enabled
Jun 04 22:57:47 AlexArch kernel: ACPI: Core revision 20221020
Jun 04 22:57:47 AlexArch kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
Jun 04 22:57:47 AlexArch kernel: APIC: Switch to symmetric I/O mode setup
Jun 04 22:57:47 AlexArch kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jun 04 22:57:47 AlexArch kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x20967316ef4, max_idle_ns: 440795280289 ns
Jun 04 22:57:47 AlexArch kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4523.93 BogoMIPS (lpj=7535903)
Jun 04 22:57:47 AlexArch kernel: pid_max: default: 32768 minimum: 301
Jun 04 22:57:47 AlexArch kernel: LSM: initializing lsm=capability,landlock,lockdown,yama,integrity,bpf
Jun 04 22:57:47 AlexArch kernel: landlock: Up and running.
Jun 04 22:57:47 AlexArch kernel: Yama: becoming mindful.
Jun 04 22:57:47 AlexArch kernel: LSM support for eBPF active
Jun 04 22:57:47 AlexArch kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Jun 04 22:57:47 AlexArch kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Jun 04 22:57:47 AlexArch kernel: Disabled fast string operations
Jun 04 22:57:47 AlexArch kernel: x86/cpu: VMX (outside TXT) disabled by BIOS
Jun 04 22:57:47 AlexArch kernel: CPU0: Thermal monitoring enabled (TM2)
Jun 04 22:57:47 AlexArch kernel: process: using mwait in idle threads
Jun 04 22:57:47 AlexArch kernel: Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
Jun 04 22:57:47 AlexArch kernel: Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32, 1GB 0
Jun 04 22:57:47 AlexArch kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Jun 04 22:57:47 AlexArch kernel: Spectre V2 : Mitigation: Retpolines
Jun 04 22:57:47 AlexArch kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Jun 04 22:57:47 AlexArch kernel: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
Jun 04 22:57:47 AlexArch kernel: Speculative Store Bypass: Vulnerable
Jun 04 22:57:47 AlexArch kernel: MDS: Vulnerable: Clear CPU buffers attempted, no microcode
Jun 04 22:57:47 AlexArch kernel: MMIO Stale Data: Unknown: No mitigations
Jun 04 22:57:47 AlexArch kernel: Freeing SMP alternatives memory: 40K
Jun 04 22:57:47 AlexArch kernel: smpboot: CPU0: Intel(R) Core(TM)2 Duo CPU     P8400  @ 2.26GHz (family: 0x6, model: 0x17, stepping: 0x6)
Jun 04 22:57:47 AlexArch kernel: cblist_init_generic: Setting adjustable number of callback queues.
Jun 04 22:57:47 AlexArch kernel: cblist_init_generic: Setting shift to 2 and lim to 1.
Jun 04 22:57:47 AlexArch kernel: cblist_init_generic: Setting shift to 2 and lim to 1.
Jun 04 22:57:47 AlexArch kernel: cblist_init_generic: Setting shift to 2 and lim to 1.
Jun 04 22:57:47 AlexArch kernel: Performance Events: PEBS fmt0+, Core2 events, 4-deep LBR, Intel PMU driver.
Jun 04 22:57:47 AlexArch kernel: ... version:                2
Jun 04 22:57:47 AlexArch kernel: ... bit width:              40
Jun 04 22:57:47 AlexArch kernel: ... generic registers:      2
Jun 04 22:57:47 AlexArch kernel: ... value mask:             000000ffffffffff
Jun 04 22:57:47 AlexArch kernel: ... max period:             000000007fffffff
Jun 04 22:57:47 AlexArch kernel: ... fixed-purpose events:   3
Jun 04 22:57:47 AlexArch kernel: ... event mask:             0000000700000003
Jun 04 22:57:47 AlexArch kernel: rcu: Hierarchical SRCU implementation.
Jun 04 22:57:47 AlexArch kernel: rcu:         Max phase no-delay instances is 1000.
Jun 04 22:57:47 AlexArch kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Jun 04 22:57:47 AlexArch kernel: smp: Bringing up secondary CPUs ...
Jun 04 22:57:47 AlexArch kernel: x86: Booting SMP configuration:
Jun 04 22:57:47 AlexArch kernel: .... node  #0, CPUs:      #1
Jun 04 22:57:47 AlexArch kernel: Disabled fast string operations
Jun 04 22:57:47 AlexArch kernel: smp: Brought up 1 node, 2 CPUs
Jun 04 22:57:47 AlexArch kernel: smpboot: Max logical packages: 2
Jun 04 22:57:47 AlexArch kernel: smpboot: Total of 2 processors activated (9046.87 BogoMIPS)
Jun 04 22:57:47 AlexArch kernel: devtmpfs: initialized
Jun 04 22:57:47 AlexArch kernel: x86/mm: Memory block size: 128MB
Jun 04 22:57:47 AlexArch kernel: ACPI: PM: Registering ACPI NVS region [mem 0xbd8c7000-0xbd8d1fff] (45056 bytes)
Jun 04 22:57:47 AlexArch kernel: ACPI: PM: Registering ACPI NVS region [mem 0xbd8d9000-0xbd8dcfff] (16384 bytes)
Jun 04 22:57:47 AlexArch kernel: ACPI: PM: Registering ACPI NVS region [mem 0xbd8e0000-0xbd906fff] (159744 bytes)
Jun 04 22:57:47 AlexArch kernel: ACPI: PM: Registering ACPI NVS region [mem 0xbdb0f000-0xbdb9efff] (589824 bytes)
Jun 04 22:57:47 AlexArch kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
Jun 04 22:57:47 AlexArch kernel: futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
Jun 04 22:57:47 AlexArch kernel: pinctrl core: initialized pinctrl subsystem
Jun 04 22:57:47 AlexArch kernel: PM: RTC time: 20:57:42, date: 2023-06-04
Jun 04 22:57:47 AlexArch kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Jun 04 22:57:47 AlexArch kernel: DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
Jun 04 22:57:47 AlexArch kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Jun 04 22:57:47 AlexArch kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Jun 04 22:57:47 AlexArch kernel: audit: initializing netlink subsys (disabled)
Jun 04 22:57:47 AlexArch kernel: audit: type=2000 audit(1685912262.159:1): state=initialized audit_enabled=0 res=1
Jun 04 22:57:47 AlexArch kernel: thermal_sys: Registered thermal governor 'fair_share'
Jun 04 22:57:47 AlexArch kernel: thermal_sys: Registered thermal governor 'bang_bang'
Jun 04 22:57:47 AlexArch kernel: thermal_sys: Registered thermal governor 'step_wise'
Jun 04 22:57:47 AlexArch kernel: thermal_sys: Registered thermal governor 'user_space'
Jun 04 22:57:47 AlexArch kernel: thermal_sys: Registered thermal governor 'power_allocator'
Jun 04 22:57:47 AlexArch kernel: cpuidle: using governor ladder
Jun 04 22:57:47 AlexArch kernel: cpuidle: using governor menu
Jun 04 22:57:47 AlexArch kernel: Simple Boot Flag at 0x35 set to 0x80
Jun 04 22:57:47 AlexArch kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Jun 04 22:57:47 AlexArch kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jun 04 22:57:47 AlexArch kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
Jun 04 22:57:47 AlexArch kernel: PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved as E820 entry
Jun 04 22:57:47 AlexArch kernel: PCI: Using configuration type 1 for base access
Jun 04 22:57:47 AlexArch kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
Jun 04 22:57:47 AlexArch kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
Jun 04 22:57:47 AlexArch kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
Jun 04 22:57:47 AlexArch kernel: ACPI: Added _OSI(Module Device)
Jun 04 22:57:47 AlexArch kernel: ACPI: Added _OSI(Processor Device)
Jun 04 22:57:47 AlexArch kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jun 04 22:57:47 AlexArch kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jun 04 22:57:47 AlexArch kernel: ACPI: 6 ACPI AML tables successfully acquired and loaded
Jun 04 22:57:47 AlexArch kernel: ACPI: EC: EC started
Jun 04 22:57:47 AlexArch kernel: ACPI: EC: interrupt blocked
Jun 04 22:57:47 AlexArch kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Jun 04 22:57:47 AlexArch kernel: ACPI: EC: Boot ECDT EC used to handle transactions
Jun 04 22:57:47 AlexArch kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Jun 04 22:57:47 AlexArch kernel: ACPI: Dynamic OEM Table Load:
Jun 04 22:57:47 AlexArch kernel: ACPI: SSDT 0xFFFF9CD180B87800 0002C8 (v01 PmRef  Cpu0Ist  00003000 INTL 20050624)
Jun 04 22:57:47 AlexArch kernel: ACPI: Dynamic OEM Table Load:
Jun 04 22:57:47 AlexArch kernel: ACPI: SSDT 0xFFFF9CD180325000 00087A (v01 PmRef  Cpu0Cst  00003001 INTL 20050624)
Jun 04 22:57:47 AlexArch kernel: ACPI: Dynamic OEM Table Load:
Jun 04 22:57:47 AlexArch kernel: ACPI: SSDT 0xFFFF9CD1808FD400 0001CF (v01 PmRef  ApIst    00003000 INTL 20050624)
Jun 04 22:57:47 AlexArch kernel: ACPI: Dynamic OEM Table Load:
Jun 04 22:57:47 AlexArch kernel: ACPI: SSDT 0xFFFF9CD180BFE9C0 00008D (v01 PmRef  ApCst    00003000 INTL 20050624)
Jun 04 22:57:47 AlexArch kernel: ACPI: Interpreter enabled
Jun 04 22:57:47 AlexArch kernel: ACPI: PM: (supports S0 S3 S4 S5)
Jun 04 22:57:47 AlexArch kernel: ACPI: Using IOAPIC for interrupt routing
Jun 04 22:57:47 AlexArch kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jun 04 22:57:47 AlexArch kernel: PCI: Using E820 reservations for host bridge windows
Jun 04 22:57:47 AlexArch kernel: ACPI: Enabled 5 GPEs in block 00 to 3F
Jun 04 22:57:47 AlexArch kernel: ACPI: \_SB_.PCI0.LPC_.EC__.PUBS: New power resource
Jun 04 22:57:47 AlexArch kernel: acpi PNP0C0A:01: ACPI dock station (docks/bays count: 1)
Jun 04 22:57:47 AlexArch kernel: acpi LNXIOBAY:00: ACPI dock station (docks/bays count: 2)
Jun 04 22:57:47 AlexArch kernel: acpi IBM0079:00: ACPI dock station (docks/bays count: 3)
Jun 04 22:57:47 AlexArch kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 11
Jun 04 22:57:47 AlexArch kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 11
Jun 04 22:57:47 AlexArch kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 11
Jun 04 22:57:47 AlexArch kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 11
Jun 04 22:57:47 AlexArch kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 11
Jun 04 22:57:47 AlexArch kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 11
Jun 04 22:57:47 AlexArch kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 11
Jun 04 22:57:47 AlexArch kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 11
Jun 04 22:57:47 AlexArch kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Jun 04 22:57:47 AlexArch kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Jun 04 22:57:47 AlexArch kernel: acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR DPC]
Jun 04 22:57:47 AlexArch kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
Jun 04 22:57:47 AlexArch kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
Jun 04 22:57:47 AlexArch kernel: acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
Jun 04 22:57:47 AlexArch kernel: PCI host bridge to bus 0000:00
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000dbfff window]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:00.0: [8086:2a40] type 00 class 0x060000
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:00.0: DMAR: Disabling IOMMU for graphics on this chipset
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:00.0: DMAR: Forcing write-buffer flush capability
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:02.0: [8086:2a42] type 00 class 0x030000
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:02.0: reg 0x10: [mem 0xf4400000-0xf47fffff 64bit]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff 64bit pref]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:02.0: reg 0x20: [io  0x1800-0x1807]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:02.1: [8086:2a43] type 00 class 0x038000
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:02.1: reg 0x10: [mem 0xf4200000-0xf42fffff 64bit]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:03.0: [8086:2a44] type 00 class 0x078000
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:03.0: reg 0x10: [mem 0xfc226800-0xfc22680f 64bit]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:03.2: [8086:2a46] type 00 class 0x010185
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:03.2: reg 0x10: [io  0x1828-0x182f]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:03.2: reg 0x14: [io  0x180c-0x180f]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:03.2: reg 0x18: [io  0x1820-0x1827]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:03.2: reg 0x1c: [io  0x1808-0x180b]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:03.2: reg 0x20: [io  0x1810-0x181f]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:03.3: [8086:2a47] type 00 class 0x070002
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:03.3: reg 0x10: [io  0x1830-0x1837]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:03.3: reg 0x14: [mem 0xfc024000-0xfc024fff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:19.0: [8086:10f5] type 00 class 0x020000
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:19.0: reg 0x10: [mem 0xfc000000-0xfc01ffff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:19.0: reg 0x14: [mem 0xfc025000-0xfc025fff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:19.0: reg 0x18: [io  0x1840-0x185f]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1a.0: [8086:2937] type 00 class 0x0c0300
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1a.0: reg 0x20: [io  0x1860-0x187f]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1a.1: [8086:2938] type 00 class 0x0c0300
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1a.1: reg 0x20: [io  0x1880-0x189f]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1a.2: [8086:2939] type 00 class 0x0c0300
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1a.2: reg 0x20: [io  0x18a0-0x18bf]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1a.7: [8086:293c] type 00 class 0x0c0320
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1a.7: reg 0x10: [mem 0xfc226c00-0xfc226fff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xfc020000-0xfc023fff 64bit]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.0: [8086:2940] type 01 class 0x060400
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.1: [8086:2942] type 01 class 0x060400
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.3: [8086:2946] type 01 class 0x060400
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.4: [8086:2948] type 01 class 0x060400
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1d.0: reg 0x20: [io  0x18c0-0x18df]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1d.1: reg 0x20: [io  0x18e0-0x18ff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1d.2: reg 0x20: [io  0x1c00-0x1c1f]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1d.7: reg 0x10: [mem 0xfc227000-0xfc2273ff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1f.0: [8086:2917] type 00 class 0x060100
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1f.2: [8086:2929] type 00 class 0x010601
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1f.2: reg 0x10: [io  0x1c48-0x1c4f]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1f.2: reg 0x14: [io  0x183c-0x183f]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1f.2: reg 0x18: [io  0x1c40-0x1c47]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1f.2: reg 0x1c: [io  0x1838-0x183b]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1f.2: reg 0x20: [io  0x1c20-0x1c3f]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xfc226000-0xfc2267ff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1f.2: PME# supported from D3hot
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xfc227400-0xfc2274ff 64bit]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1f.3: reg 0x20: [io  0x1c60-0x1c7f]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
Jun 04 22:57:47 AlexArch kernel: pci 0000:03:00.0: [8086:4236] type 00 class 0x028000
Jun 04 22:57:47 AlexArch kernel: pci 0000:03:00.0: reg 0x10: [mem 0xf4300000-0xf4301fff 64bit]
Jun 04 22:57:47 AlexArch kernel: pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.1:   bridge window [mem 0xf4300000-0xf43fffff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.3: PCI bridge to [bus 05-0c]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.3:   bridge window [mem 0xf8000000-0xf9ffffff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.3:   bridge window [mem 0xf4000000-0xf40fffff 64bit pref]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.4: PCI bridge to [bus 0d-14]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.4:   bridge window [io  0x3000-0x3fff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.4:   bridge window [mem 0xfa000000-0xfbffffff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.4:   bridge window [mem 0xf4100000-0xf41fffff 64bit pref]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:15: extended config space not accessible
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.0: proprietary Ricoh MMC controller disabled (via CardBus function)
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.0: MMC cards are now supported by standard SDHCI controller
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.0: [1180:0476] type 02 class 0x060700
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.0: reg 0x10: [mem 0xf4800000-0xf4800fff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.0: supports D1 D2
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.1: [1180:0832] type 00 class 0x0c0010
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.1: reg 0x10: [mem 0xf4801000-0xf48017ff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.1: supports D1 D2
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.1: PME# supported from D0 D1 D2 D3hot D3cold
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.2: [1180:0822] type 00 class 0x080500
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.2: reg 0x10: [mem 0xf4801800-0xf48018ff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.2: supports D1 D2
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.2: PME# supported from D0 D1 D2 D3hot D3cold
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.4: [1180:0592] type 00 class 0x088000
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.4: reg 0x10: [mem 0xf4802000-0xf48020ff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.4: supports D1 D2
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.4: PME# supported from D0 D1 D2 D3hot D3cold
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.5: [1180:0852] type 00 class 0x088000
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.5: reg 0x10: [mem 0xf4802400-0xf48024ff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.5: supports D1 D2
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.5: PME# supported from D0 D1 D2 D3hot D3cold
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1e.0: PCI bridge to [bus 15-18] (subtractive decode)
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1e.0:   bridge window [io  0x4000-0x7fff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1e.0:   bridge window [mem 0xf4800000-0xf7ffffff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1e.0:   bridge window [mem 0xf0000000-0xf3ffffff 64bit pref]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1e.0:   bridge window [mem 0x000d4000-0x000dbfff window] (subtractive decode)
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1e.0:   bridge window [mem 0xc0000000-0xfebfffff window] (subtractive decode)
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:16: extended config space not accessible
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:16: busn_res: [bus 16-18] end is updated to 17
Jun 04 22:57:47 AlexArch kernel: ACPI: EC: interrupt unblocked
Jun 04 22:57:47 AlexArch kernel: ACPI: EC: event unblocked
Jun 04 22:57:47 AlexArch kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Jun 04 22:57:47 AlexArch kernel: ACPI: EC: GPE=0x11
Jun 04 22:57:47 AlexArch kernel: ACPI: \_SB_.PCI0.LPC_.EC__: Boot ECDT EC initialization complete
Jun 04 22:57:47 AlexArch kernel: ACPI: \_SB_.PCI0.LPC_.EC__: EC: Used to handle transactions and events
Jun 04 22:57:47 AlexArch kernel: iommu: Default domain type: Translated 
Jun 04 22:57:47 AlexArch kernel: iommu: DMA domain TLB invalidation policy: lazy mode 
Jun 04 22:57:47 AlexArch kernel: SCSI subsystem initialized
Jun 04 22:57:47 AlexArch kernel: libata version 3.00 loaded.
Jun 04 22:57:47 AlexArch kernel: ACPI: bus type USB registered
Jun 04 22:57:47 AlexArch kernel: usbcore: registered new interface driver usbfs
Jun 04 22:57:47 AlexArch kernel: usbcore: registered new interface driver hub
Jun 04 22:57:47 AlexArch kernel: usbcore: registered new device driver usb
Jun 04 22:57:47 AlexArch kernel: pps_core: LinuxPPS API ver. 1 registered
Jun 04 22:57:47 AlexArch kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Jun 04 22:57:47 AlexArch kernel: PTP clock support registered
Jun 04 22:57:47 AlexArch kernel: EDAC MC: Ver: 3.0.0
Jun 04 22:57:47 AlexArch kernel: NetLabel: Initializing
Jun 04 22:57:47 AlexArch kernel: NetLabel:  domain hash size = 128
Jun 04 22:57:47 AlexArch kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Jun 04 22:57:47 AlexArch kernel: NetLabel:  unlabeled traffic allowed by default
Jun 04 22:57:47 AlexArch kernel: mctp: management component transport protocol core
Jun 04 22:57:47 AlexArch kernel: NET: Registered PF_MCTP protocol family
Jun 04 22:57:47 AlexArch kernel: PCI: Using ACPI for IRQ routing
Jun 04 22:57:47 AlexArch kernel: PCI: pci_cache_line_size set to 64 bytes
Jun 04 22:57:47 AlexArch kernel: e820: reserve RAM buffer [mem 0x0009ec00-0x0009ffff]
Jun 04 22:57:47 AlexArch kernel: e820: reserve RAM buffer [mem 0xbd6a1000-0xbfffffff]
Jun 04 22:57:47 AlexArch kernel: e820: reserve RAM buffer [mem 0xbd7b7000-0xbfffffff]
Jun 04 22:57:47 AlexArch kernel: e820: reserve RAM buffer [mem 0xbd8c7000-0xbfffffff]
Jun 04 22:57:47 AlexArch kernel: e820: reserve RAM buffer [mem 0xbdc00000-0xbfffffff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:02.0: vgaarb: bridge control possible
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Jun 04 22:57:47 AlexArch kernel: vgaarb: loaded
Jun 04 22:57:47 AlexArch kernel: hpet: 4 channels of 0 reserved for per-cpu timers
Jun 04 22:57:47 AlexArch kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
Jun 04 22:57:47 AlexArch kernel: hpet0: 4 comparators, 64-bit 14.318180 MHz counter
Jun 04 22:57:47 AlexArch kernel: clocksource: Switched to clocksource tsc-early
Jun 04 22:57:47 AlexArch kernel: VFS: Disk quotas dquot_6.6.0
Jun 04 22:57:47 AlexArch kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jun 04 22:57:47 AlexArch kernel: pnp: PnP ACPI init
Jun 04 22:57:47 AlexArch kernel: pnp 00:00: disabling [mem 0x000c0000-0x000c3fff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
Jun 04 22:57:47 AlexArch kernel: pnp 00:00: disabling [mem 0x000c4000-0x000c7fff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
Jun 04 22:57:47 AlexArch kernel: pnp 00:00: disabling [mem 0x000c8000-0x000cbfff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
Jun 04 22:57:47 AlexArch kernel: pnp 00:00: disabling [mem 0x000cc000-0x000cffff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
Jun 04 22:57:47 AlexArch kernel: pnp 00:00: disabling [mem 0x000d0000-0x000d3fff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
Jun 04 22:57:47 AlexArch kernel: pnp 00:00: disabling [mem 0x000dc000-0x000dffff] because it overlaps 0000:00:02.0 BAR 6 [mem 0x000c0000-0x000dffff]
Jun 04 22:57:47 AlexArch kernel: system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
Jun 04 22:57:47 AlexArch kernel: system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved
Jun 04 22:57:47 AlexArch kernel: system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved
Jun 04 22:57:47 AlexArch kernel: system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved
Jun 04 22:57:47 AlexArch kernel: system 00:00: [mem 0x000ec000-0x000effff] could not be reserved
Jun 04 22:57:47 AlexArch kernel: system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
Jun 04 22:57:47 AlexArch kernel: system 00:00: [mem 0x00100000-0xbfffffff] could not be reserved
Jun 04 22:57:47 AlexArch kernel: system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
Jun 04 22:57:47 AlexArch kernel: system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved
Jun 04 22:57:47 AlexArch kernel: system 00:01: [io  0x164e-0x164f] has been reserved
Jun 04 22:57:47 AlexArch kernel: system 00:01: [io  0x1000-0x107f] has been reserved
Jun 04 22:57:47 AlexArch kernel: system 00:01: [io  0x1180-0x11ff] has been reserved
Jun 04 22:57:47 AlexArch kernel: system 00:01: [io  0x0800-0x080f] has been reserved
Jun 04 22:57:47 AlexArch kernel: system 00:01: [io  0x15e0-0x15ef] has been reserved
Jun 04 22:57:47 AlexArch kernel: system 00:01: [io  0x1600-0x1641] has been reserved
Jun 04 22:57:47 AlexArch kernel: system 00:01: [io  0x1600-0x161b] has been reserved
Jun 04 22:57:47 AlexArch kernel: system 00:01: [mem 0xe0000000-0xefffffff] has been reserved
Jun 04 22:57:47 AlexArch kernel: system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
Jun 04 22:57:47 AlexArch kernel: system 00:01: [mem 0xfed10000-0xfed13fff] has been reserved
Jun 04 22:57:47 AlexArch kernel: system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
Jun 04 22:57:47 AlexArch kernel: system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
Jun 04 22:57:47 AlexArch kernel: system 00:01: [mem 0xfed45000-0xfed4bfff] has been reserved
Jun 04 22:57:47 AlexArch kernel: pnp: PnP ACPI: found 6 devices
Jun 04 22:57:47 AlexArch kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Jun 04 22:57:47 AlexArch kernel: NET: Registered PF_INET protocol family
Jun 04 22:57:47 AlexArch kernel: IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Jun 04 22:57:47 AlexArch kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
Jun 04 22:57:47 AlexArch kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
Jun 04 22:57:47 AlexArch kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
Jun 04 22:57:47 AlexArch kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
Jun 04 22:57:47 AlexArch kernel: TCP: Hash tables configured (established 65536 bind 65536)
Jun 04 22:57:47 AlexArch kernel: MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
Jun 04 22:57:47 AlexArch kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
Jun 04 22:57:47 AlexArch kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
Jun 04 22:57:47 AlexArch kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Jun 04 22:57:47 AlexArch kernel: NET: Registered PF_XDP protocol family
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000 add_align 100000
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 02] add_size 200000 add_align 100000
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.1: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.0: BAR 14: assigned [mem 0xc0000000-0xc01fffff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.0: BAR 15: assigned [mem 0xc0200000-0xc03fffff 64bit pref]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.1: BAR 15: assigned [mem 0xc0400000-0xc05fffff 64bit pref]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.0: BAR 13: assigned [io  0x8000-0x8fff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.1: BAR 13: assigned [io  0x9000-0x9fff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.0:   bridge window [io  0x8000-0x8fff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.0:   bridge window [mem 0xc0000000-0xc01fffff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.0:   bridge window [mem 0xc0200000-0xc03fffff 64bit pref]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.1:   bridge window [io  0x9000-0x9fff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.1:   bridge window [mem 0xf4300000-0xf43fffff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.1:   bridge window [mem 0xc0400000-0xc05fffff 64bit pref]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.3: PCI bridge to [bus 05-0c]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.3:   bridge window [mem 0xf8000000-0xf9ffffff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.3:   bridge window [mem 0xf4000000-0xf40fffff 64bit pref]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.4: PCI bridge to [bus 0d-14]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.4:   bridge window [io  0x3000-0x3fff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.4:   bridge window [mem 0xfa000000-0xfbffffff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1c.4:   bridge window [mem 0xf4100000-0xf41fffff 64bit pref]
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.0: BAR 15: assigned [mem 0xf0000000-0xf3ffffff pref]
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.0: BAR 16: assigned [mem 0xc4000000-0xc7ffffff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.0: BAR 13: assigned [io  0x4000-0x40ff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.0: BAR 14: assigned [io  0x4400-0x44ff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.0: CardBus bridge to [bus 16-17]
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.0:   bridge window [io  0x4000-0x40ff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.0:   bridge window [io  0x4400-0x44ff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.0:   bridge window [mem 0xf0000000-0xf3ffffff pref]
Jun 04 22:57:47 AlexArch kernel: pci 0000:15:00.0:   bridge window [mem 0xc4000000-0xc7ffffff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1e.0: PCI bridge to [bus 15-18]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1e.0:   bridge window [io  0x4000-0x7fff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1e.0:   bridge window [mem 0xf4800000-0xf7ffffff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1e.0:   bridge window [mem 0xf0000000-0xf3ffffff 64bit pref]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:00: resource 7 [mem 0x000d4000-0x000dbfff window]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:00: resource 8 [mem 0xc0000000-0xfebfffff window]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:02: resource 0 [io  0x8000-0x8fff]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:02: resource 1 [mem 0xc0000000-0xc01fffff]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:02: resource 2 [mem 0xc0200000-0xc03fffff 64bit pref]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:03: resource 0 [io  0x9000-0x9fff]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:03: resource 1 [mem 0xf4300000-0xf43fffff]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:03: resource 2 [mem 0xc0400000-0xc05fffff 64bit pref]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:05: resource 0 [io  0x2000-0x2fff]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:05: resource 1 [mem 0xf8000000-0xf9ffffff]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:05: resource 2 [mem 0xf4000000-0xf40fffff 64bit pref]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:0d: resource 0 [io  0x3000-0x3fff]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:0d: resource 1 [mem 0xfa000000-0xfbffffff]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:0d: resource 2 [mem 0xf4100000-0xf41fffff 64bit pref]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:15: resource 0 [io  0x4000-0x7fff]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:15: resource 1 [mem 0xf4800000-0xf7ffffff]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:15: resource 2 [mem 0xf0000000-0xf3ffffff 64bit pref]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:15: resource 4 [io  0x0000-0x0cf7 window]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:15: resource 5 [io  0x0d00-0xffff window]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:15: resource 6 [mem 0x000a0000-0x000bffff window]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:15: resource 7 [mem 0x000d4000-0x000dbfff window]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:15: resource 8 [mem 0xc0000000-0xfebfffff window]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:16: resource 0 [io  0x4000-0x40ff]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:16: resource 1 [io  0x4400-0x44ff]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:16: resource 2 [mem 0xf0000000-0xf3ffffff pref]
Jun 04 22:57:47 AlexArch kernel: pci_bus 0000:16: resource 3 [mem 0xc4000000-0xc7ffffff]
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1a.0: Refused to change power state from D1 to D0
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1a.2: Refused to change power state from D1 to D0
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:1d.0: Refused to change power state from D1 to D0
Jun 04 22:57:47 AlexArch kernel: PCI: CLS 64 bytes, default 64
Jun 04 22:57:47 AlexArch kernel: Trying to unpack rootfs image as initramfs...
Jun 04 22:57:47 AlexArch kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Jun 04 22:57:47 AlexArch kernel: software IO TLB: mapped [mem 0x00000000b96a1000-0x00000000bd6a1000] (64MB)
Jun 04 22:57:47 AlexArch kernel: Initialise system trusted keyrings
Jun 04 22:57:47 AlexArch kernel: Key type blacklist registered
Jun 04 22:57:47 AlexArch kernel: workingset: timestamp_bits=41 max_order=21 bucket_order=0
Jun 04 22:57:47 AlexArch kernel: zbud: loaded
Jun 04 22:57:47 AlexArch kernel: integrity: Platform Keyring initialized
Jun 04 22:57:47 AlexArch kernel: integrity: Machine keyring initialized
Jun 04 22:57:47 AlexArch kernel: Key type asymmetric registered
Jun 04 22:57:47 AlexArch kernel: Asymmetric key parser 'x509' registered
Jun 04 22:57:47 AlexArch kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
Jun 04 22:57:47 AlexArch kernel: io scheduler mq-deadline registered
Jun 04 22:57:47 AlexArch kernel: io scheduler kyber registered
Jun 04 22:57:47 AlexArch kernel: io scheduler bfq registered
Jun 04 22:57:47 AlexArch kernel: pcieport 0000:00:1c.0: PME: Signaling with IRQ 24
Jun 04 22:57:47 AlexArch kernel: pcieport 0000:00:1c.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
Jun 04 22:57:47 AlexArch kernel: pcieport 0000:00:1c.1: PME: Signaling with IRQ 25
Jun 04 22:57:47 AlexArch kernel: pcieport 0000:00:1c.1: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
Jun 04 22:57:47 AlexArch kernel: pcieport 0000:00:1c.3: PME: Signaling with IRQ 26
Jun 04 22:57:47 AlexArch kernel: pcieport 0000:00:1c.3: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
Jun 04 22:57:47 AlexArch kernel: pcieport 0000:00:1c.4: PME: Signaling with IRQ 27
Jun 04 22:57:47 AlexArch kernel: pcieport 0000:00:1c.4: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl- IbPresDis- LLActRep+ (with Cmd Compl erratum)
Jun 04 22:57:47 AlexArch kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jun 04 22:57:47 AlexArch kernel: Monitor-Mwait will be used to enter C-1 state
Jun 04 22:57:47 AlexArch kernel: Monitor-Mwait will be used to enter C-2 state
Jun 04 22:57:47 AlexArch kernel: Monitor-Mwait will be used to enter C-3 state
Jun 04 22:57:47 AlexArch kernel: ACPI: \_PR_.CPU0: Found 3 idle states
Jun 04 22:57:47 AlexArch kernel: ACPI: AC: AC Adapter [AC] (on-line)
Jun 04 22:57:47 AlexArch kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
Jun 04 22:57:47 AlexArch kernel: ACPI: button: Lid Switch [LID]
Jun 04 22:57:47 AlexArch kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
Jun 04 22:57:47 AlexArch kernel: ACPI: button: Sleep Button [SLPB]
Jun 04 22:57:47 AlexArch kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
Jun 04 22:57:47 AlexArch kernel: ACPI: button: Power Button [PWRF]
Jun 04 22:57:47 AlexArch kernel: thermal LNXTHERM:00: registered as thermal_zone0
Jun 04 22:57:47 AlexArch kernel: ACPI: thermal: Thermal Zone [THM0] (51 C)
Jun 04 22:57:47 AlexArch kernel: thermal LNXTHERM:01: registered as thermal_zone1
Jun 04 22:57:47 AlexArch kernel: ACPI: thermal: Thermal Zone [THM1] (48 C)
Jun 04 22:57:47 AlexArch kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Jun 04 22:57:47 AlexArch kernel: 0000:00:03.3: ttyS4 at I/O 0x1830 (irq = 17, base_baud = 115200) is a 16550A
Jun 04 22:57:47 AlexArch kernel: Non-volatile memory driver v1.3
Jun 04 22:57:47 AlexArch kernel: Linux agpgart interface v0.103
Jun 04 22:57:47 AlexArch kernel: ACPI: battery: Slot [BAT0] (battery present)
Jun 04 22:57:47 AlexArch kernel: tpm_tis 00:05: 1.2 TPM (device-id 0x1020, rev-id 6)
Jun 04 22:57:47 AlexArch kernel: random: crng init done
Jun 04 22:57:47 AlexArch kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
Jun 04 22:57:47 AlexArch kernel: ACPI: bus type drm_connector registered
Jun 04 22:57:47 AlexArch kernel: ahci 0000:00:1f.2: version 3.0
Jun 04 22:57:47 AlexArch kernel: ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
Jun 04 22:57:47 AlexArch kernel: ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x3 impl SATA mode
Jun 04 22:57:47 AlexArch kernel: ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ccc sxs 
Jun 04 22:57:47 AlexArch kernel: scsi host0: ahci
Jun 04 22:57:47 AlexArch kernel: scsi host1: ahci
Jun 04 22:57:47 AlexArch kernel: scsi host2: ahci
Jun 04 22:57:47 AlexArch kernel: scsi host3: ahci
Jun 04 22:57:47 AlexArch kernel: ata1: SATA max UDMA/133 abar m2048@0xfc226000 port 0xfc226100 irq 28
Jun 04 22:57:47 AlexArch kernel: ata2: SATA max UDMA/133 abar m2048@0xfc226000 port 0xfc226180 irq 28
Jun 04 22:57:47 AlexArch kernel: ata3: DUMMY
Jun 04 22:57:47 AlexArch kernel: ata4: DUMMY
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1a.0: Refused to change power state from D1 to D0
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1a.0: UHCI Host Controller
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1a.0: detected 2 ports
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1a.0: irq 20, io port 0x00001860
Jun 04 22:57:47 AlexArch kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.03
Jun 04 22:57:47 AlexArch kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 04 22:57:47 AlexArch kernel: usb usb1: Product: UHCI Host Controller
Jun 04 22:57:47 AlexArch kernel: usb usb1: Manufacturer: Linux 6.3.5-arch1-1 uhci_hcd
Jun 04 22:57:47 AlexArch kernel: usb usb1: SerialNumber: 0000:00:1a.0
Jun 04 22:57:47 AlexArch kernel: hub 1-0:1.0: USB hub found
Jun 04 22:57:47 AlexArch kernel: hub 1-0:1.0: 2 ports detected
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1a.1: UHCI Host Controller
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 2
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1a.1: detected 2 ports
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1a.1: irq 21, io port 0x00001880
Jun 04 22:57:47 AlexArch kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.03
Jun 04 22:57:47 AlexArch kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 04 22:57:47 AlexArch kernel: usb usb2: Product: UHCI Host Controller
Jun 04 22:57:47 AlexArch kernel: usb usb2: Manufacturer: Linux 6.3.5-arch1-1 uhci_hcd
Jun 04 22:57:47 AlexArch kernel: usb usb2: SerialNumber: 0000:00:1a.1
Jun 04 22:57:47 AlexArch kernel: hub 2-0:1.0: USB hub found
Jun 04 22:57:47 AlexArch kernel: hub 2-0:1.0: 2 ports detected
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1a.2: Refused to change power state from D1 to D0
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1a.2: UHCI Host Controller
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 3
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1a.2: detected 2 ports
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1a.2: irq 22, io port 0x000018a0
Jun 04 22:57:47 AlexArch kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.03
Jun 04 22:57:47 AlexArch kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 04 22:57:47 AlexArch kernel: usb usb3: Product: UHCI Host Controller
Jun 04 22:57:47 AlexArch kernel: usb usb3: Manufacturer: Linux 6.3.5-arch1-1 uhci_hcd
Jun 04 22:57:47 AlexArch kernel: usb usb3: SerialNumber: 0000:00:1a.2
Jun 04 22:57:47 AlexArch kernel: hub 3-0:1.0: USB hub found
Jun 04 22:57:47 AlexArch kernel: hub 3-0:1.0: 2 ports detected
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1d.0: Refused to change power state from D1 to D0
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1d.0: detected 2 ports
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1d.0: irq 16, io port 0x000018c0
Jun 04 22:57:47 AlexArch kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.03
Jun 04 22:57:47 AlexArch kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 04 22:57:47 AlexArch kernel: usb usb4: Product: UHCI Host Controller
Jun 04 22:57:47 AlexArch kernel: usb usb4: Manufacturer: Linux 6.3.5-arch1-1 uhci_hcd
Jun 04 22:57:47 AlexArch kernel: usb usb4: SerialNumber: 0000:00:1d.0
Jun 04 22:57:47 AlexArch kernel: hub 4-0:1.0: USB hub found
Jun 04 22:57:47 AlexArch kernel: hub 4-0:1.0: 2 ports detected
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 5
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1d.1: detected 2 ports
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1d.1: irq 17, io port 0x000018e0
Jun 04 22:57:47 AlexArch kernel: usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.03
Jun 04 22:57:47 AlexArch kernel: usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 04 22:57:47 AlexArch kernel: usb usb5: Product: UHCI Host Controller
Jun 04 22:57:47 AlexArch kernel: usb usb5: Manufacturer: Linux 6.3.5-arch1-1 uhci_hcd
Jun 04 22:57:47 AlexArch kernel: usb usb5: SerialNumber: 0000:00:1d.1
Jun 04 22:57:47 AlexArch kernel: hub 5-0:1.0: USB hub found
Jun 04 22:57:47 AlexArch kernel: hub 5-0:1.0: 2 ports detected
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 6
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1d.2: detected 2 ports
Jun 04 22:57:47 AlexArch kernel: uhci_hcd 0000:00:1d.2: irq 18, io port 0x00001c00
Jun 04 22:57:47 AlexArch kernel: usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.03
Jun 04 22:57:47 AlexArch kernel: usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 04 22:57:47 AlexArch kernel: usb usb6: Product: UHCI Host Controller
Jun 04 22:57:47 AlexArch kernel: usb usb6: Manufacturer: Linux 6.3.5-arch1-1 uhci_hcd
Jun 04 22:57:47 AlexArch kernel: usb usb6: SerialNumber: 0000:00:1d.2
Jun 04 22:57:47 AlexArch kernel: hub 6-0:1.0: USB hub found
Jun 04 22:57:47 AlexArch kernel: hub 6-0:1.0: 2 ports detected
Jun 04 22:57:47 AlexArch kernel: usbcore: registered new interface driver usbserial_generic
Jun 04 22:57:47 AlexArch kernel: usbserial: USB Serial support registered for generic
Jun 04 22:57:47 AlexArch kernel: rtc_cmos 00:02: RTC can wake from S4
Jun 04 22:57:47 AlexArch kernel: rtc_cmos 00:02: registered as rtc0
Jun 04 22:57:47 AlexArch kernel: rtc_cmos 00:02: setting system clock to 2023-06-04T20:57:42 UTC (1685912262)
Jun 04 22:57:47 AlexArch kernel: rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Jun 04 22:57:47 AlexArch kernel: intel_pstate: CPU model not supported
Jun 04 22:57:47 AlexArch kernel: ledtrig-cpu: registered to indicate activity on CPUs
Jun 04 22:57:47 AlexArch kernel: vesafb: mode is 1280x800x32, linelength=5120, pages=0
Jun 04 22:57:47 AlexArch kernel: vesafb: scrolling: redraw
Jun 04 22:57:47 AlexArch kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Jun 04 22:57:47 AlexArch kernel: vesafb: framebuffer at 0xd0000000, mapped to 0x000000008a952d95, using 4032k, total 4032k
Jun 04 22:57:47 AlexArch kernel: fbcon: Deferring console take-over
Jun 04 22:57:47 AlexArch kernel: fb0: VESA VGA frame buffer device
Jun 04 22:57:47 AlexArch kernel: hid: raw HID events driver (C) Jiri Kosina
Jun 04 22:57:47 AlexArch kernel: drop_monitor: Initializing network drop monitor service
Jun 04 22:57:47 AlexArch kernel: Initializing XFRM netlink socket
Jun 04 22:57:47 AlexArch kernel: NET: Registered PF_INET6 protocol family
Jun 04 22:57:47 AlexArch kernel: ehci-pci 0000:00:1a.7: EHCI Host Controller
Jun 04 22:57:47 AlexArch kernel: ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 7
Jun 04 22:57:47 AlexArch kernel: ehci-pci 0000:00:1a.7: debug port 1
Jun 04 22:57:47 AlexArch kernel: Freeing initrd memory: 14056K
Jun 04 22:57:47 AlexArch kernel: ehci-pci 0000:00:1a.7: irq 23, io mem 0xfc226c00
Jun 04 22:57:47 AlexArch kernel: Segment Routing with IPv6
Jun 04 22:57:47 AlexArch kernel: RPL Segment Routing with IPv6
Jun 04 22:57:47 AlexArch kernel: In-situ OAM (IOAM) with IPv6
Jun 04 22:57:47 AlexArch kernel: NET: Registered PF_PACKET protocol family
Jun 04 22:57:47 AlexArch kernel: microcode: Microcode Update Driver: v2.2.
Jun 04 22:57:47 AlexArch kernel: IPI shorthand broadcast: enabled
Jun 04 22:57:47 AlexArch kernel: ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
Jun 04 22:57:47 AlexArch kernel: usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.03
Jun 04 22:57:47 AlexArch kernel: usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 04 22:57:47 AlexArch kernel: usb usb7: Product: EHCI Host Controller
Jun 04 22:57:47 AlexArch kernel: usb usb7: Manufacturer: Linux 6.3.5-arch1-1 ehci_hcd
Jun 04 22:57:47 AlexArch kernel: usb usb7: SerialNumber: 0000:00:1a.7
Jun 04 22:57:47 AlexArch kernel: hub 7-0:1.0: USB hub found
Jun 04 22:57:47 AlexArch kernel: sched_clock: Marking stable (790355085, 447766)->(995450036, -204647185)
Jun 04 22:57:47 AlexArch kernel: hub 7-0:1.0: 6 ports detected
Jun 04 22:57:47 AlexArch kernel: registered taskstats version 1
Jun 04 22:57:47 AlexArch kernel: Loading compiled-in X.509 certificates
Jun 04 22:57:47 AlexArch kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 708d14cc5059e65191b3ff221a9bc4f4725df7c2'
Jun 04 22:57:47 AlexArch kernel: zswap: loaded using pool zstd/zsmalloc
Jun 04 22:57:47 AlexArch kernel: Key type .fscrypt registered
Jun 04 22:57:47 AlexArch kernel: Key type fscrypt-provisioning registered
Jun 04 22:57:47 AlexArch kernel: PM:   Magic number: 11:863:1002
Jun 04 22:57:47 AlexArch kernel: pnp 00:04: hash matches
Jun 04 22:57:47 AlexArch kernel: memory memory41: hash matches
Jun 04 22:57:47 AlexArch kernel: RAS: Correctable Errors collector initialized.
Jun 04 22:57:47 AlexArch kernel: hub 1-0:1.0: USB hub found
Jun 04 22:57:47 AlexArch kernel: hub 1-0:1.0: 2 ports detected
Jun 04 22:57:47 AlexArch kernel: hub 2-0:1.0: USB hub found
Jun 04 22:57:47 AlexArch kernel: hub 2-0:1.0: 2 ports detected
Jun 04 22:57:47 AlexArch kernel: hub 3-0:1.0: USB hub found
Jun 04 22:57:47 AlexArch kernel: hub 3-0:1.0: 2 ports detected
Jun 04 22:57:47 AlexArch kernel: ehci-pci 0000:00:1d.7: EHCI Host Controller
Jun 04 22:57:47 AlexArch kernel: ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 8
Jun 04 22:57:47 AlexArch kernel: ehci-pci 0000:00:1d.7: debug port 1
Jun 04 22:57:47 AlexArch kernel: ehci-pci 0000:00:1d.7: irq 19, io mem 0xfc227000
Jun 04 22:57:47 AlexArch kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Jun 04 22:57:47 AlexArch kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0(SECURITY FREEZE LOCK) filtered out
Jun 04 22:57:47 AlexArch kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
Jun 04 22:57:47 AlexArch kernel: ata1.00: supports DRM functions and may not be fully accessible
Jun 04 22:57:47 AlexArch kernel: ata1.00: ATA-11: Samsung SSD 870 EVO 500GB, SVT02B6Q, max UDMA/133
Jun 04 22:57:47 AlexArch kernel: ata1.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 32), AA
Jun 04 22:57:47 AlexArch kernel: ata1.00: Features: Trust Dev-Sleep NCQ-sndrcv
Jun 04 22:57:47 AlexArch kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0(SECURITY FREEZE LOCK) filtered out
Jun 04 22:57:47 AlexArch kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
Jun 04 22:57:47 AlexArch kernel: ata1.00: supports DRM functions and may not be fully accessible
Jun 04 22:57:47 AlexArch kernel: ata1.00: configured for UDMA/133
Jun 04 22:57:47 AlexArch kernel: scsi 0:0:0:0: Direct-Access     ATA      Samsung SSD 870  2B6Q PQ: 0 ANSI: 5
Jun 04 22:57:47 AlexArch kernel: ata1.00: Enabling discard_zeroes_data
Jun 04 22:57:47 AlexArch kernel: sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
Jun 04 22:57:47 AlexArch kernel: sd 0:0:0:0: [sda] Write Protect is off
Jun 04 22:57:47 AlexArch kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Jun 04 22:57:47 AlexArch kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jun 04 22:57:47 AlexArch kernel: sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
Jun 04 22:57:47 AlexArch kernel: ata1.00: Enabling discard_zeroes_data
Jun 04 22:57:47 AlexArch kernel:  sda: sda1 sda2
Jun 04 22:57:47 AlexArch kernel: sd 0:0:0:0: [sda] supports TCG Opal
Jun 04 22:57:47 AlexArch kernel: sd 0:0:0:0: [sda] Attached SCSI disk
Jun 04 22:57:47 AlexArch kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Jun 04 22:57:47 AlexArch kernel: ata2.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
Jun 04 22:57:47 AlexArch kernel: ata2.00: ATAPI: Optiarc  DVD RW AD-7910S, 1.D0, max UDMA/100
Jun 04 22:57:47 AlexArch kernel: ata2.00: ACPI cmd ef/10:03:00:00:00:a0(SET FEATURES) filtered out
Jun 04 22:57:47 AlexArch kernel: ata2.00: configured for UDMA/100
Jun 04 22:57:47 AlexArch kernel: scsi 1:0:0:0: CD-ROM            Optiarc  DVD RW AD-7910S  1.D0 PQ: 0 ANSI: 5
Jun 04 22:57:47 AlexArch kernel: tsc: Refined TSC clocksource calibration: 2261.007 MHz
Jun 04 22:57:47 AlexArch kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x209751d2bd2, max_idle_ns: 440795263460 ns
Jun 04 22:57:47 AlexArch kernel: clocksource: Switched to clocksource tsc
Jun 04 22:57:47 AlexArch kernel: ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Jun 04 22:57:47 AlexArch kernel: usb usb8: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.03
Jun 04 22:57:47 AlexArch kernel: usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 04 22:57:47 AlexArch kernel: usb usb8: Product: EHCI Host Controller
Jun 04 22:57:47 AlexArch kernel: usb usb8: Manufacturer: Linux 6.3.5-arch1-1 ehci_hcd
Jun 04 22:57:47 AlexArch kernel: usb usb8: SerialNumber: 0000:00:1d.7
Jun 04 22:57:47 AlexArch kernel: hub 8-0:1.0: USB hub found
Jun 04 22:57:47 AlexArch kernel: hub 8-0:1.0: 6 ports detected
Jun 04 22:57:47 AlexArch kernel: hub 4-0:1.0: USB hub found
Jun 04 22:57:47 AlexArch kernel: hub 4-0:1.0: 2 ports detected
Jun 04 22:57:47 AlexArch kernel: hub 5-0:1.0: USB hub found
Jun 04 22:57:47 AlexArch kernel: hub 5-0:1.0: 2 ports detected
Jun 04 22:57:47 AlexArch kernel: hub 6-0:1.0: USB hub found
Jun 04 22:57:47 AlexArch kernel: hub 6-0:1.0: 2 ports detected
Jun 04 22:57:47 AlexArch kernel: Freeing unused decrypted memory: 2036K
Jun 04 22:57:47 AlexArch kernel: Freeing unused kernel image (initmem) memory: 3324K
Jun 04 22:57:47 AlexArch kernel: Write protecting the kernel read-only data: 30720k
Jun 04 22:57:47 AlexArch kernel: Freeing unused kernel image (rodata/data gap) memory: 1680K
Jun 04 22:57:47 AlexArch kernel: usb 2-1: new full-speed USB device number 2 using uhci_hcd
Jun 04 22:57:47 AlexArch kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jun 04 22:57:47 AlexArch kernel: rodata_test: all tests were successful
Jun 04 22:57:47 AlexArch kernel: x86/mm: Checking user space page tables
Jun 04 22:57:47 AlexArch kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jun 04 22:57:47 AlexArch kernel: Run /init as init process
Jun 04 22:57:47 AlexArch kernel:   with arguments:
Jun 04 22:57:47 AlexArch kernel:     /init
Jun 04 22:57:47 AlexArch kernel:   with environment:
Jun 04 22:57:47 AlexArch kernel:     HOME=/
Jun 04 22:57:47 AlexArch kernel:     TERM=linux
Jun 04 22:57:47 AlexArch kernel:     BOOT_IMAGE=/boot/vmlinuz-linux
Jun 04 22:57:47 AlexArch kernel: usb 2-1: New USB device found, idVendor=08ff, idProduct=2810, bcdDevice=17.03
Jun 04 22:57:47 AlexArch kernel: usb 2-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
Jun 04 22:57:47 AlexArch kernel: usb 2-1: Product: Fingerprint Sensor
Jun 04 22:57:47 AlexArch kernel: i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
Jun 04 22:57:47 AlexArch kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Jun 04 22:57:47 AlexArch kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Jun 04 22:57:47 AlexArch kernel: thinkpad_acpi: ThinkPad ACPI Extras v0.26
Jun 04 22:57:47 AlexArch kernel: thinkpad_acpi: http://ibm-acpi.sf.net/
Jun 04 22:57:47 AlexArch kernel: thinkpad_acpi: ThinkPad BIOS 6FET50WW (1.20 ), EC 7VHT12WW-1.01
Jun 04 22:57:47 AlexArch kernel: thinkpad_acpi: Lenovo ThinkPad T500, model 22434EG
Jun 04 22:57:47 AlexArch kernel: thinkpad_acpi: radio switch found; radios are enabled
Jun 04 22:57:47 AlexArch kernel: thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
Jun 04 22:57:47 AlexArch kernel: thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
Jun 04 22:57:47 AlexArch kernel: thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
Jun 04 22:57:47 AlexArch kernel: thinkpad_acpi: Standard ACPI backlight interface available, not loading native one
Jun 04 22:57:47 AlexArch kernel: scsi host4: ata_generic
Jun 04 22:57:47 AlexArch kernel: thinkpad_acpi: secondary fan control detected & enabled
Jun 04 22:57:47 AlexArch kernel: thinkpad_acpi: battery 1 registered (start 0, stop 0, behaviours: 0x1)
Jun 04 22:57:47 AlexArch kernel: ACPI: battery: new extension: ThinkPad Battery Extension
Jun 04 22:57:47 AlexArch kernel: input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input3
Jun 04 22:57:47 AlexArch kernel: scsi host5: ata_generic
Jun 04 22:57:47 AlexArch kernel: ata5: PATA max UDMA/100 cmd 0x1828 ctl 0x180c bmdma 0x1810 irq 18
Jun 04 22:57:47 AlexArch kernel: ata6: PATA max UDMA/100 cmd 0x1820 ctl 0x1808 bmdma 0x1818 irq 18
Jun 04 22:57:47 AlexArch kernel: usb 2-2: new full-speed USB device number 3 using uhci_hcd
Jun 04 22:57:47 AlexArch kernel: sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
Jun 04 22:57:47 AlexArch kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
Jun 04 22:57:47 AlexArch kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
Jun 04 22:57:47 AlexArch kernel: firewire_ohci 0000:15:00.1: added OHCI v1.10 device as card 0, 4 IR + 4 IT contexts, quirks 0x11
Jun 04 22:57:47 AlexArch kernel: usb 2-2: New USB device found, idVendor=0a5c, idProduct=2145, bcdDevice= 3.99
Jun 04 22:57:47 AlexArch kernel: usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun 04 22:57:47 AlexArch kernel: usb 2-2: Product: ThinkPad Bluetooth with Enhanced Data Rate II
Jun 04 22:57:47 AlexArch kernel: usb 2-2: Manufacturer: Lenovo Computer Corp
Jun 04 22:57:47 AlexArch kernel: sdhci: Secure Digital Host Controller Interface driver
Jun 04 22:57:47 AlexArch kernel: sdhci: Copyright(c) Pierre Ossman
Jun 04 22:57:47 AlexArch kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
Jun 04 22:57:47 AlexArch kernel: sdhci-pci 0000:15:00.2: SDHCI controller found [1180:0822] (rev 21)
Jun 04 22:57:47 AlexArch kernel: sdhci-pci 0000:15:00.2: Will use DMA mode even though HW doesn't fully claim to support it.
Jun 04 22:57:47 AlexArch kernel: mmc0 bounce up to 128 segments into one, max segment size 65536 bytes
Jun 04 22:57:47 AlexArch kernel: sdhci-pci 0000:15:00.2: Will use DMA mode even though HW doesn't fully claim to support it.
Jun 04 22:57:47 AlexArch kernel: mmc0: SDHCI controller on PCI [0000:15:00.2] using DMA
Jun 04 22:57:47 AlexArch kernel: sdhci-pci 0000:15:00.2: Will use DMA mode even though HW doesn't fully claim to support it.
Jun 04 22:57:47 AlexArch kernel: firewire_core 0000:15:00.1: created device fw0: GUID 00016c00006e952d, S400
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:00.0: Intel GM45 Chipset
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
Jun 04 22:57:47 AlexArch kernel: pci 0000:00:00.0: detected 32768K stolen memory
Jun 04 22:57:47 AlexArch kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
Jun 04 22:57:47 AlexArch kernel: i915 0000:00:02.0: [drm] Skipping intel_backlight registration
Jun 04 22:57:47 AlexArch kernel: [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
Jun 04 22:57:47 AlexArch kernel: ACPI: video: Video Device [VID] (multi-head: yes  rom: no  post: no)
Jun 04 22:57:47 AlexArch kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input6
Jun 04 22:57:47 AlexArch kernel: acpi device:01: registered as cooling_device2
Jun 04 22:57:47 AlexArch kernel: fbcon: i915drmfb (fb0) is primary device
Jun 04 22:57:47 AlexArch kernel: fbcon: Deferring console take-over
Jun 04 22:57:47 AlexArch kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
Jun 04 22:57:47 AlexArch kernel: fbcon: Taking over console
Jun 04 22:57:47 AlexArch kernel: Console: switching to colour frame buffer device 160x50
Jun 04 22:57:47 AlexArch kernel: EXT4-fs (sda1): mounted filesystem 882f05fb-ea19-4494-99b9-75cacc2e0493 with ordered data mode. Quota mode: none.
Jun 04 22:57:47 AlexArch systemd[1]: systemd 253.4-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT -QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
Jun 04 22:57:47 AlexArch systemd[1]: Detected architecture x86-64.
Jun 04 22:57:47 AlexArch systemd[1]: Hostname set to <AlexArch>.
Jun 04 22:57:47 AlexArch systemd[1]: bpf-lsm: LSM BPF program attached
Jun 04 22:57:47 AlexArch kernel: memfd_create() without MFD_EXEC nor MFD_NOEXEC_SEAL, pid=1 'systemd'
Jun 04 22:57:47 AlexArch systemd[1]: Queued start job for default target Graphical Interface.
Jun 04 22:57:47 AlexArch systemd[1]: Created slice Slice /system/getty.
Jun 04 22:57:47 AlexArch systemd[1]: Created slice Slice /system/modprobe.
Jun 04 22:57:47 AlexArch systemd[1]: Created slice User and Session Slice.
Jun 04 22:57:47 AlexArch systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Jun 04 22:57:47 AlexArch systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Jun 04 22:57:47 AlexArch systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Jun 04 22:57:47 AlexArch systemd[1]: Reached target Local Encrypted Volumes.
Jun 04 22:57:47 AlexArch systemd[1]: Reached target Login Prompts.
Jun 04 22:57:47 AlexArch systemd[1]: Reached target Local Integrity Protected Volumes.
Jun 04 22:57:47 AlexArch systemd[1]: Reached target Path Units.
Jun 04 22:57:47 AlexArch systemd[1]: Reached target Remote File Systems.
Jun 04 22:57:47 AlexArch systemd[1]: Reached target Slice Units.
Jun 04 22:57:47 AlexArch systemd[1]: Reached target Swaps.
Jun 04 22:57:47 AlexArch systemd[1]: Reached target Local Verity Protected Volumes.
Jun 04 22:57:47 AlexArch systemd[1]: Listening on Device-mapper event daemon FIFOs.
Jun 04 22:57:47 AlexArch systemd[1]: Listening on LVM2 poll daemon socket.
Jun 04 22:57:47 AlexArch systemd[1]: Listening on Process Core Dump Socket.
Jun 04 22:57:47 AlexArch systemd[1]: Listening on Journal Socket (/dev/log).
Jun 04 22:57:47 AlexArch systemd[1]: Listening on Journal Socket.
Jun 04 22:57:47 AlexArch systemd[1]: Listening on udev Control Socket.
Jun 04 22:57:47 AlexArch systemd[1]: Listening on udev Kernel Socket.
Jun 04 22:57:47 AlexArch systemd[1]: Mounting Huge Pages File System...
Jun 04 22:57:47 AlexArch systemd[1]: Mounting POSIX Message Queue File System...
Jun 04 22:57:47 AlexArch systemd[1]: Mounting Kernel Debug File System...
Jun 04 22:57:47 AlexArch systemd[1]: Mounting Kernel Trace File System...
Jun 04 22:57:47 AlexArch systemd[1]: Mounting Temporary Directory /tmp...
Jun 04 22:57:47 AlexArch systemd[1]: Starting Create List of Static Device Nodes...
Jun 04 22:57:47 AlexArch systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Jun 04 22:57:47 AlexArch systemd[1]: Starting Load Kernel Module configfs...
Jun 04 22:57:47 AlexArch systemd[1]: Starting Load Kernel Module dm_mod...
Jun 04 22:57:47 AlexArch systemd[1]: Starting Load Kernel Module drm...
Jun 04 22:57:47 AlexArch systemd[1]: Starting Load Kernel Module fuse...
Jun 04 22:57:47 AlexArch systemd[1]: Starting Load Kernel Module loop...
Jun 04 22:57:47 AlexArch systemd[1]: Load AppArmor profiles managed internally by snapd was skipped because of an unmet condition check (ConditionSecurity=apparmor).
Jun 04 22:57:47 AlexArch kernel: device-mapper: uevent: version 1.0.3
Jun 04 22:57:47 AlexArch kernel: device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
Jun 04 22:57:47 AlexArch kernel: loop: module loaded
Jun 04 22:57:47 AlexArch systemd[1]: Starting Journal Service...
Jun 04 22:57:47 AlexArch systemd[1]: Starting Load Kernel Modules...
Jun 04 22:57:47 AlexArch systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Jun 04 22:57:47 AlexArch systemd[1]: Starting Remount Root and Kernel File Systems...
Jun 04 22:57:47 AlexArch systemd[1]: Starting Coldplug All udev Devices...
Jun 04 22:57:47 AlexArch systemd[1]: Mounted Huge Pages File System.
Jun 04 22:57:47 AlexArch systemd[1]: Mounted POSIX Message Queue File System.
Jun 04 22:57:47 AlexArch systemd[1]: Mounted Kernel Debug File System.
Jun 04 22:57:47 AlexArch systemd[1]: Mounted Kernel Trace File System.
Jun 04 22:57:47 AlexArch systemd[1]: Mounted Temporary Directory /tmp.
Jun 04 22:57:47 AlexArch systemd[1]: Finished Create List of Static Device Nodes.
Jun 04 22:57:47 AlexArch systemd[1]: modprobe@configfs.service: Deactivated successfully.
Jun 04 22:57:47 AlexArch kernel: fuse: init (API version 7.38)
Jun 04 22:57:47 AlexArch systemd-journald[195]: Collecting audit messages is disabled.
Jun 04 22:57:47 AlexArch systemd[1]: Finished Load Kernel Module configfs.
Jun 04 22:57:47 AlexArch systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
Jun 04 22:57:47 AlexArch systemd[1]: Finished Load Kernel Module dm_mod.
Jun 04 22:57:47 AlexArch systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Jun 04 22:57:47 AlexArch systemd[1]: modprobe@drm.service: Deactivated successfully.
Jun 04 22:57:47 AlexArch systemd[1]: Finished Load Kernel Module drm.
Jun 04 22:57:47 AlexArch systemd[1]: modprobe@fuse.service: Deactivated successfully.
Jun 04 22:57:47 AlexArch systemd[1]: Finished Load Kernel Module fuse.
Jun 04 22:57:47 AlexArch systemd[1]: modprobe@loop.service: Deactivated successfully.
Jun 04 22:57:47 AlexArch systemd[1]: Finished Load Kernel Module loop.
Jun 04 22:57:47 AlexArch systemd[1]: Finished Load Kernel Modules.
Jun 04 22:57:47 AlexArch systemd[1]: Finished Remount Root and Kernel File Systems.
Jun 04 22:57:47 AlexArch systemd-journald[195]: Journal started
Jun 04 22:57:47 AlexArch systemd-journald[195]: Runtime Journal (/run/log/journal/951764c72dc84868a26e5614ab3564a8) is 8.0M, max 392.1M, 384.1M free.
Jun 04 22:57:47 AlexArch systemd-modules-load[196]: Inserted module 'crypto_user'
Jun 04 22:57:47 AlexArch systemd[1]: Mounting FUSE Control File System...
Jun 04 22:57:47 AlexArch systemd[1]: Mounting Kernel Configuration File System...
Jun 04 22:57:47 AlexArch systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Jun 04 22:57:47 AlexArch systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
Jun 04 22:57:47 AlexArch systemd[1]: Starting Load/Save OS Random Seed...
Jun 04 22:57:47 AlexArch systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
Jun 04 22:57:47 AlexArch systemd[1]: Starting Apply Kernel Variables...
Jun 04 22:57:47 AlexArch systemd[1]: Create System Users was skipped because no trigger condition checks were met.
Jun 04 22:57:47 AlexArch systemd[1]: Starting Create Static Device Nodes in /dev...
Jun 04 22:57:47 AlexArch systemd[1]: Started Journal Service.
Jun 04 22:57:47 AlexArch systemd[1]: Mounted FUSE Control File System.
Jun 04 22:57:47 AlexArch systemd[1]: Mounted Kernel Configuration File System.
Jun 04 22:57:47 AlexArch systemd[1]: Finished Apply Kernel Variables.
Jun 04 22:57:47 AlexArch systemd[1]: Finished Load/Save OS Random Seed.
Jun 04 22:57:47 AlexArch systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Jun 04 22:57:47 AlexArch systemd[1]: Starting Flush Journal to Persistent Storage...
Jun 04 22:57:47 AlexArch systemd-journald[195]: Time spent on flushing to /var/log/journal/951764c72dc84868a26e5614ab3564a8 is 92.487ms for 989 entries.
Jun 04 22:57:47 AlexArch systemd-journald[195]: System Journal (/var/log/journal/951764c72dc84868a26e5614ab3564a8) is 390.9M, max 4.0G, 3.6G free.
Jun 04 22:57:47 AlexArch systemd-journald[195]: Received client request to flush runtime journal.
Jun 04 22:57:47 AlexArch systemd-journald[195]: /var/log/journal/951764c72dc84868a26e5614ab3564a8/system.journal: Monotonic clock jumped backwards relative to last journal entry, rotating.
Jun 04 22:57:47 AlexArch systemd-journald[195]: Rotating system journal.
Jun 04 22:57:47 AlexArch systemd[1]: Finished Coldplug All udev Devices.
Jun 04 22:57:47 AlexArch systemd[1]: Finished Create Static Device Nodes in /dev.
Jun 04 22:57:47 AlexArch systemd[1]: Reached target Preparation for Local File Systems.
Jun 04 22:57:47 AlexArch systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
Jun 04 22:57:47 AlexArch systemd[1]: var-lib-snapd-snap.mount: Directory /var/lib/snapd/snap to mount over is not empty, mounting anyway.
Jun 04 22:57:47 AlexArch systemd[1]: Mounting Ensure that the snap directory shares mount events....
Jun 04 22:57:47 AlexArch systemd[1]: Starting Rule-based Manager for Device Events and Files...
Jun 04 22:57:47 AlexArch systemd[1]: Mounted Ensure that the snap directory shares mount events..
Jun 04 22:57:47 AlexArch systemd[1]: Mounting Mount unit for core18, revision 2751...
Jun 04 22:57:47 AlexArch systemd[1]: Mounting Mount unit for snapd, revision 19361...
Jun 04 22:57:47 AlexArch systemd-udevd[210]: Using default interface naming scheme 'v253'.
Jun 04 22:57:47 AlexArch kernel: loop0: detected capacity change from 0 to 113944
Jun 04 22:57:47 AlexArch kernel: loop1: detected capacity change from 0 to 109072
Jun 04 22:57:47 AlexArch systemd[1]: Finished Flush Journal to Persistent Storage.
Jun 04 22:57:47 AlexArch kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
Jun 04 22:57:47 AlexArch systemd[1]: Mounted Mount unit for snapd, revision 19361.
Jun 04 22:57:47 AlexArch systemd[1]: Mounted Mount unit for core18, revision 2751.
Jun 04 22:57:47 AlexArch systemd[1]: Reached target Local File Systems.
Jun 04 22:57:47 AlexArch systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
Jun 04 22:57:47 AlexArch systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
Jun 04 22:57:47 AlexArch systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
Jun 04 22:57:47 AlexArch systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
Jun 04 22:57:47 AlexArch systemd[1]: Starting Create Volatile Files and Directories...
Jun 04 22:57:47 AlexArch systemd[1]: Started Rule-based Manager for Device Events and Files.
Jun 04 22:57:47 AlexArch systemd[1]: Finished Create Volatile Files and Directories.
Jun 04 22:57:47 AlexArch systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
Jun 04 22:57:47 AlexArch systemd[1]: Starting Network Time Synchronization...
Jun 04 22:57:47 AlexArch systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
Jun 04 22:57:47 AlexArch systemd[1]: Starting Record System Boot/Shutdown in UTMP...
Jun 04 22:57:47 AlexArch systemd[1]: Finished Record System Boot/Shutdown in UTMP.
Jun 04 22:57:48 AlexArch systemd[1]: Started Network Time Synchronization.
Jun 04 22:57:48 AlexArch systemd[1]: Reached target System Initialization.
Jun 04 22:57:48 AlexArch systemd[1]: Started Daily Cleanup of Temporary Directories.
Jun 04 22:57:48 AlexArch systemd[1]: Reached target System Time Set.
Jun 04 22:57:48 AlexArch systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
Jun 04 22:57:48 AlexArch systemd[1]: Started Daily verification of password and group files.
Jun 04 22:57:48 AlexArch systemd[1]: Reached target Timer Units.
Jun 04 22:57:48 AlexArch systemd[1]: Listening on D-Bus System Message Bus Socket.
Jun 04 22:57:48 AlexArch systemd[1]: Starting Socket activation for snappy daemon...
Jun 04 22:57:48 AlexArch systemd[1]: TPM2 PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Jun 04 22:57:48 AlexArch systemd[1]: Listening on Socket activation for snappy daemon.
Jun 04 22:57:48 AlexArch systemd[1]: Reached target Socket Units.
Jun 04 22:57:48 AlexArch systemd[1]: Reached target Basic System.
Jun 04 22:57:48 AlexArch systemd[1]: Starting D-Bus System Message Bus...
Jun 04 22:57:48 AlexArch systemd[1]: Starting User Login Management...
Jun 04 22:57:48 AlexArch systemd[1]: TPM2 PCR Barrier (User) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Jun 04 22:57:48 AlexArch systemd[1]: Started D-Bus System Message Bus.
Jun 04 22:57:48 AlexArch systemd[1]: Starting Network Manager...
Jun 04 22:57:48 AlexArch systemd-logind[248]: New seat seat0.
Jun 04 22:57:48 AlexArch systemd[1]: Started User Login Management.
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.2231] NetworkManager (version 1.42.6-1) is starting... (boot:e70f75ac-46ae-4394-9646-fb95562e1cac)
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.2232] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 20-connectivity.conf)
Jun 04 22:57:48 AlexArch systemd[1]: Started Network Manager.
Jun 04 22:57:48 AlexArch systemd[1]: Reached target Network.
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.2296] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Jun 04 22:57:48 AlexArch systemd[1]: Starting Permit User Sessions...
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.2410] manager[0x556cefe43ba0]: monitoring kernel firmware directory '/lib/firmware'.
Jun 04 22:57:48 AlexArch dbus-daemon[247]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.3' (uid=0 pid=249 comm="/usr/bin/NetworkManager --no-daemon")
Jun 04 22:57:48 AlexArch systemd[1]: Starting Hostname Service...
Jun 04 22:57:48 AlexArch systemd[1]: Finished Permit User Sessions.
Jun 04 22:57:48 AlexArch systemd[1]: Reached target Multi-User System.
Jun 04 22:57:48 AlexArch systemd[1]: Starting GNOME Display Manager...
Jun 04 22:57:48 AlexArch systemd-logind[248]: Watching system buttons on /dev/input/event0 (Lid Switch)
Jun 04 22:57:48 AlexArch systemd[1]: Started GNOME Display Manager.
Jun 04 22:57:48 AlexArch systemd[1]: Reached target Graphical Interface.
Jun 04 22:57:48 AlexArch systemd-logind[248]: Watching system buttons on /dev/input/event3 (ThinkPad Extra Buttons)
Jun 04 22:57:48 AlexArch systemd-logind[248]: Watching system buttons on /dev/input/event2 (Power Button)
Jun 04 22:57:48 AlexArch dbus-daemon[247]: [system] Successfully activated service 'org.freedesktop.hostname1'
Jun 04 22:57:48 AlexArch systemd[1]: Started Hostname Service.
Jun 04 22:57:48 AlexArch systemd[1]: Startup finished in 4.749s (kernel) + 1.886s (userspace) = 6.635s.
Jun 04 22:57:48 AlexArch systemd-logind[248]: Watching system buttons on /dev/input/event4 (AT Translated Set 2 keyboard)
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.3891] hostname: hostname: using hostnamed
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.3892] hostname: static hostname changed from (none) to "AlexArch"
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.3896] dns-mgr: init: dns=default,systemd-resolved rc-manager=symlink
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.3991] manager[0x556cefe43ba0]: rfkill: Wi-Fi hardware radio set enabled
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.3991] manager[0x556cefe43ba0]: rfkill: WWAN hardware radio set enabled
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.4169] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.42.6-1/libnm-device-plugin-wwan.so)
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.4188] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.42.6-1/libnm-device-plugin-ovs.so)
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.4210] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.42.6-1/libnm-device-plugin-wifi.so)
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.4236] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.42.6-1/libnm-device-plugin-bluetooth.so)
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.4593] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.42.6-1/libnm-device-plugin-team.so)
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.4602] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.42.6-1/libnm-device-plugin-adsl.so)
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.4608] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.4610] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.4611] manager: Networking is enabled by state file
Jun 04 22:57:48 AlexArch dbus-daemon[247]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.3' (uid=0 pid=249 comm="/usr/bin/NetworkManager --no-daemon")
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.4672] settings: Loaded settings plugin: keyfile (internal)
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.4712] dhcp: init: Using DHCP client 'internal'
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.4717] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1)
Jun 04 22:57:48 AlexArch systemd-logind[248]: Watching system buttons on /dev/input/event1 (Sleep Button)
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.4742] device (lo): state change: unmanaged -> unavailable (reason 'connection-assumed', sys-iface-state: 'external')
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.4755] device (lo): state change: unavailable -> disconnected (reason 'connection-assumed', sys-iface-state: 'external')
Jun 04 22:57:48 AlexArch systemd[1]: Starting Network Manager Script Dispatcher Service...
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.4870] device (lo): Activation: starting connection 'lo' (ea6976b6-1d20-4f2d-9ac1-575adf33f5c2)
Jun 04 22:57:48 AlexArch dbus-daemon[247]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Jun 04 22:57:48 AlexArch systemd[1]: Started Network Manager Script Dispatcher Service.
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.4942] ovsdb: disconnected from ovsdb
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.4943] device (lo): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'external')
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.4951] device (lo): state change: prepare -> config (reason 'none', sys-iface-state: 'external')
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.4956] device (lo): state change: config -> ip-config (reason 'none', sys-iface-state: 'external')
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.4961] device (lo): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'external')
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.5007] device (lo): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'external')
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.5012] device (lo): state change: secondaries -> activated (reason 'none', sys-iface-state: 'external')
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.5044] device (lo): Activation: successful, device activated.
Jun 04 22:57:48 AlexArch NetworkManager[249]: <info>  [1685912268.5059] manager: startup complete
Jun 04 22:57:48 AlexArch systemd[1]: Created slice Slice /system/systemd-backlight.
Jun 04 22:57:48 AlexArch systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:acpi_video0...
Jun 04 22:57:48 AlexArch systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:acpi_video0.
Jun 04 22:57:48 AlexArch dbus-daemon[247]: [system] Activating via systemd: service name='org.freedesktop.Accounts' unit='accounts-daemon.service' requested by ':1.4' (uid=0 pid=258 comm="/usr/bin/gdm")
Jun 04 22:57:48 AlexArch systemd[1]: Reached target User and Group Name Lookups.
Jun 04 22:57:48 AlexArch systemd[1]: Starting Accounts Service...
Jun 04 22:57:48 AlexArch dbus-daemon[247]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' requested by ':1.7' (uid=0 pid=276 comm="/usr/lib/accounts-daemon")
Jun 04 22:57:48 AlexArch systemd[1]: Starting Authorization Manager...
Jun 04 22:57:48 AlexArch polkitd[282]: Started polkitd version 122
Jun 04 22:57:48 AlexArch polkitd[282]: Loading rules from directory /etc/polkit-1/rules.d
Jun 04 22:57:48 AlexArch polkitd[282]: Loading rules from directory /usr/share/polkit-1/rules.d
Jun 04 22:57:48 AlexArch polkitd[282]: Finished loading, compiling and executing 9 rules
Jun 04 22:57:48 AlexArch dbus-daemon[247]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Jun 04 22:57:48 AlexArch systemd[1]: Started Authorization Manager.
Jun 04 22:57:48 AlexArch polkitd[282]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
Jun 04 22:57:48 AlexArch accounts-daemon[276]: started daemon version 23.13.0
Jun 04 22:57:48 AlexArch dbus-daemon[247]: [system] Successfully activated service 'org.freedesktop.Accounts'
Jun 04 22:57:48 AlexArch systemd[1]: Started Accounts Service.
Jun 04 22:57:48 AlexArch mtp-probe[277]: checking bus 2, device 2: "/sys/devices/pci0000:00/0000:00:1a.1/usb2/2-1"
Jun 04 22:57:48 AlexArch mtp-probe[277]: bus: 2, device: 2 was not an MTP device
Jun 04 22:57:48 AlexArch kernel: ACPI Warning: SystemIO range 0x0000000000001028-0x000000000000102F conflicts with OpRegion 0x0000000000001000-0x000000000000107F (\_SB.PCI0.LPC.PMIO) (20221020/utaddress-204)
Jun 04 22:57:48 AlexArch kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Jun 04 22:57:48 AlexArch kernel: ACPI Warning: SystemIO range 0x00000000000011B0-0x00000000000011BF conflicts with OpRegion 0x0000000000001180-0x00000000000011FF (\_SB.PCI0.LPC.LPIO) (20221020/utaddress-204)
Jun 04 22:57:48 AlexArch kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Jun 04 22:57:48 AlexArch kernel: ACPI Warning: SystemIO range 0x0000000000001180-0x00000000000011AF conflicts with OpRegion 0x0000000000001180-0x00000000000011FF (\_SB.PCI0.LPC.LPIO) (20221020/utaddress-204)
Jun 04 22:57:48 AlexArch kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Jun 04 22:57:48 AlexArch kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
Jun 04 22:57:48 AlexArch systemd-logind[248]: New session 1 of user gdm.
Jun 04 22:57:48 AlexArch kernel: r592: driver successfully loaded
Jun 04 22:57:48 AlexArch systemd[1]: Created slice User Slice of UID 120.
Jun 04 22:57:48 AlexArch systemd[1]: Starting User Runtime Directory /run/user/120...
Jun 04 22:57:48 AlexArch kernel: intel_powerclamp: No package C-state available
Jun 04 22:57:48 AlexArch kernel: i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
Jun 04 22:57:48 AlexArch kernel: i2c i2c-9: 2/2 memory slots populated (from DMI)
Jun 04 22:57:49 AlexArch systemd[1]: Finished User Runtime Directory /run/user/120.
Jun 04 22:57:49 AlexArch kernel: input: PC Speaker as /devices/platform/pcspkr/input/input7
Jun 04 22:57:49 AlexArch kernel: e1000e: Intel(R) PRO/1000 Network Driver
Jun 04 22:57:49 AlexArch kernel: e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
Jun 04 22:57:49 AlexArch kernel: e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
Jun 04 22:57:49 AlexArch systemd[1]: Starting User Manager for UID 120...
Jun 04 22:57:49 AlexArch systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Jun 04 22:57:49 AlexArch systemd[1]: Starting Load/Save RF Kill Switch Status...
Jun 04 22:57:49 AlexArch dbus-daemon[247]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.11' (uid=0 pid=305 comm="(systemd)")
Jun 04 22:57:49 AlexArch dbus-daemon[247]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 04 22:57:49 AlexArch (systemd)[305]: pam_systemd_home(systemd-user:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 04 22:57:49 AlexArch (systemd)[305]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[gdm] ruser=[<unknown>] rhost=[<unknown>]
Jun 04 22:57:49 AlexArch (systemd)[305]: pam_unix(systemd-user:session): session opened for user gdm(uid=120) by gdm(uid=0)
Jun 04 22:57:49 AlexArch systemd[1]: Started Load/Save RF Kill Switch Status.
Jun 04 22:57:49 AlexArch NetworkManager[249]: <info>  [1685912269.2677] manager: (eth0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
Jun 04 22:57:49 AlexArch kernel: e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 00:1c:25:97:4d:05
Jun 04 22:57:49 AlexArch kernel: e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
Jun 04 22:57:49 AlexArch kernel: e1000e 0000:00:19.0 eth0: MAC: 7, PHY: 8, PBA No: 1008FF-0FF
Jun 04 22:57:49 AlexArch kernel: Bluetooth: Core ver 2.22
Jun 04 22:57:49 AlexArch kernel: NET: Registered PF_BLUETOOTH protocol family
Jun 04 22:57:49 AlexArch kernel: Bluetooth: HCI device and connection manager initialized
Jun 04 22:57:49 AlexArch kernel: Bluetooth: HCI socket layer initialized
Jun 04 22:57:49 AlexArch kernel: Bluetooth: L2CAP socket layer initialized
Jun 04 22:57:49 AlexArch kernel: Bluetooth: SCO socket layer initialized
Jun 04 22:57:49 AlexArch kernel: e1000e 0000:00:19.0 enp0s25: renamed from eth0
Jun 04 22:57:49 AlexArch NetworkManager[249]: <info>  [1685912269.3945] device (eth0): interface index 2 renamed iface from 'eth0' to 'enp0s25'
Jun 04 22:57:49 AlexArch kernel: iTCO_vendor_support: vendor-support=0
Jun 04 22:57:49 AlexArch kernel: yenta_cardbus 0000:15:00.0: CardBus bridge found [17aa:20c6]
Jun 04 22:57:49 AlexArch kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Jun 04 22:57:49 AlexArch kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Jun 04 22:57:49 AlexArch kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
Jun 04 22:57:49 AlexArch kernel: cfg80211: failed to load regulatory.db
Jun 04 22:57:49 AlexArch NetworkManager[249]: <info>  [1685912269.5137] device (enp0s25): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jun 04 22:57:49 AlexArch kernel: iTCO_wdt iTCO_wdt.1.auto: Found a ICH9M-E TCO device (Version=2, TCOBASE=0x1060)
Jun 04 22:57:49 AlexArch kernel: iTCO_wdt iTCO_wdt.1.auto: initialized. heartbeat=30 sec (nowayout=0)
Jun 04 22:57:49 AlexArch kernel: usbcore: registered new interface driver btusb
Jun 04 22:57:49 AlexArch systemd[1]: Reached target Bluetooth Support.
Jun 04 22:57:49 AlexArch kernel: yenta_cardbus 0000:15:00.0: ISA IRQ mask 0x0cb8, PCI irq 16
Jun 04 22:57:49 AlexArch kernel: yenta_cardbus 0000:15:00.0: Socket status: 30000006
Jun 04 22:57:49 AlexArch kernel: yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge window: [io  0x4000-0x7fff]
Jun 04 22:57:49 AlexArch kernel: yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge window: [mem 0xf4800000-0xf7ffffff]
Jun 04 22:57:49 AlexArch kernel: pcmcia_socket pcmcia_socket0: cs: memory probe 0xf4800000-0xf7ffffff:
Jun 04 22:57:49 AlexArch kernel:  excluding 0xf4800000-0xf4b7ffff
Jun 04 22:57:49 AlexArch kernel: yenta_cardbus 0000:15:00.0: pcmcia: parent PCI bridge window: [mem 0xf0000000-0xf3ffffff 64bit pref]
Jun 04 22:57:49 AlexArch kernel: pcmcia_socket pcmcia_socket0: cs: memory probe 0xf0000000-0xf3ffffff:
Jun 04 22:57:49 AlexArch kernel:  excluding 0xf0000000-0xf3ffffff
Jun 04 22:57:49 AlexArch systemd[305]: Queued start job for default target Main User Target.
Jun 04 22:57:49 AlexArch systemd[305]: Created slice User Application Slice.
Jun 04 22:57:49 AlexArch systemd[305]: Reached target Bluetooth.
Jun 04 22:57:49 AlexArch systemd[305]: Reached target Paths.
Jun 04 22:57:49 AlexArch systemd[305]: Reached target Timers.
Jun 04 22:57:49 AlexArch systemd[305]: Starting D-Bus User Message Bus Socket...
Jun 04 22:57:49 AlexArch systemd[305]: Listening on GnuPG network certificate management daemon.
Jun 04 22:57:49 AlexArch systemd[305]: Listening on GCR ssh-agent wrapper.
Jun 04 22:57:49 AlexArch systemd[305]: Listening on GNOME Keyring daemon.
Jun 04 22:57:49 AlexArch systemd[305]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jun 04 22:57:49 AlexArch systemd[305]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Jun 04 22:57:49 AlexArch systemd[305]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Jun 04 22:57:49 AlexArch systemd[305]: Listening on GnuPG cryptographic agent and passphrase cache.
Jun 04 22:57:49 AlexArch systemd[305]: Listening on p11-kit server.
Jun 04 22:57:49 AlexArch systemd[305]: Listening on PipeWire Multimedia System Socket.
Jun 04 22:57:49 AlexArch systemd[305]: Listening on Sound System.
Jun 04 22:57:49 AlexArch kernel: Intel(R) Wireless WiFi driver for Linux
Jun 04 22:57:49 AlexArch kernel: iwlwifi 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
Jun 04 22:57:49 AlexArch systemd[305]: Listening on D-Bus User Message Bus Socket.
Jun 04 22:57:49 AlexArch systemd[305]: Reached target Sockets.
Jun 04 22:57:49 AlexArch systemd[305]: Reached target Basic System.
Jun 04 22:57:49 AlexArch systemd[1]: Started User Manager for UID 120.
Jun 04 22:57:49 AlexArch systemd[1]: Started Session 1 of User gdm.
Jun 04 22:57:49 AlexArch systemd[305]: Starting Update XDG user dir configuration...
Jun 04 22:57:49 AlexArch kernel: iwlwifi 0000:03:00.0: loaded firmware version 8.83.5.1 build 33692 5000-5.ucode op_mode iwldvm
Jun 04 22:57:49 AlexArch systemd[305]: Finished Update XDG user dir configuration.
Jun 04 22:57:49 AlexArch systemd[305]: Reached target Main User Target.
Jun 04 22:57:49 AlexArch systemd[305]: Startup finished in 518ms.
Jun 04 22:57:49 AlexArch NetworkManager[249]: <info>  [1685912269.7583] settings: (enp0s25): created default wired connection 'Wired connection 1'
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (--) Log file renamed from "/var/lib/gdm/.local/share/xorg/Xorg.pid-330.log" to "/var/lib/gdm/.local/share/xorg/Xorg.0.log"
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: X.Org X Server 1.21.1.8
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: X Protocol Version 11, Revision 0
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: Current Operating System: Linux AlexArch 6.3.5-arch1-1 #1 SMP PREEMPT_DYNAMIC Tue, 30 May 2023 13:44:01 +0000 x86_64
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=882f05fb-ea19-4494-99b9-75cacc2e0493 rw loglevel=3 quiet
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:  
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: Current version of pixman: 0.42.2
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         Before reporting problems, check http://wiki.x.org
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         to make sure that you have the latest version.
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: Markers: (--) probed, (**) from config file, (==) default setting,
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         (++) from command line, (!!) notice, (II) informational,
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (==) Log file: "/var/lib/gdm/.local/share/xorg/Xorg.0.log", Time: Sun Jun  4 22:57:49 2023
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (==) Using system config directory "/usr/share/X11/xorg.conf.d"
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (==) No Layout section.  Using the first Screen section.
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (==) No screen section available. Using defaults.
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (**) |-->Screen "Default Screen Section" (0)
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (**) |   |-->Monitor "<default monitor>"
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (==) No monitor specified for screen "Default Screen Section".
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         Using a default monitor configuration.
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (==) Automatically adding devices
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (==) Automatically enabling devices
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (==) Automatically adding GPU devices
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (==) Automatically binding GPU devices
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (==) Max clients allowed: 256, resource mask: 0x1fffff
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (WW) The directory "/usr/share/fonts/misc" does not exist.
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         Entry deleted from font path.
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (WW) The directory "/usr/share/fonts/TTF" does not exist.
Jun 04 22:57:49 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0: CX20561 (Hermosa): BIOS auto-probing.
Jun 04 22:57:49 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0: autoconfig for CX20561 (Hermosa): line_outs=1 (0x1a/0x0/0x0/0x0/0x0) type:speaker
Jun 04 22:57:49 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Jun 04 22:57:49 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0:    hp_outs=2 (0x19/0x16/0x0/0x0/0x0)
Jun 04 22:57:49 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0:    mono: mono_out=0x0
Jun 04 22:57:49 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0:    dig-out=0x1c/0x0
Jun 04 22:57:49 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0:    inputs:
Jun 04 22:57:49 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0:      Mic=0x18
Jun 04 22:57:49 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0:      Internal Mic=0x1d
Jun 04 22:57:49 AlexArch kernel: snd_hda_codec_conexant hdaudioC0D0:      Dock Mic=0x17
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         Entry deleted from font path.
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (WW) The directory "/usr/share/fonts/OTF" does not exist.
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         Entry deleted from font path.
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (WW) The directory "/usr/share/fonts/Type1" does not exist.
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         Entry deleted from font path.
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (WW) The directory "/usr/share/fonts/100dpi" does not exist.
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         Entry deleted from font path.
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (WW) The directory "/usr/share/fonts/75dpi" does not exist.
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         Entry deleted from font path.
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (==) FontPath set to:
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (==) ModulePath set to "/usr/lib/xorg/modules"
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (II) The server relies on udev to provide the list of input devices.
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         If no devices become available, reconfigure udev or disable AutoAddDevices.
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (II) Module ABI versions:
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         X.Org ANSI C Emulation: 0.4
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         X.Org Video Driver: 25.2
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         X.Org XInput driver : 24.4
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         X.Org Server Extension : 10.0
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (++) using VT number 1
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (II) xfree86: Adding drm device (/dev/dri/card0)
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card0
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 14 paused 0
Jun 04 22:57:49 AlexArch kernel: input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
Jun 04 22:57:49 AlexArch kernel: input: HDA Intel Dock Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
Jun 04 22:57:49 AlexArch kernel: input: HDA Intel Dock Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
Jun 04 22:57:49 AlexArch kernel: input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (--) PCI:*(0@0:2:0) 8086:2a42:17aa:20e4 rev 7, Mem @ 0xf4400000/4194304, 0xd0000000/268435456, I/O @ 0x00001800/8, BIOS @ 0x????????/131072
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (--) PCI: (0@0:2:1) 8086:2a43:17aa:20e4 rev 7, Mem @ 0xf4200000/1048576
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (II) LoadModule: "glx"
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
Jun 04 22:57:49 AlexArch kernel: iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG enabled
Jun 04 22:57:49 AlexArch kernel: iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
Jun 04 22:57:49 AlexArch kernel: iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
Jun 04 22:57:49 AlexArch kernel: iwlwifi 0000:03:00.0: Detected Intel(R) Ultimate N WiFi Link 5300 AGN, REV=0x24
Jun 04 22:57:49 AlexArch systemd[305]: Reached target Sound Card.
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (II) Module glx: vendor="X.Org Foundation"
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         compiled for 1.21.1.8, module version = 1.0.0
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         ABI class: X.Org Server Extension, version 10.0
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (==) Matched intel as autoconfigured driver 0
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (==) Matched modesetting as autoconfigured driver 1
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (==) Matched fbdev as autoconfigured driver 2
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (==) Matched vesa as autoconfigured driver 3
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (==) Assigned the driver to the xf86ConfigLayout
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (II) LoadModule: "intel"
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (WW) Warning, couldn't open module intel
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (EE) Failed to load module "intel" (module does not exist, 0)
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (II) LoadModule: "modesetting"
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (II) Module modesetting: vendor="X.Org Foundation"
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         compiled for 1.21.1.8, module version = 1.21.1
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         Module class: X.Org Video Driver
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         ABI class: X.Org Video Driver, version 25.2
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (II) LoadModule: "fbdev"
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (WW) Warning, couldn't open module fbdev
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (EE) Failed to load module "fbdev" (module does not exist, 0)
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (II) LoadModule: "vesa"
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (WW) Warning, couldn't open module vesa
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (EE) Failed to load module "vesa" (module does not exist, 0)
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (II) modesetting: Driver for Modesetting Kernel Drivers: kms
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): using drv /dev/dri/card0
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Creating default Display subsection in Screen section
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         "Default Screen Section" for depth/fbbpp 24/32
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (==) modeset(0): Depth 24, (==) framebuffer bpp 32
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (==) modeset(0): RGB weight 888
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (==) modeset(0): Default visual is TrueColor
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (II) Loading sub module "glamoregl"
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (II) LoadModule: "glamoregl"
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (II) Loading /usr/lib/xorg/modules/libglamoregl.so
Jun 04 22:57:49 AlexArch systemd[1]: Reached target Sound Card.
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]: (II) Module glamoregl: vendor="X.Org Foundation"
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         compiled for 1.21.1.8, module version = 1.0.1
Jun 04 22:57:49 AlexArch /usr/lib/gdm-x-session[330]:         ABI class: X.Org ANSI C Emulation, version 0.4
Jun 04 22:57:49 AlexArch kernel: ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
Jun 04 22:57:49 AlexArch NetworkManager[249]: <info>  [1685912269.9420] manager: (wlan0): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/3)
Jun 04 22:57:49 AlexArch NetworkManager[249]: <info>  [1685912269.9471] rfkill2: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:1c.1/0000:03:00.0/ieee80211/phy0/rfkill2) (driver iwlwifi)
Jun 04 22:57:49 AlexArch kernel: iwlwifi 0000:03:00.0 wlp3s0: renamed from wlan0
Jun 04 22:57:49 AlexArch NetworkManager[249]: <info>  [1685912269.9649] device (wlan0): interface index 3 renamed iface from 'wlan0' to 'wlp3s0'
Jun 04 22:57:49 AlexArch NetworkManager[249]: <info>  [1685912269.9750] device (wlp3s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jun 04 22:57:49 AlexArch kernel: iwlwifi 0000:03:00.0: Radio type=0x0-0x2-0x0
Jun 04 22:57:50 AlexArch kernel: psmouse serio1: synaptics: queried max coordinates: x [..5598], y [..4670]
Jun 04 22:57:50 AlexArch kernel: iwlwifi 0000:03:00.0: Radio type=0x0-0x2-0x0
Jun 04 22:57:50 AlexArch kernel: psmouse serio1: synaptics: Touchpad model: 1, fw: 7.0, id: 0x1c0b1, caps: 0xd04791/0xb00000/0x20000/0x0, board id: 0, fw id: 434116
Jun 04 22:57:50 AlexArch kernel: psmouse serio1: synaptics: serio: Synaptics pass-through port at isa0060/serio1/input0
Jun 04 22:57:50 AlexArch NetworkManager[249]: <info>  [1685912270.1967] device (wlp3s0): set-hw-addr: set MAC address to 5A:EE:27:BC:29:98 (scanning)
Jun 04 22:57:50 AlexArch kernel: iwlwifi 0000:03:00.0: Radio type=0x0-0x2-0x0
Jun 04 22:57:50 AlexArch kernel: input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input8
Jun 04 22:57:50 AlexArch kernel: mousedev: PS/2 mouse device common for all mice
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): glamor X acceleration enabled on Mesa Mobile Intel® GM45 Express Chipset (CTG)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): glamor initialized
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (==) modeset(0): VariableRefresh: disabled
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (==) modeset(0): AsyncFlipSecondaries: disabled
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Output LVDS-1 has no monitor section
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Output VGA-1 has no monitor section
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Output HDMI-1 has no monitor section
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Output DP-1 has no monitor section
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Output HDMI-2 has no monitor section
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Output DP-2 has no monitor section
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Output DP-3 has no monitor section
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): EDID for output LVDS-1
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Manufacturer: LEN  Model: 4050  Serial#: 0
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Year: 2006  Week: 0
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): EDID Version: 1.3
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Digital Display Input
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Max Image Size [cm]: horiz.: 33  vert.: 21
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Gamma: 2.20
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): DPMS capabilities: StandBy Suspend Off
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): First detailed timing is preferred mode
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): redX: 0.590 redY: 0.340   greenX: 0.320 greenY: 0.550
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): blueX: 0.152 blueY: 0.130   whiteX: 0.313 whiteY: 0.329
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Manufacturer's mask: 0
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Supported detailed timing:
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): clock: 71.1 MHz   Image Size:  331 x 207 mm
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1440 h_border: 0
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 823 v_border: 0
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Supported detailed timing:
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): clock: 60.1 MHz   Image Size:  331 x 207 mm
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1457 h_border: 0
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 825 v_border: 0
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Unknown vendor-specific block f
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0):  LTN154X3-L02
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): EDID (in hex):
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0):         00ffffffffffff0030ae504000000000
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0):         0010010380211578ea03159757528c27
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0):         21505400000001010101010101010101
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0):         010101010101c71b00a0502017303020
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0):         36004bcf100000197a1700b150201930
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0):         302036004bcf100000190000000f0081
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0):         0a32810a281401004ca35833000000fe
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0):         004c544e31353458332d4c30320a00c2
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Printing probed modes for output LVDS-1
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "1280x800"x60.0   71.11  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.4 kHz eP)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "1280x800"x120.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "1280x800"x119.9  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "1280x800"x50.0   60.10  1280 1328 1360 1457  800 803 809 825 -hsync -vsync (41.2 kHz e)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "1280x720"x120.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "1280x720"x120.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "1024x576"x119.9   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "1024x576"x119.9   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "960x600"x119.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "960x600"x120.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "960x540"x119.9   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "960x540"x120.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "840x525"x120.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "840x525"x119.8   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "800x450"x119.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "800x450"x119.6   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "700x450"x119.9   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "700x450"x119.8   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "684x384"x119.8   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "684x384"x119.7   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "640x400"x119.8   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "640x400"x120.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "640x360"x119.7   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "640x360"x119.7   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "512x288"x120.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "512x288"x119.8   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "480x270"x119.3   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "480x270"x119.6   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "432x243"x119.8   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "432x243"x119.1   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "360x202"x119.0   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "360x202"x118.3   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "320x180"x119.7    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "320x180"x118.6    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
Jun 04 22:57:50 AlexArch kernel: iwlwifi 0000:03:00.0: Radio type=0x0-0x2-0x0
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): EDID for output VGA-1
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): EDID for output HDMI-1
Jun 04 22:57:50 AlexArch dbus-daemon[247]: [system] Activating via systemd: service name='fi.w1.wpa_supplicant1' unit='wpa_supplicant.service' requested by ':1.3' (uid=0 pid=249 comm="/usr/bin/NetworkManager --no-daemon")
Jun 04 22:57:50 AlexArch systemd[1]: Starting WPA supplicant...
Jun 04 22:57:50 AlexArch dbus-daemon[247]: [system] Successfully activated service 'fi.w1.wpa_supplicant1'
Jun 04 22:57:50 AlexArch systemd[1]: Started WPA supplicant.
Jun 04 22:57:50 AlexArch wpa_supplicant[346]: Successfully initialized wpa_supplicant
Jun 04 22:57:50 AlexArch wpa_supplicant[346]: dbus: fill_dict_with_properties dbus_interface=fi.w1.wpa_supplicant1.Interface.P2PDevice dbus_property=P2PDeviceConfig getter failed
Jun 04 22:57:50 AlexArch NetworkManager[249]: <info>  [1685912270.4701] device (wlp3s0): supplicant interface state: internal-starting -> disconnected
Jun 04 22:57:50 AlexArch NetworkManager[249]: <info>  [1685912270.4702] device (wlp3s0): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-state: 'managed')
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): EDID for output DP-1
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): EDID for output HDMI-2
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): EDID for output DP-2
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): EDID for output DP-3
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Output LVDS-1 connected
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Output VGA-1 disconnected
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Output HDMI-1 disconnected
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Output DP-1 disconnected
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Output HDMI-2 disconnected
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Output DP-2 disconnected
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Output DP-3 disconnected
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Using exact sizes for initial modes
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Output LVDS-1 using initial mode 1280x800 +0+0
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (==) modeset(0): DPI set to (96, 96)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Loading sub module "fb"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) LoadModule: "fb"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Module "fb" already built-in
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (==) modeset(0): Backing store enabled
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (==) modeset(0): Silken mouse enabled
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (==) modeset(0): DPMS enabled
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): [DRI2] Setup complete
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): [DRI2]   DRI driver: crocus
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): [DRI2]   VDPAU driver: va_gl
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension Generic Event Extension
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension SHAPE
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension MIT-SHM
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension XInputExtension
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension XTEST
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension BIG-REQUESTS
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension SYNC
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension XKEYBOARD
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension XC-MISC
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension SECURITY
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension XFIXES
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension RENDER
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension RANDR
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension COMPOSITE
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension DAMAGE
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension MIT-SCREEN-SAVER
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension DOUBLE-BUFFER
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension RECORD
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension DPMS
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension Present
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension DRI3
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension X-Resource
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension XVideo
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension XVideo-MotionCompensation
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension GLX
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) AIGLX: Loaded and initialized crocus
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) GLX: Initialized DRI2 GL provider for screen 0
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension XFree86-VidModeExtension
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension XFree86-DGA
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension XFree86-DRI
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Initializing extension DRI2
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Damage tracking initialized
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Setting screen physical size to 338 x 211
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) config/udev: Adding input device Power Button (/dev/input/event2)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) Power Button: Applying InputClass "libinput keyboard catchall"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) LoadModule: "libinput"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Module libinput: vendor="X.Org Foundation"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]:         compiled for 1.21.1.8, module version = 1.3.0
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]:         Module class: X.Org XInput Driver
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]:         ABI class: X.Org XInput driver, version 24.4
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Using input driver 'libinput' for 'Power Button'
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 28 paused 0
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) Power Button: always reports core events
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "Device" "/dev/input/event2"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event2  - Power Button: is tagged by udev as: Keyboard
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event2  - Power Button: device is a keyboard
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event2  - Power Button: device removed
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event2  - Power Button: is tagged by udev as: Keyboard
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event2  - Power Button: device is a keyboard
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) config/udev: Adding input device Video Bus (/dev/input/event5)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) Video Bus: Applying InputClass "libinput keyboard catchall"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Using input driver 'libinput' for 'Video Bus'
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 31 paused 0
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) Video Bus: always reports core events
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "Device" "/dev/input/event5"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event5  - Video Bus: is tagged by udev as: Keyboard
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event5  - Video Bus: device is a keyboard
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event5  - Video Bus: device removed
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input6/event5"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event5  - Video Bus: is tagged by udev as: Keyboard
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event5  - Video Bus: device is a keyboard
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) No input driver specified, ignoring this device.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) This device may have been added with another device file.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Using input driver 'libinput' for 'Sleep Button'
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 32 paused 0
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) Sleep Button: always reports core events
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "Device" "/dev/input/event1"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event1  - Sleep Button: is tagged by udev as: Keyboard
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event1  - Sleep Button: device is a keyboard
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event1  - Sleep Button: device removed
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1/event1"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event1  - Sleep Button: is tagged by udev as: Keyboard
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event1  - Sleep Button: device is a keyboard
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) config/udev: Adding input device HDA Intel Dock Mic (/dev/input/event8)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) No input driver specified, ignoring this device.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) This device may have been added with another device file.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) config/udev: Adding input device HDA Intel Dock Headphone (/dev/input/event9)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) No input driver specified, ignoring this device.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) This device may have been added with another device file.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event10)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) No input driver specified, ignoring this device.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) This device may have been added with another device file.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event7)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) No input driver specified, ignoring this device.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) This device may have been added with another device file.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event4)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 33 paused 0
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) AT Translated Set 2 keyboard: always reports core events
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "Device" "/dev/input/event4"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event4  - AT Translated Set 2 keyboard: device removed
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input4/event4"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event11)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Using input driver 'libinput' for 'SynPS/2 Synaptics TouchPad'
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 34 paused 0
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) SynPS/2 Synaptics TouchPad: always reports core events
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "Device" "/dev/input/event11"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event11 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event11 - SynPS/2 Synaptics TouchPad: device is a touchpad
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event11 - SynPS/2 Synaptics TouchPad: device removed
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input8/event11"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 10)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "AccelerationScheme" "none"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) SynPS/2 Synaptics TouchPad: (accel) selected scheme none/0
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event11 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event11 - SynPS/2 Synaptics TouchPad: device is a touchpad
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) No input driver specified, ignoring this device.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) This device may have been added with another device file.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) No input driver specified, ignoring this device.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) This device may have been added with another device file.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event3)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) ThinkPad Extra Buttons: Applying InputClass "libinput keyboard catchall"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Using input driver 'libinput' for 'ThinkPad Extra Buttons'
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 35 paused 0
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) ThinkPad Extra Buttons: always reports core events
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "Device" "/dev/input/event3"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event3  - ThinkPad Extra Buttons: is tagged by udev as: Keyboard Switch
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event3  - ThinkPad Extra Buttons: device is a keyboard
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event3  - ThinkPad Extra Buttons: device removed
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input3/event3"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 11)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event3  - ThinkPad Extra Buttons: is tagged by udev as: Keyboard Switch
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event3  - ThinkPad Extra Buttons: device is a keyboard
Jun 04 22:57:50 AlexArch systemd[305]: Created slice User Core Session Slice.
Jun 04 22:57:50 AlexArch systemd[305]: Starting D-Bus User Message Bus...
Jun 04 22:57:50 AlexArch systemd[305]: Started D-Bus User Message Bus.
Jun 04 22:57:50 AlexArch dbus-daemon[351]: [session uid=120 pid=351] Successfully activated service 'org.freedesktop.systemd1'
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event7)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) No input driver specified, ignoring this device.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) This device may have been added with another device file.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event10)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) No input driver specified, ignoring this device.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) This device may have been added with another device file.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) config/udev: Adding input device HDA Intel Dock Headphone (/dev/input/event9)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) No input driver specified, ignoring this device.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) This device may have been added with another device file.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) config/udev: Adding input device HDA Intel Dock Mic (/dev/input/event8)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) No input driver specified, ignoring this device.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) This device may have been added with another device file.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) config/udev: removing device SynPS/2 Synaptics TouchPad
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "fd" "34"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event11 - SynPS/2 Synaptics TouchPad: device removed
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) UnloadModule: "libinput"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: releasing fd for 13:75
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event11)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) Using input driver 'libinput' for 'SynPS/2 Synaptics TouchPad'
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 10 paused 0
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) SynPS/2 Synaptics TouchPad: always reports core events
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "Device" "/dev/input/event11"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event11 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event11 - SynPS/2 Synaptics TouchPad: device is a touchpad
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event11 - SynPS/2 Synaptics TouchPad: device removed
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input8/event11"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 10)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "AccelerationScheme" "none"
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) SynPS/2 Synaptics TouchPad: (accel) selected scheme none/0
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event11 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) event11 - SynPS/2 Synaptics TouchPad: device is a touchpad
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) No input driver specified, ignoring this device.
Jun 04 22:57:50 AlexArch /usr/lib/gdm-x-session[330]: (II) This device may have been added with another device file.
Jun 04 22:57:50 AlexArch kernel: psmouse serio2: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[354]: dbus-daemon[354]: [session uid=120 pid=354] Activating service name='org.a11y.Bus' requested by ':1.0' (uid=120 pid=360 comm="/usr/lib/gnome-session-check-accelerated")
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[354]: dbus-daemon[354]: [session uid=120 pid=354] Successfully activated service 'org.a11y.Bus'
Jun 04 22:57:51 AlexArch kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input13
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse1)
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (II) No input driver specified, ignoring this device.
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (II) This device may have been added with another device file.
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event12)
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (**) TPPS/2 IBM TrackPoint: Applying InputClass "libinput pointer catchall"
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (II) Using input driver 'libinput' for 'TPPS/2 IBM TrackPoint'
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 30 paused 0
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (**) TPPS/2 IBM TrackPoint: always reports core events
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "Device" "/dev/input/event12"
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (II) event12 - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse Pointingstick
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (II) event12 - TPPS/2 IBM TrackPoint: device is a pointer
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (II) event12 - TPPS/2 IBM TrackPoint: device removed
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (II) libinput: TPPS/2 IBM TrackPoint: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (II) libinput: TPPS/2 IBM TrackPoint: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (II) libinput: TPPS/2 IBM TrackPoint: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/serio2/input/input13/event12"
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 12)
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "AccelerationScheme" "none"
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (**) TPPS/2 IBM TrackPoint: (accel) selected scheme none/0
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (II) event12 - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse Pointingstick
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (II) event12 - TPPS/2 IBM TrackPoint: device is a pointer
Jun 04 22:57:51 AlexArch gnome-shell[381]: Running GNOME Shell (using mutter 44.2) as a X11 window and compositing manager
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): EDID vendor "LEN", prod id 16464
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Printing DDC gathered Modelines:
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "1280x800"x0.0   71.11  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.4 kHz eP)
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "1280x800"x0.0   60.10  1280 1328 1360 1457  800 803 809 825 -hsync -vsync (41.2 kHz e)
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): EDID vendor "LEN", prod id 16464
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Printing DDC gathered Modelines:
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "1280x800"x0.0   71.11  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.4 kHz eP)
Jun 04 22:57:51 AlexArch /usr/lib/gdm-x-session[330]: (II) modeset(0): Modeline "1280x800"x0.0   60.10  1280 1328 1360 1457  800 803 809 825 -hsync -vsync (41.2 kHz e)
Jun 04 22:57:51 AlexArch gnome-shell[381]: Obtained a high priority EGL context
Jun 04 22:57:51 AlexArch gnome-shell[381]: Obtained a high priority EGL context
Jun 04 22:57:52 AlexArch gnome-shell[381]: Unset XDG_SESSION_ID, getCurrentSessionProxy() called outside a user session. Asking logind directly.
Jun 04 22:57:52 AlexArch gnome-shell[381]: Will monitor session 1
Jun 04 22:57:52 AlexArch dbus-daemon[247]: [system] Activating via systemd: service name='org.freedesktop.locale1' unit='dbus-org.freedesktop.locale1.service' requested by ':1.17' (uid=120 pid=381 comm="/usr/bin/gnome-shell")
Jun 04 22:57:52 AlexArch systemd[1]: Starting Locale Service...
Jun 04 22:57:52 AlexArch /usr/lib/gdm-x-session[354]: dbus-daemon[354]: [session uid=120 pid=354] Activating service name='org.gnome.Shell.Screencast' requested by ':1.5' (uid=120 pid=381 comm="/usr/bin/gnome-shell")
Jun 04 22:57:52 AlexArch dbus-daemon[247]: [system] Successfully activated service 'org.freedesktop.locale1'
Jun 04 22:57:52 AlexArch systemd[1]: Started Locale Service.
Jun 04 22:57:52 AlexArch /usr/lib/gdm-x-session[354]: dbus-daemon[354]: [session uid=120 pid=354] Activating service name='org.freedesktop.impl.portal.PermissionStore' requested by ':1.5' (uid=120 pid=381 comm="/usr/bin/gnome-shell")
Jun 04 22:57:52 AlexArch /usr/lib/gdm-x-session[354]: dbus-daemon[354]: [session uid=120 pid=354] Successfully activated service 'org.freedesktop.impl.portal.PermissionStore'
Jun 04 22:57:52 AlexArch dbus-daemon[247]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service' requested by ':1.17' (uid=120 pid=381 comm="/usr/bin/gnome-shell")
Jun 04 22:57:52 AlexArch systemd[1]: Starting Daemon for power management...
Jun 04 22:57:53 AlexArch systemd[305]: Starting Sound Service...
Jun 04 22:57:53 AlexArch dbus-daemon[247]: [system] Activating via systemd: service name='org.freedesktop.GeoClue2' unit='geoclue.service' requested by ':1.17' (uid=120 pid=381 comm="/usr/bin/gnome-shell")
Jun 04 22:57:53 AlexArch systemd[1]: Starting Location Lookup Service...
Jun 04 22:57:53 AlexArch dbus-daemon[247]: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service' requested by ':1.20' (uid=120 pid=431 comm="/usr/bin/pulseaudio --daemonize=no --log-target=jo")
Jun 04 22:57:53 AlexArch systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Jun 04 22:57:53 AlexArch polkitd[282]: Registered Authentication Agent for unix-session:1 (system bus name :1.17 [/usr/bin/gnome-shell], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale C.UTF-8)
Jun 04 22:57:53 AlexArch dbus-daemon[247]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
Jun 04 22:57:53 AlexArch systemd[1]: Started RealtimeKit Scheduling Policy Service.
Jun 04 22:57:53 AlexArch rtkit-daemon[436]: Successfully called chroot.
Jun 04 22:57:53 AlexArch rtkit-daemon[436]: Successfully dropped privileges.
Jun 04 22:57:53 AlexArch rtkit-daemon[436]: Successfully limited resources.
Jun 04 22:57:53 AlexArch rtkit-daemon[436]: Running.
Jun 04 22:57:53 AlexArch rtkit-daemon[436]: Canary thread running.
Jun 04 22:57:53 AlexArch rtkit-daemon[436]: Watchdog thread running.
Jun 04 22:57:53 AlexArch /usr/lib/gdm-x-session[354]: dbus-daemon[354]: [session uid=120 pid=354] Activating service name='org.gnome.Shell.Notifications' requested by ':1.5' (uid=120 pid=381 comm="/usr/bin/gnome-shell")
Jun 04 22:57:53 AlexArch dbus-daemon[247]: [system] Successfully activated service 'org.freedesktop.UPower'
Jun 04 22:57:53 AlexArch systemd[1]: Started Daemon for power management.
Jun 04 22:57:53 AlexArch rtkit-daemon[436]: Successfully made thread 431 of process 431 owned by '120' high priority at nice level -11.
Jun 04 22:57:53 AlexArch rtkit-daemon[436]: Supervising 1 threads of 1 processes of 1 users.
Jun 04 22:57:53 AlexArch gnome-shell[381]: Extension apps-menu@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/apps-menu@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 22:57:53 AlexArch gnome-shell[381]: Extension auto-move-windows@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/auto-move-windows@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/auto-move-windows@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 22:57:53 AlexArch gnome-shell[381]: Extension drive-menu@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/drive-menu@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/drive-menu@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 22:57:53 AlexArch gnome-shell[381]: Extension launch-new-instance@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/launch-new-instance@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/launch-new-instance@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 22:57:53 AlexArch gnome-shell[381]: Extension native-window-placement@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/native-window-placement@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/native-window-placement@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 22:57:53 AlexArch gnome-shell[381]: Extension places-menu@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/places-menu@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 22:57:53 AlexArch gnome-shell[381]: Extension screenshot-window-sizer@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/screenshot-window-sizer@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/screenshot-window-sizer@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 22:57:53 AlexArch gnome-shell[381]: Extension user-theme@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/user-theme@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 22:57:53 AlexArch gnome-shell[381]: Extension window-list@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/window-list@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 22:57:53 AlexArch gnome-shell[381]: Extension windowsNavigator@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/windowsNavigator@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/windowsNavigator@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 22:57:53 AlexArch gnome-shell[381]: Extension workspace-indicator@gnome-shell-extensions.gcampax.github.com already installed in /usr/share/gnome-shell/extensions/workspace-indicator@gnome-shell-extensions.gcampax.github.com. /usr/share/gnome-shell/extensions/workspace-indicator@gnome-shell-extensions.gcampax.github.com will not be loaded
Jun 04 22:57:53 AlexArch dbus-daemon[247]: [system] Activating via systemd: service name='org.freedesktop.Avahi' unit='dbus-org.freedesktop.Avahi.service' requested by ':1.25' (uid=969 pid=433 comm="/usr/lib/geoclue")
Jun 04 22:57:53 AlexArch dbus-daemon[247]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.Avahi.service': Unit dbus-org.freedesktop.Avahi.service not found.
Jun 04 22:57:53 AlexArch geoclue[433]: Failed to connect to avahi service: Daemon not running
Jun 04 22:57:53 AlexArch dbus-daemon[247]: [system] Successfully activated service 'org.freedesktop.GeoClue2'
Jun 04 22:57:53 AlexArch systemd[1]: Started Location Lookup Service.
Jun 04 22:57:53 AlexArch /usr/lib/gdm-x-session[369]: dbus-daemon[369]: Activating service name='org.a11y.atspi.Registry' requested by ':1.1' (uid=120 pid=381 comm="/usr/bin/gnome-shell")
Jun 04 22:57:53 AlexArch dbus-daemon[247]: [system] Activating via systemd: service name='org.freedesktop.ColorManager' unit='colord.service' requested by ':1.17' (uid=120 pid=381 comm="/usr/bin/gnome-shell")
Jun 04 22:57:53 AlexArch systemd[1]: Starting Manage, Install and Generate Color Profiles...
Jun 04 22:57:53 AlexArch /usr/lib/gdm-x-session[369]: dbus-daemon[369]: Successfully activated service 'org.a11y.atspi.Registry'
Jun 04 22:57:53 AlexArch /usr/lib/gdm-x-session[453]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Jun 04 22:57:53 AlexArch dbus-daemon[247]: [system] Successfully activated service 'org.freedesktop.ColorManager'
Jun 04 22:57:53 AlexArch systemd[1]: Started Manage, Install and Generate Color Profiles.
Jun 04 22:57:53 AlexArch org.gnome.Shell.desktop[381]: Window manager warning: Failed to parse saved session file: Failed to open file “/var/lib/gdm/.config/mutter/sessions/10b7e2b7285d4349ef168591227121024300000003550000.ms”: No such file or directory
Jun 04 22:57:53 AlexArch gnome-shell[381]: Failed to launch ibus-daemon: Failed to execute child process “ibus-daemon” (No such file or directory)
Jun 04 22:57:53 AlexArch /usr/lib/gdm-x-session[354]: dbus-daemon[354]: [session uid=120 pid=354] Successfully activated service 'org.gnome.Shell.Notifications'
Jun 04 22:57:53 AlexArch NetworkManager[249]: <info>  [1685912273.6233] agent-manager: agent[44f2d3c182e96e67,:1.17/org.gnome.Shell.NetworkAgent/120]: agent registered
Jun 04 22:57:53 AlexArch rtkit-daemon[436]: Supervising 1 threads of 1 processes of 1 users.
Jun 04 22:57:53 AlexArch rtkit-daemon[436]: Successfully made thread 506 of process 431 owned by '120' RT at priority 5.
Jun 04 22:57:53 AlexArch rtkit-daemon[436]: Supervising 2 threads of 1 processes of 1 users.
Jun 04 22:57:53 AlexArch gnome-shell[381]: Error looking up permission: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for geolocation
Jun 04 22:57:53 AlexArch rtkit-daemon[436]: Supervising 2 threads of 1 processes of 1 users.
Jun 04 22:57:53 AlexArch NetworkManager[249]: <info>  [1685912273.6800] policy: auto-activating connection 'EOLO - FRITZ!Box 7530 BI' (85c7088b-d0e4-49e5-a8e2-36affc78ebd2)
Jun 04 22:57:53 AlexArch NetworkManager[249]: <info>  [1685912273.6805] device (wlp3s0): Activation: starting connection 'EOLO - FRITZ!Box 7530 BI' (85c7088b-d0e4-49e5-a8e2-36affc78ebd2)
Jun 04 22:57:53 AlexArch NetworkManager[249]: <info>  [1685912273.6806] device (wlp3s0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jun 04 22:57:53 AlexArch NetworkManager[249]: <info>  [1685912273.6809] manager: NetworkManager state is now CONNECTING
Jun 04 22:57:53 AlexArch rtkit-daemon[436]: Successfully made thread 511 of process 431 owned by '120' RT at priority 5.
Jun 04 22:57:53 AlexArch rtkit-daemon[436]: Supervising 3 threads of 1 processes of 1 users.
Jun 04 22:57:53 AlexArch systemd[305]: Started Sound Service.
Jun 04 22:57:53 AlexArch NetworkManager[249]: <info>  [1685912273.7070] device (wlp3s0): set-hw-addr: reset MAC address to 00:21:6A:0F:BF:F2 (preserve)
Jun 04 22:57:53 AlexArch kernel: iwlwifi 0000:03:00.0: Radio type=0x0-0x2-0x0
Jun 04 22:57:53 AlexArch kernel: rfkill: input handler disabled
Jun 04 22:57:53 AlexArch kernel: iwlwifi 0000:03:00.0: Radio type=0x0-0x2-0x0
Jun 04 22:57:53 AlexArch NetworkManager[249]: <info>  [1685912273.8998] device (wlp3s0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jun 04 22:57:53 AlexArch NetworkManager[249]: <info>  [1685912273.9004] device (wlp3s0): Activation: (wifi) access point 'EOLO - FRITZ!Box 7530 BI' has security, but secrets are required.
Jun 04 22:57:53 AlexArch NetworkManager[249]: <info>  [1685912273.9004] device (wlp3s0): state change: config -> need-auth (reason 'none', sys-iface-state: 'managed')
Jun 04 22:57:53 AlexArch NetworkManager[249]: <info>  [1685912273.9008] sup-iface[60b82aa5c697b1ff,0,wlp3s0]: wps: type pbc start...
Jun 04 22:57:53 AlexArch NetworkManager[249]: <info>  [1685912273.9014] device (wlp3s0): supplicant interface state: disconnected -> interface_disabled
Jun 04 22:57:53 AlexArch NetworkManager[249]: <info>  [1685912273.9214] device (wlp3s0): supplicant interface state: interface_disabled -> inactive
Jun 04 22:57:53 AlexArch NetworkManager[249]: <info>  [1685912273.9223] device (wlp3s0): state change: need-auth -> prepare (reason 'none', sys-iface-state: 'managed')
Jun 04 22:57:53 AlexArch NetworkManager[249]: <info>  [1685912273.9227] device (wlp3s0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jun 04 22:57:53 AlexArch NetworkManager[249]: <info>  [1685912273.9239] device (wlp3s0): Activation: (wifi) connection 'EOLO - FRITZ!Box 7530 BI' has security, and secrets exist.  No new secrets needed.
Jun 04 22:57:53 AlexArch NetworkManager[249]: <info>  [1685912273.9239] Config: added 'ssid' value 'EOLO - FRITZ!Box 7530 BI'
Jun 04 22:57:53 AlexArch NetworkManager[249]: <info>  [1685912273.9239] Config: added 'scan_ssid' value '1'
Jun 04 22:57:53 AlexArch NetworkManager[249]: <info>  [1685912273.9240] Config: added 'bgscan' value 'simple:30:-65:300'
Jun 04 22:57:53 AlexArch NetworkManager[249]: <info>  [1685912273.9240] Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 FT-PSK'
Jun 04 22:57:53 AlexArch NetworkManager[249]: <info>  [1685912273.9240] Config: added 'auth_alg' value 'OPEN'
Jun 04 22:57:53 AlexArch NetworkManager[249]: <info>  [1685912273.9240] Config: added 'psk' value '<hidden>'
Jun 04 22:57:53 AlexArch wpa_supplicant[346]: wlp3s0: WPS-PBC-ACTIVE
Jun 04 22:57:53 AlexArch wpa_supplicant[346]: wlp3s0: WPS-CANCEL
Jun 04 22:57:53 AlexArch NetworkManager[249]: <info>  [1685912273.9444] device (wlp3s0): supplicant interface state: inactive -> scanning
Jun 04 22:57:53 AlexArch /usr/lib/gdm-x-session[354]: dbus-daemon[354]: [session uid=120 pid=354] Activating service name='org.freedesktop.systemd1' requested by ':1.10' (uid=120 pid=463 comm="/usr/lib/gsd-sharing")
Jun 04 22:57:53 AlexArch wpa_supplicant[346]: wlp3s0: SME: Trying to authenticate with 3c:a6:2f:ae:86:98 (SSID='EOLO - FRITZ!Box 7530 BI' freq=5180 MHz)
Jun 04 22:57:53 AlexArch kernel: wlp3s0: authenticate with 3c:a6:2f:ae:86:98
Jun 04 22:57:53 AlexArch kernel: wlp3s0: send auth to 3c:a6:2f:ae:86:98 (try 1/3)
Jun 04 22:57:54 AlexArch NetworkManager[249]: <info>  [1685912274.0006] device (wlp3s0): supplicant interface state: scanning -> authenticating
Jun 04 22:57:54 AlexArch /usr/lib/gdm-x-session[354]: dbus-daemon[354]: [session uid=120 pid=354] Activated service 'org.freedesktop.systemd1' failed: Process org.freedesktop.systemd1 exited with status 1
Jun 04 22:57:54 AlexArch gsd-sharing[463]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
Jun 04 22:57:54 AlexArch gsd-sharing[463]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
Jun 04 22:57:54 AlexArch wpa_supplicant[346]: wlp3s0: Trying to associate with 3c:a6:2f:ae:86:98 (SSID='EOLO - FRITZ!Box 7530 BI' freq=5180 MHz)
Jun 04 22:57:54 AlexArch kernel: wlp3s0: authenticated
Jun 04 22:57:54 AlexArch kernel: wlp3s0: waiting for beacon from 3c:a6:2f:ae:86:98
Jun 04 22:57:54 AlexArch NetworkManager[249]: <info>  [1685912274.0602] device (wlp3s0): supplicant interface state: authenticating -> associating
Jun 04 22:57:54 AlexArch gnome-session-binary[355]: Entering running state
Jun 04 22:57:54 AlexArch xbrlapi.desktop[620]: openConnection: connect: No such file or directory
Jun 04 22:57:54 AlexArch xbrlapi.desktop[620]: cannot connect to braille devices daemon brltty at :0
Jun 04 22:57:54 AlexArch kernel: wlp3s0: associate with 3c:a6:2f:ae:86:98 (try 1/3)
Jun 04 22:57:54 AlexArch kernel: wlp3s0: RX AssocResp from 3c:a6:2f:ae:86:98 (capab=0x1511 status=0 aid=1)
Jun 04 22:57:54 AlexArch wpa_supplicant[346]: wlp3s0: Associated with 3c:a6:2f:ae:86:98
Jun 04 22:57:54 AlexArch wpa_supplicant[346]: wlp3s0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Jun 04 22:57:54 AlexArch kernel: wlp3s0: associated
Jun 04 22:57:54 AlexArch NetworkManager[249]: <info>  [1685912274.1776] device (wlp3s0): supplicant interface state: associating -> associated
Jun 04 22:57:54 AlexArch NetworkManager[249]: <info>  [1685912274.1828] device (wlp3s0): supplicant interface state: associated -> 4way_handshake
Jun 04 22:57:54 AlexArch wpa_supplicant[346]: wlp3s0: WPA: Key negotiation completed with 3c:a6:2f:ae:86:98 [PTK=CCMP GTK=TKIP]
Jun 04 22:57:54 AlexArch wpa_supplicant[346]: wlp3s0: CTRL-EVENT-CONNECTED - Connection to 3c:a6:2f:ae:86:98 completed [id=0 id_str=]
Jun 04 22:57:54 AlexArch kernel: IPv6: ADDRCONF(NETDEV_CHANGE): wlp3s0: link becomes ready
Jun 04 22:57:54 AlexArch kernel: wlp3s0: Limiting TX power to 23 (23 - 0) dBm as advertised by 3c:a6:2f:ae:86:98
Jun 04 22:57:54 AlexArch NetworkManager[249]: <info>  [1685912274.2626] device (wlp3s0): supplicant interface state: 4way_handshake -> completed
Jun 04 22:57:54 AlexArch NetworkManager[249]: <info>  [1685912274.2626] device (wlp3s0): Activation: (wifi) Stage 2 of 5 (Device Configure) successful. Connected to wireless network "EOLO - FRITZ!Box 7530 BI"
Jun 04 22:57:54 AlexArch NetworkManager[249]: <info>  [1685912274.2628] device (wlp3s0): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
Jun 04 22:57:54 AlexArch NetworkManager[249]: <info>  [1685912274.2635] dhcp4 (wlp3s0): activation: beginning transaction (timeout in 45 seconds)
Jun 04 22:57:54 AlexArch NetworkManager[249]: <info>  [1685912274.2775] dhcp4 (wlp3s0): state changed new lease, address=192.168.178.129
Jun 04 22:57:54 AlexArch NetworkManager[249]: <info>  [1685912274.2780] policy: set 'EOLO - FRITZ!Box 7530 BI' (wlp3s0) as default for IPv4 routing and DNS
Jun 04 22:57:54 AlexArch /usr/lib/gdm-x-session[354]: dbus-daemon[354]: [session uid=120 pid=354] Activating service name='org.freedesktop.systemd1' requested by ':1.10' (uid=120 pid=463 comm="/usr/lib/gsd-sharing")
Jun 04 22:57:54 AlexArch dbus-daemon[247]: [system] Activating via systemd: service name='org.freedesktop.resolve1' unit='dbus-org.freedesktop.resolve1.service' requested by ':1.3' (uid=0 pid=249 comm="/usr/bin/NetworkManager --no-daemon")
Jun 04 22:57:54 AlexArch dbus-daemon[247]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.resolve1.service': Unit dbus-org.freedesktop.resolve1.service not found.
Jun 04 22:57:54 AlexArch /usr/lib/gdm-x-session[354]: dbus-daemon[354]: [session uid=120 pid=354] Activated service 'org.freedesktop.systemd1' failed: Process org.freedesktop.systemd1 exited with status 1
Jun 04 22:57:54 AlexArch gsd-sharing[463]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
Jun 04 22:57:54 AlexArch gsd-sharing[463]: Failed to StopUnit service: GDBus.Error:org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
Jun 04 22:57:54 AlexArch NetworkManager[249]: <info>  [1685912274.2932] device (wlp3s0): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
Jun 04 22:57:54 AlexArch NetworkManager[249]: <info>  [1685912274.2972] device (wlp3s0): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
Jun 04 22:57:54 AlexArch NetworkManager[249]: <info>  [1685912274.2986] device (wlp3s0): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
Jun 04 22:57:54 AlexArch NetworkManager[249]: <info>  [1685912274.3008] manager: NetworkManager state is now CONNECTED_SITE
Jun 04 22:57:54 AlexArch NetworkManager[249]: <info>  [1685912274.3045] device (wlp3s0): Activation: successful, device activated.
Jun 04 22:57:54 AlexArch NetworkManager[249]: <info>  [1685912274.4442] manager: NetworkManager state is now CONNECTED_GLOBAL
Jun 04 22:57:54 AlexArch wpa_supplicant[346]: wlp3s0: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-42 noise=9999 txrate=27000
Jun 04 22:57:54 AlexArch gsd-media-keys[505]: Failed to grab accelerator for keybinding settings:rotate-video-lock
Jun 04 22:57:54 AlexArch gsd-media-keys[505]: Failed to grab accelerator for keybinding settings:hibernate
Jun 04 22:57:54 AlexArch gsd-media-keys[505]: Failed to grab accelerator for keybinding settings:playback-repeat
Jun 04 22:57:54 AlexArch gsd-media-keys[505]: Failed to grab accelerator for keybinding settings:playback-random
Jun 04 22:57:54 AlexArch gnome-shell[381]: Failed to query file info on '/var/lib/gdm/.local/share/icc/.goutputstream-WEQ151': Error when getting information for file “/var/lib/gdm/.local/share/icc/.goutputstream-WEQ151”: No such file or directory
Jun 04 22:57:54 AlexArch /usr/lib/gdm-x-session[354]: dbus-daemon[354]: [session uid=120 pid=354] Activating service name='org.gnome.ScreenSaver' requested by ':1.24' (uid=120 pid=536 comm="/usr/lib/gsd-power")
Jun 04 22:57:54 AlexArch /usr/lib/gdm-x-session[354]: dbus-daemon[354]: [session uid=120 pid=354] Successfully activated service 'org.gnome.ScreenSaver'
Jun 04 22:57:54 AlexArch dbus-daemon[247]: [system] Activating via systemd: service name='net.reactivated.Fprint' unit='fprintd.service' requested by ':1.17' (uid=120 pid=381 comm="/usr/bin/gnome-shell")
Jun 04 22:57:54 AlexArch systemd[1]: Starting Fingerprint Authentication Daemon...
Jun 04 22:57:54 AlexArch systemd[1]: systemd-rfkill.service: Deactivated successfully.
Jun 04 22:57:54 AlexArch dbus-daemon[247]: [system] Successfully activated service 'net.reactivated.Fprint'
Jun 04 22:57:54 AlexArch systemd[1]: Started Fingerprint Authentication Daemon.
Jun 04 22:57:55 AlexArch gnome-shell[381]: Registering session with GDM
Jun 04 22:57:56 AlexArch dbus-daemon[247]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.41' (uid=0 pid=689 comm="gdm-session-worker [pam/gdm-password]")
Jun 04 22:57:56 AlexArch dbus-daemon[247]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 04 22:57:56 AlexArch gdm-password][689]: pam_systemd_home(gdm-password:auth): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 04 22:57:58 AlexArch systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Jun 04 22:57:59 AlexArch dbus-daemon[247]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.43' (uid=0 pid=690 comm="gdm-session-worker [pam/gdm-fingerprint]")
Jun 04 22:57:59 AlexArch dbus-daemon[247]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 04 22:57:59 AlexArch gdm-fingerprint][690]: pam_systemd_home(gdm-fingerprint:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 04 22:57:59 AlexArch gdm-fingerprint][690]: pam_unix(gdm-fingerprint:session): session opened for user alex(uid=1000) by alex(uid=0)
Jun 04 22:57:59 AlexArch systemd[1]: Created slice User Slice of UID 1000.
Jun 04 22:57:59 AlexArch systemd[1]: Starting User Runtime Directory /run/user/1000...
Jun 04 22:57:59 AlexArch systemd-logind[248]: New session 3 of user alex.
Jun 04 22:57:59 AlexArch systemd[1]: Finished User Runtime Directory /run/user/1000.
Jun 04 22:57:59 AlexArch systemd[1]: Starting User Manager for UID 1000...
Jun 04 22:57:59 AlexArch dbus-daemon[247]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.46' (uid=0 pid=710 comm="(systemd)")
Jun 04 22:57:59 AlexArch dbus-daemon[247]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 04 22:57:59 AlexArch (systemd)[710]: pam_systemd_home(systemd-user:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 04 22:57:59 AlexArch (systemd)[710]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[alex] ruser=[<unknown>] rhost=[<unknown>]
Jun 04 22:57:59 AlexArch (systemd)[710]: pam_unix(systemd-user:session): session opened for user alex(uid=1000) by alex(uid=0)
Jun 04 22:57:59 AlexArch systemd[710]: Queued start job for default target Main User Target.
Jun 04 22:57:59 AlexArch systemd-journald[195]: /var/log/journal/951764c72dc84868a26e5614ab3564a8/user-1000.journal: Monotonic clock jumped backwards relative to last journal entry, rotating.
Jun 04 22:57:59 AlexArch systemd[710]: Created slice User Application Slice.
Jun 04 22:57:59 AlexArch systemd[710]: Reached target Paths.
Jun 04 22:57:59 AlexArch systemd[710]: Reached target Timers.
Jun 04 22:57:59 AlexArch systemd[710]: Starting D-Bus User Message Bus Socket...
Jun 04 22:57:59 AlexArch gnome-keyring-daemon[726]: GNOME_KEYRING_CONTROL=/run/user/1000/keyring
Jun 04 22:57:59 AlexArch systemd[710]: Listening on GnuPG network certificate management daemon.
Jun 04 22:57:59 AlexArch systemd[710]: Listening on GCR ssh-agent wrapper.
Jun 04 22:57:59 AlexArch systemd[710]: Listening on GNOME Keyring daemon.
Jun 04 22:57:59 AlexArch systemd[710]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jun 04 22:57:59 AlexArch systemd[710]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Jun 04 22:57:59 AlexArch systemd[710]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Jun 04 22:57:59 AlexArch systemd[710]: Listening on GnuPG cryptographic agent and passphrase cache.
Jun 04 22:57:59 AlexArch systemd[710]: Listening on p11-kit server.
Jun 04 22:57:59 AlexArch systemd[710]: Listening on PipeWire Multimedia System Socket.
Jun 04 22:57:59 AlexArch systemd[710]: Listening on Sound System.
Jun 04 22:57:59 AlexArch systemd[710]: Listening on D-Bus User Message Bus Socket.
Jun 04 22:57:59 AlexArch systemd[710]: Reached target Sockets.
Jun 04 22:57:59 AlexArch systemd[710]: Reached target Basic System.
Jun 04 22:57:59 AlexArch systemd[1]: Started User Manager for UID 1000.
Jun 04 22:57:59 AlexArch systemd[1]: Started Session 3 of User alex.
Jun 04 22:57:59 AlexArch systemd[710]: Starting Update XDG user dir configuration...
Jun 04 22:57:59 AlexArch systemd[710]: Finished Update XDG user dir configuration.
Jun 04 22:57:59 AlexArch systemd[710]: Reached target Main User Target.
Jun 04 22:57:59 AlexArch systemd[710]: Startup finished in 296ms.
Jun 04 22:57:59 AlexArch systemd[710]: Started GNOME Keyring daemon.
Jun 04 22:57:59 AlexArch systemd[710]: Created slice User Core Session Slice.
Jun 04 22:57:59 AlexArch systemd[710]: Starting D-Bus User Message Bus...
Jun 04 22:57:59 AlexArch systemd[710]: Started D-Bus User Message Bus.
Jun 04 22:57:59 AlexArch gdm-fingerprint][690]: gkr-pam: couldn't unlock the login keyring.
Jun 04 22:57:59 AlexArch gdm-password][689]: pam_unix(gdm-password:auth): conversation failed
Jun 04 22:57:59 AlexArch gdm-password][689]: pam_unix(gdm-password:auth): auth could not identify password for [alex]
Jun 04 22:57:59 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "fd" "28"
Jun 04 22:57:59 AlexArch /usr/lib/gdm-x-session[330]: (II) event2  - Power Button: device removed
Jun 04 22:57:59 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "fd" "31"
Jun 04 22:57:59 AlexArch /usr/lib/gdm-x-session[330]: (II) event5  - Video Bus: device removed
Jun 04 22:57:59 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "fd" "32"
Jun 04 22:57:59 AlexArch /usr/lib/gdm-x-session[330]: (II) event1  - Sleep Button: device removed
Jun 04 22:57:59 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "fd" "33"
Jun 04 22:57:59 AlexArch /usr/lib/gdm-x-session[330]: (II) event4  - AT Translated Set 2 keyboard: device removed
Jun 04 22:57:59 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "fd" "35"
Jun 04 22:57:59 AlexArch /usr/lib/gdm-x-session[330]: (II) event3  - ThinkPad Extra Buttons: device removed
Jun 04 22:57:59 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "fd" "10"
Jun 04 22:57:59 AlexArch /usr/lib/gdm-x-session[330]: (II) event11 - SynPS/2 Synaptics TouchPad: device removed
Jun 04 22:57:59 AlexArch /usr/lib/gdm-x-session[330]: (**) Option "fd" "30"
Jun 04 22:57:59 AlexArch /usr/lib/gdm-x-session[330]: (II) event12 - TPPS/2 IBM TrackPoint: device removed
Jun 04 22:57:59 AlexArch /usr/lib/gdm-x-session[330]: (II) AIGLX: Suspending AIGLX clients for VT switch
Jun 04 22:57:59 AlexArch kernel: rfkill: input handler enabled
Jun 04 22:57:59 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: got pause for 13:67
Jun 04 22:57:59 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: got pause for 13:68
Jun 04 22:57:59 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: got pause for 13:66
Jun 04 22:57:59 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: got pause for 13:65
Jun 04 22:57:59 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: got pause for 13:75
Jun 04 22:57:59 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: got pause for 13:69
Jun 04 22:57:59 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: got pause for 13:76
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: _XSERVTransSocketUNIXCreateListener: ...SocketCreateListener() failed
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: _XSERVTransMakeAllCOTSServerListeners: server already running
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (--) Log file renamed from "/home/alex/.local/share/xorg/Xorg.pid-744.log" to "/home/alex/.local/share/xorg/Xorg.1.log"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: X.Org X Server 1.21.1.8
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: X Protocol Version 11, Revision 0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: Current Operating System: Linux AlexArch 6.3.5-arch1-1 #1 SMP PREEMPT_DYNAMIC Tue, 30 May 2023 13:44:01 +0000 x86_64
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=882f05fb-ea19-4494-99b9-75cacc2e0493 rw loglevel=3 quiet
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:  
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: Current version of pixman: 0.42.2
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         Before reporting problems, check http://wiki.x.org
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         to make sure that you have the latest version.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: Markers: (--) probed, (**) from config file, (==) default setting,
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         (++) from command line, (!!) notice, (II) informational,
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) Log file: "/home/alex/.local/share/xorg/Xorg.1.log", Time: Sun Jun  4 22:58:00 2023
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) Using system config directory "/usr/share/X11/xorg.conf.d"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) No Layout section.  Using the first Screen section.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) No screen section available. Using defaults.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) |-->Screen "Default Screen Section" (0)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) |   |-->Monitor "<default monitor>"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) No monitor specified for screen "Default Screen Section".
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         Using a default monitor configuration.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) Automatically adding devices
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) Automatically enabling devices
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) Automatically adding GPU devices
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) Automatically binding GPU devices
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) Max clients allowed: 256, resource mask: 0x1fffff
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (WW) The directory "/usr/share/fonts/misc" does not exist.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         Entry deleted from font path.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (WW) The directory "/usr/share/fonts/TTF" does not exist.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         Entry deleted from font path.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (WW) The directory "/usr/share/fonts/OTF" does not exist.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         Entry deleted from font path.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (WW) The directory "/usr/share/fonts/Type1" does not exist.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         Entry deleted from font path.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (WW) The directory "/usr/share/fonts/100dpi" does not exist.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         Entry deleted from font path.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (WW) The directory "/usr/share/fonts/75dpi" does not exist.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         Entry deleted from font path.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) FontPath set to:
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) ModulePath set to "/usr/lib/xorg/modules"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) The server relies on udev to provide the list of input devices.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         If no devices become available, reconfigure udev or disable AutoAddDevices.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Module ABI versions:
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         X.Org ANSI C Emulation: 0.4
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         X.Org Video Driver: 25.2
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         X.Org XInput driver : 24.4
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         X.Org Server Extension : 10.0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (++) using VT number 2
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) systemd-logind: took control of session /org/freedesktop/login1/session/_33
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) xfree86: Adding drm device (/dev/dri/card0)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 15 paused 0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (--) PCI:*(0@0:2:0) 8086:2a42:17aa:20e4 rev 7, Mem @ 0xf4400000/4194304, 0xd0000000/268435456, I/O @ 0x00001800/8, BIOS @ 0x????????/131072
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (--) PCI: (0@0:2:1) 8086:2a43:17aa:20e4 rev 7, Mem @ 0xf4200000/1048576
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) LoadModule: "glx"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Module glx: vendor="X.Org Foundation"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         compiled for 1.21.1.8, module version = 1.0.0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         ABI class: X.Org Server Extension, version 10.0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) Matched intel as autoconfigured driver 0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) Matched modesetting as autoconfigured driver 1
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) Matched fbdev as autoconfigured driver 2
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) Matched vesa as autoconfigured driver 3
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) Assigned the driver to the xf86ConfigLayout
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) LoadModule: "intel"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (WW) Warning, couldn't open module intel
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (EE) Failed to load module "intel" (module does not exist, 0)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) LoadModule: "modesetting"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Module modesetting: vendor="X.Org Foundation"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         compiled for 1.21.1.8, module version = 1.21.1
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         Module class: X.Org Video Driver
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         ABI class: X.Org Video Driver, version 25.2
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) LoadModule: "fbdev"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (WW) Warning, couldn't open module fbdev
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (EE) Failed to load module "fbdev" (module does not exist, 0)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) LoadModule: "vesa"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (WW) Warning, couldn't open module vesa
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (EE) Failed to load module "vesa" (module does not exist, 0)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modesetting: Driver for Modesetting Kernel Drivers: kms
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): using drv /dev/dri/card0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Creating default Display subsection in Screen section
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         "Default Screen Section" for depth/fbbpp 24/32
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) modeset(0): Depth 24, (==) framebuffer bpp 32
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) modeset(0): RGB weight 888
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) modeset(0): Default visual is TrueColor
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Loading sub module "glamoregl"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) LoadModule: "glamoregl"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Loading /usr/lib/xorg/modules/libglamoregl.so
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Module glamoregl: vendor="X.Org Foundation"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         compiled for 1.21.1.8, module version = 1.0.1
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         ABI class: X.Org ANSI C Emulation, version 0.4
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): glamor X acceleration enabled on Mesa Mobile Intel® GM45 Express Chipset (CTG)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): glamor initialized
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) modeset(0): VariableRefresh: disabled
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) modeset(0): AsyncFlipSecondaries: disabled
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Output LVDS-1 has no monitor section
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Output VGA-1 has no monitor section
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Output HDMI-1 has no monitor section
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Output DP-1 has no monitor section
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Output HDMI-2 has no monitor section
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Output DP-2 has no monitor section
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Output DP-3 has no monitor section
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): EDID for output LVDS-1
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Manufacturer: LEN  Model: 4050  Serial#: 0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Year: 2006  Week: 0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): EDID Version: 1.3
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Digital Display Input
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Max Image Size [cm]: horiz.: 33  vert.: 21
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Gamma: 2.20
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): DPMS capabilities: StandBy Suspend Off
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): First detailed timing is preferred mode
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): redX: 0.590 redY: 0.340   greenX: 0.320 greenY: 0.550
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): blueX: 0.152 blueY: 0.130   whiteX: 0.313 whiteY: 0.329
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Manufacturer's mask: 0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Supported detailed timing:
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): clock: 71.1 MHz   Image Size:  331 x 207 mm
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1440 h_border: 0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 823 v_border: 0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Supported detailed timing:
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): clock: 60.1 MHz   Image Size:  331 x 207 mm
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1457 h_border: 0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 825 v_border: 0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Unknown vendor-specific block f
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0):  LTN154X3-L02
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): EDID (in hex):
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0):         00ffffffffffff0030ae504000000000
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0):         0010010380211578ea03159757528c27
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0):         21505400000001010101010101010101
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0):         010101010101c71b00a0502017303020
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0):         36004bcf100000197a1700b150201930
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0):         302036004bcf100000190000000f0081
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0):         0a32810a281401004ca35833000000fe
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0):         004c544e31353458332d4c30320a00c2
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Printing probed modes for output LVDS-1
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "1280x800"x60.0   71.11  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.4 kHz eP)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "1280x800"x120.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "1280x800"x119.9  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "1280x800"x50.0   60.10  1280 1328 1360 1457  800 803 809 825 -hsync -vsync (41.2 kHz e)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "1280x720"x120.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "1280x720"x120.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "1024x576"x119.9   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "1024x576"x119.9   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "960x600"x119.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "960x600"x120.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "960x540"x119.9   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "960x540"x120.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "840x525"x120.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "840x525"x119.8   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "800x450"x119.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "800x450"x119.6   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "700x450"x119.9   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "700x450"x119.8   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "684x384"x119.8   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "684x384"x119.7   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "640x400"x119.8   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "640x400"x120.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "640x360"x119.7   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "640x360"x119.7   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "512x288"x120.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "512x288"x119.8   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "480x270"x119.3   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "480x270"x119.6   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "432x243"x119.8   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "432x243"x119.1   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "360x202"x119.0   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "360x202"x118.3   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "320x180"x119.7    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "320x180"x118.6    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): EDID for output VGA-1
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): EDID for output HDMI-1
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): EDID for output DP-1
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): EDID for output HDMI-2
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): EDID for output DP-2
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): EDID for output DP-3
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Output LVDS-1 connected
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Output VGA-1 disconnected
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Output HDMI-1 disconnected
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Output DP-1 disconnected
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Output HDMI-2 disconnected
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Output DP-2 disconnected
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Output DP-3 disconnected
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Using exact sizes for initial modes
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Output LVDS-1 using initial mode 1280x800 +0+0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) modeset(0): DPI set to (96, 96)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Loading sub module "fb"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) LoadModule: "fb"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Module "fb" already built-in
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) modeset(0): Backing store enabled
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) modeset(0): Silken mouse enabled
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (==) modeset(0): DPMS enabled
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): [DRI2] Setup complete
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): [DRI2]   DRI driver: crocus
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): [DRI2]   VDPAU driver: va_gl
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension Generic Event Extension
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension SHAPE
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension MIT-SHM
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension XInputExtension
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension XTEST
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension BIG-REQUESTS
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension SYNC
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension XKEYBOARD
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension XC-MISC
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension SECURITY
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension XFIXES
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension RENDER
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension RANDR
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension COMPOSITE
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension DAMAGE
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension MIT-SCREEN-SAVER
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension DOUBLE-BUFFER
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension RECORD
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension DPMS
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension Present
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension DRI3
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension X-Resource
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension XVideo
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension XVideo-MotionCompensation
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension GLX
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) AIGLX: Loaded and initialized crocus
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) GLX: Initialized DRI2 GL provider for screen 0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension XFree86-VidModeExtension
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension XFree86-DGA
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension XFree86-DRI
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Initializing extension DRI2
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Damage tracking initialized
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Setting screen physical size to 338 x 211
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) config/udev: Adding input device Power Button (/dev/input/event2)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) Power Button: Applying InputClass "libinput keyboard catchall"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) LoadModule: "libinput"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Module libinput: vendor="X.Org Foundation"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         compiled for 1.21.1.8, module version = 1.3.0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         Module class: X.Org XInput Driver
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]:         ABI class: X.Org XInput driver, version 24.4
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Using input driver 'libinput' for 'Power Button'
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 29 paused 0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) Power Button: always reports core events
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) Option "Device" "/dev/input/event2"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event2  - Power Button: is tagged by udev as: Keyboard
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event2  - Power Button: device is a keyboard
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event2  - Power Button: device removed
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event2  - Power Button: is tagged by udev as: Keyboard
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event2  - Power Button: device is a keyboard
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) config/udev: Adding input device Video Bus (/dev/input/event5)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) Video Bus: Applying InputClass "libinput keyboard catchall"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Using input driver 'libinput' for 'Video Bus'
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 32 paused 0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) Video Bus: always reports core events
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) Option "Device" "/dev/input/event5"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event5  - Video Bus: is tagged by udev as: Keyboard
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event5  - Video Bus: device is a keyboard
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event5  - Video Bus: device removed
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input6/event5"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event5  - Video Bus: is tagged by udev as: Keyboard
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event5  - Video Bus: device is a keyboard
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) No input driver specified, ignoring this device.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) This device may have been added with another device file.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Using input driver 'libinput' for 'Sleep Button'
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 33 paused 0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) Sleep Button: always reports core events
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) Option "Device" "/dev/input/event1"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event1  - Sleep Button: is tagged by udev as: Keyboard
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event1  - Sleep Button: device is a keyboard
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event1  - Sleep Button: device removed
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1/event1"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event1  - Sleep Button: is tagged by udev as: Keyboard
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event1  - Sleep Button: device is a keyboard
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) config/udev: Adding input device HDA Intel Dock Mic (/dev/input/event8)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) No input driver specified, ignoring this device.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) This device may have been added with another device file.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) config/udev: Adding input device HDA Intel Dock Headphone (/dev/input/event9)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) No input driver specified, ignoring this device.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) This device may have been added with another device file.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) config/udev: Adding input device HDA Intel Headphone (/dev/input/event10)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) No input driver specified, ignoring this device.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) This device may have been added with another device file.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) config/udev: Adding input device HDA Intel Mic (/dev/input/event7)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) No input driver specified, ignoring this device.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) This device may have been added with another device file.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event4)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 34 paused 0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) AT Translated Set 2 keyboard: always reports core events
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) Option "Device" "/dev/input/event4"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event4  - AT Translated Set 2 keyboard: device removed
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input4/event4"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event11)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Using input driver 'libinput' for 'SynPS/2 Synaptics TouchPad'
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 35 paused 0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) SynPS/2 Synaptics TouchPad: always reports core events
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) Option "Device" "/dev/input/event11"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event11 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event11 - SynPS/2 Synaptics TouchPad: device is a touchpad
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event11 - SynPS/2 Synaptics TouchPad: device removed
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) libinput: SynPS/2 Synaptics TouchPad: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input8/event11"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 10)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) Option "AccelerationScheme" "none"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) SynPS/2 Synaptics TouchPad: (accel) selected scheme none/0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event11 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event11 - SynPS/2 Synaptics TouchPad: device is a touchpad
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) No input driver specified, ignoring this device.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) This device may have been added with another device file.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event12)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) TPPS/2 IBM TrackPoint: Applying InputClass "libinput pointer catchall"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Using input driver 'libinput' for 'TPPS/2 IBM TrackPoint'
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 36 paused 0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) TPPS/2 IBM TrackPoint: always reports core events
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) Option "Device" "/dev/input/event12"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event12 - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse Pointingstick
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event12 - TPPS/2 IBM TrackPoint: device is a pointer
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event12 - TPPS/2 IBM TrackPoint: device removed
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) libinput: TPPS/2 IBM TrackPoint: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) libinput: TPPS/2 IBM TrackPoint: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) libinput: TPPS/2 IBM TrackPoint: Step value 0 was provided, libinput Fallback acceleration function is used.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/serio2/input/input13/event12"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 11)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) Option "AccelerationScheme" "none"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) TPPS/2 IBM TrackPoint: (accel) selected scheme none/0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event12 - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse Pointingstick
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event12 - TPPS/2 IBM TrackPoint: device is a pointer
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse1)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) No input driver specified, ignoring this device.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) This device may have been added with another device file.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) No input driver specified, ignoring this device.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) This device may have been added with another device file.
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event3)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) ThinkPad Extra Buttons: Applying InputClass "libinput keyboard catchall"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) Using input driver 'libinput' for 'ThinkPad Extra Buttons'
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 37 paused 0
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) ThinkPad Extra Buttons: always reports core events
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) Option "Device" "/dev/input/event3"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event3  - ThinkPad Extra Buttons: is tagged by udev as: Keyboard Switch
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event3  - ThinkPad Extra Buttons: device is a keyboard
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event3  - ThinkPad Extra Buttons: device removed
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input3/event3"
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 12)
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event3  - ThinkPad Extra Buttons: is tagged by udev as: Keyboard Switch
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[744]: (II) event3  - ThinkPad Extra Buttons: device is a keyboard
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[775]: /etc/gdm/Xsession: Beginning session setup...
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[788]: localuser:alex being added to access control list
Jun 04 22:58:00 AlexArch /usr/lib/gdm-x-session[775]: /etc/gdm/Xsession: Setup done, will execute: /usr/bin/gnome-session
Jun 04 22:58:00 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating via systemd: service name='org.gtk.vfs.Daemon' unit='gvfs-daemon.service' requested by ':1.4' (uid=1000 pid=796 comm="/usr/lib/gnome-session-check-accelerated")
Jun 04 22:58:00 AlexArch systemd[710]: Starting Virtual filesystem service...
Jun 04 22:58:00 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gtk.vfs.Daemon'
Jun 04 22:58:00 AlexArch systemd[710]: Started Virtual filesystem service.
Jun 04 22:58:00 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating via systemd: service name='org.a11y.Bus' unit='at-spi-dbus-bus.service' requested by ':1.6' (uid=1000 pid=796 comm="/usr/lib/gnome-session-check-accelerated")
Jun 04 22:58:00 AlexArch systemd[710]: Starting Accessibility services bus...
Jun 04 22:58:00 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.a11y.Bus'
Jun 04 22:58:00 AlexArch systemd[710]: Started Accessibility services bus.
Jun 04 22:58:01 AlexArch systemd[710]: Created slice Slice /app/gnome-session-manager.
Jun 04 22:58:01 AlexArch systemd[710]: Reached target GNOME X11 Session.
Jun 04 22:58:01 AlexArch systemd[710]: Reached target Session services which should run early before the graphical session is brought up.
Jun 04 22:58:01 AlexArch systemd[710]: Reached target GNOME Shell.
Jun 04 22:58:01 AlexArch systemd[710]: Starting Monitor Session leader for GNOME Session...
Jun 04 22:58:01 AlexArch systemd[710]: Started Monitor Session leader for GNOME Session.
Jun 04 22:58:01 AlexArch systemd[710]: Reached target Tasks to be run before GNOME Session starts.
Jun 04 22:58:01 AlexArch systemd[710]: Starting GNOME Session Manager (session: gnome)...
Jun 04 22:58:01 AlexArch gnome-keyring-daemon[726]: The PKCS#11 component was already initialized
Jun 04 22:58:01 AlexArch gnome-keyring-daemon[845]: discover_other_daemon: 1
Jun 04 22:58:01 AlexArch gnome-keyring-secrets.desktop[844]: discover_other_daemon: 1GNOME_KEYRING_CONTROL=/run/user/1000/keyring
Jun 04 22:58:01 AlexArch gnome-keyring-d[726]: The PKCS#11 component was already initialized
Jun 04 22:58:01 AlexArch gnome-keyring-pkcs11.desktop[845]: discover_other_daemon: 1GNOME_KEYRING_CONTROL=/run/user/1000/keyring
Jun 04 22:58:01 AlexArch gnome-keyring-daemon[726]: The Secret Service was already initialized
Jun 04 22:58:01 AlexArch gnome-keyring-d[726]: The Secret Service was already initialized
Jun 04 22:58:01 AlexArch gnome-keyring-daemon[844]: discover_other_daemon: 1
Jun 04 22:58:01 AlexArch systemd[710]: app-gnome-gnome\x2dkeyring\x2dsecrets-838.scope: Couldn't move process 838 to requested cgroup '/user.slice/user-1000.slice/user@1000.service/app.slice/app-gnome-gnome\x2dkeyring\x2dsecrets-838.scope': No such process
Jun 04 22:58:01 AlexArch systemd[710]: app-gnome-gnome\x2dkeyring\x2dsecrets-838.scope: Failed to add PIDs to scope's control group: No such process
Jun 04 22:58:01 AlexArch systemd[710]: app-gnome-gnome\x2dkeyring\x2dsecrets-838.scope: Failed with result 'resources'.
Jun 04 22:58:01 AlexArch systemd[710]: Failed to start Application launched by gnome-session-binary.
Jun 04 22:58:01 AlexArch gnome-session[832]: gnome-session-binary[832]: GnomeDesktop-WARNING: Could not create transient scope for PID 843: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Process with ID 843 does not exist.
Jun 04 22:58:01 AlexArch gnome-session-binary[832]: GnomeDesktop-WARNING: Could not create transient scope for PID 843: GDBus.Error:org.freedesktop.DBus.Error.UnixProcessIdUnknown: Process with ID 843 does not exist.
Jun 04 22:58:01 AlexArch systemd[710]: Started Application launched by gnome-session-binary.
Jun 04 22:58:01 AlexArch gnome-keyring-daemon[846]: discover_other_daemon: 1
Jun 04 22:58:01 AlexArch gnome-keyring-ssh.desktop[846]: discover_other_daemon: 1GNOME_KEYRING_CONTROL=/run/user/1000/keyring
Jun 04 22:58:01 AlexArch gnome-keyring-ssh.desktop[846]: SSH_AUTH_SOCK=/run/user/1000/keyring/ssh
Jun 04 22:58:01 AlexArch systemd[710]: Started GNOME Session Manager (session: gnome).
Jun 04 22:58:01 AlexArch systemd[710]: Reached target GNOME Session Manager is ready.
Jun 04 22:58:01 AlexArch systemd[710]: Starting GNOME Shell on Wayland...
Jun 04 22:58:01 AlexArch systemd[710]: Starting GNOME Shell on X11...
Jun 04 22:58:01 AlexArch systemd[710]: org.gnome.Shell@wayland.service: Skipped due to 'exec-condition'.
Jun 04 22:58:01 AlexArch systemd[710]: Condition check resulted in GNOME Shell on Wayland being skipped.
Jun 04 22:58:01 AlexArch gnome-shell[850]: Running GNOME Shell (using mutter 44.2) as a X11 window and compositing manager
Jun 04 22:58:01 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): EDID vendor "LEN", prod id 16464
Jun 04 22:58:01 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Printing DDC gathered Modelines:
Jun 04 22:58:01 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "1280x800"x0.0   71.11  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.4 kHz eP)
Jun 04 22:58:01 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "1280x800"x0.0   60.10  1280 1328 1360 1457  800 803 809 825 -hsync -vsync (41.2 kHz e)
Jun 04 22:58:01 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): EDID vendor "LEN", prod id 16464
Jun 04 22:58:01 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Printing DDC gathered Modelines:
Jun 04 22:58:01 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "1280x800"x0.0   71.11  1280 1328 1360 1440  800 803 809 823 -hsync -vsync (49.4 kHz eP)
Jun 04 22:58:01 AlexArch /usr/lib/gdm-x-session[744]: (II) modeset(0): Modeline "1280x800"x0.0   60.10  1280 1328 1360 1457  800 803 809 825 -hsync -vsync (41.2 kHz e)
Jun 04 22:58:01 AlexArch gnome-shell[850]: Obtained a high priority EGL context
Jun 04 22:58:01 AlexArch gnome-shell[850]: Obtained a high priority EGL context
Jun 04 22:58:02 AlexArch gnome-shell[850]: Unset XDG_SESSION_ID, getCurrentSessionProxy() called outside a user session. Asking logind directly.
Jun 04 22:58:02 AlexArch gnome-shell[850]: Will monitor session 3
Jun 04 22:58:02 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating service name='org.gnome.Shell.Screencast' requested by ':1.17' (uid=1000 pid=850 comm="/usr/bin/gnome-shell")
Jun 04 22:58:02 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating via systemd: service name='org.freedesktop.impl.portal.PermissionStore' unit='xdg-permission-store.service' requested by ':1.17' (uid=1000 pid=850 comm="/usr/bin/gnome-shell")
Jun 04 22:58:02 AlexArch systemd[710]: Starting sandboxed app permission store...
Jun 04 22:58:02 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating service name='org.gnome.Shell.CalendarServer' requested by ':1.17' (uid=1000 pid=850 comm="/usr/bin/gnome-shell")
Jun 04 22:58:02 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.freedesktop.impl.portal.PermissionStore'
Jun 04 22:58:02 AlexArch systemd[710]: Started sandboxed app permission store.
Jun 04 22:58:02 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating via systemd: service name='org.gnome.evolution.dataserver.Sources5' unit='evolution-source-registry.service' requested by ':1.22' (uid=1000 pid=890 comm="/usr/lib/gnome-shell-calendar-server")
Jun 04 22:58:02 AlexArch systemd[710]: Starting Evolution source registry...
Jun 04 22:58:02 AlexArch systemd[710]: Starting Sound Service...
Jun 04 22:58:02 AlexArch rtkit-daemon[436]: Successfully made thread 910 of process 910 owned by '1000' high priority at nice level -11.
Jun 04 22:58:02 AlexArch rtkit-daemon[436]: Supervising 4 threads of 2 processes of 2 users.
Jun 04 22:58:02 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating service name='org.gnome.OnlineAccounts' requested by ':1.23' (uid=1000 pid=899 comm="/usr/lib/evolution-source-registry")
Jun 04 22:58:02 AlexArch polkitd[282]: Registered Authentication Agent for unix-session:3 (system bus name :1.52 [/usr/bin/gnome-shell], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale C.UTF-8)
Jun 04 22:58:02 AlexArch gnome-shell[850]: Telepathy is not available, chat integration will be disabled.
Jun 04 22:58:03 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating via systemd: service name='org.gtk.vfs.UDisks2VolumeMonitor' unit='gvfs-udisks2-volume-monitor.service' requested by ':1.17' (uid=1000 pid=850 comm="/usr/bin/gnome-shell")
Jun 04 22:58:03 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gnome.evolution.dataserver.Sources5'
Jun 04 22:58:03 AlexArch systemd[710]: Starting Virtual filesystem service - disk device monitor...
Jun 04 22:58:03 AlexArch systemd[710]: Started Evolution source registry.
Jun 04 22:58:03 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating via systemd: service name='org.gnome.evolution.dataserver.Calendar8' unit='evolution-calendar-factory.service' requested by ':1.22' (uid=1000 pid=890 comm="/usr/lib/gnome-shell-calendar-server")
Jun 04 22:58:03 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gnome.Shell.CalendarServer'
Jun 04 22:58:03 AlexArch systemd[710]: Starting Evolution calendar service...
Jun 04 22:58:03 AlexArch goa-daemon[915]: goa-daemon version 3.48.0 starting
Jun 04 22:58:03 AlexArch dbus-daemon[247]: [system] Activating via systemd: service name='org.freedesktop.UDisks2' unit='udisks2.service' requested by ':1.54' (uid=1000 pid=918 comm="/usr/lib/gvfs-udisks2-volume-monitor")
Jun 04 22:58:03 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating service name='org.gnome.Identity' requested by ':1.26' (uid=1000 pid=915 comm="/usr/lib/goa-daemon")
Jun 04 22:58:03 AlexArch rtkit-daemon[436]: Supervising 4 threads of 2 processes of 2 users.
Jun 04 22:58:03 AlexArch systemd[1]: Starting Disk Manager...
Jun 04 22:58:03 AlexArch rtkit-daemon[436]: Successfully made thread 935 of process 910 owned by '1000' RT at priority 5.
Jun 04 22:58:03 AlexArch rtkit-daemon[436]: Supervising 5 threads of 2 processes of 2 users.
Jun 04 22:58:03 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gnome.OnlineAccounts'
Jun 04 22:58:03 AlexArch rtkit-daemon[436]: Supervising 5 threads of 2 processes of 2 users.
Jun 04 22:58:03 AlexArch rtkit-daemon[436]: Successfully made thread 939 of process 910 owned by '1000' RT at priority 5.
Jun 04 22:58:03 AlexArch rtkit-daemon[436]: Supervising 6 threads of 2 processes of 2 users.
Jun 04 22:58:03 AlexArch udisksd[931]: udisks daemon version 2.9.4 starting
Jun 04 22:58:03 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gnome.Identity'
Jun 04 22:58:03 AlexArch dbus-daemon[247]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service' requested by ':1.59' (uid=1000 pid=910 comm="/usr/bin/pulseaudio --daemonize=no --log-target=jo")
Jun 04 22:58:03 AlexArch dbus-daemon[247]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service not found.
Jun 04 22:58:03 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gnome.evolution.dataserver.Calendar8'
Jun 04 22:58:03 AlexArch systemd[710]: Started Evolution calendar service.
Jun 04 22:58:03 AlexArch pulseaudio[910]: stat('/etc/pulse/default.pa.d'): No such file or directory
Jun 04 22:58:03 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating via systemd: service name='org.gnome.evolution.dataserver.AddressBook10' unit='evolution-addressbook-factory.service' requested by ':1.25' (uid=1000 pid=921 comm="/usr/lib/evolution-calendar-factory")
Jun 04 22:58:03 AlexArch pulseaudio[910]: GetManagedObjects() failed: org.freedesktop.systemd1.NoSuchUnit: Unit dbus-org.bluez.service not found.
Jun 04 22:58:03 AlexArch systemd[710]: Starting Evolution address book service...
Jun 04 22:58:03 AlexArch systemd[710]: Started Sound Service.
Jun 04 22:58:03 AlexArch dbus-daemon[247]: [system] Successfully activated service 'org.freedesktop.UDisks2'
Jun 04 22:58:03 AlexArch systemd[1]: Started Disk Manager.
Jun 04 22:58:03 AlexArch udisksd[931]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Jun 04 22:58:03 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gtk.vfs.UDisks2VolumeMonitor'
Jun 04 22:58:03 AlexArch systemd[710]: Started Virtual filesystem service - disk device monitor.
Jun 04 22:58:03 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating via systemd: service name='org.gtk.vfs.AfcVolumeMonitor' unit='gvfs-afc-volume-monitor.service' requested by ':1.17' (uid=1000 pid=850 comm="/usr/bin/gnome-shell")
Jun 04 22:58:03 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gnome.evolution.dataserver.AddressBook10'
Jun 04 22:58:03 AlexArch systemd[710]: Starting Virtual filesystem service - Apple File Conduit monitor...
Jun 04 22:58:03 AlexArch systemd[710]: Started Evolution address book service.
Jun 04 22:58:03 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gtk.vfs.AfcVolumeMonitor'
Jun 04 22:58:03 AlexArch systemd[710]: Started Virtual filesystem service - Apple File Conduit monitor.
Jun 04 22:58:03 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating via systemd: service name='org.gtk.vfs.GoaVolumeMonitor' unit='gvfs-goa-volume-monitor.service' requested by ':1.17' (uid=1000 pid=850 comm="/usr/bin/gnome-shell")
Jun 04 22:58:03 AlexArch systemd[710]: Starting Virtual filesystem service - GNOME Online Accounts monitor...
Jun 04 22:58:03 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gtk.vfs.GoaVolumeMonitor'
Jun 04 22:58:03 AlexArch systemd[710]: Started Virtual filesystem service - GNOME Online Accounts monitor.
Jun 04 22:58:03 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating via systemd: service name='org.gtk.vfs.GPhoto2VolumeMonitor' unit='gvfs-gphoto2-volume-monitor.service' requested by ':1.17' (uid=1000 pid=850 comm="/usr/bin/gnome-shell")
Jun 04 22:58:03 AlexArch systemd[710]: Starting Virtual filesystem service - digital camera monitor...
Jun 04 22:58:03 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gtk.vfs.GPhoto2VolumeMonitor'
Jun 04 22:58:03 AlexArch systemd[710]: Started Virtual filesystem service - digital camera monitor.
Jun 04 22:58:03 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating via systemd: service name='org.gtk.vfs.MTPVolumeMonitor' unit='gvfs-mtp-volume-monitor.service' requested by ':1.17' (uid=1000 pid=850 comm="/usr/bin/gnome-shell")
Jun 04 22:58:03 AlexArch systemd[710]: Starting Virtual filesystem service - Media Transfer Protocol monitor...
Jun 04 22:58:03 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gtk.vfs.MTPVolumeMonitor'
Jun 04 22:58:03 AlexArch systemd[710]: Started Virtual filesystem service - Media Transfer Protocol monitor.
Jun 04 22:58:03 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating service name='org.gnome.Shell.Notifications' requested by ':1.17' (uid=1000 pid=850 comm="/usr/bin/gnome-shell")
Jun 04 22:58:03 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gnome.Shell.Notifications'
Jun 04 22:58:03 AlexArch at-spi-bus-launcher[822]: dbus-daemon[822]: Activating service name='org.a11y.atspi.Registry' requested by ':1.1' (uid=1000 pid=850 comm="/usr/bin/gnome-shell")
Jun 04 22:58:03 AlexArch at-spi-bus-launcher[822]: dbus-daemon[822]: Successfully activated service 'org.a11y.atspi.Registry'
Jun 04 22:58:03 AlexArch at-spi-bus-launcher[1024]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Jun 04 22:58:03 AlexArch gnome-shell[850]: Could not issue 'GetUnit' systemd call
Jun 04 22:58:03 AlexArch systemd[710]: Started GNOME Shell on X11.
Jun 04 22:58:03 AlexArch systemd[710]: Reached target GNOME Session is initialized.
Jun 04 22:58:03 AlexArch systemd[710]: Reached target GNOME session X11 services.
Jun 04 22:58:03 AlexArch systemd[710]: Reached target GNOME Session (session: gnome).
Jun 04 22:58:03 AlexArch systemd[710]: Starting Signal initialization done to GNOME Session Manager...
Jun 04 22:58:03 AlexArch systemd[710]: Starting GNOME accessibility service...
Jun 04 22:58:03 AlexArch systemd[710]: Starting GNOME color management service...
Jun 04 22:58:03 AlexArch systemd[710]: Starting GNOME date & time service...
Jun 04 22:58:03 AlexArch systemd[710]: Starting GNOME maintenance of expirable data service...
Jun 04 22:58:03 AlexArch systemd[710]: Starting GNOME keyboard configuration service...
Jun 04 22:58:03 AlexArch systemd[710]: Starting GNOME keyboard shortcuts service...
Jun 04 22:58:03 AlexArch systemd[710]: Starting GNOME power management service...
Jun 04 22:58:03 AlexArch systemd[710]: Starting GNOME printer notifications service...
Jun 04 22:58:03 AlexArch systemd[710]: Starting GNOME RFKill support service...
Jun 04 22:58:03 AlexArch systemd[710]: Starting GNOME FreeDesktop screensaver service...
Jun 04 22:58:03 AlexArch gnome-shell[850]: Failed to launch ibus-daemon: Failed to execute child process “ibus-daemon” (No such file or directory)
Jun 04 22:58:03 AlexArch systemd[710]: Starting GNOME file sharing service...
Jun 04 22:58:03 AlexArch systemd[710]: Starting GNOME smartcard service...
Jun 04 22:58:03 AlexArch systemd[710]: Starting GNOME sound sample caching service...
Jun 04 22:58:03 AlexArch systemd[710]: Starting GNOME USB protection service...
Jun 04 22:58:03 AlexArch systemd[710]: Starting GNOME Wacom tablet support service...
Jun 04 22:58:03 AlexArch systemd[710]: Starting GNOME XSettings service...
Jun 04 22:58:03 AlexArch systemd[710]: Finished Signal initialization done to GNOME Session Manager.
Jun 04 22:58:03 AlexArch systemd[710]: Started Application launched by gnome-session-binary.
Jun 04 22:58:04 AlexArch systemd[710]: Started GNOME accessibility service.
Jun 04 22:58:04 AlexArch systemd[710]: Reached target GNOME accessibility target.
Jun 04 22:58:04 AlexArch gnome-session-binary[832]: Entering running state
Jun 04 22:58:04 AlexArch kernel: rfkill: input handler disabled
Jun 04 22:58:04 AlexArch systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 1099 (snap)
Jun 04 22:58:04 AlexArch systemd[1]: Mounting Arbitrary Executable File Formats File System...
Jun 04 22:58:04 AlexArch systemd[1]: Mounted Arbitrary Executable File Formats File System.
Jun 04 22:58:04 AlexArch systemd[710]: Started GNOME RFKill support service.
Jun 04 22:58:04 AlexArch systemd[710]: Started GNOME FreeDesktop screensaver service.
Jun 04 22:58:04 AlexArch systemd[710]: Started GNOME maintenance of expirable data service.
Jun 04 22:58:04 AlexArch systemd[710]: Started Application launched by gnome-session-binary.
Jun 04 22:58:04 AlexArch systemd[710]: Started Application launched by gnome-session-binary.
Jun 04 22:58:04 AlexArch systemd[710]: Started Application launched by gnome-session-binary.
Jun 04 22:58:04 AlexArch systemd[710]: Started Application launched by gnome-session-binary.
Jun 04 22:58:04 AlexArch systemd[710]: app-gnome-user\x2ddirs\x2dupdate\x2dgtk-1088.scope: Couldn't move process 1088 to requested cgroup '/user.slice/user-1000.slice/user@1000.service/app.slice/app-gnome-user\x2ddirs\x2dupdate\x2dgtk-1088.scope': No such process
Jun 04 22:58:04 AlexArch systemd[710]: app-gnome-user\x2ddirs\x2dupdate\x2dgtk-1088.scope: Failed to add PIDs to scope's control group: No such process
Jun 04 22:58:04 AlexArch systemd[710]: app-gnome-user\x2ddirs\x2dupdate\x2dgtk-1088.scope: Failed with result 'resources'.
Jun 04 22:58:04 AlexArch systemd[710]: Failed to start Application launched by gnome-session-binary.
Jun 04 22:58:04 AlexArch systemd[710]: Reached target GNOME maintenance of expirable data target.
Jun 04 22:58:04 AlexArch systemd[710]: Reached target GNOME RFKill support target.
Jun 04 22:58:04 AlexArch systemd[710]: Reached target GNOME FreeDesktop screensaver target.
Jun 04 22:58:04 AlexArch systemd[710]: Started GNOME smartcard service.
Jun 04 22:58:04 AlexArch systemd[710]: Reached target GNOME smartcard target.
Jun 04 22:58:04 AlexArch systemd[710]: Started GNOME file sharing service.
Jun 04 22:58:04 AlexArch systemd[710]: Reached target GNOME file sharing target.
Jun 04 22:58:04 AlexArch systemd[710]: Started GNOME printer notifications service.
Jun 04 22:58:04 AlexArch systemd[710]: Reached target GNOME printer notifications target.
Jun 04 22:58:04 AlexArch systemd[710]: Started GNOME keyboard configuration service.
Jun 04 22:58:04 AlexArch systemd[710]: Reached target GNOME keyboard configuration target.
Jun 04 22:58:04 AlexArch systemd[710]: Started GNOME sound sample caching service.
Jun 04 22:58:04 AlexArch systemd[710]: Reached target GNOME sound sample caching target.
Jun 04 22:58:04 AlexArch systemd[710]: Started GNOME USB protection service.
Jun 04 22:58:04 AlexArch systemd[710]: Reached target GNOME USB protection target.
Jun 04 22:58:04 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating service name='org.gnome.ScreenSaver' requested by ':1.50' (uid=1000 pid=1075 comm="/usr/lib/gsd-usb-protection")
Jun 04 22:58:04 AlexArch systemd[710]: Started GNOME date & time service.
Jun 04 22:58:04 AlexArch systemd[710]: Reached target GNOME date & time target.
Jun 04 22:58:04 AlexArch systemd[710]: Started GNOME power management service.
Jun 04 22:58:04 AlexArch systemd[710]: Reached target GNOME power management target.
Jun 04 22:58:04 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating via systemd: service name='org.freedesktop.portal.Desktop' unit='xdg-desktop-portal.service' requested by ':1.49' (uid=1000 pid=1106 comm="/usr/bin/gnome-software --gapplication-service")
Jun 04 22:58:04 AlexArch systemd[710]: Starting Portal service...
Jun 04 22:58:04 AlexArch systemd[710]: Started GNOME color management service.
Jun 04 22:58:04 AlexArch systemd[710]: Reached target GNOME color management target.
Jun 04 22:58:04 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating via systemd: service name='org.freedesktop.portal.Documents' unit='xdg-document-portal.service' requested by ':1.59' (uid=1000 pid=1217 comm="/usr/lib/xdg-desktop-portal")
Jun 04 22:58:04 AlexArch systemd[710]: Starting flatpak document portal service...
Jun 04 22:58:04 AlexArch systemd[710]: Started GNOME keyboard shortcuts service.
Jun 04 22:58:04 AlexArch systemd[710]: Reached target GNOME keyboard shortcuts target.
Jun 04 22:58:04 AlexArch systemd[710]: Started GNOME Wacom tablet support service.
Jun 04 22:58:04 AlexArch systemd[710]: Reached target GNOME Wacom tablet support target.
Jun 04 22:58:05 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.freedesktop.portal.Documents'
Jun 04 22:58:05 AlexArch systemd[710]: Started flatpak document portal service.
Jun 04 22:58:05 AlexArch NetworkManager[249]: <info>  [1685912285.0905] agent-manager: agent[27dc61e1bd3b140e,:1.52/org.gnome.Shell.NetworkAgent/1000]: agent registered
Jun 04 22:58:05 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating via systemd: service name='org.freedesktop.impl.portal.desktop.gnome' unit='xdg-desktop-portal-gnome.service' requested by ':1.59' (uid=1000 pid=1217 comm="/usr/lib/xdg-desktop-portal")
Jun 04 22:58:05 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gnome.ScreenSaver'
Jun 04 22:58:05 AlexArch gnome-shell[850]: Error looking up permission: GDBus.Error:org.freedesktop.portal.Error.NotFound: No entry for geolocation
Jun 04 22:58:05 AlexArch gsd-media-keys[1039]: Failed to grab accelerator for keybinding settings:hibernate
Jun 04 22:58:05 AlexArch gsd-media-keys[1039]: Failed to grab accelerator for keybinding settings:playback-repeat
Jun 04 22:58:05 AlexArch gsd-media-keys[1039]: Failed to grab accelerator for keybinding settings:playback-random
Jun 04 22:58:05 AlexArch gsd-media-keys[1039]: Failed to grab accelerator for keybinding settings:rotate-video-lock
Jun 04 22:58:05 AlexArch gsd-usb-protect[1075]: Failed to fetch USBGuard parameters: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.usbguard1 was not provided by any .service files
Jun 04 22:58:05 AlexArch systemd[710]: Started GNOME XSettings service.
Jun 04 22:58:05 AlexArch systemd[710]: GNOME session X11 services is inactive.
Jun 04 22:58:05 AlexArch systemd[710]: Reached target GNOME XSettings target.
Jun 04 22:58:05 AlexArch systemd[710]: Reached target GNOME Session.
Jun 04 22:58:05 AlexArch systemd[710]: Reached target GNOME X11 Session (session: gnome).
Jun 04 22:58:05 AlexArch systemd[710]: Reached target Current graphical user session.
Jun 04 22:58:05 AlexArch systemd[710]: Starting Portal service (GNOME implementation)...
Jun 04 22:58:06 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating via systemd: service name='org.gtk.vfs.Metadata' unit='gvfs-metadata.service' requested by ':1.17' (uid=1000 pid=850 comm="/usr/bin/gnome-shell")
Jun 04 22:58:06 AlexArch systemd[710]: Starting Virtual filesystem metadata service...
Jun 04 22:58:06 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gtk.vfs.Metadata'
Jun 04 22:58:06 AlexArch systemd[710]: Started Virtual filesystem metadata service.
Jun 04 22:58:07 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.freedesktop.impl.portal.desktop.gnome'
Jun 04 22:58:07 AlexArch systemd[710]: Started Portal service (GNOME implementation).
Jun 04 22:58:07 AlexArch rtkit-daemon[436]: Supervising 6 threads of 2 processes of 2 users.
Jun 04 22:58:07 AlexArch rtkit-daemon[436]: Supervising 6 threads of 2 processes of 2 users.
Jun 04 22:58:07 AlexArch rtkit-daemon[436]: Supervising 6 threads of 2 processes of 2 users.
Jun 04 22:58:07 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating via systemd: service name='org.freedesktop.impl.portal.desktop.gtk' unit='xdg-desktop-portal-gtk.service' requested by ':1.59' (uid=1000 pid=1217 comm="/usr/lib/xdg-desktop-portal")
Jun 04 22:58:07 AlexArch systemd[710]: Starting Portal service (GTK/GNOME implementation)...
Jun 04 22:58:07 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.freedesktop.impl.portal.desktop.gtk'
Jun 04 22:58:07 AlexArch systemd[710]: Started Portal service (GTK/GNOME implementation).
Jun 04 22:58:07 AlexArch systemd[710]: Started PipeWire Multimedia Service.
Jun 04 22:58:07 AlexArch rtkit-daemon[436]: Supervising 6 threads of 2 processes of 2 users.
Jun 04 22:58:07 AlexArch rtkit-daemon[436]: Successfully made thread 1324 of process 1324 owned by '1000' high priority at nice level -11.
Jun 04 22:58:07 AlexArch rtkit-daemon[436]: Supervising 7 threads of 3 processes of 2 users.
Jun 04 22:58:07 AlexArch rtkit-daemon[436]: Supervising 7 threads of 3 processes of 2 users.
Jun 04 22:58:07 AlexArch rtkit-daemon[436]: Supervising 7 threads of 3 processes of 2 users.
Jun 04 22:58:07 AlexArch rtkit-daemon[436]: Successfully made thread 1326 of process 1324 owned by '1000' RT at priority 20.
Jun 04 22:58:07 AlexArch rtkit-daemon[436]: Supervising 8 threads of 3 processes of 2 users.
Jun 04 22:58:07 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.freedesktop.portal.Desktop'
Jun 04 22:58:07 AlexArch systemd[710]: Started Portal service.
Jun 04 22:58:08 AlexArch gnome-software[1106]: Failed to load /usr/lib/gnome-software/plugins-20/libgs_plugin_fwupd.so: failed to open plugin /usr/lib/gnome-software/plugins-20/libgs_plugin_fwupd.so: libfwupd.so.2: cannot open shared object file: No such file or directory
Jun 04 22:58:08 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating service name='org.gnome.Epiphany.WebAppProvider' requested by ':1.49' (uid=1000 pid=1106 comm="/usr/bin/gnome-software --gapplication-service")
Jun 04 22:58:08 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gnome.Epiphany.WebAppProvider'
Jun 04 22:58:08 AlexArch gnome-shell[850]: GNOME Shell started at Sun Jun 04 2023 22:58:03 GMT+0200 (Central European Summer Time)
Jun 04 22:58:08 AlexArch gnome-shell[850]: Registering session with GDM
Jun 04 22:58:08 AlexArch gsd-rfkill[481]: Error releasing name org.gnome.SettingsDaemon.Rfkill: The connection is closed
Jun 04 22:58:08 AlexArch gsd-sharing[463]: Error releasing name org.gnome.SettingsDaemon.Sharing: The connection is closed
Jun 04 22:58:08 AlexArch gsd-print-notif[476]: Error releasing name org.gnome.SettingsDaemon.PrintNotifications: The connection is closed
Jun 04 22:58:08 AlexArch gsd-screensaver[513]: Error releasing name org.freedesktop.ScreenSaver: The connection is closed
Jun 04 22:58:08 AlexArch org.gnome.Shell.desktop[381]: XIO:  fatal IO error 104 (Connection reset by peer) on X server ":0"
Jun 04 22:58:08 AlexArch org.gnome.Shell.desktop[381]:       after 3480 requests (3479 known processed) with 4 events remaining.
Jun 04 22:58:08 AlexArch gsd-sound[522]: Error releasing name org.gnome.SettingsDaemon.Sound: The connection is closed
Jun 04 22:58:08 AlexArch gsd-smartcard[494]: Error releasing name org.gnome.SettingsDaemon.Smartcard: The connection is closed
Jun 04 22:58:08 AlexArch /usr/lib/gdm-x-session[330]: (II) UnloadModule: "libinput"
Jun 04 22:58:08 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: releasing fd for 13:76
Jun 04 22:58:08 AlexArch /usr/lib/gdm-x-session[330]: (II) UnloadModule: "libinput"
Jun 04 22:58:08 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: releasing fd for 13:75
Jun 04 22:58:08 AlexArch /usr/lib/gdm-x-session[330]: (II) UnloadModule: "libinput"
Jun 04 22:58:08 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: releasing fd for 13:67
Jun 04 22:58:08 AlexArch /usr/lib/gdm-x-session[330]: (II) UnloadModule: "libinput"
Jun 04 22:58:08 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: releasing fd for 13:68
Jun 04 22:58:08 AlexArch /usr/lib/gdm-x-session[330]: (II) UnloadModule: "libinput"
Jun 04 22:58:08 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: releasing fd for 13:65
Jun 04 22:58:08 AlexArch /usr/lib/gdm-x-session[330]: (II) UnloadModule: "libinput"
Jun 04 22:58:08 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: releasing fd for 13:69
Jun 04 22:58:08 AlexArch polkitd[282]: Unregistered Authentication Agent for unix-session:1 (system bus name :1.17, object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale C.UTF-8) (disconnected from bus)
Jun 04 22:58:08 AlexArch /usr/lib/gdm-x-session[330]: (II) UnloadModule: "libinput"
Jun 04 22:58:08 AlexArch /usr/lib/gdm-x-session[330]: (II) systemd-logind: releasing fd for 13:66
Jun 04 22:58:08 AlexArch /usr/lib/gdm-x-session[330]: (II) Server terminated successfully (0). Closing log file.
Jun 04 22:58:08 AlexArch systemd-logind[248]: Session 1 logged out. Waiting for processes to exit.
Jun 04 22:58:08 AlexArch systemd[1]: session-1.scope: Deactivated successfully.
Jun 04 22:58:08 AlexArch systemd[1]: session-1.scope: Consumed 5.325s CPU time.
Jun 04 22:58:08 AlexArch systemd-logind[248]: Removed session 1.
Jun 04 22:58:08 AlexArch gdm[258]: Gdm: Child process -328 was already dead.
Jun 04 22:58:09 AlexArch systemd[710]: Started Application launched by gnome-shell.
Jun 04 22:58:10 AlexArch firefox.desktop[1366]: [GFX1-]: glxtest: VA-API test failed: failed to initialise VAAPI connection.
Jun 04 22:58:10 AlexArch firefox.desktop[1366]: ATTENTION: default value of option mesa_glthread overridden by environment.
Jun 04 22:58:11 AlexArch rtkit-daemon[436]: Supervising 5 threads of 2 processes of 2 users.
Jun 04 22:58:11 AlexArch rtkit-daemon[436]: Supervising 5 threads of 2 processes of 2 users.
Jun 04 22:58:11 AlexArch rtkit-daemon[436]: Supervising 5 threads of 2 processes of 2 users.
Jun 04 22:58:11 AlexArch rtkit-daemon[436]: Supervising 5 threads of 2 processes of 2 users.
Jun 04 22:58:11 AlexArch rtkit-daemon[436]: Supervising 5 threads of 2 processes of 2 users.
Jun 04 22:58:11 AlexArch rtkit-daemon[436]: Supervising 5 threads of 2 processes of 2 users.
Jun 04 22:58:11 AlexArch rtkit-daemon[436]: Successfully made thread 1460 of process 1366 owned by '1000' RT at priority 10.
Jun 04 22:58:11 AlexArch rtkit-daemon[436]: Supervising 6 threads of 3 processes of 2 users.
Jun 04 22:58:11 AlexArch gnome-software[1106]: Only 5 apps for curated list, hiding
Jun 04 22:58:12 AlexArch rtkit-daemon[436]: Supervising 6 threads of 3 processes of 2 users.
Jun 04 22:58:12 AlexArch rtkit-daemon[436]: Supervising 6 threads of 3 processes of 2 users.
Jun 04 22:58:12 AlexArch rtkit-daemon[436]: Supervising 6 threads of 3 processes of 2 users.
Jun 04 22:58:12 AlexArch rtkit-daemon[436]: Supervising 6 threads of 3 processes of 2 users.
Jun 04 22:58:13 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating service name='org.gnome.Contacts.SearchProvider' requested by ':1.17' (uid=1000 pid=850 comm="/usr/bin/gnome-shell")
Jun 04 22:58:13 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating service name='org.gnome.Nautilus' requested by ':1.17' (uid=1000 pid=850 comm="/usr/bin/gnome-shell")
Jun 04 22:58:13 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating service name='org.gnome.Calculator.SearchProvider' requested by ':1.17' (uid=1000 pid=850 comm="/usr/bin/gnome-shell")
Jun 04 22:58:13 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating service name='org.gnome.Calendar' requested by ':1.17' (uid=1000 pid=850 comm="/usr/bin/gnome-shell")
Jun 04 22:58:13 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating service name='org.gnome.clocks' requested by ':1.17' (uid=1000 pid=850 comm="/usr/bin/gnome-shell")
Jun 04 22:58:13 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating service name='org.gnome.Photos' requested by ':1.17' (uid=1000 pid=850 comm="/usr/bin/gnome-shell")
Jun 04 22:58:13 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating service name='org.gnome.Settings.SearchProvider' requested by ':1.17' (uid=1000 pid=850 comm="/usr/bin/gnome-shell")
Jun 04 22:58:13 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gnome.Settings.SearchProvider'
Jun 04 22:58:13 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gnome.clocks'
Jun 04 22:58:14 AlexArch nautilus[1552]: Connecting to org.freedesktop.Tracker3.Miner.Files
Jun 04 22:58:14 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gnome.Nautilus'
Jun 04 22:58:14 AlexArch gnome-shell[850]: value "-nan" of type 'gfloat' is invalid or out of range for property 'translation-x' of type 'gfloat'
Jun 04 22:58:14 AlexArch gnome-shell[850]: value "-nan" of type 'gfloat' is invalid or out of range for property 'translation-y' of type 'gfloat'
Jun 04 22:58:14 AlexArch rtkit-daemon[436]: Supervising 6 threads of 3 processes of 1 users.
Jun 04 22:58:14 AlexArch rtkit-daemon[436]: Supervising 6 threads of 3 processes of 1 users.
Jun 04 22:58:14 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating service name='org.gnome.Console' requested by ':1.17' (uid=1000 pid=850 comm="/usr/bin/gnome-shell")
Jun 04 22:58:14 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gnome.Contacts.SearchProvider'
Jun 04 22:58:14 AlexArch dbus-daemon[247]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service' requested by ':1.87' (uid=1000 pid=1558 comm="/usr/lib/gnome-contacts-search-provider")
Jun 04 22:58:14 AlexArch dbus-daemon[247]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service not found.
Jun 04 22:58:14 AlexArch dbus-daemon[247]: [system] Activating via systemd: service name='org.freedesktop.timedate1' unit='dbus-org.freedesktop.timedate1.service' requested by ':1.88' (uid=1000 pid=1563 comm="/usr/bin/gnome-calendar --gapplication-service")
Jun 04 22:58:14 AlexArch systemd[1]: Starting Time & Date Service...
Jun 04 22:58:14 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gnome.Photos'
Jun 04 22:58:14 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gnome.Calculator.SearchProvider'
Jun 04 22:58:14 AlexArch dbus-daemon[247]: [system] Successfully activated service 'org.freedesktop.timedate1'
Jun 04 22:58:14 AlexArch systemd[1]: Started Time & Date Service.
Jun 04 22:58:14 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gnome.Calendar'
Jun 04 22:58:14 AlexArch gnome-calculato[1562]: search-provider.vala:117: Failed to spawn Calculator: Child process killed by signal 9
Jun 04 22:58:14 AlexArch gnome-shell[850]: clutter_actor_allocate: assertion '!isnan (real_allocation.x1) && !isnan (real_allocation.x2) && !isnan (real_allocation.y1) && !isnan (real_allocation.y2)' failed
Jun 04 22:58:14 AlexArch gnome-shell[850]: clutter_actor_allocate: assertion '!isnan (real_allocation.x1) && !isnan (real_allocation.x2) && !isnan (real_allocation.y1) && !isnan (real_allocation.y2)' failed
Jun 04 22:58:14 AlexArch gnome-shell[850]: Can't update stage views actor <unnamed>[<ClutterClone>:0x55f56a5c4e30] is on because it needs an allocation.
Jun 04 22:58:15 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gnome.Console'
Jun 04 22:58:15 AlexArch gnome-shell[850]: Received error from D-Bus search provider org.gnome.Calculator.desktop: Gio.DBusError: GDBus.Error:org.freedesktop.DBus.Error.Spawn.Failed: Child process killed by signal 9
Jun 04 22:58:15 AlexArch gnome-shell[850]: clutter_actor_allocate: assertion '!isnan (real_allocation.x1) && !isnan (real_allocation.x2) && !isnan (real_allocation.y1) && !isnan (real_allocation.y2)' failed
Jun 04 22:58:15 AlexArch gnome-shell[850]: clutter_actor_allocate: assertion '!isnan (real_allocation.x1) && !isnan (real_allocation.x2) && !isnan (real_allocation.y1) && !isnan (real_allocation.y2)' failed
Jun 04 22:58:16 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating via systemd: service name='org.freedesktop.Tracker3.Miner.Files' unit='tracker-miner-fs-3.service' requested by ':1.72' (uid=1000 pid=1552 comm="/usr/bin/nautilus --gapplication-service")
Jun 04 22:58:16 AlexArch systemd[710]: Created slice User Background Tasks Slice.
Jun 04 22:58:16 AlexArch systemd[710]: Starting Tracker file system data miner...
Jun 04 22:58:16 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating via systemd: service name='ca.desrt.dconf' unit='dconf.service' requested by ':1.17' (uid=1000 pid=850 comm="/usr/bin/gnome-shell")
Jun 04 22:58:16 AlexArch systemd[710]: Starting User preferences database...
Jun 04 22:58:16 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'ca.desrt.dconf'
Jun 04 22:58:16 AlexArch systemd[710]: Started User preferences database.
Jun 04 22:58:16 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating service name='org.gnome.DiskUtility' requested by ':1.72' (uid=1000 pid=1552 comm="/usr/bin/nautilus --gapplication-service")
Jun 04 22:58:16 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.gnome.DiskUtility'
Jun 04 22:58:16 AlexArch systemd[710]: Started VTE child process 1718 launched by kgx process 1617.
Jun 04 22:58:17 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Activating service name='com.intel.dleyna-renderer' requested by ':1.75' (uid=1000 pid=1561 comm="/usr/bin/gnome-photos --gapplication-service")
Jun 04 22:58:17 AlexArch dleyna-renderer-service[1730]: dLeyna core version 0.8.2
Jun 04 22:58:17 AlexArch dleyna-renderer-service[1730]: dleyna-renderer-service version 0.8.2
Jun 04 22:58:17 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'com.intel.dleyna-renderer'
Jun 04 22:58:17 AlexArch kernel: warning: `dleyna-renderer' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
Jun 04 22:58:18 AlexArch systemd-timesyncd[231]: Contacted time server 93.94.88.50:123 (2.arch.pool.ntp.org).
Jun 04 22:58:18 AlexArch systemd-timesyncd[231]: Initial clock synchronization to Sun 2023-06-04 22:58:18.839799 CEST.
Jun 04 22:58:18 AlexArch dbus-daemon[735]: [session uid=1000 pid=735] Successfully activated service 'org.freedesktop.Tracker3.Miner.Files'
Jun 04 22:58:18 AlexArch systemd[710]: Started Tracker file system data miner.
Jun 04 22:58:18 AlexArch systemd[1]: Stopping User Manager for UID 120...
Jun 04 22:58:18 AlexArch systemd[305]: Activating special unit Exit the Session...
Jun 04 22:58:18 AlexArch systemd[305]: Stopped target Bluetooth.
Jun 04 22:58:18 AlexArch systemd[305]: Stopped target Main User Target.
Jun 04 22:58:18 AlexArch systemd[305]: Stopped target Sound Card.
Jun 04 22:58:18 AlexArch systemd[305]: Stopping D-Bus User Message Bus...
Jun 04 22:58:18 AlexArch systemd[305]: Stopped D-Bus User Message Bus.
Jun 04 22:58:18 AlexArch systemd[305]: Removed slice User Core Session Slice.
Jun 04 22:58:18 AlexArch systemd[305]: Stopped target Basic System.
Jun 04 22:58:18 AlexArch systemd[305]: Stopped target Paths.
Jun 04 22:58:18 AlexArch systemd[305]: Stopped target Sockets.
Jun 04 22:58:18 AlexArch systemd[305]: Stopped target Timers.
Jun 04 22:58:18 AlexArch systemd[305]: Closed D-Bus User Message Bus Socket.
Jun 04 22:58:18 AlexArch systemd[305]: Closed GnuPG network certificate management daemon.
Jun 04 22:58:18 AlexArch systemd[305]: Closed GCR ssh-agent wrapper.
Jun 04 22:58:18 AlexArch systemd[305]: Closed GNOME Keyring daemon.
Jun 04 22:58:18 AlexArch systemd[305]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jun 04 22:58:18 AlexArch systemd[305]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
Jun 04 22:58:18 AlexArch systemd[305]: Closed GnuPG cryptographic agent (ssh-agent emulation).
Jun 04 22:58:18 AlexArch systemd[305]: Closed GnuPG cryptographic agent and passphrase cache.
Jun 04 22:58:18 AlexArch systemd[305]: Closed p11-kit server.
Jun 04 22:58:18 AlexArch systemd[305]: Closed PipeWire Multimedia System Socket.
Jun 04 22:58:18 AlexArch systemd[305]: Closed Sound System.
Jun 04 22:58:18 AlexArch systemd[305]: Removed slice User Application Slice.
Jun 04 22:58:18 AlexArch systemd[305]: Reached target Shutdown.
Jun 04 22:58:18 AlexArch systemd[305]: Finished Exit the Session.
Jun 04 22:58:18 AlexArch systemd[305]: Reached target Exit the Session.
Jun 04 22:58:18 AlexArch systemd[1]: user@120.service: Deactivated successfully.
Jun 04 22:58:18 AlexArch systemd[1]: Stopped User Manager for UID 120.
Jun 04 22:58:19 AlexArch systemd[1]: Stopping User Runtime Directory /run/user/120...
Jun 04 22:58:19 AlexArch systemd[1]: run-user-120.mount: Deactivated successfully.
Jun 04 22:58:19 AlexArch systemd[1]: user-runtime-dir@120.service: Deactivated successfully.
Jun 04 22:58:19 AlexArch systemd[1]: Stopped User Runtime Directory /run/user/120.
Jun 04 22:58:19 AlexArch systemd[1]: Removed slice User Slice of UID 120.
Jun 04 22:58:19 AlexArch systemd[1]: user-120.slice: Consumed 5.877s CPU time.
Jun 04 22:58:19 AlexArch firefox.desktop[1366]: [ERROR glean_core] Error setting metrics feature config: Json(Error("EOF while parsing a value", line: 1, column: 0))
Jun 04 22:58:19 AlexArch /usr/lib/gdm-x-session[744]: (II) Axis 0x1 value 1208 is outside expected range [1244, 4833]
Jun 04 22:58:19 AlexArch /usr/lib/gdm-x-session[744]: See https://wayland.freedesktop.org/libinput/doc/1.23.0/absolute_coordinate_ranges.html for details
Jun 04 22:58:20 AlexArch rtkit-daemon[436]: Supervising 6 threads of 3 processes of 1 users.
Jun 04 22:58:20 AlexArch rtkit-daemon[436]: Supervising 6 threads of 3 processes of 1 users.
Jun 04 22:58:20 AlexArch rtkit-daemon[436]: Supervising 6 threads of 3 processes of 1 users.
Jun 04 22:58:20 AlexArch rtkit-daemon[436]: Supervising 6 threads of 3 processes of 1 users.
Jun 04 22:58:20 AlexArch rtkit-daemon[436]: Supervising 6 threads of 3 processes of 1 users.
Jun 04 22:58:20 AlexArch rtkit-daemon[436]: Supervising 6 threads of 3 processes of 1 users.
Jun 04 22:58:21 AlexArch dleyna-renderer-service[1730]: dLeyna: Exit

13s boot.

Offline

#13 2023-06-04 21:08:49

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

Re: [SOLVED] Hardware clock updating only when plugged in.

#11 is bad on battery and #12 is good on AC?
Search both for "tsc"…

Then disbale hpet and/or set tsc=unstable

Offline

#14 2023-06-04 21:31:16

Alexjust
Member
Registered: 2022-09-01
Posts: 15

Re: [SOLVED] Hardware clock updating only when plugged in.

It worked! I have no idea what could have caused it. Thank you so much for your help (: don't think I could have figured it out if I had 100 years to do it.
Do you have any idea why it happened only when the power was disconnected?
Thanks again for your help

Last edited by Alexjust (2023-06-04 21:31:38)

Offline

#15 2023-06-04 21:56:54

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

Re: [SOLVED] Hardware clock updating only when plugged in.

The TSC probably falls apart because the CPU downscales on battery and the system switches to the HPET which has an ~45s drift
Make sure the system time doesn't run away (from the wall clock)

Please always remember to mark resolved threads by editing your initial posts subject - so others will know that there's no task left, but maybe a solution to find.
Thanks.

Offline

#16 2023-06-04 22:34:03

Alexjust
Member
Registered: 2022-09-01
Posts: 15

Re: [SOLVED] Hardware clock updating only when plugged in.

Thanks a lot!

Offline

#17 2023-06-05 05:57:52

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

Re: [SOLVED] Hardware clock updating only when plugged in.

Addendum:
https://bugzilla.kernel.org/show_bug.cgi?id=203183#c21
https://bugzilla.kernel.org/show_bug.cgi?id=203183#c41

Did you use tsc=unstable or "hpet=disable" and what is the resulting clocksource?
https://en.wikipedia.org/wiki/High_Prec … patibility states thatthe HPET has abysmally more overhead than the TSC (the cited RH document is from 2016)

Offline

#18 2023-06-05 06:01:25

Alexjust
Member
Registered: 2022-09-01
Posts: 15

Re: [SOLVED] Hardware clock updating only when plugged in.

I have disabled both

"... quiet hpet=disabled tsc=unstable"

I don't know what you mean with "resulting clocksource"

Offline

#19 2023-06-05 06:15:10

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

Re: [SOLVED] Hardware clock updating only when plugged in.

The journal/dmesg will tell which clocksources are used, the last one it ultimately choses is the result of your intervention. If you canreliably, you want that to be TSC.

Offline

Board footer

Powered by FluxBB