You are not logged in.

#1 2023-06-19 01:01:17

PatoPan
Member
Registered: 2023-06-02
Posts: 14

[Solved] My xorg.conf.d file doesn't work... but xorg.conf does

I have an xorg.conf.d file called 20-igpu.conf that prevents xfce4 from starting with no ctrl+alt+F# shortcut working, and it looks like this

Section "Device"
	Identifier "Card0"
	Driver "modesetting"
	BusID "PCI:0:2:0"
EndSection

Without this file, my device boots normally. In this session, I generated an xorg.conf file that looks like this

Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "Screen0" 0 0
	Screen      1  "Screen1" RightOf "Screen0"
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
	ModulePath   "/usr/lib/xorg/modules"
	FontPath     "/usr/share/fonts/misc"
	FontPath     "/usr/share/fonts/TTF"
	FontPath     "/usr/share/fonts/OTF"
	FontPath     "/usr/share/fonts/Type1"
	FontPath     "/usr/share/fonts/100dpi"
	FontPath     "/usr/share/fonts/75dpi"
EndSection

Section "Module"
	Load  "glx"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "auto"
	Option	    "Device" "/dev/input/mice"
	Option	    "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
	Identifier   "Monitor0"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
EndSection

Section "Monitor"
	Identifier   "Monitor1"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "SWcursor"           	# [<bool>]
        #Option     "kmsdev"             	# <str>
        #Option     "ShadowFB"           	# [<bool>]
        #Option     "AccelMethod"        	# <str>
        #Option     "PageFlip"           	# [<bool>]
        #Option     "ZaphodHeads"        	# <str>
        #Option     "DoubleShadow"       	# [<bool>]
        #Option     "Atomic"             	# [<bool>]
        #Option     "VariableRefresh"    	# [<bool>]
        #Option     "UseGammaLUT"        	# [<bool>]
        #Option     "AsyncFlipSecondaries" 	# [<bool>]
	Identifier  "Card0"
	Driver      "modesetting"
	BusID       "PCI:0:2:0"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "SWcursor"           	# [<bool>]
        #Option     "kmsdev"             	# <str>
        #Option     "ShadowFB"           	# [<bool>]
        #Option     "AccelMethod"        	# <str>
        #Option     "PageFlip"           	# [<bool>]
        #Option     "ZaphodHeads"        	# <str>
        #Option     "DoubleShadow"       	# [<bool>]
        #Option     "Atomic"             	# [<bool>]
        #Option     "VariableRefresh"    	# [<bool>]
        #Option     "UseGammaLUT"        	# [<bool>]
        #Option     "AsyncFlipSecondaries" 	# [<bool>]
	Identifier  "Card1"
	Driver      "modesetting"
	BusID       "PCI:1:0:0"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	SubSection "Display"
		Viewport   0 0
		Depth     1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

Section "Screen"
	Identifier "Screen1"
	Device     "Card1"
	Monitor    "Monitor1"
	SubSection "Display"
		Viewport   0 0
		Depth     1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

I noticed that the device sections are pretty much the same and there's nothing out of the ordinary. Also that many people online had done this exact thing with no issue...... then, what am I doing wrong? I am at a loss, isn't this how xorg.conf.d files are supposed to work? Just have the setting overwrite/take priority over whatever's been autogenerated? What's the difference between these two file? I am so lost.

I look at the logs, and end up with no clue. No error reports, nothing stands out. Xorg.0.log.old lightdm.log.old x-0.log.old

There's many things I had tried already, such as setting an identifier for card0 as well, using a clean install with only intel drivers installed, defining a server layout with the same settings as xorg.conf, and much more. Of course, during my attempts, xorg.conf was also non-existent. My goal is to make my device only use my intel igpu, this should allow me to passthrough my nvidia gpu to my vm. I don't think I can move forward with doing gpu passthrough or doing any other thing to reserve my gpu to my vms without fixing this issue. It seems like only using full xorg.conf configurations has worked for me so far, but avoiding that would be for the best and could provide more flexibility.

Solution

Last edited by PatoPan (2023-06-19 14:51:11)

Offline

#2 2023-06-19 02:51:14

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 30,471
Website

Re: [Solved] My xorg.conf.d file doesn't work... but xorg.conf does

PatoPan wrote:

... that prevents xfce4 from starting with no ctrl+alt+F# shortcut working

What?  That config block has absolutely nothing to do with Ctl+Alt+F# shortcuts.  EDIT: nevermind, I see I misread.  Using that snippet resulted in a failure to start xfce4 and a condition in which you could not switch to another tty, right.  Clearly something did start though, or you'd just be back at the tty.  A journal / log from such a failed session would be good - would this be one of the two linked at the end of your post?  Which one?

PatoPan wrote:

... I generated an xorg.conf file

How did you generate it?  And why?

PatoPan wrote:

... using a clean install with only intel drivers installed

I'm not sure I should ask, as this also has nothing to do with the topic, but why do you have the intel drivers installed if you explicitly specify to use modesetting?  In most cases you'd want mode setting and should not have the intel DDX drivers installed.

PatoPan wrote:

My goal is to make my device only use my intel igpu, this should allow me to passthrough my nvidia gpu

So this is a hybrid graphics system ... did you follow the wiki page for that?  And if this actually is your goal, what was the red herring about ctrl+alt+f# shortcuts for?

Then there are the two logs ... one of those was clearly with lightdm, but the other appears it wasn't.  Was that just from startx/xinit?  Did you change many variables at once using a short xorg.conf.d snippet with xinit and a full xorg.conf with lightdm?  If so, I'd not infer any differences to be related to those files but quite possibly to the DM.

Last edited by Trilby (2023-06-19 02:53:32)


"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman

Offline

#3 2023-06-19 03:19:12

PatoPan
Member
Registered: 2023-06-02
Posts: 14

Re: [Solved] My xorg.conf.d file doesn't work... but xorg.conf does

Trilby wrote:

would this be one of the two linked at the end of your post?  Which one?

Trilby wrote:

Then there are the two logs ... one of those was clearly with lightdm, but the other appears it wasn't.  Was that just from startx/xinit?  Did you change many variables at once using a short xorg.conf.d snippet with xinit and a full xorg.conf with lightdm?  If so, I'd not infer any differences to be related to those files but quite possibly to the DM.

both are from the same failed session, the difference is that one comes from xorg and the other is from lightdm. These files are located under /var/log/. All I did was boot up the computer, I did not run commands.

The logs which occur on the same session portray a configuration where /etc/X11/xorg.conf doesn't exist. In this session there is a 00-keyboard.conf file and 20-igpu.conf under /etc/X11/xorg.conf.d/

The logs don't portray the case where I used the xorg.conf configuration provided above (the one with a lot more lines of code). Using that file led me to a working configuration, as opposed to 20-igpu.conf

Trilby wrote:

How did you generate it? And why?

this was done with xorg :1 -configure. This was done to troubleshoot the issue and to see what a working xorg configuration that only uses intel looks like. This was generated before installing nvidia proprietary drivers. This was also done to see if my iGPU was causing the issue instead of being a configuration error.

Trilby wrote:

why do you have the intel drivers installed if you explicitly specify to use modesetting?

I only installed the mesa and vulkan packages. I didn't install xf86-video-intel

Offline

#4 2023-06-19 06:30:59

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 76,337

Re: [Solved] My xorg.conf.d file doesn't work... but xorg.conf does

This is a hybrid graphics setup and there're apparently no outputs connected to the intel chip.

	Driver      "modesetting"
	BusID       "PCI:1:0:0"

from the xorg.conf assigns the modesetting driver to the nvidia GPU.

pacman -Qs nvidia
lspci -k

Remove *any* xorg config you generated (if you want to preserve it, move it out of /etc/X11 and /usr/share/X11), start X11 and post an updated journal.
Then explain the point of the  20-igpu.conf you generated.

Offline

#5 2023-06-19 11:26:59

PatoPan
Member
Registered: 2023-06-02
Posts: 14

Re: [Solved] My xorg.conf.d file doesn't work... but xorg.conf does

Everything I had mentioned before relates to session 0, where the device failed to show a desktop environment and I was left with just logs on my screen. No way to access a virtual console. In this session, no nvidia packages were installed which is why nvidia uses modesetting. Only intel packages were installed (mesa lib32-mesa vulkan-intel lib32-vulkan-intel intel-media-driver)

The output below will relate to session 1. Session 1 has no xorg files, the desktop environment started properly, and nvidia packages are installed (nvidia nvidia-utils lib32-nvidia-utils). There were no problems with this session, and xorg would be using my nvidia gpu (displayed under card0 instead of the intel pci you would see nvidia's. nvidia-smi command would also show xorg is using the gpu). nvidia doesn't use modesetting since it's packages are now installed.

pacman -Qs nvidia

local/egl-wayland 2:1.1.12-1
    EGLStream-based Wayland external platform
local/lib32-nvidia-utils 535.54.03-1
    NVIDIA drivers utilities (32-bit)
local/nvidia 535.54.03-2
    NVIDIA drivers for linux
local/nvidia-utils 535.54.03-1
    NVIDIA drivers utilities

lspci -k (glad to see I am not the only one that misspells this command at times)

00:00.0 Host bridge: Intel Corporation Device 4650 (rev 05)
	DeviceName: Onboard - Other
	Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7d41
00:01.0 PCI bridge: Intel Corporation 12th Gen Core Processor PCI Express x16 Controller #1 (rev 05)
	Subsystem: Micro-Star International Co., Ltd. [MSI] 12th Gen Core Processor PCI Express x16 Controller
	Kernel driver in use: pcieport
00:02.0 Display controller: Intel Corporation Alder Lake-S GT1 [UHD Graphics 730] (rev 0c)
	DeviceName: Onboard - Video
	Subsystem: Micro-Star International Co., Ltd. [MSI] Alder Lake-S GT1 [UHD Graphics 730]
	Kernel driver in use: i915
	Kernel modules: i915
00:06.0 PCI bridge: Intel Corporation 12th Gen Core Processor PCI Express x4 Controller #0 (rev 05)
	Kernel driver in use: pcieport
00:08.0 System peripheral: Intel Corporation 12th Gen Core Processor Gaussian & Neural Accelerator (rev 05)
	DeviceName: Onboard - Other
	Subsystem: Micro-Star International Co., Ltd. [MSI] 12th Gen Core Processor Gaussian & Neural Accelerator
00:0a.0 Signal processing controller: Intel Corporation Platform Monitoring Technology (rev 01)
	DeviceName: Onboard - Other
	Kernel driver in use: intel_vsec
	Kernel modules: intel_vsec
00:14.0 USB controller: Intel Corporation Alder Lake-S PCH USB 3.2 Gen 2x2 XHCI Controller (rev 11)
	DeviceName: Onboard - Other
	Subsystem: Micro-Star International Co., Ltd. [MSI] Alder Lake-S PCH USB 3.2 Gen 2x2 XHCI Controller
	Kernel driver in use: xhci_hcd
	Kernel modules: xhci_pci
00:14.2 RAM memory: Intel Corporation Alder Lake-S PCH Shared SRAM (rev 11)
	DeviceName: Onboard - Other
00:14.3 Network controller: Intel Corporation Alder Lake-S PCH CNVi WiFi (rev 11)
	DeviceName: Onboard - Ethernet
	Subsystem: Intel Corporation Wi-Fi 6 AX201 160MHz
	Kernel driver in use: iwlwifi
	Kernel modules: iwlwifi
00:16.0 Communication controller: Intel Corporation Alder Lake-S PCH HECI Controller #1 (rev 11)
	DeviceName: Onboard - Other
	Subsystem: Micro-Star International Co., Ltd. [MSI] Alder Lake-S PCH HECI Controller
	Kernel driver in use: mei_me
	Kernel modules: mei_me
00:17.0 SATA controller: Intel Corporation Alder Lake-S PCH SATA Controller [AHCI Mode] (rev 11)
	DeviceName: Onboard - SATA
	Subsystem: Micro-Star International Co., Ltd. [MSI] Alder Lake-S PCH SATA Controller [AHCI Mode]
	Kernel driver in use: ahci
00:1c.0 PCI bridge: Intel Corporation Alder Lake-S PCH PCI Express Root Port #1 (rev 11)
	Subsystem: Micro-Star International Co., Ltd. [MSI] Alder Lake-S PCH PCI Express Root Port
	Kernel driver in use: pcieport
00:1c.3 PCI bridge: Intel Corporation Device 7abb (rev 11)
	Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7d41
	Kernel driver in use: pcieport
00:1f.0 ISA bridge: Intel Corporation Device 7a86 (rev 11)
	DeviceName: Onboard - Other
	Subsystem: Micro-Star International Co., Ltd. [MSI] Device 7d41
00:1f.3 Audio device: Intel Corporation Alder Lake-S HD Audio Controller (rev 11)
	DeviceName: Onboard - Sound
	Subsystem: Micro-Star International Co., Ltd. [MSI] Alder Lake-S HD Audio Controller
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel, snd_sof_pci_intel_tgl
00:1f.4 SMBus: Intel Corporation Alder Lake-S PCH SMBus Controller (rev 11)
	DeviceName: Onboard - Other
	Subsystem: Micro-Star International Co., Ltd. [MSI] Alder Lake-S PCH SMBus Controller
	Kernel driver in use: i801_smbus
	Kernel modules: i2c_i801
00:1f.5 Serial bus controller: Intel Corporation Alder Lake-S PCH SPI Controller (rev 11)
	DeviceName: Onboard - Other
	Subsystem: Micro-Star International Co., Ltd. [MSI] Alder Lake-S PCH SPI Controller
	Kernel driver in use: intel-spi
	Kernel modules: spi_intel_pci
01:00.0 VGA compatible controller: NVIDIA Corporation GA102 [GeForce RTX 3080 12GB] (rev a1)
	Subsystem: Micro-Star International Co., Ltd. [MSI] GA102 [GeForce RTX 3080 12GB]
	Kernel driver in use: nvidia
	Kernel modules: nouveau, nvidia_drm, nvidia
01:00.1 Audio device: NVIDIA Corporation GA102 High Definition Audio Controller (rev a1)
	Subsystem: Micro-Star International Co., Ltd. [MSI] GA102 High Definition Audio Controller
	Kernel driver in use: snd_hda_intel
	Kernel modules: snd_hda_intel
02:00.0 Non-Volatile memory controller: Realtek Semiconductor Co., Ltd. Device 5765 (rev 01)
	Subsystem: Realtek Semiconductor Co., Ltd. Device 5765
	Kernel driver in use: nvme
	Kernel modules: nvme
03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8125 2.5GbE Controller (rev 05)
	Subsystem: Micro-Star International Co., Ltd. [MSI] RTL8125 2.5GbE Controller
	Kernel driver in use: r8169
	Kernel modules: r8169
04:00.0 SATA controller: ASMedia Technology Inc. ASM1062 Serial ATA Controller (rev 02)
	Subsystem: ASMedia Technology Inc. ASM1062 Serial ATA Controller
	Kernel driver in use: ahci

journalctl -B 0 -U "2023-06-18 11:00:00"

Jun 18 10:23:01 archlinux kernel: microcode: updated early: 0x28 -> 0x2c, date = 2023-01-04
Jun 18 10:23:01 archlinux kernel: Linux version 6.3.8-arch1-1 (linux@archlinux) (gcc (GCC) 13.1.1 20230429, GNU ld (GNU Binutils) 2.40.0) #1 SMP PREEMPT_DYNAMIC Wed, 14 Jun 2023 20:10:31 +0000
Jun 18 10:23:01 archlinux kernel: Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=aa381a55-427d-4d84-8574-bbb1a23b24e4 rw rootflags=subvol=@ rootfstype=btrfs ibt=off
Jun 18 10:23:01 archlinux kernel: x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
Jun 18 10:23:01 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Jun 18 10:23:01 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jun 18 10:23:01 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jun 18 10:23:01 archlinux kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
Jun 18 10:23:01 archlinux kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Jun 18 10:23:01 archlinux kernel: x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
Jun 18 10:23:01 archlinux kernel: x86/fpu: Enabled xstate features 0x207, context size is 840 bytes, using 'compacted' format.
Jun 18 10:23:01 archlinux kernel: signal: max sigframe size: 3632
Jun 18 10:23:01 archlinux kernel: BIOS-provided physical RAM map:
Jun 18 10:23:01 archlinux kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009dfff] usable
Jun 18 10:23:01 archlinux kernel: BIOS-e820: [mem 0x000000000009e000-0x000000000009efff] reserved
Jun 18 10:23:01 archlinux kernel: BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] usable
Jun 18 10:23:01 archlinux kernel: BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
Jun 18 10:23:01 archlinux kernel: BIOS-e820: [mem 0x0000000000100000-0x000000007343efff] usable
Jun 18 10:23:01 archlinux kernel: BIOS-e820: [mem 0x000000007343f000-0x0000000074c3efff] reserved
Jun 18 10:23:01 archlinux kernel: BIOS-e820: [mem 0x0000000074c3f000-0x0000000074d3efff] ACPI data
Jun 18 10:23:01 archlinux kernel: BIOS-e820: [mem 0x0000000074d3f000-0x0000000074f3efff] ACPI NVS
Jun 18 10:23:01 archlinux kernel: BIOS-e820: [mem 0x0000000074f3f000-0x0000000075b3efff] reserved
Jun 18 10:23:01 archlinux kernel: BIOS-e820: [mem 0x0000000075b3f000-0x0000000075bfefff] type 20
Jun 18 10:23:01 archlinux kernel: BIOS-e820: [mem 0x0000000075bff000-0x0000000075bfffff] usable
Jun 18 10:23:01 archlinux kernel: BIOS-e820: [mem 0x0000000075c00000-0x0000000079ffffff] reserved
Jun 18 10:23:01 archlinux kernel: BIOS-e820: [mem 0x000000007a600000-0x000000007a7fffff] reserved
Jun 18 10:23:01 archlinux kernel: BIOS-e820: [mem 0x000000007b000000-0x00000000807fffff] reserved
Jun 18 10:23:01 archlinux kernel: BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
Jun 18 10:23:01 archlinux kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Jun 18 10:23:01 archlinux kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun 18 10:23:01 archlinux kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Jun 18 10:23:01 archlinux kernel: BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
Jun 18 10:23:01 archlinux kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun 18 10:23:01 archlinux kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Jun 18 10:23:01 archlinux kernel: BIOS-e820: [mem 0x0000000100000000-0x000000087f7fffff] usable
Jun 18 10:23:01 archlinux kernel: NX (Execute Disable) protection: active
Jun 18 10:23:01 archlinux kernel: efi: EFI v2.8 by American Megatrends
Jun 18 10:23:01 archlinux kernel: efi: ACPI=0x74edb000 ACPI 2.0=0x74edb014 TPMFinalLog=0x74eaa000 SMBIOS=0x756a4000 SMBIOS 3.0=0x756a3000 MEMATTR=0x6ed37018 ESRT=0x6fd10b98 
Jun 18 10:23:01 archlinux kernel: efi: Remove mem99: MMIO range=[0xc0000000-0xcfffffff] (256MB) from e820 map
Jun 18 10:23:01 archlinux kernel: e820: remove [mem 0xc0000000-0xcfffffff] reserved
Jun 18 10:23:01 archlinux kernel: efi: Not removing mem100: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
Jun 18 10:23:01 archlinux kernel: efi: Not removing mem101: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
Jun 18 10:23:01 archlinux kernel: efi: Not removing mem102: MMIO range=[0xfed00000-0xfed00fff] (4KB) from e820 map
Jun 18 10:23:01 archlinux kernel: efi: Not removing mem104: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
Jun 18 10:23:01 archlinux kernel: efi: Remove mem105: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
Jun 18 10:23:01 archlinux kernel: e820: remove [mem 0xff000000-0xffffffff] reserved
Jun 18 10:23:01 archlinux kernel: SMBIOS 3.5.0 present.
Jun 18 10:23:01 archlinux kernel: DMI: Micro-Star International Co., Ltd. MS-7D41/MAG B660 TOMAHAWK WIFI DDR4 (MS-7D41), BIOS 2.A0 01/11/2023
Jun 18 10:23:01 archlinux kernel: tsc: Detected 2500.000 MHz processor
Jun 18 10:23:01 archlinux kernel: tsc: Detected 2496.000 MHz TSC
Jun 18 10:23:01 archlinux kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jun 18 10:23:01 archlinux kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Jun 18 10:23:01 archlinux kernel: last_pfn = 0x87f800 max_arch_pfn = 0x400000000
Jun 18 10:23:01 archlinux kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Jun 18 10:23:01 archlinux kernel: last_pfn = 0x75c00 max_arch_pfn = 0x400000000
Jun 18 10:23:01 archlinux kernel: esrt: Reserving ESRT space from 0x000000006fd10b98 to 0x000000006fd10bf8.
Jun 18 10:23:01 archlinux kernel: e820: update [mem 0x6fd10000-0x6fd10fff] usable ==> reserved
Jun 18 10:23:01 archlinux kernel: Using GB pages for direct mapping
Jun 18 10:23:01 archlinux kernel: Incomplete global flushes, disabling PCID
Jun 18 10:23:01 archlinux kernel: Secure boot disabled
Jun 18 10:23:01 archlinux kernel: RAMDISK: [mem 0x35afd000-0x36d75fff]
Jun 18 10:23:01 archlinux kernel: ACPI: Early table checksum verification disabled
Jun 18 10:23:01 archlinux kernel: ACPI: RSDP 0x0000000074EDB014 000024 (v02 ALASKA)
Jun 18 10:23:01 archlinux kernel: ACPI: XSDT 0x0000000074EDA728 000104 (v01 ALASKA A M I    01072009 AMI  01000013)
Jun 18 10:23:01 archlinux kernel: ACPI: FACP 0x0000000074D3C000 000114 (v06 ALASKA A M I    01072009 AMI  01000013)
Jun 18 10:23:01 archlinux kernel: ACPI: DSDT 0x0000000074CA4000 097CC8 (v02 ALASKA A M I    01072009 INTL 20200717)
Jun 18 10:23:01 archlinux kernel: ACPI: FACS 0x0000000074F3E000 000040
Jun 18 10:23:01 archlinux kernel: ACPI: FIDT 0x0000000074CA3000 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
Jun 18 10:23:01 archlinux kernel: ACPI: SSDT 0x0000000074D3E000 00038C (v02 PmaxDv Pmax_Dev 00000001 INTL 20200717)
Jun 18 10:23:01 archlinux kernel: ACPI: SSDT 0x0000000074C9D000 005D34 (v02 CpuRef CpuSsdt  00003000 INTL 20200717)
Jun 18 10:23:01 archlinux kernel: ACPI: SSDT 0x0000000074C9A000 002935 (v02 SaSsdt SaSsdt   00003000 INTL 20200717)
Jun 18 10:23:01 archlinux kernel: ACPI: SSDT 0x0000000074C96000 00334F (v02 INTEL  IgfxSsdt 00003000 INTL 20200717)
Jun 18 10:23:01 archlinux kernel: ACPI: HPET 0x0000000074D3D000 000038 (v01 ALASKA A M I    01072009 AMI  01000013)
Jun 18 10:23:01 archlinux kernel: ACPI: APIC 0x0000000074C95000 0001DC (v05 ALASKA A M I    01072009 AMI  01000013)
Jun 18 10:23:01 archlinux kernel: ACPI: MCFG 0x0000000074C94000 00003C (v01 ALASKA A M I    01072009 AMI  01000013)
Jun 18 10:23:01 archlinux kernel: ACPI: SSDT 0x0000000074C92000 001F1A (v02 ALASKA Ther_Rvp 00001000 INTL 20200717)
Jun 18 10:23:01 archlinux kernel: ACPI: UEFI 0x0000000074E90000 000048 (v01 ALASKA A M I    01072009 AMI  01000013)
Jun 18 10:23:01 archlinux kernel: ACPI: NHLT 0x0000000074C91000 00002D (v00 ALASKA A M I    01072009 AMI  01000013)
Jun 18 10:23:01 archlinux kernel: ACPI: LPIT 0x0000000074C90000 0000CC (v01 ALASKA A M I    01072009 AMI  01000013)
Jun 18 10:23:01 archlinux kernel: ACPI: SSDT 0x0000000074C8C000 002A83 (v02 ALASKA PtidDevc 00001000 INTL 20200717)
Jun 18 10:23:01 archlinux kernel: ACPI: SSDT 0x0000000074C89000 002357 (v02 ALASKA TbtTypeC 00000000 INTL 20200717)
Jun 18 10:23:01 archlinux kernel: ACPI: DBGP 0x0000000074C88000 000034 (v01 ALASKA A M I    01072009 AMI  01000013)
Jun 18 10:23:01 archlinux kernel: ACPI: DBG2 0x0000000074C87000 000054 (v00 ALASKA A M I    01072009 AMI  01000013)
Jun 18 10:23:01 archlinux kernel: ACPI: SSDT 0x0000000074C85000 00190A (v02 ALASKA UsbCTabl 00001000 INTL 20200717)
Jun 18 10:23:01 archlinux kernel: ACPI: DMAR 0x0000000074C84000 000088 (v02 INTEL  EDK2     00000002      01000013)
Jun 18 10:23:01 archlinux kernel: ACPI: FPDT 0x0000000074C83000 000044 (v01 ALASKA A M I    01072009 AMI  01000013)
Jun 18 10:23:01 archlinux kernel: ACPI: SSDT 0x0000000074C81000 0013C0 (v02 INTEL  xh_adls3 00000000 INTL 20200717)
Jun 18 10:23:01 archlinux kernel: ACPI: SSDT 0x0000000074C7D000 003AEA (v02 SocGpe SocGpe   00003000 INTL 20200717)
Jun 18 10:23:01 archlinux kernel: ACPI: SSDT 0x0000000074C79000 0039DA (v02 SocCmn SocCmn   00003000 INTL 20200717)
Jun 18 10:23:01 archlinux kernel: ACPI: SSDT 0x0000000074C78000 000144 (v02 Intel  ADebTabl 00001000 INTL 20200717)
Jun 18 10:23:01 archlinux kernel: ACPI: TPM2 0x0000000074C77000 00004C (v04 ALASKA A M I    00000001 AMI  00000000)
Jun 18 10:23:01 archlinux kernel: ACPI: BGRT 0x0000000074C76000 000038 (v01 ALASKA A M I    01072009 AMI  00010013)
Jun 18 10:23:01 archlinux kernel: ACPI: PHAT 0x0000000074C75000 0005B1 (v01 ALASKA A M I    00000005 MSFT 0100000D)
Jun 18 10:23:01 archlinux kernel: ACPI: WSMT 0x0000000074C8F000 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving FACP table memory at [mem 0x74d3c000-0x74d3c113]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving DSDT table memory at [mem 0x74ca4000-0x74d3bcc7]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving FACS table memory at [mem 0x74f3e000-0x74f3e03f]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving FIDT table memory at [mem 0x74ca3000-0x74ca309b]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x74d3e000-0x74d3e38b]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x74c9d000-0x74ca2d33]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x74c9a000-0x74c9c934]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x74c96000-0x74c9934e]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving HPET table memory at [mem 0x74d3d000-0x74d3d037]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving APIC table memory at [mem 0x74c95000-0x74c951db]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving MCFG table memory at [mem 0x74c94000-0x74c9403b]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x74c92000-0x74c93f19]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving UEFI table memory at [mem 0x74e90000-0x74e90047]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving NHLT table memory at [mem 0x74c91000-0x74c9102c]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving LPIT table memory at [mem 0x74c90000-0x74c900cb]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x74c8c000-0x74c8ea82]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x74c89000-0x74c8b356]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving DBGP table memory at [mem 0x74c88000-0x74c88033]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving DBG2 table memory at [mem 0x74c87000-0x74c87053]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x74c85000-0x74c86909]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving DMAR table memory at [mem 0x74c84000-0x74c84087]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving FPDT table memory at [mem 0x74c83000-0x74c83043]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x74c81000-0x74c823bf]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x74c7d000-0x74c80ae9]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x74c79000-0x74c7c9d9]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving SSDT table memory at [mem 0x74c78000-0x74c78143]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving TPM2 table memory at [mem 0x74c77000-0x74c7704b]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving BGRT table memory at [mem 0x74c76000-0x74c76037]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving PHAT table memory at [mem 0x74c75000-0x74c755b0]
Jun 18 10:23:01 archlinux kernel: ACPI: Reserving WSMT table memory at [mem 0x74c8f000-0x74c8f027]
Jun 18 10:23:01 archlinux kernel: No NUMA configuration found
Jun 18 10:23:01 archlinux kernel: Faking a node at [mem 0x0000000000000000-0x000000087f7fffff]
Jun 18 10:23:01 archlinux kernel: NODE_DATA(0) allocated [mem 0x87f7fb000-0x87f7fffff]
Jun 18 10:23:01 archlinux kernel: Zone ranges:
Jun 18 10:23:01 archlinux kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Jun 18 10:23:01 archlinux kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Jun 18 10:23:01 archlinux kernel:   Normal   [mem 0x0000000100000000-0x000000087f7fffff]
Jun 18 10:23:01 archlinux kernel:   Device   empty
Jun 18 10:23:01 archlinux kernel: Movable zone start for each node
Jun 18 10:23:01 archlinux kernel: Early memory node ranges
Jun 18 10:23:01 archlinux kernel:   node   0: [mem 0x0000000000001000-0x000000000009dfff]
Jun 18 10:23:01 archlinux kernel:   node   0: [mem 0x000000000009f000-0x000000000009ffff]
Jun 18 10:23:01 archlinux kernel:   node   0: [mem 0x0000000000100000-0x000000007343efff]
Jun 18 10:23:01 archlinux kernel:   node   0: [mem 0x0000000075bff000-0x0000000075bfffff]
Jun 18 10:23:01 archlinux kernel:   node   0: [mem 0x0000000100000000-0x000000087f7fffff]
Jun 18 10:23:01 archlinux kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000087f7fffff]
Jun 18 10:23:01 archlinux kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Jun 18 10:23:01 archlinux kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Jun 18 10:23:01 archlinux kernel: On node 0, zone DMA: 96 pages in unavailable ranges
Jun 18 10:23:01 archlinux kernel: On node 0, zone DMA32: 10176 pages in unavailable ranges
Jun 18 10:23:01 archlinux kernel: On node 0, zone Normal: 9216 pages in unavailable ranges
Jun 18 10:23:01 archlinux kernel: On node 0, zone Normal: 2048 pages in unavailable ranges
Jun 18 10:23:01 archlinux kernel: ACPI: PM-Timer IO Port: 0x1808
Jun 18 10:23:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Jun 18 10:23:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Jun 18 10:23:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Jun 18 10:23:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Jun 18 10:23:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Jun 18 10:23:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Jun 18 10:23:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Jun 18 10:23:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Jun 18 10:23:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
Jun 18 10:23:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
Jun 18 10:23:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
Jun 18 10:23:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
Jun 18 10:23:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
Jun 18 10:23:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
Jun 18 10:23:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
Jun 18 10:23:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
Jun 18 10:23:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
Jun 18 10:23:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
Jun 18 10:23:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
Jun 18 10:23:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
Jun 18 10:23:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
Jun 18 10:23:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
Jun 18 10:23:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
Jun 18 10:23:01 archlinux kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
Jun 18 10:23:01 archlinux kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
Jun 18 10:23:01 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jun 18 10:23:01 archlinux kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jun 18 10:23:01 archlinux kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Jun 18 10:23:01 archlinux kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Jun 18 10:23:01 archlinux kernel: e820: update [mem 0x6e9a1000-0x6e9fdfff] usable ==> reserved
Jun 18 10:23:01 archlinux kernel: TSC deadline timer available
Jun 18 10:23:01 archlinux kernel: smpboot: Allowing 12 CPUs, 0 hotplug CPUs
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009efff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x6e9a1000-0x6e9fdfff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x6fd10000-0x6fd10fff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x7343f000-0x74c3efff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x74c3f000-0x74d3efff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x74d3f000-0x74f3efff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x74f3f000-0x75b3efff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x75b3f000-0x75bfefff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x75c00000-0x79ffffff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x7a000000-0x7a5fffff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x7a600000-0x7a7fffff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x7a800000-0x7affffff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x7b000000-0x807fffff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0x80800000-0xfdffffff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed1ffff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfedfffff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Jun 18 10:23:01 archlinux kernel: PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
Jun 18 10:23:01 archlinux kernel: [mem 0x80800000-0xfdffffff] available for PCI devices
Jun 18 10:23:01 archlinux kernel: Booting paravirtualized kernel on bare hardware
Jun 18 10:23:01 archlinux kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
Jun 18 10:23:01 archlinux kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:12 nr_cpu_ids:12 nr_node_ids:1
Jun 18 10:23:01 archlinux kernel: percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u262144
Jun 18 10:23:01 archlinux kernel: pcpu-alloc: s225280 r8192 d28672 u262144 alloc=1*2097152
Jun 18 10:23:01 archlinux kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 -- -- -- -- 
Jun 18 10:23:01 archlinux kernel: Fallback order for Node 0: 0 
Jun 18 10:23:01 archlinux kernel: Built 1 zonelists, mobility grouping on.  Total pages: 8203919
Jun 18 10:23:01 archlinux kernel: Policy zone: Normal
Jun 18 10:23:01 archlinux kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=aa381a55-427d-4d84-8574-bbb1a23b24e4 rw rootflags=subvol=@ rootfstype=btrfs ibt=off
Jun 18 10:23:01 archlinux kernel: Unknown kernel command line parameters "BOOT_IMAGE=/vmlinuz-linux", will be passed to user space.
Jun 18 10:23:01 archlinux kernel: random: crng init done
Jun 18 10:23:01 archlinux kernel: Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
Jun 18 10:23:01 archlinux kernel: Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
Jun 18 10:23:01 archlinux kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
Jun 18 10:23:01 archlinux kernel: software IO TLB: area num 16.
Jun 18 10:23:01 archlinux kernel: Memory: 32478652K/33337208K available (16384K kernel code, 2107K rwdata, 12660K rodata, 3324K init, 4000K bss, 858296K reserved, 0K cma-reserved)
Jun 18 10:23:01 archlinux kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=12, Nodes=1
Jun 18 10:23:01 archlinux kernel: ftrace: allocating 47301 entries in 185 pages
Jun 18 10:23:01 archlinux kernel: ftrace: allocated 185 pages with 5 groups
Jun 18 10:23:01 archlinux kernel: Dynamic Preempt: full
Jun 18 10:23:01 archlinux kernel: rcu: Preemptible hierarchical RCU implementation.
Jun 18 10:23:01 archlinux kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=12.
Jun 18 10:23:01 archlinux kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
Jun 18 10:23:01 archlinux kernel:         Trampoline variant of Tasks RCU enabled.
Jun 18 10:23:01 archlinux kernel:         Rude variant of Tasks RCU enabled.
Jun 18 10:23:01 archlinux kernel:         Tracing variant of Tasks RCU enabled.
Jun 18 10:23:01 archlinux kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
Jun 18 10:23:01 archlinux kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=12
Jun 18 10:23:01 archlinux kernel: NR_IRQS: 20736, nr_irqs: 2152, preallocated irqs: 16
Jun 18 10:23:01 archlinux kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
Jun 18 10:23:01 archlinux kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
Jun 18 10:23:01 archlinux kernel: Console: colour dummy device 80x25
Jun 18 10:23:01 archlinux kernel: printk: console [tty0] enabled
Jun 18 10:23:01 archlinux kernel: ACPI: Core revision 20221020
Jun 18 10:23:01 archlinux kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 99544814920 ns
Jun 18 10:23:01 archlinux kernel: APIC: Switch to symmetric I/O mode setup
Jun 18 10:23:01 archlinux kernel: DMAR: Host address width 39
Jun 18 10:23:01 archlinux kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
Jun 18 10:23:01 archlinux kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
Jun 18 10:23:01 archlinux kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
Jun 18 10:23:01 archlinux kernel: DMAR: dmar1: reg_base_addr fed91000 ver 5:0 cap d2008c40660462 ecap f050da
Jun 18 10:23:01 archlinux kernel: DMAR: RMRR base: 0x0000007c000000 end: 0x000000807fffff
Jun 18 10:23:01 archlinux kernel: DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
Jun 18 10:23:01 archlinux kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
Jun 18 10:23:01 archlinux kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
Jun 18 10:23:01 archlinux kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
Jun 18 10:23:01 archlinux kernel: x2apic enabled
Jun 18 10:23:01 archlinux kernel: Switched APIC routing to cluster x2apic.
Jun 18 10:23:01 archlinux kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jun 18 10:23:01 archlinux kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x23fa772cf26, max_idle_ns: 440795269835 ns
Jun 18 10:23:01 archlinux kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4993.00 BogoMIPS (lpj=8320000)
Jun 18 10:23:01 archlinux kernel: pid_max: default: 32768 minimum: 301
Jun 18 10:23:01 archlinux kernel: LSM: initializing lsm=capability,landlock,lockdown,yama,integrity,bpf
Jun 18 10:23:01 archlinux kernel: landlock: Up and running.
Jun 18 10:23:01 archlinux kernel: Yama: becoming mindful.
Jun 18 10:23:01 archlinux kernel: LSM support for eBPF active
Jun 18 10:23:01 archlinux kernel: Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
Jun 18 10:23:01 archlinux kernel: Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
Jun 18 10:23:01 archlinux kernel: CPU0: Thermal monitoring enabled (TM1)
Jun 18 10:23:01 archlinux kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
Jun 18 10:23:01 archlinux kernel: process: using mwait in idle threads
Jun 18 10:23:01 archlinux kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
Jun 18 10:23:01 archlinux kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
Jun 18 10:23:01 archlinux kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Jun 18 10:23:01 archlinux kernel: Spectre V2 : Mitigation: Enhanced / Automatic IBRS
Jun 18 10:23:01 archlinux kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Jun 18 10:23:01 archlinux kernel: Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
Jun 18 10:23:01 archlinux kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Jun 18 10:23:01 archlinux kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
Jun 18 10:23:01 archlinux kernel: Freeing SMP alternatives memory: 40K
Jun 18 10:23:01 archlinux kernel: smpboot: CPU0: 12th Gen Intel(R) Core(TM) i5-12400 (family: 0x6, model: 0x97, stepping: 0x5)
Jun 18 10:23:01 archlinux kernel: cblist_init_generic: Setting adjustable number of callback queues.
Jun 18 10:23:01 archlinux kernel: cblist_init_generic: Setting shift to 4 and lim to 1.
Jun 18 10:23:01 archlinux kernel: cblist_init_generic: Setting shift to 4 and lim to 1.
Jun 18 10:23:01 archlinux kernel: cblist_init_generic: Setting shift to 4 and lim to 1.
Jun 18 10:23:01 archlinux kernel: Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline,  AnyThread deprecated, Alderlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
Jun 18 10:23:01 archlinux kernel: core: cpu_core PMU driver: 
Jun 18 10:23:01 archlinux kernel: ... version:                5
Jun 18 10:23:01 archlinux kernel: ... bit width:              48
Jun 18 10:23:01 archlinux kernel: ... generic registers:      8
Jun 18 10:23:01 archlinux kernel: ... value mask:             0000ffffffffffff
Jun 18 10:23:01 archlinux kernel: ... max period:             00007fffffffffff
Jun 18 10:23:01 archlinux kernel: ... fixed-purpose events:   4
Jun 18 10:23:01 archlinux kernel: ... event mask:             0001000f000000ff
Jun 18 10:23:01 archlinux kernel: Estimated ratio of average max frequency by base frequency (times 1024): 1720
Jun 18 10:23:01 archlinux kernel: rcu: Hierarchical SRCU implementation.
Jun 18 10:23:01 archlinux kernel: rcu:         Max phase no-delay instances is 1000.
Jun 18 10:23:01 archlinux kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Jun 18 10:23:01 archlinux kernel: smp: Bringing up secondary CPUs ...
Jun 18 10:23:01 archlinux kernel: x86: Booting SMP configuration:
Jun 18 10:23:01 archlinux kernel: .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11
Jun 18 10:23:01 archlinux kernel: smp: Brought up 1 node, 12 CPUs
Jun 18 10:23:01 archlinux kernel: smpboot: Max logical packages: 1
Jun 18 10:23:01 archlinux kernel: smpboot: Total of 12 processors activated (59927.00 BogoMIPS)
Jun 18 10:23:01 archlinux kernel: devtmpfs: initialized
Jun 18 10:23:01 archlinux kernel: x86/mm: Memory block size: 128MB
Jun 18 10:23:01 archlinux kernel: ACPI: PM: Registering ACPI NVS region [mem 0x74d3f000-0x74f3efff] (2097152 bytes)
Jun 18 10:23:01 archlinux kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
Jun 18 10:23:01 archlinux kernel: futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
Jun 18 10:23:01 archlinux kernel: pinctrl core: initialized pinctrl subsystem
Jun 18 10:23:01 archlinux kernel: PM: RTC time: 14:23:00, date: 2023-06-18
Jun 18 10:23:01 archlinux kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Jun 18 10:23:01 archlinux kernel: DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
Jun 18 10:23:01 archlinux kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Jun 18 10:23:01 archlinux kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Jun 18 10:23:01 archlinux kernel: audit: initializing netlink subsys (disabled)
Jun 18 10:23:01 archlinux kernel: audit: type=2000 audit(1687098180.076:1): state=initialized audit_enabled=0 res=1
Jun 18 10:23:01 archlinux kernel: thermal_sys: Registered thermal governor 'fair_share'
Jun 18 10:23:01 archlinux kernel: thermal_sys: Registered thermal governor 'bang_bang'
Jun 18 10:23:01 archlinux kernel: thermal_sys: Registered thermal governor 'step_wise'
Jun 18 10:23:01 archlinux kernel: thermal_sys: Registered thermal governor 'user_space'
Jun 18 10:23:01 archlinux kernel: thermal_sys: Registered thermal governor 'power_allocator'
Jun 18 10:23:01 archlinux kernel: cpuidle: using governor ladder
Jun 18 10:23:01 archlinux kernel: cpuidle: using governor menu
Jun 18 10:23:01 archlinux kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Jun 18 10:23:01 archlinux kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jun 18 10:23:01 archlinux kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
Jun 18 10:23:01 archlinux kernel: PCI: not using MMCONFIG
Jun 18 10:23:01 archlinux kernel: PCI: Using configuration type 1 for base access
Jun 18 10:23:01 archlinux kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
Jun 18 10:23:01 archlinux kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
Jun 18 10:23:01 archlinux kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
Jun 18 10:23:01 archlinux kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
Jun 18 10:23:01 archlinux kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
Jun 18 10:23:01 archlinux kernel: ACPI: Added _OSI(Module Device)
Jun 18 10:23:01 archlinux kernel: ACPI: Added _OSI(Processor Device)
Jun 18 10:23:01 archlinux kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jun 18 10:23:01 archlinux kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jun 18 10:23:01 archlinux kernel: ACPI: 13 ACPI AML tables successfully acquired and loaded
Jun 18 10:23:01 archlinux kernel: ACPI: Dynamic OEM Table Load:
Jun 18 10:23:01 archlinux kernel: ACPI: SSDT 0xFFFF984301AA3C00 0001AB (v02 PmRef  Cpu0Psd  00003000 INTL 20200717)
Jun 18 10:23:01 archlinux kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
Jun 18 10:23:01 archlinux kernel: ACPI: Dynamic OEM Table Load:
Jun 18 10:23:01 archlinux kernel: ACPI: SSDT 0xFFFF98430122B800 000394 (v02 PmRef  Cpu0Cst  00003001 INTL 20200717)
Jun 18 10:23:01 archlinux kernel: ACPI: Dynamic OEM Table Load:
Jun 18 10:23:01 archlinux kernel: ACPI: SSDT 0xFFFF984301B00000 000560 (v02 PmRef  Cpu0Ist  00003000 INTL 20200717)
Jun 18 10:23:01 archlinux kernel: ACPI: Dynamic OEM Table Load:
Jun 18 10:23:01 archlinux kernel: ACPI: SSDT 0xFFFF984301B01000 0004B5 (v02 PmRef  Cpu0Hwp  00003000 INTL 20200717)
Jun 18 10:23:01 archlinux kernel: ACPI: Dynamic OEM Table Load:
Jun 18 10:23:01 archlinux kernel: ACPI: SSDT 0xFFFF984301222000 001BAF (v02 PmRef  ApIst    00003000 INTL 20200717)
Jun 18 10:23:01 archlinux kernel: ACPI: Dynamic OEM Table Load:
Jun 18 10:23:01 archlinux kernel: ACPI: SSDT 0xFFFF984301224000 001038 (v02 PmRef  ApHwp    00003000 INTL 20200717)
Jun 18 10:23:01 archlinux kernel: ACPI: Dynamic OEM Table Load:
Jun 18 10:23:01 archlinux kernel: ACPI: SSDT 0xFFFF984301226000 001349 (v02 PmRef  ApPsd    00003000 INTL 20200717)
Jun 18 10:23:01 archlinux kernel: ACPI: Dynamic OEM Table Load:
Jun 18 10:23:01 archlinux kernel: ACPI: SSDT 0xFFFF984301237000 000FBB (v02 PmRef  ApCst    00003000 INTL 20200717)
Jun 18 10:23:01 archlinux kernel: ACPI: Interpreter enabled
Jun 18 10:23:01 archlinux kernel: ACPI: PM: (supports S0 S3 S4 S5)
Jun 18 10:23:01 archlinux kernel: ACPI: Using IOAPIC for interrupt routing
Jun 18 10:23:01 archlinux kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
Jun 18 10:23:01 archlinux kernel: PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved as ACPI motherboard resource
Jun 18 10:23:01 archlinux kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jun 18 10:23:01 archlinux kernel: PCI: Ignoring E820 reservations for host bridge windows
Jun 18 10:23:01 archlinux kernel: ACPI: Enabled 6 GPEs in block 00 to 7F
Jun 18 10:23:01 archlinux kernel: ACPI: \_SB_.PC00.XHCI.RHUB.HS14.BTRT: New power resource
Jun 18 10:23:01 archlinux kernel: ACPI: \_SB_.PC00.CNVW.WRST: New power resource
Jun 18 10:23:01 archlinux kernel: ACPI: \_TZ_.FN00: New power resource
Jun 18 10:23:01 archlinux kernel: ACPI: \_TZ_.FN01: New power resource
Jun 18 10:23:01 archlinux kernel: ACPI: \_TZ_.FN02: New power resource
Jun 18 10:23:01 archlinux kernel: ACPI: \_TZ_.FN03: New power resource
Jun 18 10:23:01 archlinux kernel: ACPI: \_TZ_.FN04: New power resource
Jun 18 10:23:01 archlinux kernel: ACPI: \PIN_: New power resource
Jun 18 10:23:01 archlinux kernel: ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-fe])
Jun 18 10:23:01 archlinux kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Jun 18 10:23:01 archlinux kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME]
Jun 18 10:23:01 archlinux kernel: acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability LTR DPC]
Jun 18 10:23:01 archlinux kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
Jun 18 10:23:01 archlinux kernel: PCI host bridge to bus 0000:00
Jun 18 10:23:01 archlinux kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Jun 18 10:23:01 archlinux kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Jun 18 10:23:01 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Jun 18 10:23:01 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
Jun 18 10:23:01 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x80800000-0xbfffffff window]
Jun 18 10:23:01 archlinux kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
Jun 18 10:23:01 archlinux kernel: pci_bus 0000:00: root bus resource [bus 00-fe]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:00.0: [8086:4650] type 00 class 0x060000
Jun 18 10:23:01 archlinux kernel: pci 0000:00:01.0: [8086:460d] type 01 class 0x060400
Jun 18 10:23:01 archlinux kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
Jun 18 10:23:01 archlinux kernel: pci 0000:00:01.0: PTM enabled (root), 4ns granularity
Jun 18 10:23:01 archlinux kernel: pci 0000:00:02.0: [8086:4692] type 00 class 0x038000
Jun 18 10:23:01 archlinux kernel: pci 0000:00:02.0: reg 0x10: [mem 0x6402000000-0x6402ffffff 64bit]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:02.0: reg 0x20: [io  0x6000-0x603f]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
Jun 18 10:23:01 archlinux kernel: pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
Jun 18 10:23:01 archlinux kernel: pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
Jun 18 10:23:01 archlinux kernel: pci 0000:00:06.0: [8086:464d] type 01 class 0x060400
Jun 18 10:23:01 archlinux kernel: pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
Jun 18 10:23:01 archlinux kernel: pci 0000:00:06.0: PTM enabled (root), 4ns granularity
Jun 18 10:23:01 archlinux kernel: pci 0000:00:08.0: [8086:464f] type 00 class 0x088000
Jun 18 10:23:01 archlinux kernel: pci 0000:00:08.0: reg 0x10: [mem 0x640312f000-0x640312ffff 64bit]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:0a.0: [8086:467d] type 00 class 0x118000
Jun 18 10:23:01 archlinux kernel: pci 0000:00:0a.0: reg 0x10: [mem 0x6403110000-0x6403117fff 64bit]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:0a.0: enabling Extended Tags
Jun 18 10:23:01 archlinux kernel: pci 0000:00:14.0: [8086:7ae0] type 00 class 0x0c0330
Jun 18 10:23:01 archlinux kernel: pci 0000:00:14.0: reg 0x10: [mem 0x6403100000-0x640310ffff 64bit]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Jun 18 10:23:01 archlinux kernel: pci 0000:00:14.2: [8086:7aa7] type 00 class 0x050000
Jun 18 10:23:01 archlinux kernel: pci 0000:00:14.2: reg 0x10: [mem 0x6403128000-0x640312bfff 64bit]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:14.2: reg 0x18: [mem 0x640312e000-0x640312efff 64bit]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:14.3: [8086:7af0] type 00 class 0x028000
Jun 18 10:23:01 archlinux kernel: pci 0000:00:14.3: reg 0x10: [mem 0x6403124000-0x6403127fff 64bit]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
Jun 18 10:23:01 archlinux kernel: pci 0000:00:16.0: [8086:7ae8] type 00 class 0x078000
Jun 18 10:23:01 archlinux kernel: pci 0000:00:16.0: reg 0x10: [mem 0x640312d000-0x640312dfff 64bit]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:16.0: PME# supported from D3hot
Jun 18 10:23:01 archlinux kernel: pci 0000:00:17.0: [8086:7ae2] type 00 class 0x010601
Jun 18 10:23:01 archlinux kernel: pci 0000:00:17.0: reg 0x10: [mem 0x82400000-0x82401fff]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:17.0: reg 0x14: [mem 0x82403000-0x824030ff]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:17.0: reg 0x18: [io  0x6090-0x6097]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:17.0: reg 0x1c: [io  0x6080-0x6083]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:17.0: reg 0x20: [io  0x6060-0x607f]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:17.0: reg 0x24: [mem 0x82402000-0x824027ff]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:17.0: PME# supported from D3hot
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1c.0: [8086:7ab8] type 01 class 0x060400
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1c.3: [8086:7abb] type 01 class 0x060400
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1c.3: PTM enabled (root), 4ns granularity
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1f.0: [8086:7a86] type 00 class 0x060100
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1f.3: [8086:7ad0] type 00 class 0x040300
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1f.3: reg 0x10: [mem 0x6403120000-0x6403123fff 64bit]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1f.3: reg 0x20: [mem 0x6403000000-0x64030fffff 64bit]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1f.4: [8086:7aa3] type 00 class 0x0c0500
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1f.4: reg 0x10: [mem 0x640312c000-0x640312c0ff 64bit]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1f.5: [8086:7aa4] type 00 class 0x0c8000
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
Jun 18 10:23:01 archlinux kernel: pci 0000:01:00.0: [10de:220a] type 00 class 0x030000
Jun 18 10:23:01 archlinux kernel: pci 0000:01:00.0: reg 0x10: [mem 0x81000000-0x81ffffff]
Jun 18 10:23:01 archlinux kernel: pci 0000:01:00.0: reg 0x14: [mem 0x6000000000-0x63ffffffff 64bit pref]
Jun 18 10:23:01 archlinux kernel: pci 0000:01:00.0: reg 0x1c: [mem 0x6400000000-0x6401ffffff 64bit pref]
Jun 18 10:23:01 archlinux kernel: pci 0000:01:00.0: reg 0x24: [io  0x5000-0x507f]
Jun 18 10:23:01 archlinux kernel: pci 0000:01:00.0: reg 0x30: [mem 0x82000000-0x8207ffff pref]
Jun 18 10:23:01 archlinux kernel: pci 0000:01:00.0: BAR 1: assigned to efifb
Jun 18 10:23:01 archlinux kernel: pci 0000:01:00.0: PME# supported from D0 D3hot
Jun 18 10:23:01 archlinux kernel: pci 0000:01:00.1: [10de:1aef] type 00 class 0x040300
Jun 18 10:23:01 archlinux kernel: pci 0000:01:00.1: reg 0x10: [mem 0x82080000-0x82083fff]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:01.0:   bridge window [io  0x5000-0x5fff]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:01.0:   bridge window [mem 0x81000000-0x820fffff]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:01.0:   bridge window [mem 0x6000000000-0x6401ffffff 64bit pref]
Jun 18 10:23:01 archlinux kernel: pci 0000:02:00.0: [10ec:5765] type 00 class 0x010802
Jun 18 10:23:01 archlinux kernel: pci 0000:02:00.0: reg 0x10: [mem 0x82300000-0x82303fff 64bit]
Jun 18 10:23:01 archlinux kernel: pci 0000:02:00.0: reg 0x24: [mem 0x82304000-0x82305fff]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:06.0: PCI bridge to [bus 02]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:06.0:   bridge window [mem 0x82300000-0x823fffff]
Jun 18 10:23:01 archlinux kernel: pci 0000:03:00.0: [10ec:8125] type 00 class 0x020000
Jun 18 10:23:01 archlinux kernel: pci 0000:03:00.0: reg 0x10: [io  0x4000-0x40ff]
Jun 18 10:23:01 archlinux kernel: pci 0000:03:00.0: reg 0x18: [mem 0x82200000-0x8220ffff 64bit]
Jun 18 10:23:01 archlinux kernel: pci 0000:03:00.0: reg 0x20: [mem 0x82210000-0x82213fff 64bit]
Jun 18 10:23:01 archlinux kernel: pci 0000:03:00.0: supports D1 D2
Jun 18 10:23:01 archlinux kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1c.0: PCI bridge to [bus 03]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1c.0:   bridge window [mem 0x82200000-0x822fffff]
Jun 18 10:23:01 archlinux kernel: pci 0000:04:00.0: [1b21:0612] type 00 class 0x010601
Jun 18 10:23:01 archlinux kernel: pci 0000:04:00.0: reg 0x10: [io  0x3050-0x3057]
Jun 18 10:23:01 archlinux kernel: pci 0000:04:00.0: reg 0x14: [io  0x3040-0x3043]
Jun 18 10:23:01 archlinux kernel: pci 0000:04:00.0: reg 0x18: [io  0x3030-0x3037]
Jun 18 10:23:01 archlinux kernel: pci 0000:04:00.0: reg 0x1c: [io  0x3020-0x3023]
Jun 18 10:23:01 archlinux kernel: pci 0000:04:00.0: reg 0x20: [io  0x3000-0x301f]
Jun 18 10:23:01 archlinux kernel: pci 0000:04:00.0: reg 0x24: [mem 0x82100000-0x821001ff]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1c.3: PCI bridge to [bus 04]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1c.3:   bridge window [io  0x3000-0x3fff]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1c.3:   bridge window [mem 0x82100000-0x821fffff]
Jun 18 10:23:01 archlinux kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 0
Jun 18 10:23:01 archlinux kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 1
Jun 18 10:23:01 archlinux kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 0
Jun 18 10:23:01 archlinux kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 0
Jun 18 10:23:01 archlinux kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 0
Jun 18 10:23:01 archlinux kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 0
Jun 18 10:23:01 archlinux kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 0
Jun 18 10:23:01 archlinux kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 0
Jun 18 10:23:01 archlinux kernel: iommu: Default domain type: Translated 
Jun 18 10:23:01 archlinux kernel: iommu: DMA domain TLB invalidation policy: lazy mode 
Jun 18 10:23:01 archlinux kernel: SCSI subsystem initialized
Jun 18 10:23:01 archlinux kernel: libata version 3.00 loaded.
Jun 18 10:23:01 archlinux kernel: ACPI: bus type USB registered
Jun 18 10:23:01 archlinux kernel: usbcore: registered new interface driver usbfs
Jun 18 10:23:01 archlinux kernel: usbcore: registered new interface driver hub
Jun 18 10:23:01 archlinux kernel: usbcore: registered new device driver usb
Jun 18 10:23:01 archlinux kernel: pps_core: LinuxPPS API ver. 1 registered
Jun 18 10:23:01 archlinux kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Jun 18 10:23:01 archlinux kernel: PTP clock support registered
Jun 18 10:23:01 archlinux kernel: EDAC MC: Ver: 3.0.0
Jun 18 10:23:01 archlinux kernel: efivars: Registered efivars operations
Jun 18 10:23:01 archlinux kernel: NetLabel: Initializing
Jun 18 10:23:01 archlinux kernel: NetLabel:  domain hash size = 128
Jun 18 10:23:01 archlinux kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Jun 18 10:23:01 archlinux kernel: NetLabel:  unlabeled traffic allowed by default
Jun 18 10:23:01 archlinux kernel: mctp: management component transport protocol core
Jun 18 10:23:01 archlinux kernel: NET: Registered PF_MCTP protocol family
Jun 18 10:23:01 archlinux kernel: PCI: Using ACPI for IRQ routing
Jun 18 10:23:01 archlinux kernel: PCI: pci_cache_line_size set to 64 bytes
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
Jun 18 10:23:01 archlinux kernel: e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
Jun 18 10:23:01 archlinux kernel: e820: reserve RAM buffer [mem 0x6e9a1000-0x6fffffff]
Jun 18 10:23:01 archlinux kernel: e820: reserve RAM buffer [mem 0x6fd10000-0x6fffffff]
Jun 18 10:23:01 archlinux kernel: e820: reserve RAM buffer [mem 0x7343f000-0x73ffffff]
Jun 18 10:23:01 archlinux kernel: e820: reserve RAM buffer [mem 0x75c00000-0x77ffffff]
Jun 18 10:23:01 archlinux kernel: e820: reserve RAM buffer [mem 0x87f800000-0x87fffffff]
Jun 18 10:23:01 archlinux kernel: pci 0000:01:00.0: vgaarb: setting as boot VGA device
Jun 18 10:23:01 archlinux kernel: pci 0000:01:00.0: vgaarb: bridge control possible
Jun 18 10:23:01 archlinux kernel: pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
Jun 18 10:23:01 archlinux kernel: vgaarb: loaded
Jun 18 10:23:01 archlinux kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Jun 18 10:23:01 archlinux kernel: hpet0: 8 comparators, 64-bit 19.200000 MHz counter
Jun 18 10:23:01 archlinux kernel: clocksource: Switched to clocksource tsc-early
Jun 18 10:23:01 archlinux kernel: VFS: Disk quotas dquot_6.6.0
Jun 18 10:23:01 archlinux kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jun 18 10:23:01 archlinux kernel: pnp: PnP ACPI init
Jun 18 10:23:01 archlinux kernel: system 00:00: [io  0x0a00-0x0a0f] has been reserved
Jun 18 10:23:01 archlinux kernel: system 00:00: [io  0x0a10-0x0a1f] has been reserved
Jun 18 10:23:01 archlinux kernel: system 00:00: [io  0x0a20-0x0a2f] has been reserved
Jun 18 10:23:01 archlinux kernel: system 00:01: [io  0x0680-0x069f] has been reserved
Jun 18 10:23:01 archlinux kernel: system 00:01: [io  0x164e-0x164f] has been reserved
Jun 18 10:23:01 archlinux kernel: system 00:02: [io  0x1854-0x1857] has been reserved
Jun 18 10:23:01 archlinux kernel: pnp 00:03: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
Jun 18 10:23:01 archlinux kernel: system 00:03: [mem 0xfedc0000-0xfedc7fff] has been reserved
Jun 18 10:23:01 archlinux kernel: system 00:03: [mem 0xfeda0000-0xfeda0fff] has been reserved
Jun 18 10:23:01 archlinux kernel: system 00:03: [mem 0xfeda1000-0xfeda1fff] has been reserved
Jun 18 10:23:01 archlinux kernel: system 00:03: [mem 0xfed20000-0xfed7ffff] could not be reserved
Jun 18 10:23:01 archlinux kernel: system 00:03: [mem 0xfed90000-0xfed93fff] could not be reserved
Jun 18 10:23:01 archlinux kernel: system 00:03: [mem 0xfed45000-0xfed8ffff] could not be reserved
Jun 18 10:23:01 archlinux kernel: system 00:03: [mem 0xfee00000-0xfeefffff] could not be reserved
Jun 18 10:23:01 archlinux kernel: system 00:04: [io  0x2000-0x20fe] has been reserved
Jun 18 10:23:01 archlinux kernel: pnp: PnP ACPI: found 6 devices
Jun 18 10:23:01 archlinux kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Jun 18 10:23:01 archlinux kernel: NET: Registered PF_INET protocol family
Jun 18 10:23:01 archlinux kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Jun 18 10:23:01 archlinux kernel: tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
Jun 18 10:23:01 archlinux kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
Jun 18 10:23:01 archlinux kernel: TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Jun 18 10:23:01 archlinux kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
Jun 18 10:23:01 archlinux kernel: TCP: Hash tables configured (established 262144 bind 65536)
Jun 18 10:23:01 archlinux kernel: MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
Jun 18 10:23:01 archlinux kernel: UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
Jun 18 10:23:01 archlinux kernel: UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
Jun 18 10:23:01 archlinux kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Jun 18 10:23:01 archlinux kernel: NET: Registered PF_XDP protocol family
Jun 18 10:23:01 archlinux kernel: pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1f.5: BAR 0: assigned [mem 0x80800000-0x80800fff]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:01.0:   bridge window [io  0x5000-0x5fff]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:01.0:   bridge window [mem 0x81000000-0x820fffff]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:01.0:   bridge window [mem 0x6000000000-0x6401ffffff 64bit pref]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:06.0: PCI bridge to [bus 02]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:06.0:   bridge window [mem 0x82300000-0x823fffff]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1c.0: PCI bridge to [bus 03]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1c.0:   bridge window [mem 0x82200000-0x822fffff]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1c.3: PCI bridge to [bus 04]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1c.3:   bridge window [io  0x3000-0x3fff]
Jun 18 10:23:01 archlinux kernel: pci 0000:00:1c.3:   bridge window [mem 0x82100000-0x821fffff]
Jun 18 10:23:01 archlinux kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Jun 18 10:23:01 archlinux kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Jun 18 10:23:01 archlinux kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Jun 18 10:23:01 archlinux kernel: pci_bus 0000:00: resource 7 [mem 0x000e0000-0x000fffff window]
Jun 18 10:23:01 archlinux kernel: pci_bus 0000:00: resource 8 [mem 0x80800000-0xbfffffff window]
Jun 18 10:23:01 archlinux kernel: pci_bus 0000:00: resource 9 [mem 0x4000000000-0x7fffffffff window]
Jun 18 10:23:01 archlinux kernel: pci_bus 0000:01: resource 0 [io  0x5000-0x5fff]
Jun 18 10:23:01 archlinux kernel: pci_bus 0000:01: resource 1 [mem 0x81000000-0x820fffff]
Jun 18 10:23:01 archlinux kernel: pci_bus 0000:01: resource 2 [mem 0x6000000000-0x6401ffffff 64bit pref]
Jun 18 10:23:01 archlinux kernel: pci_bus 0000:02: resource 1 [mem 0x82300000-0x823fffff]
Jun 18 10:23:01 archlinux kernel: pci_bus 0000:03: resource 0 [io  0x4000-0x4fff]
Jun 18 10:23:01 archlinux kernel: pci_bus 0000:03: resource 1 [mem 0x82200000-0x822fffff]
Jun 18 10:23:01 archlinux kernel: pci_bus 0000:04: resource 0 [io  0x3000-0x3fff]
Jun 18 10:23:01 archlinux kernel: pci_bus 0000:04: resource 1 [mem 0x82100000-0x821fffff]
Jun 18 10:23:01 archlinux kernel: pci 0000:01:00.1: extending delay after power-on from D3hot to 20 msec
Jun 18 10:23:01 archlinux kernel: pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
Jun 18 10:23:01 archlinux kernel: PCI: CLS 64 bytes, default 64
Jun 18 10:23:01 archlinux kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Jun 18 10:23:01 archlinux kernel: software IO TLB: mapped [mem 0x0000000064614000-0x0000000068614000] (64MB)
Jun 18 10:23:01 archlinux kernel: Trying to unpack rootfs image as initramfs...
Jun 18 10:23:01 archlinux kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x23fa772cf26, max_idle_ns: 440795269835 ns
Jun 18 10:23:01 archlinux kernel: clocksource: Switched to clocksource tsc
Jun 18 10:23:01 archlinux kernel: platform rtc_cmos: registered platform RTC device (no PNP device found)
Jun 18 10:23:01 archlinux kernel: Initialise system trusted keyrings
Jun 18 10:23:01 archlinux kernel: Key type blacklist registered
Jun 18 10:23:01 archlinux kernel: workingset: timestamp_bits=41 max_order=23 bucket_order=0
Jun 18 10:23:01 archlinux kernel: zbud: loaded
Jun 18 10:23:01 archlinux kernel: integrity: Platform Keyring initialized
Jun 18 10:23:01 archlinux kernel: integrity: Machine keyring initialized
Jun 18 10:23:01 archlinux kernel: Key type asymmetric registered
Jun 18 10:23:01 archlinux kernel: Asymmetric key parser 'x509' registered
Jun 18 10:23:01 archlinux kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
Jun 18 10:23:01 archlinux kernel: io scheduler mq-deadline registered
Jun 18 10:23:01 archlinux kernel: io scheduler kyber registered
Jun 18 10:23:01 archlinux kernel: io scheduler bfq registered
Jun 18 10:23:01 archlinux kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jun 18 10:23:01 archlinux kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
Jun 18 10:23:01 archlinux kernel: ACPI: button: Sleep Button [SLPB]
Jun 18 10:23:01 archlinux kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
Jun 18 10:23:01 archlinux kernel: ACPI: button: Power Button [PWRB]
Jun 18 10:23:01 archlinux kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
Jun 18 10:23:01 archlinux kernel: ACPI: button: Power Button [PWRF]
Jun 18 10:23:01 archlinux kernel: thermal LNXTHERM:00: registered as thermal_zone0
Jun 18 10:23:01 archlinux kernel: ACPI: thermal: Thermal Zone [TZ00] (28 C)
Jun 18 10:23:01 archlinux kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Jun 18 10:23:01 archlinux kernel: serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
Jun 18 10:23:01 archlinux kernel: Non-volatile memory driver v1.3
Jun 18 10:23:01 archlinux kernel: Linux agpgart interface v0.103
Jun 18 10:23:01 archlinux kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
Jun 18 10:23:01 archlinux kernel: ACPI: bus type drm_connector registered
Jun 18 10:23:01 archlinux kernel: ahci 0000:00:17.0: version 3.0
Jun 18 10:23:01 archlinux kernel: ahci 0000:00:17.0: AHCI 0001.0301 32 slots 4 ports 6 Gbps 0xf0 impl SATA mode
Jun 18 10:23:01 archlinux kernel: ahci 0000:00:17.0: flags: 64bit ncq sntf led clo only pio slum part ems deso sadm sds 
Jun 18 10:23:01 archlinux kernel: Freeing initrd memory: 18916K
Jun 18 10:23:01 archlinux kernel: scsi host0: ahci
Jun 18 10:23:01 archlinux kernel: scsi host1: ahci
Jun 18 10:23:01 archlinux kernel: scsi host2: ahci
Jun 18 10:23:01 archlinux kernel: scsi host3: ahci
Jun 18 10:23:01 archlinux kernel: scsi host4: ahci
Jun 18 10:23:01 archlinux kernel: scsi host5: ahci
Jun 18 10:23:01 archlinux kernel: scsi host6: ahci
Jun 18 10:23:01 archlinux kernel: scsi host7: ahci
Jun 18 10:23:01 archlinux kernel: ata1: DUMMY
Jun 18 10:23:01 archlinux kernel: ata2: DUMMY
Jun 18 10:23:01 archlinux kernel: ata3: DUMMY
Jun 18 10:23:01 archlinux kernel: ata4: DUMMY
Jun 18 10:23:01 archlinux kernel: ata5: SATA max UDMA/133 abar m2048@0x82402000 port 0x82402300 irq 126
Jun 18 10:23:01 archlinux kernel: ata6: SATA max UDMA/133 abar m2048@0x82402000 port 0x82402380 irq 126
Jun 18 10:23:01 archlinux kernel: ata7: SATA max UDMA/133 abar m2048@0x82402000 port 0x82402400 irq 126
Jun 18 10:23:01 archlinux kernel: ata8: SATA max UDMA/133 abar m2048@0x82402000 port 0x82402480 irq 126
Jun 18 10:23:01 archlinux kernel: ahci 0000:04:00.0: SSS flag set, parallel bus scan disabled
Jun 18 10:23:01 archlinux kernel: ahci 0000:04:00.0: AHCI 0001.0200 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
Jun 18 10:23:01 archlinux kernel: ahci 0000:04:00.0: flags: 64bit ncq sntf stag led clo pmp pio slum part ccc 
Jun 18 10:23:01 archlinux kernel: scsi host8: ahci
Jun 18 10:23:01 archlinux kernel: scsi host9: ahci
Jun 18 10:23:01 archlinux kernel: ata9: SATA max UDMA/133 abar m512@0x82100000 port 0x82100100 irq 127
Jun 18 10:23:01 archlinux kernel: ata10: SATA max UDMA/133 abar m512@0x82100000 port 0x82100180 irq 127
Jun 18 10:23:01 archlinux kernel: usbcore: registered new interface driver usbserial_generic
Jun 18 10:23:01 archlinux kernel: usbserial: USB Serial support registered for generic
Jun 18 10:23:01 archlinux kernel: rtc_cmos rtc_cmos: RTC can wake from S4
Jun 18 10:23:01 archlinux kernel: rtc_cmos rtc_cmos: registered as rtc0
Jun 18 10:23:01 archlinux kernel: rtc_cmos rtc_cmos: setting system clock to 2023-06-18T14:23:00 UTC (1687098180)
Jun 18 10:23:01 archlinux kernel: rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
Jun 18 10:23:01 archlinux kernel: intel_pstate: Intel P-state driver initializing
Jun 18 10:23:01 archlinux kernel: intel_pstate: HWP enabled
Jun 18 10:23:01 archlinux kernel: ledtrig-cpu: registered to indicate activity on CPUs
Jun 18 10:23:01 archlinux kernel: efifb: probing for efifb
Jun 18 10:23:01 archlinux kernel: efifb: framebuffer at 0x6000000000, using 8640k, total 8640k
Jun 18 10:23:01 archlinux kernel: efifb: mode is 1920x1080x32, linelength=8192, pages=1
Jun 18 10:23:01 archlinux kernel: efifb: scrolling: redraw
Jun 18 10:23:01 archlinux kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Jun 18 10:23:01 archlinux kernel: fbcon: Deferring console take-over
Jun 18 10:23:01 archlinux kernel: fb0: EFI VGA frame buffer device
Jun 18 10:23:01 archlinux kernel: hid: raw HID events driver (C) Jiri Kosina
Jun 18 10:23:01 archlinux kernel: intel_pmc_core INT33A1:00:  initialized
Jun 18 10:23:01 archlinux kernel: drop_monitor: Initializing network drop monitor service
Jun 18 10:23:01 archlinux kernel: Initializing XFRM netlink socket
Jun 18 10:23:01 archlinux kernel: NET: Registered PF_INET6 protocol family
Jun 18 10:23:01 archlinux kernel: Segment Routing with IPv6
Jun 18 10:23:01 archlinux kernel: RPL Segment Routing with IPv6
Jun 18 10:23:01 archlinux kernel: In-situ OAM (IOAM) with IPv6
Jun 18 10:23:01 archlinux kernel: NET: Registered PF_PACKET protocol family
Jun 18 10:23:01 archlinux kernel: microcode: Microcode Update Driver: v2.2.
Jun 18 10:23:01 archlinux kernel: IPI shorthand broadcast: enabled
Jun 18 10:23:01 archlinux kernel: sched_clock: Marking stable (480001429, 524952)->(458889712, 21636669)
Jun 18 10:23:01 archlinux kernel: registered taskstats version 1
Jun 18 10:23:01 archlinux kernel: Loading compiled-in X.509 certificates
Jun 18 10:23:01 archlinux kernel: Loaded X.509 cert 'Build time autogenerated kernel key: c2479143b051dac2beae4af95a5ee4fda39ee480'
Jun 18 10:23:01 archlinux kernel: zswap: loaded using pool zstd/zsmalloc
Jun 18 10:23:01 archlinux kernel: Key type .fscrypt registered
Jun 18 10:23:01 archlinux kernel: Key type fscrypt-provisioning registered
Jun 18 10:23:01 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
Jun 18 10:23:01 archlinux kernel: integrity: Loaded X.509 cert 'MSI SHIP DB: ebc30d5be5f35f8041c1c2d9e613eee2'
Jun 18 10:23:01 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
Jun 18 10:23:01 archlinux kernel: integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
Jun 18 10:23:01 archlinux kernel: integrity: Loading X.509 certificate: UEFI:db
Jun 18 10:23:01 archlinux kernel: integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
Jun 18 10:23:01 archlinux kernel: PM:   Magic number: 11:659:384
Jun 18 10:23:01 archlinux kernel: platform ACPI0007:34: hash matches
Jun 18 10:23:01 archlinux kernel: acpi ACPI0007:34: hash matches
Jun 18 10:23:01 archlinux kernel: RAS: Correctable Errors collector initialized.
Jun 18 10:23:01 archlinux kernel: ata7: SATA link down (SStatus 4 SControl 300)
Jun 18 10:23:01 archlinux kernel: ata9: SATA link down (SStatus 0 SControl 300)
Jun 18 10:23:01 archlinux kernel: ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Jun 18 10:23:01 archlinux kernel: ata5: SATA link down (SStatus 4 SControl 300)
Jun 18 10:23:01 archlinux kernel: ata8: SATA link down (SStatus 4 SControl 300)
Jun 18 10:23:01 archlinux kernel: ata6.00: ATA-11: ST14000NM001G-2KJ103, SN03, max UDMA/133
Jun 18 10:23:01 archlinux kernel: ata6.00: 27344764928 sectors, multi 16: LBA48 NCQ (depth 32), AA
Jun 18 10:23:01 archlinux kernel: ata6.00: Features: NCQ-sndrcv
Jun 18 10:23:01 archlinux kernel: ata6.00: configured for UDMA/133
Jun 18 10:23:01 archlinux kernel: scsi 5:0:0:0: Direct-Access     ATA      ST14000NM001G-2K SN03 PQ: 0 ANSI: 5
Jun 18 10:23:01 archlinux kernel: sd 5:0:0:0: [sda] 27344764928 512-byte logical blocks: (14.0 TB/12.7 TiB)
Jun 18 10:23:01 archlinux kernel: sd 5:0:0:0: [sda] 4096-byte physical blocks
Jun 18 10:23:01 archlinux kernel: sd 5:0:0:0: [sda] Write Protect is off
Jun 18 10:23:01 archlinux kernel: sd 5:0:0:0: [sda] Mode Sense: 00 3a 00 00
Jun 18 10:23:01 archlinux kernel: sd 5:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jun 18 10:23:01 archlinux kernel: sd 5:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
Jun 18 10:23:01 archlinux kernel:  sda: sda1 sda2 sda3
Jun 18 10:23:01 archlinux kernel: sd 5:0:0:0: [sda] Attached SCSI disk
Jun 18 10:23:01 archlinux kernel: ata10: SATA link down (SStatus 0 SControl 300)
Jun 18 10:23:01 archlinux kernel: Freeing unused decrypted memory: 2036K
Jun 18 10:23:01 archlinux kernel: Freeing unused kernel image (initmem) memory: 3324K
Jun 18 10:23:01 archlinux kernel: Write protecting the kernel read-only data: 30720k
Jun 18 10:23:01 archlinux kernel: Freeing unused kernel image (rodata/data gap) memory: 1676K
Jun 18 10:23:01 archlinux kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jun 18 10:23:01 archlinux kernel: rodata_test: all tests were successful
Jun 18 10:23:01 archlinux kernel: Run /init as init process
Jun 18 10:23:01 archlinux kernel:   with arguments:
Jun 18 10:23:01 archlinux kernel:     /init
Jun 18 10:23:01 archlinux kernel:   with environment:
Jun 18 10:23:01 archlinux kernel:     HOME=/
Jun 18 10:23:01 archlinux kernel:     TERM=linux
Jun 18 10:23:01 archlinux kernel:     BOOT_IMAGE=/vmlinuz-linux
Jun 18 10:23:01 archlinux systemd[1]: systemd 253.5-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 18 10:23:01 archlinux systemd[1]: Detected architecture x86-64.
Jun 18 10:23:01 archlinux systemd[1]: Running in initrd.
Jun 18 10:23:01 archlinux kernel: fbcon: Taking over console
Jun 18 10:23:01 archlinux systemd[1]: Initializing machine ID from random generator.
Jun 18 10:23:01 archlinux kernel: Console: switching to colour frame buffer device 240x67
Jun 18 10:23:01 archlinux systemd[1]: Queued start job for default target Initrd Default Target.
Jun 18 10:23:01 archlinux systemd[1]: Reached target Local File Systems.
Jun 18 10:23:01 archlinux systemd[1]: Reached target Path Units.
Jun 18 10:23:01 archlinux systemd[1]: Reached target Slice Units.
Jun 18 10:23:01 archlinux systemd[1]: Reached target Swaps.
Jun 18 10:23:01 archlinux systemd[1]: Reached target Timer Units.
Jun 18 10:23:01 archlinux systemd[1]: Listening on Journal Socket (/dev/log).
Jun 18 10:23:01 archlinux systemd[1]: Listening on Journal Socket.
Jun 18 10:23:01 archlinux systemd[1]: Listening on udev Control Socket.
Jun 18 10:23:01 archlinux systemd[1]: Listening on udev Kernel Socket.
Jun 18 10:23:01 archlinux systemd[1]: Reached target Socket Units.
Jun 18 10:23:01 archlinux systemd[1]: Starting Create List of Static Device Nodes...
Jun 18 10:23:01 archlinux systemd[1]: Starting Journal Service...
Jun 18 10:23:01 archlinux systemd[1]: Starting Load Kernel Modules...
Jun 18 10:23:01 archlinux systemd[1]: TPM2 PCR Barrier (initrd) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
Jun 18 10:23:01 archlinux systemd[1]: Starting Coldplug All udev Devices...
Jun 18 10:23:01 archlinux systemd[1]: Finished Create List of Static Device Nodes.
Jun 18 10:23:01 archlinux systemd[1]: Starting Create Static Device Nodes in /dev...
Jun 18 10:23:01 archlinux systemd[1]: Finished Create Static Device Nodes in /dev.
Jun 18 10:23:01 archlinux systemd[1]: Starting Rule-based Manager for Device Events and Files...
Jun 18 10:23:01 archlinux systemd-journald[173]: Collecting audit messages is disabled.
Jun 18 10:23:01 archlinux kernel: raid6: skipped pq benchmark and selected avx2x4
Jun 18 10:23:01 archlinux kernel: raid6: using avx2x2 recovery algorithm
Jun 18 10:23:01 archlinux systemd[1]: Started Rule-based Manager for Device Events and Files.
Jun 18 10:23:01 archlinux kernel: xor: automatically using best checksumming function   avx       
Jun 18 10:23:01 archlinux systemd-journald[173]: Journal started
Jun 18 10:23:01 archlinux systemd-journald[173]: Runtime Journal (/run/log/journal/164565af797d49ca8f423ac380f7a202) is 8.0M, max 637.7M, 629.7M free.
Jun 18 10:23:01 archlinux systemd-udevd[181]: Using default interface naming scheme 'v253'.
Jun 18 10:23:01 archlinux systemd[1]: Started Journal Service.
Jun 18 10:23:01 archlinux systemd[1]: Finished Coldplug All udev Devices.
Jun 18 10:23:01 archlinux systemd-modules-load[175]: Inserted module 'btrfs'
Jun 18 10:23:01 archlinux kernel: Btrfs loaded, crc32c=crc32c-intel, zoned=yes, fsverity=yes
Jun 18 10:23:01 archlinux systemd[1]: Finished Load Kernel Modules.
Jun 18 10:23:01 archlinux systemd[1]: Reached target System Initialization.
Jun 18 10:23:01 archlinux systemd[1]: Reached target Basic System.
Jun 18 10:23:01 archlinux kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Jun 18 10:23:01 archlinux kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
Jun 18 10:23:01 archlinux kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
Jun 18 10:23:01 archlinux kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Jun 18 10:23:01 archlinux kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
Jun 18 10:23:01 archlinux kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.2 Enhanced SuperSpeed
Jun 18 10:23:01 archlinux kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.03
Jun 18 10:23:01 archlinux kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 18 10:23:01 archlinux kernel: usb usb1: Product: xHCI Host Controller
Jun 18 10:23:01 archlinux kernel: usb usb1: Manufacturer: Linux 6.3.8-arch1-1 xhci-hcd
Jun 18 10:23:01 archlinux kernel: usb usb1: SerialNumber: 0000:00:14.0
Jun 18 10:23:01 archlinux kernel: hub 1-0:1.0: USB hub found
Jun 18 10:23:01 archlinux kernel: hub 1-0:1.0: 16 ports detected
Jun 18 10:23:01 archlinux kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.03
Jun 18 10:23:01 archlinux kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun 18 10:23:01 archlinux kernel: usb usb2: Product: xHCI Host Controller
Jun 18 10:23:01 archlinux kernel: usb usb2: Manufacturer: Linux 6.3.8-arch1-1 xhci-hcd
Jun 18 10:23:01 archlinux kernel: usb usb2: SerialNumber: 0000:00:14.0
Jun 18 10:23:01 archlinux kernel: hub 2-0:1.0: USB hub found
Jun 18 10:23:01 archlinux kernel: hub 2-0:1.0: 9 ports detected
Jun 18 10:23:01 archlinux kernel: usb: port power management may be unreliable
Jun 18 10:23:01 archlinux kernel: nvme nvme0: pci function 0000:02:00.0
Jun 18 10:23:01 archlinux kernel: nvme nvme0: allocated 64 MiB host memory buffer.
Jun 18 10:23:01 archlinux kernel: nvme nvme0: 4/0/0 default/read/poll queues
Jun 18 10:23:01 archlinux kernel: usb 1-2: new high-speed USB device number 2 using xhci_hcd
Jun 18 10:23:01 archlinux kernel: nvme nvme0: Ignoring bogus Namespace Identifiers
Jun 18 10:23:01 archlinux kernel:  nvme0n1: p1 p2 p3
Jun 18 10:23:01 archlinux kernel: BTRFS: device fsid aa381a55-427d-4d84-8574-bbb1a23b24e4 devid 1 transid 684 /dev/nvme0n1p2 scanned by (udev-worker) (197)
Jun 18 10:23:01 archlinux systemd[1]: Found device TEAM TM8FP6001T primary.
Jun 18 10:23:01 archlinux systemd[1]: Reached target Initrd Root Device.
Jun 18 10:23:01 archlinux systemd[1]: Starting File System Check on /dev/disk/by-uuid/aa381a55-427d-4d84-8574-bbb1a23b24e4...
Jun 18 10:23:01 archlinux systemd[1]: Finished File System Check on /dev/disk/by-uuid/aa381a55-427d-4d84-8574-bbb1a23b24e4.
Jun 18 10:23:01 archlinux systemd[1]: Mounting /sysroot...
Jun 18 10:23:01 archlinux kernel: BTRFS info (device nvme0n1p2): using crc32c (crc32c-intel) checksum algorithm
Jun 18 10:23:01 archlinux kernel: BTRFS info (device nvme0n1p2): using free space tree
Jun 18 10:23:01 archlinux kernel: BTRFS info (device nvme0n1p2): enabling ssd optimizations
Jun 18 10:23:01 archlinux kernel: BTRFS info (device nvme0n1p2): auto enabling async discard
Jun 18 10:23:01 archlinux systemd[1]: Mounted /sysroot.
Jun 18 10:23:01 archlinux systemd[1]: Reached target Initrd Root File System.
Jun 18 10:23:01 archlinux systemd[1]: Starting Mountpoints Configured in the Real Root...
Jun 18 10:23:01 archlinux kernel: usb 1-2: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=60.90
Jun 18 10:23:01 archlinux kernel: usb 1-2: New USB device strings: Mfr=0, Product=1, SerialNumber=0
Jun 18 10:23:01 archlinux kernel: usb 1-2: Product: USB2.0 Hub
Jun 18 10:23:01 archlinux kernel: hub 1-2:1.0: USB hub found
Jun 18 10:23:01 archlinux kernel: hub 1-2:1.0: 4 ports detected
Jun 18 10:23:01 archlinux systemd[1]: initrd-parse-etc.service: Deactivated successfully.
Jun 18 10:23:01 archlinux systemd[1]: Finished Mountpoints Configured in the Real Root.
Jun 18 10:23:01 archlinux systemd[1]: Reached target Initrd File Systems.
Jun 18 10:23:01 archlinux systemd[1]: Reached target Initrd Default Target.
Jun 18 10:23:01 archlinux systemd[1]: Starting Cleaning Up and Shutting Down Daemons...
Jun 18 10:23:01 archlinux systemd[1]: Stopped target Initrd Default Target.
Jun 18 10:23:01 archlinux systemd[1]: Stopped target Basic System.
Jun 18 10:23:01 archlinux systemd[1]: Stopped target Initrd Root Device.
Jun 18 10:23:01 archlinux systemd[1]: Stopped target Path Units.
Jun 18 10:23:01 archlinux systemd[1]: Stopped target Slice Units.
Jun 18 10:23:01 archlinux systemd[1]: Stopped target Socket Units.
Jun 18 10:23:01 archlinux systemd[1]: Stopped target System Initialization.
Jun 18 10:23:01 archlinux systemd[1]: Stopped target Local File Systems.
Jun 18 10:23:01 archlinux systemd[1]: Stopped target Swaps.
Jun 18 10:23:01 archlinux systemd[1]: Stopped target Timer Units.
Jun 18 10:23:01 archlinux systemd[1]: systemd-modules-load.service: Deactivated successfully.
Jun 18 10:23:01 archlinux systemd[1]: Stopped Load Kernel Modules.
Jun 18 10:23:01 archlinux systemd[1]: systemd-udev-trigger.service: Deactivated successfully.
Jun 18 10:23:01 archlinux systemd[1]: Stopped Coldplug All udev Devices.
Jun 18 10:23:01 archlinux systemd[1]: Stopping Rule-based Manager for Device Events and Files...
Jun 18 10:23:01 archlinux systemd[1]: systemd-udevd.service: Deactivated successfully.
Jun 18 10:23:01 archlinux systemd[1]: Stopped Rule-based Manager for Device Events and Files.
Jun 18 10:23:01 archlinux systemd[1]: initrd-cleanup.service: Deactivated successfully.
Jun 18 10:23:01 archlinux systemd[1]: Finished Cleaning Up and Shutting Down Daemons.
Jun 18 10:23:01 archlinux systemd[1]: systemd-udevd-control.socket: Deactivated successfully.
Jun 18 10:23:01 archlinux systemd[1]: Closed udev Control Socket.
Jun 18 10:23:01 archlinux systemd[1]: systemd-udevd-kernel.socket: Deactivated successfully.
Jun 18 10:23:01 archlinux systemd[1]: Closed udev Kernel Socket.
Jun 18 10:23:01 archlinux systemd[1]: Starting Cleanup udev Database...
Jun 18 10:23:01 archlinux systemd[1]: systemd-tmpfiles-setup-dev.service: Deactivated successfully.
Jun 18 10:23:01 archlinux systemd[1]: Stopped Create Static Device Nodes in /dev.
Jun 18 10:23:01 archlinux systemd[1]: kmod-static-nodes.service: Deactivated successfully.
Jun 18 10:23:01 archlinux systemd[1]: Stopped Create List of Static Device Nodes.
Jun 18 10:23:01 archlinux systemd[1]: initrd-udevadm-cleanup-db.service: Deactivated successfully.
Jun 18 10:23:01 archlinux systemd[1]: Finished Cleanup udev Database.
Jun 18 10:23:01 archlinux systemd[1]: Reached target Switch Root.
Jun 18 10:23:01 archlinux systemd[1]: Starting Switch Root...
Jun 18 10:23:01 archlinux kernel: memfd_create() without MFD_EXEC nor MFD_NOEXEC_SEAL, pid=1 'systemd'
Jun 18 10:23:01 archlinux systemd[1]: Switching root.
Jun 18 10:23:01 archlinux systemd-journald[173]: Journal stopped
Jun 18 10:23:02 Doopliss systemd-journald[173]: Received SIGTERM from PID 1 (systemd).
Jun 18 10:23:02 Doopliss kernel: usb 2-2: new SuperSpeed Plus Gen 2x1 USB device number 2 using xhci_hcd
Jun 18 10:23:02 Doopliss kernel: usb 2-2: New USB device found, idVendor=05e3, idProduct=0625, bcdDevice=76.81
Jun 18 10:23:02 Doopliss kernel: usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun 18 10:23:02 Doopliss kernel: usb 2-2: Product: USB3.2 Hub
Jun 18 10:23:02 Doopliss kernel: usb 2-2: Manufacturer: GenesysLogic
Jun 18 10:23:02 Doopliss systemd[1]: systemd 253.5-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 18 10:23:02 Doopliss systemd[1]: Detected architecture x86-64.
Jun 18 10:23:02 Doopliss kernel: hub 2-2:1.0: USB hub found
Jun 18 10:23:02 Doopliss systemd[1]: Hostname set to <Doopliss>.
Jun 18 10:23:02 Doopliss kernel: hub 2-2:1.0: 4 ports detected
Jun 18 10:23:02 Doopliss kernel: usb 1-3: new high-speed USB device number 3 using xhci_hcd
Jun 18 10:23:02 Doopliss systemd[1]: bpf-lsm: LSM BPF program attached
Jun 18 10:23:02 Doopliss kernel: zram: Added device: zram0
Jun 18 10:23:02 Doopliss kernel: usb 1-3: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=76.81
Jun 18 10:23:02 Doopliss kernel: usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun 18 10:23:02 Doopliss kernel: usb 1-3: Product: USB2.1 Hub
Jun 18 10:23:02 Doopliss kernel: usb 1-3: Manufacturer: GenesysLogic
Jun 18 10:23:02 Doopliss kernel: hub 1-3:1.0: USB hub found
Jun 18 10:23:02 Doopliss kernel: hub 1-3:1.0: 4 ports detected
Jun 18 10:23:02 Doopliss systemd[1]: initrd-switch-root.service: Deactivated successfully.
Jun 18 10:23:02 Doopliss systemd[1]: Stopped Switch Root.
Jun 18 10:23:02 Doopliss systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
Jun 18 10:23:02 Doopliss systemd[1]: Created slice Slice /system/getty.
Jun 18 10:23:02 Doopliss systemd[1]: Created slice Slice /system/modprobe.
Jun 18 10:23:02 Doopliss systemd[1]: Created slice Slice /system/systemd-fsck.
Jun 18 10:23:02 Doopliss systemd[1]: Created slice Slice /system/systemd-zram-setup.
Jun 18 10:23:02 Doopliss systemd[1]: Created slice User and Session Slice.
Jun 18 10:23:02 Doopliss systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Jun 18 10:23:02 Doopliss systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Jun 18 10:23:02 Doopliss systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Jun 18 10:23:02 Doopliss systemd[1]: Reached target Local Encrypted Volumes.
Jun 18 10:23:02 Doopliss systemd[1]: Reached target Login Prompts.
Jun 18 10:23:02 Doopliss systemd[1]: Stopped target Switch Root.
Jun 18 10:23:02 Doopliss systemd[1]: Stopped target Initrd File Systems.
Jun 18 10:23:02 Doopliss systemd[1]: Stopped target Initrd Root File System.
Jun 18 10:23:02 Doopliss systemd[1]: Reached target Local Integrity Protected Volumes.
Jun 18 10:23:02 Doopliss systemd[1]: Reached target Path Units.
Jun 18 10:23:02 Doopliss systemd[1]: Reached target Remote File Systems.
Jun 18 10:23:02 Doopliss systemd[1]: Reached target Slice Units.
Jun 18 10:23:02 Doopliss systemd[1]: Reached target Local Verity Protected Volumes.
Jun 18 10:23:02 Doopliss systemd[1]: Listening on Device-mapper event daemon FIFOs.
Jun 18 10:23:02 Doopliss systemd[1]: Listening on Process Core Dump Socket.
Jun 18 10:23:02 Doopliss systemd[1]: Listening on udev Control Socket.
Jun 18 10:23:02 Doopliss systemd[1]: Listening on udev Kernel Socket.
Jun 18 10:23:02 Doopliss kernel: usb 1-2.1: new low-speed USB device number 4 using xhci_hcd
Jun 18 10:23:02 Doopliss systemd[1]: Mounting Huge Pages File System...
Jun 18 10:23:02 Doopliss systemd[1]: Mounting POSIX Message Queue File System...
Jun 18 10:23:02 Doopliss systemd[1]: Mounting Kernel Debug File System...
Jun 18 10:23:02 Doopliss systemd[1]: Mounting Kernel Trace File System...
Jun 18 10:23:02 Doopliss systemd[1]: Starting Create List of Static Device Nodes...
Jun 18 10:23:02 Doopliss systemd[1]: Starting Load Kernel Module configfs...
Jun 18 10:23:02 Doopliss systemd[1]: Starting Load Kernel Module dm_mod...
Jun 18 10:23:02 Doopliss systemd[1]: Starting Load Kernel Module drm...
Jun 18 10:23:02 Doopliss systemd[1]: Starting Load Kernel Module fuse...
Jun 18 10:23:02 Doopliss systemd[1]: Starting Load Kernel Module loop...
Jun 18 10:23:02 Doopliss systemd[1]: systemd-fsck-root.service: Deactivated successfully.
Jun 18 10:23:02 Doopliss kernel: loop: module loaded
Jun 18 10:23:02 Doopliss kernel: device-mapper: uevent: version 1.0.3
Jun 18 10:23:02 Doopliss kernel: device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
Jun 18 10:23:02 Doopliss kernel: fuse: init (API version 7.38)
Jun 18 10:23:02 Doopliss systemd[1]: Stopped File System Check on Root Device.
Jun 18 10:23:02 Doopliss systemd[1]: Stopped Journal Service.
Jun 18 10:23:02 Doopliss systemd[1]: Starting Journal Service...
Jun 18 10:23:02 Doopliss systemd[1]: Starting Load Kernel Modules...
Jun 18 10:23:02 Doopliss 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 18 10:23:02 Doopliss systemd[1]: Starting Remount Root and Kernel File Systems...
Jun 18 10:23:02 Doopliss systemd[1]: Starting Coldplug All udev Devices...
Jun 18 10:23:02 Doopliss systemd[1]: Mounted Huge Pages File System.
Jun 18 10:23:02 Doopliss systemd[1]: Mounted POSIX Message Queue File System.
Jun 18 10:23:02 Doopliss systemd[1]: Mounted Kernel Debug File System.
Jun 18 10:23:02 Doopliss systemd[1]: Mounted Kernel Trace File System.
Jun 18 10:23:02 Doopliss systemd-journald[270]: Collecting audit messages is disabled.
Jun 18 10:23:02 Doopliss systemd-journald[270]: Journal started
Jun 18 10:23:02 Doopliss systemd-journald[270]: Runtime Journal (/run/log/journal/f63a27827fa5455f96b38d9c440a2246) is 8.0M, max 637.7M, 629.7M free.
Jun 18 10:23:02 Doopliss systemd[1]: Queued start job for default target Graphical Interface.
Jun 18 10:23:02 Doopliss systemd[1]: systemd-journald.service: Deactivated successfully.
Jun 18 10:23:02 Doopliss systemd-modules-load[271]: Inserted module 'dm_multipath'
Jun 18 10:23:02 Doopliss kernel: usb 1-2.1: New USB device found, idVendor=413c, idProduct=2113, bcdDevice=33.08
Jun 18 10:23:02 Doopliss kernel: usb 1-2.1: New USB device strings: Mfr=0, Product=2, SerialNumber=0
Jun 18 10:23:02 Doopliss kernel: usb 1-2.1: Product: Dell KB216 Wired Keyboard
Jun 18 10:23:02 Doopliss systemd[1]: modprobe@configfs.service: Deactivated successfully.
Jun 18 10:23:02 Doopliss systemd[1]: Finished Create List of Static Device Nodes.
Jun 18 10:23:02 Doopliss systemd[1]: Started Journal Service.
Jun 18 10:23:02 Doopliss systemd[1]: Finished Load Kernel Module configfs.
Jun 18 10:23:02 Doopliss systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
Jun 18 10:23:02 Doopliss kernel: usb 2-2.3: new SuperSpeed USB device number 3 using xhci_hcd
Jun 18 10:23:02 Doopliss systemd[1]: Finished Load Kernel Module dm_mod.
Jun 18 10:23:02 Doopliss systemd[1]: modprobe@drm.service: Deactivated successfully.
Jun 18 10:23:02 Doopliss kernel: usb 2-2.3: New USB device found, idVendor=05e3, idProduct=0626, bcdDevice= 6.63
Jun 18 10:23:02 Doopliss kernel: usb 2-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun 18 10:23:02 Doopliss kernel: usb 2-2.3: Product: USB3.1 Hub
Jun 18 10:23:02 Doopliss kernel: usb 2-2.3: Manufacturer: GenesysLogic
Jun 18 10:23:02 Doopliss kernel: hub 2-2.3:1.0: USB hub found
Jun 18 10:23:02 Doopliss kernel: hub 2-2.3:1.0: 4 ports detected
Jun 18 10:23:02 Doopliss systemd[1]: Finished Load Kernel Module drm.
Jun 18 10:23:02 Doopliss systemd[1]: modprobe@fuse.service: Deactivated successfully.
Jun 18 10:23:02 Doopliss systemd[1]: Finished Load Kernel Module fuse.
Jun 18 10:23:02 Doopliss systemd[1]: modprobe@loop.service: Deactivated successfully.
Jun 18 10:23:02 Doopliss systemd[1]: Finished Load Kernel Module loop.
Jun 18 10:23:02 Doopliss systemd[1]: Finished Remount Root and Kernel File Systems.
Jun 18 10:23:02 Doopliss systemd[1]: Finished Coldplug All udev Devices.
Jun 18 10:23:02 Doopliss kernel: usb 1-9: new full-speed USB device number 5 using xhci_hcd
Jun 18 10:23:02 Doopliss systemd[1]: Mounting FUSE Control File System...
Jun 18 10:23:02 Doopliss systemd[1]: Mounting Kernel Configuration File System...
Jun 18 10:23:02 Doopliss systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Jun 18 10:23:02 Doopliss systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
Jun 18 10:23:02 Doopliss systemd[1]: Starting Load/Save OS Random Seed...
Jun 18 10:23:02 Doopliss systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
Jun 18 10:23:02 Doopliss systemd[1]: Create System Users was skipped because no trigger condition checks were met.
Jun 18 10:23:02 Doopliss systemd[1]: Starting Create Static Device Nodes in /dev...
Jun 18 10:23:02 Doopliss systemd[1]: Mounted FUSE Control File System.
Jun 18 10:23:02 Doopliss systemd[1]: Mounted Kernel Configuration File System.
Jun 18 10:23:02 Doopliss systemd[1]: Finished Load/Save OS Random Seed.
Jun 18 10:23:02 Doopliss systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Jun 18 10:23:02 Doopliss systemd[1]: Finished Create Static Device Nodes in /dev.
Jun 18 10:23:02 Doopliss systemd[1]: Reached target Preparation for Local File Systems.
Jun 18 10:23:02 Doopliss systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPathExists=/var/lib/machines.raw).
Jun 18 10:23:02 Doopliss systemd[1]: Starting Rule-based Manager for Device Events and Files...
Jun 18 10:23:02 Doopliss systemd-udevd[290]: Using default interface naming scheme 'v253'.
Jun 18 10:23:02 Doopliss systemd[1]: Started Rule-based Manager for Device Events and Files.
Jun 18 10:23:02 Doopliss systemd[1]: Starting Load Kernel Module configfs...
Jun 18 10:23:02 Doopliss systemd[1]: modprobe@configfs.service: Deactivated successfully.
Jun 18 10:23:02 Doopliss systemd[1]: Finished Load Kernel Module configfs.
Jun 18 10:23:02 Doopliss systemd[1]: Found device /dev/zram0.
Jun 18 10:23:02 Doopliss systemd[1]: Condition check resulted in TEAM TM8FP6001T Vivian being skipped.
Jun 18 10:23:02 Doopliss systemd[1]: Condition check resulted in TEAM TM8FP6001T primary being skipped.
Jun 18 10:23:02 Doopliss systemd[1]: Mounting /drisca/V...
Jun 18 10:23:02 Doopliss systemd[1]: Starting File System Check on /dev/disk/by-uuid/F471-CB1F...
Jun 18 10:23:02 Doopliss systemd[1]: Starting Create swap on /dev/zram0...
Jun 18 10:23:02 Doopliss systemd[1]: Found device TEAM TM8FP6001T primary.
Jun 18 10:23:02 Doopliss systemd[1]: Mounting /.snapshots...
Jun 18 10:23:02 Doopliss kernel: zram0: detected capacity change from 0 to 8388608
Jun 18 10:23:02 Doopliss systemd[1]: Mounting /home...
Jun 18 10:23:02 Doopliss systemd[1]: Mounting /var/cache/pacman/pkg...
Jun 18 10:23:02 Doopliss systemd[1]: Mounting /var/log...
Jun 18 10:23:02 Doopliss kernel: usb 1-9: New USB device found, idVendor=046d, idProduct=0a37, bcdDevice= 1.16
Jun 18 10:23:02 Doopliss kernel: usb 1-9: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun 18 10:23:02 Doopliss kernel: usb 1-9: Product: Logitech USB Headset H540
Jun 18 10:23:02 Doopliss kernel: usb 1-9: Manufacturer: Logitech Inc 
Jun 18 10:23:02 Doopliss kernel: usb 1-9: SerialNumber: 00000000
Jun 18 10:23:02 Doopliss zram-generator[362]: Setting up swapspace version 1, size = 4 GiB (4294963200 bytes)
Jun 18 10:23:02 Doopliss zram-generator[362]: LABEL=zram0, UUID=4543e809-5213-4324-b58f-f7078e86d0f7
Jun 18 10:23:02 Doopliss systemd[1]: Mounted /.snapshots.
Jun 18 10:23:02 Doopliss systemd[1]: Mounted /home.
Jun 18 10:23:02 Doopliss systemd-makefs[354]: /dev/zram0 successfully formatted as swap (label "zram0", uuid 4543e809-5213-4324-b58f-f7078e86d0f7)
Jun 18 10:23:02 Doopliss systemd[1]: Mounted /var/cache/pacman/pkg.
Jun 18 10:23:02 Doopliss systemd[1]: Mounted /var/log.
Jun 18 10:23:02 Doopliss systemd-fsck[360]: fsck.fat 4.2 (2021-01-31)
Jun 18 10:23:02 Doopliss systemd-fsck[360]: /dev/nvme0n1p1: 370 files, 20639/130556 clusters
Jun 18 10:23:02 Doopliss kernel: usb 1-2.2: new full-speed USB device number 6 using xhci_hcd
Jun 18 10:23:02 Doopliss systemd[1]: Finished Create swap on /dev/zram0.
Jun 18 10:23:02 Doopliss kernel: usb 1-2.2: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=24.01
Jun 18 10:23:02 Doopliss kernel: usb 1-2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun 18 10:23:02 Doopliss kernel: usb 1-2.2: Product: USB Receiver
Jun 18 10:23:02 Doopliss kernel: usb 1-2.2: Manufacturer: Logitech
Jun 18 10:23:02 Doopliss systemd[1]: Finished File System Check on /dev/disk/by-uuid/F471-CB1F.
Jun 18 10:23:02 Doopliss systemd[1]: Activating swap Compressed Swap on /dev/zram0...
Jun 18 10:23:02 Doopliss systemd[1]: Starting Flush Journal to Persistent Storage...
Jun 18 10:23:02 Doopliss systemd-journald[270]: Time spent on flushing to /var/log/journal/f63a27827fa5455f96b38d9c440a2246 is 50.417ms for 1005 entries.
Jun 18 10:23:02 Doopliss systemd-journald[270]: System Journal (/var/log/journal/f63a27827fa5455f96b38d9c440a2246) is 187.4M, max 4.0G, 3.8G free.
Jun 18 10:23:03 Doopliss systemd-journald[270]: Received client request to flush runtime journal.
Jun 18 10:23:03 Doopliss systemd-journald[270]: /var/log/journal/f63a27827fa5455f96b38d9c440a2246/system.journal: Monotonic clock jumped backwards relative to last journal entry, rotating.
Jun 18 10:23:03 Doopliss systemd-journald[270]: Rotating system journal.
Jun 18 10:23:03 Doopliss kernel: spi-nor spi0.0: mx25u25635f (32768 Kbytes)
Jun 18 10:23:03 Doopliss kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
Jun 18 10:23:03 Doopliss kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Jun 18 10:23:03 Doopliss kernel: ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
Jun 18 10:23:03 Doopliss kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
Jun 18 10:23:03 Doopliss kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Jun 18 10:23:03 Doopliss kernel: Creating 1 MTD partitions on "0000:00:1f.5":
Jun 18 10:23:03 Doopliss kernel: 0x000000000000-0x000002000000 : "BIOS"
Jun 18 10:23:03 Doopliss kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
Jun 18 10:23:03 Doopliss kernel: cfg80211: failed to load regulatory.db
Jun 18 10:23:03 Doopliss kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input3
Jun 18 10:23:03 Doopliss kernel: i2c i2c-0: 2/4 memory slots populated (from DMI)
Jun 18 10:23:03 Doopliss kernel: Adding 4194300k swap on /dev/zram0.  Priority:100 extents:1 across:4194300k SSDscFS
Jun 18 10:23:03 Doopliss kernel: i2c i2c-0: Successfully instantiated SPD at 0x51
Jun 18 10:23:03 Doopliss kernel: input: Dell KB216 Wired Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.1/1-2.1:1.0/0003:413C:2113.0001/input/input4
Jun 18 10:23:03 Doopliss kernel: i2c i2c-0: Successfully instantiated SPD at 0x53
Jun 18 10:23:03 Doopliss kernel: usb 1-3.3: new high-speed USB device number 7 using xhci_hcd
Jun 18 10:23:03 Doopliss kernel: input: PC Speaker as /devices/platform/pcspkr/input/input5
Jun 18 10:23:03 Doopliss systemd[1]: Activated swap Compressed Swap on /dev/zram0.
Jun 18 10:23:03 Doopliss systemd[1]: Reached target Swaps.
Jun 18 10:23:03 Doopliss kernel: EXT4-fs (nvme0n1p3): mounted filesystem 6581bb5b-e346-415d-aa19-c4439be69093 with ordered data mode. Quota mode: none.
Jun 18 10:23:03 Doopliss kernel: hid-generic 0003:413C:2113.0001: input,hidraw0: USB HID v1.11 Keyboard [Dell KB216 Wired Keyboard] on usb-0000:00:14.0-2.1/input0
Jun 18 10:23:03 Doopliss kernel: input: Dell KB216 Wired Keyboard System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.1/1-2.1:1.1/0003:413C:2113.0002/input/input6
Jun 18 10:23:03 Doopliss systemd[1]: Finished Flush Journal to Persistent Storage.
Jun 18 10:23:03 Doopliss systemd[1]: Mounted /drisca/V.
Jun 18 10:23:03 Doopliss systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Jun 18 10:23:03 Doopliss kernel: input: Dell KB216 Wired Keyboard Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.1/1-2.1:1.1/0003:413C:2113.0002/input/input7
Jun 18 10:23:03 Doopliss kernel: hid-generic 0003:413C:2113.0002: input,hiddev96,hidraw1: USB HID v1.11 Device [Dell KB216 Wired Keyboard] on usb-0000:00:14.0-2.1/input1
Jun 18 10:23:03 Doopliss kernel: iTCO_vendor_support: vendor-support=0
Jun 18 10:23:03 Doopliss kernel: r8169 0000:03:00.0: enabling device (0000 -> 0003)
Jun 18 10:23:03 Doopliss kernel: r8169 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
Jun 18 10:23:03 Doopliss kernel: ee1004 0-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
Jun 18 10:23:03 Doopliss kernel: usb 1-3.3: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.63
Jun 18 10:23:03 Doopliss kernel: usb 1-3.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun 18 10:23:03 Doopliss kernel: usb 1-3.3: Product: USB2.1 Hub
Jun 18 10:23:03 Doopliss kernel: usb 1-3.3: Manufacturer: GenesysLogic
Jun 18 10:23:03 Doopliss kernel: ee1004 0-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
Jun 18 10:23:03 Doopliss kernel: Intel(R) Wireless WiFi driver for Linux
Jun 18 10:23:03 Doopliss kernel: iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
Jun 18 10:23:03 Doopliss kernel: RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 655360 ms ovfl timer
Jun 18 10:23:03 Doopliss kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
Jun 18 10:23:03 Doopliss kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
Jun 18 10:23:03 Doopliss kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
Jun 18 10:23:03 Doopliss kernel: hub 1-3.3:1.0: USB hub found
Jun 18 10:23:03 Doopliss kernel: input: Logitech Inc  Logitech USB Headset H540 as /devices/pci0000:00/0000:00:14.0/usb1/1-9/1-9:1.3/0003:046D:0A37.0003/input/input8
Jun 18 10:23:03 Doopliss kernel: hub 1-3.3:1.0: 4 ports detected
Jun 18 10:23:03 Doopliss kernel: cryptd: max_cpu_qlen set to 1000
Jun 18 10:23:03 Doopliss kernel: iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
Jun 18 10:23:03 Doopliss kernel: r8169 0000:03:00.0 eth0: RTL8125B, 04:7c:16:4a:33:3a, XID 641, IRQ 147
Jun 18 10:23:03 Doopliss kernel: r8169 0000:03:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
Jun 18 10:23:03 Doopliss kernel: snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
Jun 18 10:23:03 Doopliss kernel: snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
Jun 18 10:23:03 Doopliss kernel: snd_hda_intel 0000:01:00.1: Disabling MSI
Jun 18 10:23:03 Doopliss kernel: snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
Jun 18 10:23:03 Doopliss kernel: AVX2 version of gcm_enc/dec engaged.
Jun 18 10:23:03 Doopliss kernel: AES CTR mode by8 optimization enabled
Jun 18 10:23:03 Doopliss kernel: iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
Jun 18 10:23:03 Doopliss kernel: r8169 0000:03:00.0 enp3s0: renamed from eth0
Jun 18 10:23:03 Doopliss kernel: iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
Jun 18 10:23:03 Doopliss kernel: iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 0.0.2.36
Jun 18 10:23:03 Doopliss kernel: iwlwifi 0000:00:14.3: loaded firmware version 74.fe17486e.0 so-a0-gf-a0-74.ucode op_mode iwlmvm
Jun 18 10:23:03 Doopliss kernel: hid-generic 0003:046D:0A37.0003: input,hidraw2: USB HID v1.11 Device [Logitech Inc  Logitech USB Headset H540] on usb-0000:00:14.0-9/input3
Jun 18 10:23:03 Doopliss kernel: input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.2/1-2.2:1.0/0003:046D:C52B.0004/input/input9
Jun 18 10:23:03 Doopliss kernel: usb 2-2.3.4: new SuperSpeed USB device number 4 using xhci_hcd
Jun 18 10:23:03 Doopliss kernel: usb 2-2.3.4: New USB device found, idVendor=05e3, idProduct=0626, bcdDevice= 6.63
Jun 18 10:23:03 Doopliss kernel: usb 2-2.3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun 18 10:23:03 Doopliss kernel: usb 2-2.3.4: Product: USB3.1 Hub
Jun 18 10:23:03 Doopliss kernel: usb 2-2.3.4: Manufacturer: GenesysLogic
Jun 18 10:23:03 Doopliss kernel: hub 2-2.3.4:1.0: USB hub found
Jun 18 10:23:03 Doopliss kernel: hub 2-2.3.4:1.0: 4 ports detected
Jun 18 10:23:03 Doopliss kernel: hid-generic 0003:046D:C52B.0004: input,hidraw3: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:14.0-2.2/input0
Jun 18 10:23:03 Doopliss kernel: input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.2/1-2.2:1.1/0003:046D:C52B.0005/input/input10
Jun 18 10:23:03 Doopliss kernel: input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.2/1-2.2:1.1/0003:046D:C52B.0005/input/input11
Jun 18 10:23:03 Doopliss kernel: nvidia: loading out-of-tree module taints kernel.
Jun 18 10:23:03 Doopliss kernel: nvidia: module license 'NVIDIA' taints kernel.
Jun 18 10:23:03 Doopliss kernel: Disabling lock debugging due to kernel taint
Jun 18 10:23:03 Doopliss kernel: nvidia: module verification failed: signature and/or required key missing - tainting kernel
Jun 18 10:23:03 Doopliss kernel: input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.2/1-2.2:1.1/0003:046D:C52B.0005/input/input12
Jun 18 10:23:03 Doopliss kernel: hid-generic 0003:046D:C52B.0005: input,hiddev97,hidraw4: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-2.2/input1
Jun 18 10:23:03 Doopliss kernel: hid-generic 0003:046D:C52B.0006: hiddev98,hidraw5: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-2.2/input2
Jun 18 10:23:03 Doopliss kernel: usbcore: registered new interface driver usbhid
Jun 18 10:23:03 Doopliss kernel: usbhid: USB HID core driver
Jun 18 10:23:03 Doopliss kernel: usb 1-10: new high-speed USB device number 8 using xhci_hcd
Jun 18 10:23:03 Doopliss kernel: i915 0000:00:02.0: enabling device (0006 -> 0007)
Jun 18 10:23:03 Doopliss kernel: Console: switching to colour dummy device 80x25
Jun 18 10:23:03 Doopliss kernel: i915 0000:00:02.0: [drm] Using Transparent Hugepages
Jun 18 10:23:03 Doopliss kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
Jun 18 10:23:03 Doopliss kernel: input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input14
Jun 18 10:23:03 Doopliss kernel: input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input15
Jun 18 10:23:03 Doopliss kernel: input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input16
Jun 18 10:23:03 Doopliss kernel: input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input17
Jun 18 10:23:03 Doopliss kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/adls_dmc_ver2_01.bin (v2.1)
Jun 18 10:23:03 Doopliss systemd[1]: Mounting /boot...
Jun 18 10:23:03 Doopliss systemd[1]: Mounting Temporary Directory /tmp...
Jun 18 10:23:03 Doopliss systemd[1]: Mounted Temporary Directory /tmp.
Jun 18 10:23:03 Doopliss systemd[1]: Reached target Sound Card.
Jun 18 10:23:03 Doopliss kernel: i915 0000:00:02.0: [drm] GT0: GuC firmware i915/tgl_guc_70.bin version 70.5.1
Jun 18 10:23:03 Doopliss kernel: i915 0000:00:02.0: [drm] GT0: HuC firmware i915/tgl_huc.bin version 7.9.3
Jun 18 10:23:03 Doopliss kernel: i915 0000:00:02.0: [drm] HuC authenticated
Jun 18 10:23:03 Doopliss kernel: i915 0000:00:02.0: [drm] GT0: GUC: submission disabled
Jun 18 10:23:03 Doopliss kernel: i915 0000:00:02.0: [drm] GT0: GUC: SLPC disabled
Jun 18 10:23:03 Doopliss kernel: mei_pxp 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1: bound 0000:00:02.0 (ops i915_pxp_tee_component_ops [i915])
Jun 18 10:23:03 Doopliss kernel: i915 0000:00:02.0: [drm] Protected Xe Path (PXP) protected content support initialized
Jun 18 10:23:03 Doopliss kernel: [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
Jun 18 10:23:03 Doopliss kernel: snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Jun 18 10:23:03 Doopliss kernel: i915 0000:00:02.0: [drm] Cannot find any crtc or sizes
Jun 18 10:23:03 Doopliss kernel: i915 0000:00:02.0: [drm] Cannot find any crtc or sizes
Jun 18 10:23:03 Doopliss kernel: nvidia-nvlink: Nvlink Core is being initialized, major device number 511
Jun 18 10:23:03 Doopliss kernel: 
Jun 18 10:23:03 Doopliss kernel: nvidia 0000:01:00.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=none
Jun 18 10:23:03 Doopliss kernel: usb 1-10: New USB device found, idVendor=048d, idProduct=1234, bcdDevice= 2.00
Jun 18 10:23:03 Doopliss kernel: usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun 18 10:23:03 Doopliss kernel: usb 1-10: Product: Disk 2.0
Jun 18 10:23:03 Doopliss kernel: usb 1-10: Manufacturer: USB
Jun 18 10:23:03 Doopliss kernel: usb 1-10: SerialNumber: 7602171117724235025
Jun 18 10:23:03 Doopliss systemd[1]: Mounted /boot.
Jun 18 10:23:03 Doopliss systemd[1]: Reached target Local File Systems.
Jun 18 10:23:03 Doopliss systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
Jun 18 10:23:03 Doopliss systemd[1]: Set Up Additional Binary Formats was skipped because no trigger condition checks were met.
Jun 18 10:23:03 Doopliss systemd[1]: Update Boot Loader Random Seed was skipped because no trigger condition checks were met.
Jun 18 10:23:03 Doopliss systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
Jun 18 10:23:03 Doopliss systemd[1]: Starting Create Volatile Files and Directories...
Jun 18 10:23:03 Doopliss kernel: NVRM: loading NVIDIA UNIX x86_64 Kernel Module  535.54.03  Tue Jun  6 22:20:39 UTC 2023
Jun 18 10:23:03 Doopliss (udev-worker)[320]: nvidia: Process '/usr/bin/bash -c '/usr/bin/mknod -Z -m 666 /dev/nvidiactl c $(grep nvidia-frontend /proc/devices | cut -d \  -f 1) 255'' failed with exit code 1.
Jun 18 10:23:03 Doopliss (udev-worker)[320]: nvidia: Process '/usr/bin/bash -c 'for i in $(cat /proc/driver/nvidia/gpus/*/information | grep Minor | cut -d \  -f 4); do /usr/bin/mknod -Z -m 666 /dev/nvidia${i} c $(grep nvidia-frontend /proc/devices | cut -d \  -f 1) ${i}; done'' failed with exit code 1.
Jun 18 10:23:03 Doopliss kernel: iwlwifi 0000:00:14.3: Detected Intel(R) Wi-Fi 6E AX211 160MHz, REV=0x430
Jun 18 10:23:03 Doopliss kernel: thermal thermal_zone1: failed to read out thermal zone (-61)
Jun 18 10:23:03 Doopliss kernel: iwlwifi 0000:00:14.3: WRT: Invalid buffer destination
Jun 18 10:23:03 Doopliss kernel: snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC1220: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line
Jun 18 10:23:03 Doopliss kernel: snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Jun 18 10:23:03 Doopliss kernel: snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
Jun 18 10:23:03 Doopliss kernel: snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
Jun 18 10:23:03 Doopliss kernel: snd_hda_codec_realtek hdaudioC0D0:    dig-out=0x1e/0x0
Jun 18 10:23:03 Doopliss kernel: snd_hda_codec_realtek hdaudioC0D0:    inputs:
Jun 18 10:23:03 Doopliss kernel: snd_hda_codec_realtek hdaudioC0D0:      Front Mic=0x19
Jun 18 10:23:03 Doopliss kernel: snd_hda_codec_realtek hdaudioC0D0:      Rear Mic=0x18
Jun 18 10:23:03 Doopliss kernel: snd_hda_codec_realtek hdaudioC0D0:      Line=0x1a
Jun 18 10:23:03 Doopliss systemd[1]: Finished Create Volatile Files and Directories.
Jun 18 10:23:03 Doopliss systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
Jun 18 10:23:03 Doopliss systemd[1]: Starting Network Time Synchronization...
Jun 18 10:23:03 Doopliss systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
Jun 18 10:23:03 Doopliss systemd[1]: Starting Record System Boot/Shutdown in UTMP...
Jun 18 10:23:03 Doopliss kernel: intel_tcc_cooling: Programmable TCC Offset detected
Jun 18 10:23:03 Doopliss kernel: usb 1-3.3.4: new high-speed USB device number 9 using xhci_hcd
Jun 18 10:23:03 Doopliss kernel: intel_rapl_msr: PL4 support detected.
Jun 18 10:23:03 Doopliss kernel: intel_rapl_common: Found RAPL domain package
Jun 18 10:23:03 Doopliss kernel: intel_rapl_common: Found RAPL domain core
Jun 18 10:23:03 Doopliss kernel: intel_rapl_common: Found RAPL domain uncore
Jun 18 10:23:03 Doopliss kernel: input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input18
Jun 18 10:23:03 Doopliss kernel: input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input19
Jun 18 10:23:03 Doopliss kernel: input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1f.3/sound/card0/input20
Jun 18 10:23:03 Doopliss kernel: input: HDA Intel PCH Line Out Front as /devices/pci0000:00/0000:00:1f.3/sound/card0/input21
Jun 18 10:23:03 Doopliss kernel: input: HDA Intel PCH Line Out Surround as /devices/pci0000:00/0000:00:1f.3/sound/card0/input22
Jun 18 10:23:03 Doopliss kernel: input: HDA Intel PCH Line Out CLFE as /devices/pci0000:00/0000:00:1f.3/sound/card0/input23
Jun 18 10:23:03 Doopliss kernel: input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input24
Jun 18 10:23:03 Doopliss kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input25
Jun 18 10:23:03 Doopliss kernel: input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input26
Jun 18 10:23:03 Doopliss kernel: input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input27
Jun 18 10:23:03 Doopliss kernel: input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input28
Jun 18 10:23:03 Doopliss kernel: nvidia_uvm: module uses symbols nvUvmInterfaceDisableAccessCntr from proprietary module nvidia, inheriting taint.
Jun 18 10:23:03 Doopliss systemd[1]: Finished Record System Boot/Shutdown in UTMP.
Jun 18 10:23:03 Doopliss systemd[1]: Started Network Time Synchronization.
Jun 18 10:23:03 Doopliss systemd[1]: Reached target System Time Set.
Jun 18 10:23:03 Doopliss kernel: nvidia-uvm: Loaded the UVM driver, major device number 509.
Jun 18 10:23:03 Doopliss systemd-modules-load[271]: Inserted module 'nvidia_uvm'
Jun 18 10:23:03 Doopliss kernel: usb 1-3.3.4: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice= 6.63
Jun 18 10:23:03 Doopliss kernel: usb 1-3.3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun 18 10:23:03 Doopliss kernel: usb 1-3.3.4: Product: USB2.1 Hub
Jun 18 10:23:03 Doopliss kernel: usb 1-3.3.4: Manufacturer: GenesysLogic
Jun 18 10:23:03 Doopliss systemd-modules-load[271]: Inserted module 'pkcs8_key_parser'
Jun 18 10:23:03 Doopliss kernel: hub 1-3.3.4:1.0: USB hub found
Jun 18 10:23:03 Doopliss kernel: hub 1-3.3.4:1.0: 4 ports detected
Jun 18 10:23:03 Doopliss kernel: Asymmetric key parser 'pkcs8' registered
Jun 18 10:23:03 Doopliss kernel: iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x1f
Jun 18 10:23:03 Doopliss kernel: iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
Jun 18 10:23:03 Doopliss kernel: iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
Jun 18 10:23:03 Doopliss kernel: iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
Jun 18 10:23:03 Doopliss kernel: iwlwifi 0000:00:14.3: loaded PNVM version e4a49534
Jun 18 10:23:03 Doopliss kernel: iwlwifi 0000:00:14.3: Detected RF GF, rfid=0x2010d000
Jun 18 10:23:03 Doopliss kernel: vboxdrv: Found 12 processor cores/threads
Jun 18 10:23:03 Doopliss systemd-modules-load[271]: Inserted module 'vboxdrv'
Jun 18 10:23:03 Doopliss systemd-modules-load[271]: Inserted module 'vboxnetadp'
Jun 18 10:23:03 Doopliss kernel: vboxdrv: TSC mode is Invariant, tentative frequency 2495994279 Hz
Jun 18 10:23:03 Doopliss kernel: vboxdrv: Successfully loaded version 7.0.8 r156879 (interface 0x00330004)
Jun 18 10:23:03 Doopliss kernel: VBoxNetAdp: Successfully started.
Jun 18 10:23:03 Doopliss systemd-modules-load[271]: Inserted module 'vboxnetflt'
Jun 18 10:23:03 Doopliss kernel: VBoxNetFlt: Successfully started.
Jun 18 10:23:03 Doopliss systemd[1]: Finished Load Kernel Modules.
Jun 18 10:23:03 Doopliss kernel: usb 2-2.3.4.4: new SuperSpeed USB device number 5 using xhci_hcd
Jun 18 10:23:03 Doopliss kernel: iwlwifi 0000:00:14.3: base HW address: 88:d8:2e:7b:72:bc
Jun 18 10:23:03 Doopliss kernel: usb 2-2.3.4.4: New USB device found, idVendor=05e3, idProduct=0749, bcdDevice=15.35
Jun 18 10:23:03 Doopliss kernel: usb 2-2.3.4.4: New USB device strings: Mfr=3, Product=4, SerialNumber=2
Jun 18 10:23:03 Doopliss kernel: usb 2-2.3.4.4: Product: USB3.0 Card Reader
Jun 18 10:23:03 Doopliss kernel: usb 2-2.3.4.4: Manufacturer: Generic
Jun 18 10:23:03 Doopliss kernel: usb 2-2.3.4.4: SerialNumber: 000000001536
Jun 18 10:23:03 Doopliss systemd[1]: Starting Apply Kernel Variables...
Jun 18 10:23:03 Doopliss systemd[1]: Starting Load/Save RF Kill Switch Status...
Jun 18 10:23:03 Doopliss systemd[1]: Started Load/Save RF Kill Switch Status.
Jun 18 10:23:03 Doopliss systemd[1]: Finished Apply Kernel Variables.
Jun 18 10:23:03 Doopliss systemd[1]: Reached target System Initialization.
Jun 18 10:23:03 Doopliss systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
Jun 18 10:23:03 Doopliss systemd[1]: Started Discard unused filesystem blocks once a week.
Jun 18 10:23:03 Doopliss systemd[1]: Started Daily verification of password and group files.
Jun 18 10:23:03 Doopliss systemd[1]: Started Take snapper snapshot of root on boot.
Jun 18 10:23:03 Doopliss systemd[1]: Started Daily Cleanup of Snapper Snapshots.
Jun 18 10:23:03 Doopliss systemd[1]: Started Timeline of Snapper Snapshots.
Jun 18 10:23:03 Doopliss systemd[1]: Started Daily Cleanup of Temporary Directories.
Jun 18 10:23:03 Doopliss systemd[1]: Reached target Timer Units.
Jun 18 10:23:03 Doopliss systemd[1]: Listening on D-Bus System Message Bus Socket.
Jun 18 10:23:03 Doopliss systemd[1]: Reached target Socket Units.
Jun 18 10:23:03 Doopliss 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 18 10:23:03 Doopliss systemd[1]: Reached target Basic System.
Jun 18 10:23:03 Doopliss systemd[1]: Starting D-Bus System Message Bus...
Jun 18 10:23:03 Doopliss systemd[1]: Starting User Login Management...
Jun 18 10:23:03 Doopliss 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 18 10:23:03 Doopliss systemd[1]: Starting Take snapper snapshot of root on boot...
Jun 18 10:23:03 Doopliss dbus-daemon[525]: dbus[525]: Unknown group "netdev" in message bus configuration file
Jun 18 10:23:03 Doopliss dbus-daemon[525]: dbus[525]: Unknown group "netdev" in message bus configuration file
Jun 18 10:23:03 Doopliss kernel: usb-storage 1-10:1.0: USB Mass Storage device detected
Jun 18 10:23:03 Doopliss kernel: scsi host10: usb-storage 1-10:1.0
Jun 18 10:23:03 Doopliss kernel: usb-storage 2-2.3.4.4:1.0: USB Mass Storage device detected
Jun 18 10:23:03 Doopliss kernel: scsi host11: usb-storage 2-2.3.4.4:1.0
Jun 18 10:23:03 Doopliss kernel: usbcore: registered new interface driver usb-storage
Jun 18 10:23:03 Doopliss systemd[1]: Started D-Bus System Message Bus.
Jun 18 10:23:03 Doopliss systemd[1]: Starting Network Manager...
Jun 18 10:23:03 Doopliss kernel: usbcore: registered new interface driver uas
Jun 18 10:23:03 Doopliss systemd-logind[526]: New seat seat0.
Jun 18 10:23:03 Doopliss systemd-logind[526]: Watching system buttons on /dev/input/event2 (Power Button)
Jun 18 10:23:03 Doopliss systemd-logind[526]: Watching system buttons on /dev/input/event1 (Power Button)
Jun 18 10:23:03 Doopliss systemd-logind[526]: Watching system buttons on /dev/input/event0 (Sleep Button)
Jun 18 10:23:03 Doopliss systemd[1]: Started User Login Management.
Jun 18 10:23:03 Doopliss dbus-daemon[525]: [system] Activating via systemd: service name='org.opensuse.Snapper' unit='snapperd.service' requested by ':1.3' (uid=0 pid=528 comm="/usr/bin/snapper --config root create --cleanup-al")
Jun 18 10:23:03 Doopliss systemd[1]: Starting DBus interface for snapper...
Jun 18 10:23:03 Doopliss dbus-daemon[525]: [system] Successfully activated service 'org.opensuse.Snapper'
Jun 18 10:23:03 Doopliss systemd[1]: Started DBus interface for snapper.
Jun 18 10:23:03 Doopliss NetworkManager[536]: <info>  [1687098183.8996] NetworkManager (version 1.42.6-1) is starting... (boot:b3d12a93-589e-4b7a-853b-e5b6bf4fb0b6)
Jun 18 10:23:03 Doopliss NetworkManager[536]: <info>  [1687098183.8996] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 20-connectivity.conf)
Jun 18 10:23:03 Doopliss systemd[1]: Started Network Manager.
Jun 18 10:23:03 Doopliss NetworkManager[536]: <info>  [1687098183.9004] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Jun 18 10:23:03 Doopliss systemd[1]: Reached target Network.
Jun 18 10:23:03 Doopliss systemd[1]: Starting Permit User Sessions...
Jun 18 10:23:03 Doopliss NetworkManager[536]: <info>  [1687098183.9027] manager[0x5614cc6e0160]: monitoring kernel firmware directory '/lib/firmware'.
Jun 18 10:23:03 Doopliss dbus-daemon[525]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.5' (uid=0 pid=536 comm="/usr/bin/NetworkManager --no-daemon")
Jun 18 10:23:03 Doopliss kernel: usb 1-11: new full-speed USB device number 10 using xhci_hcd
Jun 18 10:23:03 Doopliss systemd[1]: Finished Permit User Sessions.
Jun 18 10:23:03 Doopliss systemd[1]: snapper-boot.service: Deactivated successfully.
Jun 18 10:23:03 Doopliss kernel: nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms  535.54.03  Tue Jun  6 22:17:39 UTC 2023
Jun 18 10:23:03 Doopliss kernel: [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
Jun 18 10:23:03 Doopliss kernel: [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 1
Jun 18 10:23:03 Doopliss systemd[1]: Finished Take snapper snapshot of root on boot.
Jun 18 10:23:03 Doopliss systemd[1]: Reached target Multi-User System.
Jun 18 10:23:04 Doopliss systemd[1]: Starting Light Display Manager...
Jun 18 10:23:04 Doopliss systemd[1]: Starting Hostname Service...
Jun 18 10:23:04 Doopliss systemd[1]: Started Light Display Manager.
Jun 18 10:23:04 Doopliss lightdm[567]: Error getting user list from org.freedesktop.Accounts: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Accounts was not provided by any .service files
Jun 18 10:23:04 Doopliss systemd[1]: Reached target Graphical Interface.
Jun 18 10:23:04 Doopliss dbus-daemon[525]: [system] Successfully activated service 'org.freedesktop.hostname1'
Jun 18 10:23:04 Doopliss systemd[1]: Started Hostname Service.
Jun 18 10:23:04 Doopliss systemd[1]: Startup finished in 12.266s (firmware) + 6.120s (loader) + 1.177s (kernel) + 725ms (initrd) + 2.106s (userspace) = 22.397s.
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.0434] hostname: hostname: using hostnamed
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.0434] hostname: static hostname changed from (none) to "Doopliss"
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.0435] dns-mgr: init: dns=default,systemd-resolved rc-manager=symlink
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.0438] rfkill0: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:14.3/ieee80211/phy0/rfkill0) (driver iwlwifi)
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.0439] manager[0x5614cc6e0160]: rfkill: Wi-Fi hardware radio set enabled
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.0439] manager[0x5614cc6e0160]: rfkill: WWAN hardware radio set enabled
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.0454] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.42.6-1/libnm-device-plugin-adsl.so)
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.0489] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.42.6-1/libnm-device-plugin-bluetooth.so)
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.0507] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.42.6-1/libnm-device-plugin-ovs.so)
Jun 18 10:23:04 Doopliss kernel: usb 1-11: New USB device found, idVendor=1462, idProduct=7d41, bcdDevice= 0.01
Jun 18 10:23:04 Doopliss kernel: usb 1-11: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun 18 10:23:04 Doopliss kernel: usb 1-11: Product: MYSTIC LIGHT 
Jun 18 10:23:04 Doopliss kernel: usb 1-11: Manufacturer: MSI
Jun 18 10:23:04 Doopliss kernel: usb 1-11: SerialNumber: A02021090602
Jun 18 10:23:04 Doopliss kernel: input: MSI MYSTIC LIGHT  as /devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.0/0003:1462:7D41.0007/input/input29
Jun 18 10:23:04 Doopliss kernel: hid-generic 0003:1462:7D41.0007: input,hiddev99,hidraw6: USB HID v1.10 Device [MSI MYSTIC LIGHT ] on usb-0000:00:14.0-11/input0
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.0734] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.42.6-1/libnm-device-plugin-team.so)
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.0744] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.42.6-1/libnm-device-plugin-wifi.so)
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.0749] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.42.6-1/libnm-device-plugin-wwan.so)
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.0751] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.0752] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.0752] manager: Networking is enabled by state file
Jun 18 10:23:04 Doopliss dbus-daemon[525]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.5' (uid=0 pid=536 comm="/usr/bin/NetworkManager --no-daemon")
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.0755] settings: Loaded settings plugin: keyfile (internal)
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.0783] dhcp: init: Using DHCP client 'internal'
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.0786] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1)
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.0796] device (lo): state change: unmanaged -> unavailable (reason 'connection-assumed', sys-iface-state: 'external')
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.0799] device (lo): state change: unavailable -> disconnected (reason 'connection-assumed', sys-iface-state: 'external')
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.0804] device (lo): Activation: starting connection 'lo' (d1e95a25-4e44-4cd6-a534-d22a15534467)
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.0810] manager: (enp3s0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.0812] device (enp3s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jun 18 10:23:04 Doopliss kernel: RTL8226B_RTL8221B 2.5Gbps PHY r8169-0-300:00: attached PHY driver (mii_bus:phy_addr=r8169-0-300:00, irq=MAC)
Jun 18 10:23:04 Doopliss systemd[1]: Starting Network Manager Script Dispatcher Service...
Jun 18 10:23:04 Doopliss dbus-daemon[525]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Jun 18 10:23:04 Doopliss systemd[1]: Started Network Manager Script Dispatcher Service.
Jun 18 10:23:04 Doopliss kernel: usb 1-14: new full-speed USB device number 11 using xhci_hcd
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.2964] device (wlan0): driver supports Access Point (AP) mode
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.2967] manager: (wlan0): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/Devices/3)
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.2968] device (wlan0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jun 18 10:23:04 Doopliss kernel: r8169 0000:03:00.0 enp3s0: Link is Down
Jun 18 10:23:04 Doopliss kernel: iwlwifi 0000:00:14.3: WRT: Invalid buffer destination
Jun 18 10:23:04 Doopliss kernel: usb 1-14: New USB device found, idVendor=8087, idProduct=0033, bcdDevice= 0.00
Jun 18 10:23:04 Doopliss kernel: usb 1-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun 18 10:23:04 Doopliss kernel: mc: Linux media interface: v0.10
Jun 18 10:23:04 Doopliss systemd-logind[526]: Watching system buttons on /dev/input/event6 (Dell KB216 Wired Keyboard System Control)
Jun 18 10:23:04 Doopliss kernel: Bluetooth: Core ver 2.22
Jun 18 10:23:04 Doopliss kernel: NET: Registered PF_BLUETOOTH protocol family
Jun 18 10:23:04 Doopliss kernel: Bluetooth: HCI device and connection manager initialized
Jun 18 10:23:04 Doopliss kernel: Bluetooth: HCI socket layer initialized
Jun 18 10:23:04 Doopliss kernel: Bluetooth: L2CAP socket layer initialized
Jun 18 10:23:04 Doopliss kernel: Bluetooth: SCO socket layer initialized
Jun 18 10:23:04 Doopliss kernel: usbcore: registered new interface driver btusb
Jun 18 10:23:04 Doopliss systemd[1]: Reached target Bluetooth Support.
Jun 18 10:23:04 Doopliss kernel: Bluetooth: hci0: Device revision is 0
Jun 18 10:23:04 Doopliss kernel: Bluetooth: hci0: Secure boot is enabled
Jun 18 10:23:04 Doopliss kernel: Bluetooth: hci0: OTP lock is enabled
Jun 18 10:23:04 Doopliss kernel: Bluetooth: hci0: API lock is enabled
Jun 18 10:23:04 Doopliss kernel: Bluetooth: hci0: Debug lock is disabled
Jun 18 10:23:04 Doopliss kernel: Bluetooth: hci0: Minimum firmware build 1 week 10 2014
Jun 18 10:23:04 Doopliss kernel: Bluetooth: hci0: Bootloader timestamp 2019.40 buildtype 1 build 38
Jun 18 10:23:04 Doopliss systemd-logind[526]: Watching system buttons on /dev/input/event4 (Dell KB216 Wired Keyboard)
Jun 18 10:23:04 Doopliss kernel: Bluetooth: hci0: Found device firmware: intel/ibt-1040-0041.sfi
Jun 18 10:23:04 Doopliss kernel: Bluetooth: hci0: Boot Address: 0x100800
Jun 18 10:23:04 Doopliss kernel: Bluetooth: hci0: Firmware Version: 172-6.23
Jun 18 10:23:04 Doopliss systemd-logind[526]: Watching system buttons on /dev/input/event7 (Dell KB216 Wired Keyboard Consumer Control)
Jun 18 10:23:04 Doopliss kernel: iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x1f
Jun 18 10:23:04 Doopliss kernel: iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
Jun 18 10:23:04 Doopliss kernel: iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
Jun 18 10:23:04 Doopliss kernel: iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
Jun 18 10:23:04 Doopliss kernel: usb 1-9: Warning! Unlikely big volume range (=4096), cval->res is probably wrong.
Jun 18 10:23:04 Doopliss kernel: usb 1-9: [11] FU [Sidetone Playback Volume] ch = 1, val = 0/4096/1
Jun 18 10:23:04 Doopliss kernel: usbcore: registered new interface driver snd-usb-audio
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.6173] device (wlan0): set-hw-addr: set MAC address to 16:34:77:63:6F:07 (scanning)
Jun 18 10:23:04 Doopliss kernel: iwlwifi 0000:00:14.3: WRT: Invalid buffer destination
Jun 18 10:23:04 Doopliss kernel: logitech-djreceiver 0003:046D:C52B.0006: hiddev97,hidraw3: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-2.2/input2
Jun 18 10:23:04 Doopliss kernel: iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x1f
Jun 18 10:23:04 Doopliss kernel: iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
Jun 18 10:23:04 Doopliss kernel: iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
Jun 18 10:23:04 Doopliss kernel: iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
Jun 18 10:23:04 Doopliss kernel: input: Logitech Wireless Device PID:401b Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.2/1-2.2:1.2/0003:046D:C52B.0006/0003:046D:401B.0008/input/input30
Jun 18 10:23:04 Doopliss kernel: hid-generic 0003:046D:401B.0008: input,hidraw4: USB HID v1.11 Mouse [Logitech Wireless Device PID:401b] on usb-0000:00:14.0-2.2/input2:1
Jun 18 10:23:04 Doopliss kernel: input: Logitech Wireless Device PID:4016 Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.2/1-2.2:1.2/0003:046D:C52B.0006/0003:046D:4016.0009/input/input34
Jun 18 10:23:04 Doopliss kernel: hid-generic 0003:046D:4016.0009: input,hidraw5: USB HID v1.11 Keyboard [Logitech Wireless Device PID:4016] on usb-0000:00:14.0-2.2/input2:2
Jun 18 10:23:04 Doopliss kernel: input: Logitech Wireless Device PID:405e Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.2/1-2.2:1.2/0003:046D:C52B.0006/0003:046D:405E.000A/input/input38
Jun 18 10:23:04 Doopliss kernel: input: Logitech Wireless Device PID:405e Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.2/1-2.2:1.2/0003:046D:C52B.0006/0003:046D:405E.000A/input/input39
Jun 18 10:23:04 Doopliss kernel: hid-generic 0003:046D:405E.000A: input,hidraw7: USB HID v1.11 Keyboard [Logitech Wireless Device PID:405e] on usb-0000:00:14.0-2.2/input2:3
Jun 18 10:23:04 Doopliss kernel: scsi 10:0:0:0: Direct-Access     VendorCo ProductCode      2.00 PQ: 0 ANSI: 4
Jun 18 10:23:04 Doopliss kernel: sd 10:0:0:0: [sdb] 122880000 512-byte logical blocks: (62.9 GB/58.6 GiB)
Jun 18 10:23:04 Doopliss kernel: sd 10:0:0:0: [sdb] Write Protect is off
Jun 18 10:23:04 Doopliss kernel: sd 10:0:0:0: [sdb] Mode Sense: 03 00 00 00
Jun 18 10:23:04 Doopliss kernel: sd 10:0:0:0: [sdb] No Caching mode page found
Jun 18 10:23:04 Doopliss kernel: sd 10:0:0:0: [sdb] Assuming drive cache: write through
Jun 18 10:23:04 Doopliss kernel: scsi 11:0:0:0: Direct-Access     Generic  MassStorageClass 1536 PQ: 0 ANSI: 6
Jun 18 10:23:04 Doopliss kernel:  sdb: sdb1 sdb2
Jun 18 10:23:04 Doopliss kernel: sd 10:0:0:0: [sdb] Attached SCSI removable disk
Jun 18 10:23:04 Doopliss kernel: scsi 11:0:0:1: Direct-Access     Generic  MassStorageClass 1536 PQ: 0 ANSI: 6
Jun 18 10:23:04 Doopliss dbus-daemon[525]: [system] Activating via systemd: service name='fi.w1.wpa_supplicant1' unit='wpa_supplicant.service' requested by ':1.5' (uid=0 pid=536 comm="/usr/bin/NetworkManager --no-daemon")
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.8800] ovsdb: disconnected from ovsdb
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.8800] device (lo): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'external')
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.8801] device (lo): state change: prepare -> config (reason 'none', sys-iface-state: 'external')
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.8802] device (lo): state change: config -> ip-config (reason 'none', sys-iface-state: 'external')
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.8805] device (lo): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'external')
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.8810] device (lo): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'external')
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.8810] device (lo): state change: secondaries -> activated (reason 'none', sys-iface-state: 'external')
Jun 18 10:23:04 Doopliss NetworkManager[536]: <info>  [1687098184.8812] device (lo): Activation: successful, device activated.
Jun 18 10:23:04 Doopliss kernel: mousedev: PS/2 mouse device common for all mice
Jun 18 10:23:04 Doopliss kernel: input: Logitech M215 2nd Gen as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.2/1-2.2:1.2/0003:046D:C52B.0006/0003:046D:401B.0008/input/input43
Jun 18 10:23:04 Doopliss kernel: logitech-hidpp-device 0003:046D:401B.0008: input,hidraw4: USB HID v1.11 Mouse [Logitech M215 2nd Gen] on usb-0000:00:14.0-2.2/input2:1
Jun 18 10:23:04 Doopliss systemd[1]: Starting WPA supplicant...
Jun 18 10:23:04 Doopliss dbus-daemon[525]: [system] Successfully activated service 'fi.w1.wpa_supplicant1'
Jun 18 10:23:04 Doopliss systemd[1]: Started WPA supplicant.
Jun 18 10:23:04 Doopliss wpa_supplicant[680]: Successfully initialized wpa_supplicant
Jun 18 10:23:05 Doopliss NetworkManager[536]: <info>  [1687098185.0185] device (wlan0): supplicant interface state: internal-starting -> disconnected
Jun 18 10:23:05 Doopliss NetworkManager[536]: <info>  [1687098185.0187] Wi-Fi P2P device controlled by interface wlan0 created
Jun 18 10:23:05 Doopliss NetworkManager[536]: <info>  [1687098185.0192] manager: (p2p-dev-wlan0): new 802.11 Wi-Fi P2P device (/org/freedesktop/NetworkManager/Devices/4)
Jun 18 10:23:05 Doopliss NetworkManager[536]: <info>  [1687098185.0196] device (p2p-dev-wlan0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Jun 18 10:23:05 Doopliss NetworkManager[536]: <info>  [1687098185.0205] device (wlan0): state change: unavailable -> disconnected (reason 'supplicant-available', sys-iface-state: 'managed')
Jun 18 10:23:05 Doopliss NetworkManager[536]: <info>  [1687098185.0212] device (p2p-dev-wlan0): state change: unavailable -> disconnected (reason 'none', sys-iface-state: 'managed')
Jun 18 10:23:05 Doopliss kernel: sd 11:0:0:0: [sdc] Media removed, stopped polling
Jun 18 10:23:05 Doopliss kernel: sd 11:0:0:0: [sdc] Attached SCSI removable disk
Jun 18 10:23:05 Doopliss kernel: input: Logitech K330 as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.2/1-2.2:1.2/0003:046D:C52B.0006/0003:046D:4016.0009/input/input44
Jun 18 10:23:05 Doopliss kernel: logitech-hidpp-device 0003:046D:4016.0009: input,hidraw5: USB HID v1.11 Keyboard [Logitech K330] on usb-0000:00:14.0-2.2/input2:2
Jun 18 10:23:05 Doopliss kernel: sd 11:0:0:1: [sdd] Media removed, stopped polling
Jun 18 10:23:05 Doopliss kernel: sd 11:0:0:1: [sdd] Attached SCSI removable disk
Jun 18 10:23:05 Doopliss kernel: input: Logitech M720 Triathlon as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.2/1-2.2:1.2/0003:046D:C52B.0006/0003:046D:405E.000A/input/input45
Jun 18 10:23:05 Doopliss kernel: logitech-hidpp-device 0003:046D:405E.000A: input,hidraw7: USB HID v1.11 Keyboard [Logitech M720 Triathlon] on usb-0000:00:14.0-2.2/input2:3
Jun 18 10:23:05 Doopliss systemd-logind[526]: Watching system buttons on /dev/input/event11 (Logitech M720 Triathlon)
Jun 18 10:23:05 Doopliss systemd-logind[526]: Watching system buttons on /dev/input/event10 (Logitech K330)
Jun 18 10:23:05 Doopliss kernel: Bluetooth: hci0: Waiting for firmware download to complete
Jun 18 10:23:05 Doopliss kernel: Bluetooth: hci0: Firmware loaded in 1414766 usecs
Jun 18 10:23:05 Doopliss kernel: Bluetooth: hci0: Waiting for device to boot
Jun 18 10:23:05 Doopliss kernel: Bluetooth: hci0: Device booted in 15586 usecs
Jun 18 10:23:05 Doopliss kernel: Bluetooth: hci0: Malformed MSFT vendor event: 0x02
Jun 18 10:23:05 Doopliss kernel: Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-1040-0041.ddc
Jun 18 10:23:05 Doopliss kernel: Bluetooth: hci0: Applying Intel DDC parameters completed
Jun 18 10:23:05 Doopliss kernel: Bluetooth: hci0: Firmware timestamp 2023.6 buildtype 1 build 59564
Jun 18 10:23:06 Doopliss lightdm[710]: Error getting user list from org.freedesktop.Accounts: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Accounts was not provided by any .service files
Jun 18 10:23:06 Doopliss lightdm[710]: pam_unix(lightdm-greeter:session): session opened for user lightdm(uid=972) by (uid=0)
Jun 18 10:23:06 Doopliss systemd-logind[526]: New session c1 of user lightdm.
Jun 18 10:23:06 Doopliss systemd[1]: Created slice User Slice of UID 972.
Jun 18 10:23:06 Doopliss systemd[1]: Starting User Runtime Directory /run/user/972...
Jun 18 10:23:06 Doopliss systemd[1]: Finished User Runtime Directory /run/user/972.
Jun 18 10:23:06 Doopliss systemd[1]: Starting User Manager for UID 972...
Jun 18 10:23:06 Doopliss dbus-daemon[525]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.14' (uid=0 pid=715 comm="(systemd)")
Jun 18 10:23:06 Doopliss dbus-daemon[525]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 18 10:23:06 Doopliss (systemd)[715]: pam_systemd_home(systemd-user:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 18 10:23:06 Doopliss (systemd)[715]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[lightdm] ruser=[<unknown>] rhost=[<unknown>]
Jun 18 10:23:06 Doopliss (systemd)[715]: pam_unix(systemd-user:session): session opened for user lightdm(uid=972) by lightdm(uid=0)
Jun 18 10:23:06 Doopliss systemd[715]: Queued start job for default target Main User Target.
Jun 18 10:23:06 Doopliss systemd[715]: Created slice User Application Slice.
Jun 18 10:23:06 Doopliss systemd[715]: Reached target Paths.
Jun 18 10:23:06 Doopliss systemd[715]: Reached target Timers.
Jun 18 10:23:06 Doopliss systemd[715]: Starting D-Bus User Message Bus Socket...
Jun 18 10:23:06 Doopliss systemd[715]: Listening on GnuPG network certificate management daemon.
Jun 18 10:23:06 Doopliss systemd[715]: Listening on GCR ssh-agent wrapper.
Jun 18 10:23:06 Doopliss systemd[715]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jun 18 10:23:06 Doopliss systemd[715]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Jun 18 10:23:06 Doopliss systemd[715]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Jun 18 10:23:06 Doopliss systemd[715]: Listening on GnuPG cryptographic agent and passphrase cache.
Jun 18 10:23:06 Doopliss systemd[715]: Listening on p11-kit server.
Jun 18 10:23:06 Doopliss systemd[715]: Listening on PipeWire PulseAudio.
Jun 18 10:23:06 Doopliss systemd[715]: Listening on PipeWire Multimedia System Socket.
Jun 18 10:23:06 Doopliss systemd[715]: Listening on D-Bus User Message Bus Socket.
Jun 18 10:23:06 Doopliss systemd[715]: Reached target Sockets.
Jun 18 10:23:06 Doopliss systemd[715]: Reached target Basic System.
Jun 18 10:23:06 Doopliss systemd[715]: Reached target Main User Target.
Jun 18 10:23:06 Doopliss systemd[715]: Startup finished in 129ms.
Jun 18 10:23:06 Doopliss systemd[1]: Started User Manager for UID 972.
Jun 18 10:23:06 Doopliss systemd[1]: Started Session c1 of User lightdm.
Jun 18 10:23:06 Doopliss NetworkManager[536]: <info>  [1687098186.6485] device (enp3s0): carrier: link connected
Jun 18 10:23:06 Doopliss kernel: r8169 0000:03:00.0 enp3s0: Link is Up - 1Gbps/Full - flow control rx/tx
Jun 18 10:23:06 Doopliss kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp3s0: link becomes ready
Jun 18 10:23:06 Doopliss NetworkManager[536]: <info>  [1687098186.6490] device (enp3s0): state change: unavailable -> disconnected (reason 'carrier-changed', sys-iface-state: 'managed')
Jun 18 10:23:06 Doopliss NetworkManager[536]: <info>  [1687098186.6499] policy: auto-activating connection 'Wired connection 1' (9e61b18e-bedf-3dc2-8ef7-ebcc8ff589ab)
Jun 18 10:23:06 Doopliss NetworkManager[536]: <info>  [1687098186.6506] device (enp3s0): Activation: starting connection 'Wired connection 1' (9e61b18e-bedf-3dc2-8ef7-ebcc8ff589ab)
Jun 18 10:23:06 Doopliss NetworkManager[536]: <info>  [1687098186.6507] device (enp3s0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Jun 18 10:23:06 Doopliss NetworkManager[536]: <info>  [1687098186.6511] manager: NetworkManager state is now CONNECTING
Jun 18 10:23:06 Doopliss NetworkManager[536]: <info>  [1687098186.6514] device (enp3s0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Jun 18 10:23:06 Doopliss NetworkManager[536]: <info>  [1687098186.6525] device (enp3s0): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
Jun 18 10:23:06 Doopliss NetworkManager[536]: <info>  [1687098186.6529] dhcp4 (enp3s0): activation: beginning transaction (timeout in 45 seconds)
Jun 18 10:23:06 Doopliss NetworkManager[536]: <info>  [1687098186.6570] dhcp4 (enp3s0): state changed new lease, address=192.168.2.17
Jun 18 10:23:06 Doopliss NetworkManager[536]: <info>  [1687098186.6576] policy: set 'Wired connection 1' (enp3s0) as default for IPv4 routing and DNS
Jun 18 10:23:06 Doopliss dbus-daemon[525]: [system] Activating via systemd: service name='org.freedesktop.resolve1' unit='dbus-org.freedesktop.resolve1.service' requested by ':1.5' (uid=0 pid=536 comm="/usr/bin/NetworkManager --no-daemon")
Jun 18 10:23:06 Doopliss dbus-daemon[525]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.resolve1.service': Unit dbus-org.freedesktop.resolve1.service not found.
Jun 18 10:23:06 Doopliss NetworkManager[536]: <info>  [1687098186.6642] device (enp3s0): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
Jun 18 10:23:06 Doopliss NetworkManager[536]: <info>  [1687098186.6663] device (enp3s0): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
Jun 18 10:23:06 Doopliss NetworkManager[536]: <info>  [1687098186.6666] device (enp3s0): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
Jun 18 10:23:06 Doopliss NetworkManager[536]: <info>  [1687098186.6671] manager: NetworkManager state is now CONNECTED_SITE
Jun 18 10:23:06 Doopliss NetworkManager[536]: <info>  [1687098186.6675] device (enp3s0): Activation: successful, device activated.
Jun 18 10:23:06 Doopliss NetworkManager[536]: <info>  [1687098186.9373] manager: NetworkManager state is now CONNECTED_GLOBAL
Jun 18 10:23:06 Doopliss systemd[715]: Created slice User Core Session Slice.
Jun 18 10:23:07 Doopliss systemd[715]: Starting D-Bus User Message Bus...
Jun 18 10:23:07 Doopliss systemd[715]: Started D-Bus User Message Bus.
Jun 18 10:23:07 Doopliss dbus-daemon[724]: [session uid=972 pid=724] Activating systemd to hand-off: service name='org.a11y.Bus' unit='at-spi-dbus-bus.service' requested by ':1.0' (uid=972 pid=722 comm="/usr/bin/lightdm-gtk-greeter")
Jun 18 10:23:07 Doopliss dbus-daemon[724]: [session uid=972 pid=724] Successfully activated service 'org.freedesktop.systemd1'
Jun 18 10:23:07 Doopliss systemd[715]: Starting Accessibility services bus...
Jun 18 10:23:07 Doopliss dbus-daemon[724]: [session uid=972 pid=724] Successfully activated service 'org.a11y.Bus'
Jun 18 10:23:07 Doopliss systemd[715]: Started Accessibility services bus.
Jun 18 10:23:07 Doopliss dbus-daemon[724]: [session uid=972 pid=724] Activating via systemd: service name='org.gtk.vfs.Daemon' unit='gvfs-daemon.service' requested by ':1.3' (uid=972 pid=722 comm="/usr/bin/lightdm-gtk-greeter")
Jun 18 10:23:07 Doopliss systemd[715]: Starting Virtual filesystem service...
Jun 18 10:23:07 Doopliss dbus-daemon[724]: [session uid=972 pid=724] Successfully activated service 'org.gtk.vfs.Daemon'
Jun 18 10:23:07 Doopliss systemd[715]: Started Virtual filesystem service.
Jun 18 10:23:07 Doopliss at-spi-bus-launcher[732]: dbus-daemon[732]: Activating service name='org.a11y.atspi.Registry' requested by ':1.0' (uid=972 pid=722 comm="/usr/bin/lightdm-gtk-greeter")
Jun 18 10:23:07 Doopliss at-spi-bus-launcher[732]: dbus-daemon[732]: Successfully activated service 'org.a11y.atspi.Registry'
Jun 18 10:23:07 Doopliss dbus-daemon[525]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.17' (uid=0 pid=762 comm="lightdm --session-child 15 22")
Jun 18 10:23:07 Doopliss dbus-daemon[525]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 18 10:23:07 Doopliss lightdm[762]: pam_systemd_home(lightdm:auth): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 18 10:23:07 Doopliss at-spi-bus-launcher[764]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Jun 18 10:23:08 Doopliss wpa_supplicant[680]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=US
Jun 18 10:23:08 Doopliss NetworkManager[536]: <info>  [1687098188.3336] manager: startup complete
Jun 18 10:23:09 Doopliss systemd[1]: systemd-rfkill.service: Deactivated successfully.
Jun 18 10:23:14 Doopliss systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Jun 18 10:23:14 Doopliss kernel: platform INT3515:01: deferred probe pending
Jun 18 10:23:33 Doopliss systemd-timesyncd[483]: Contacted time server 208.67.72.50:123 (2.arch.pool.ntp.org).
Jun 18 10:23:33 Doopliss systemd-timesyncd[483]: Initial clock synchronization to Sun 2023-06-18 10:23:33.765549 EDT.
Jun 18 10:23:34 Doopliss systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Jun 18 10:24:01 Doopliss lightdm[762]: Error getting user list from org.freedesktop.Accounts: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.Accounts was not provided by any .service files
Jun 18 10:24:01 Doopliss systemd[1]: Stopping Session c1 of User lightdm...
Jun 18 10:24:01 Doopliss lightdm[710]: pam_unix(lightdm-greeter:session): session closed for user lightdm
Jun 18 10:24:01 Doopliss systemd[1]: session-c1.scope: Deactivated successfully.
Jun 18 10:24:01 Doopliss systemd[1]: Stopped Session c1 of User lightdm.
Jun 18 10:24:01 Doopliss lightdm[762]: pam_unix(lightdm:session): session opened for user vivian(uid=1000) by vivian(uid=0)
Jun 18 10:24:01 Doopliss systemd-logind[526]: Removed session c1.
Jun 18 10:24:01 Doopliss systemd-logind[526]: New session 2 of user vivian.
Jun 18 10:24:01 Doopliss systemd[1]: Created slice User Slice of UID 1000.
Jun 18 10:24:01 Doopliss systemd[1]: Starting User Runtime Directory /run/user/1000...
Jun 18 10:24:02 Doopliss systemd[1]: Finished User Runtime Directory /run/user/1000.
Jun 18 10:24:02 Doopliss systemd[1]: Starting User Manager for UID 1000...
Jun 18 10:24:02 Doopliss dbus-daemon[525]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.22' (uid=0 pid=783 comm="(systemd)")
Jun 18 10:24:02 Doopliss dbus-daemon[525]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 18 10:24:02 Doopliss (systemd)[783]: pam_systemd_home(systemd-user:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 18 10:24:02 Doopliss (systemd)[783]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[vivian] ruser=[<unknown>] rhost=[<unknown>]
Jun 18 10:24:02 Doopliss (systemd)[783]: pam_unix(systemd-user:session): session opened for user vivian(uid=1000) by vivian(uid=0)
Jun 18 10:24:02 Doopliss systemd-xdg-autostart-generator[788]: Configuration file /home/vivian/.config/autostart/startyes.sh is marked executable. Please remove executable permission bits. Proceeding anyway.
Jun 18 10:24:02 Doopliss systemd-journald[270]: /var/log/journal/f63a27827fa5455f96b38d9c440a2246/user-1000.journal: Monotonic clock jumped backwards relative to last journal entry, rotating.
Jun 18 10:24:02 Doopliss systemd[783]: Queued start job for default target Main User Target.
Jun 18 10:24:02 Doopliss systemd[783]: Created slice User Application Slice.
Jun 18 10:24:02 Doopliss systemd[783]: Reached target Paths.
Jun 18 10:24:02 Doopliss systemd[783]: Reached target Timers.
Jun 18 10:24:02 Doopliss systemd[783]: Starting D-Bus User Message Bus Socket...
Jun 18 10:24:02 Doopliss systemd[783]: Listening on GnuPG network certificate management daemon.
Jun 18 10:24:02 Doopliss systemd[783]: Listening on GCR ssh-agent wrapper.
Jun 18 10:24:02 Doopliss systemd[783]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jun 18 10:24:02 Doopliss systemd[783]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Jun 18 10:24:02 Doopliss systemd[783]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Jun 18 10:24:02 Doopliss systemd[783]: Listening on GnuPG cryptographic agent and passphrase cache.
Jun 18 10:24:02 Doopliss systemd[783]: Listening on p11-kit server.
Jun 18 10:24:02 Doopliss systemd[783]: Listening on PipeWire PulseAudio.
Jun 18 10:24:02 Doopliss systemd[783]: Listening on PipeWire Multimedia System Socket.
Jun 18 10:24:02 Doopliss systemd[783]: Listening on D-Bus User Message Bus Socket.
Jun 18 10:24:02 Doopliss systemd[783]: Reached target Sockets.
Jun 18 10:24:02 Doopliss systemd[783]: Reached target Basic System.
Jun 18 10:24:02 Doopliss systemd[783]: Reached target Main User Target.
Jun 18 10:24:02 Doopliss systemd[783]: Startup finished in 172ms.
Jun 18 10:24:02 Doopliss systemd[1]: Started User Manager for UID 1000.
Jun 18 10:24:02 Doopliss systemd[1]: Started Session 2 of User vivian.
Jun 18 10:24:02 Doopliss systemd[783]: Created slice User Core Session Slice.
Jun 18 10:24:02 Doopliss systemd[783]: Starting D-Bus User Message Bus...
Jun 18 10:24:02 Doopliss systemd[783]: Started D-Bus User Message Bus.
Jun 18 10:24:02 Doopliss dbus-daemon[799]: [session uid=1000 pid=799] Successfully activated service 'org.freedesktop.systemd1'
Jun 18 10:24:02 Doopliss dbus-daemon[799]: [session uid=1000 pid=799] Activating via systemd: service name='org.gtk.vfs.Daemon' unit='gvfs-daemon.service' requested by ':1.4' (uid=1000 pid=792 comm="xfce4-session")
Jun 18 10:24:02 Doopliss systemd[783]: Starting Virtual filesystem service...
Jun 18 10:24:02 Doopliss dbus-daemon[799]: [session uid=1000 pid=799] Successfully activated service 'org.gtk.vfs.Daemon'
Jun 18 10:24:02 Doopliss systemd[783]: Started Virtual filesystem service.
Jun 18 10:24:02 Doopliss dbus-daemon[799]: [session uid=1000 pid=799] Activating via systemd: service name='org.a11y.Bus' unit='at-spi-dbus-bus.service' requested by ':1.7' (uid=1000 pid=792 comm="xfce4-session")
Jun 18 10:24:02 Doopliss systemd[783]: Starting Accessibility services bus...
Jun 18 10:24:02 Doopliss dbus-daemon[799]: [session uid=1000 pid=799] Successfully activated service 'org.a11y.Bus'
Jun 18 10:24:02 Doopliss systemd[783]: Started Accessibility services bus.
Jun 18 10:24:02 Doopliss dbus-daemon[799]: [session uid=1000 pid=799] Activating service name='org.xfce.Xfconf' requested by ':1.4' (uid=1000 pid=792 comm="xfce4-session")
Jun 18 10:24:02 Doopliss dbus-daemon[799]: [session uid=1000 pid=799] Successfully activated service 'org.xfce.Xfconf'
Jun 18 10:24:02 Doopliss at-spi-bus-launcher[833]: dbus-daemon[833]: Activating service name='org.a11y.atspi.Registry' requested by ':1.0' (uid=1000 pid=792 comm="xfce4-session")
Jun 18 10:24:02 Doopliss at-spi-bus-launcher[833]: dbus-daemon[833]: Successfully activated service 'org.a11y.atspi.Registry'
Jun 18 10:24:02 Doopliss at-spi-bus-launcher[842]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Jun 18 10:24:02 Doopliss systemd[783]: Started GnuPG cryptographic agent and passphrase cache.
Jun 18 10:24:02 Doopliss gpg-agent[852]: gpg-agent (GnuPG) 2.2.41 starting in supervised mode.
Jun 18 10:24:02 Doopliss gpg-agent[852]: using fd 3 for ssh socket (/run/user/1000/gnupg/S.gpg-agent.ssh)
Jun 18 10:24:02 Doopliss gpg-agent[852]: using fd 4 for std socket (/run/user/1000/gnupg/S.gpg-agent)
Jun 18 10:24:02 Doopliss gpg-agent[852]: using fd 5 for browser socket (/run/user/1000/gnupg/S.gpg-agent.browser)
Jun 18 10:24:02 Doopliss gpg-agent[852]: using fd 6 for extra socket (/run/user/1000/gnupg/S.gpg-agent.extra)
Jun 18 10:24:02 Doopliss gpg-agent[852]: listening on: std=4 extra=6 browser=5 ssh=3
Jun 18 10:24:02 Doopliss systemd[783]: Started GnuPG cryptographic agent and passphrase cache.
Jun 18 10:24:02 Doopliss gpg-agent[855]: gpg-agent (GnuPG) 2.2.41 starting in supervised mode.
Jun 18 10:24:02 Doopliss gpg-agent[855]: using fd 3 for ssh socket (/run/user/1000/gnupg/S.gpg-agent.ssh)
Jun 18 10:24:02 Doopliss gpg-agent[855]: using fd 4 for std socket (/run/user/1000/gnupg/S.gpg-agent)
Jun 18 10:24:02 Doopliss gpg-agent[855]: using fd 5 for browser socket (/run/user/1000/gnupg/S.gpg-agent.browser)
Jun 18 10:24:02 Doopliss gpg-agent[855]: using fd 6 for extra socket (/run/user/1000/gnupg/S.gpg-agent.extra)
Jun 18 10:24:02 Doopliss gpg-agent[855]: listening on: std=4 extra=6 browser=5 ssh=3
Jun 18 10:24:02 Doopliss systemd[783]: Started PipeWire Multimedia Service.
Jun 18 10:24:02 Doopliss systemd[783]: Started Multimedia Service Session Manager.
Jun 18 10:24:02 Doopliss systemd[783]: Started PipeWire PulseAudio.
Jun 18 10:24:02 Doopliss pipewire-pulse[871]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jun 18 10:24:02 Doopliss pipewire-pulse[871]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jun 18 10:24:02 Doopliss pipewire-pulse[871]: mod.rt: could not set nice-level to -11: No such file or directory
Jun 18 10:24:02 Doopliss pipewire[869]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jun 18 10:24:02 Doopliss pipewire-pulse[871]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jun 18 10:24:02 Doopliss pipewire[869]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jun 18 10:24:02 Doopliss pipewire[869]: mod.rt: could not set nice-level to -11: No such file or directory
Jun 18 10:24:02 Doopliss wireplumber[870]: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jun 18 10:24:02 Doopliss pipewire[869]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jun 18 10:24:02 Doopliss wireplumber[870]: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jun 18 10:24:02 Doopliss wireplumber[870]: could not set nice-level to -11: No such file or directory
Jun 18 10:24:02 Doopliss wireplumber[870]: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jun 18 10:24:02 Doopliss wireplumber[870]: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jun 18 10:24:02 Doopliss pipewire[869]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jun 18 10:24:02 Doopliss pipewire-pulse[871]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jun 18 10:24:02 Doopliss wireplumber[870]: Failed to get percentage from UPower: org.freedesktop.DBus.Error.NameHasNoOwner
Jun 18 10:24:02 Doopliss wireplumber[870]: [0:01:02.812954996] [870]  INFO Camera camera_manager.cpp:298 libcamera v0.0.5
Jun 18 10:24:03 Doopliss dbus-daemon[799]: [session uid=1000 pid=799] Activating via systemd: service name='org.freedesktop.thumbnails.Thumbnailer1' unit='tumblerd.service' requested by ':1.22' (uid=1000 pid=895 comm="xfdesktop --display :0.0 --sm-client-id 23700a199-")
Jun 18 10:24:03 Doopliss systemd[783]: Starting Thumbnailing service...
Jun 18 10:24:03 Doopliss tumblerd[900]: Failed to load plugin "tumbler-ffmpeg-thumbnailer.so": libffmpegthumbnailer.so.4: cannot open shared object file: No such file or directory
Jun 18 10:24:03 Doopliss tumblerd[900]: Failed to load plugin "tumbler-gepub-thumbnailer.so": libgepub-0.7.so.0: cannot open shared object file: No such file or directory
Jun 18 10:24:03 Doopliss tumblerd[900]: Failed to load plugin "tumbler-odf-thumbnailer.so": libgsf-1.so.114: cannot open shared object file: No such file or directory
Jun 18 10:24:03 Doopliss tumblerd[900]: Failed to load plugin "tumbler-poppler-thumbnailer.so": libpoppler-glib.so.8: cannot open shared object file: No such file or directory
Jun 18 10:24:03 Doopliss tumblerd[900]: Failed to load plugin "tumbler-raw-thumbnailer.so": libopenrawgnome.so.9: cannot open shared object file: No such file or directory
Jun 18 10:24:03 Doopliss dbus-daemon[525]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service' requested by ':1.30' (uid=1000 pid=899 comm="xfce4-power-manager --restart --sm-client-id 26817")
Jun 18 10:24:03 Doopliss systemd[1]: Starting Daemon for power management...
Jun 18 10:24:03 Doopliss dbus-daemon[799]: [session uid=1000 pid=799] Activating via systemd: service name='org.gtk.vfs.UDisks2VolumeMonitor' unit='gvfs-udisks2-volume-monitor.service' requested by ':1.26' (uid=1000 pid=900 comm="/usr/lib/tumbler-1/tumblerd")
Jun 18 10:24:03 Doopliss systemd[783]: Starting Virtual filesystem service - disk device monitor...
Jun 18 10:24:03 Doopliss dbus-daemon[525]: [system] Activating via systemd: service name='org.freedesktop.UDisks2' unit='udisks2.service' requested by ':1.31' (uid=1000 pid=932 comm="/usr/lib/gvfs-udisks2-volume-monitor")
Jun 18 10:24:03 Doopliss systemd[1]: Starting Disk Manager...
Jun 18 10:24:03 Doopliss udisksd[940]: udisks daemon version 2.9.4 starting
Jun 18 10:24:03 Doopliss dbus-daemon[525]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' requested by ':1.32' (uid=0 pid=940 comm="/usr/lib/udisks2/udisksd")
Jun 18 10:24:03 Doopliss systemd[1]: Starting Authorization Manager...
Jun 18 10:24:03 Doopliss polkitd[964]: Started polkitd version 122
Jun 18 10:24:03 Doopliss polkitd[964]: Loading rules from directory /etc/polkit-1/rules.d
Jun 18 10:24:03 Doopliss polkitd[964]: Loading rules from directory /usr/share/polkit-1/rules.d
Jun 18 10:24:03 Doopliss polkitd[964]: Finished loading, compiling and executing 5 rules
Jun 18 10:24:03 Doopliss dbus-daemon[525]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Jun 18 10:24:03 Doopliss polkitd[964]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
Jun 18 10:24:03 Doopliss systemd[1]: Started Authorization Manager.
Jun 18 10:24:03 Doopliss polkitd[964]: Registered Authentication Agent for unix-session:2 (system bus name :1.35 [/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
Jun 18 10:24:03 Doopliss dbus-daemon[525]: [system] Successfully activated service 'org.freedesktop.UPower'
Jun 18 10:24:03 Doopliss systemd[1]: Started Daemon for power management.
Jun 18 10:24:03 Doopliss dbus-daemon[525]: [system] Successfully activated service 'org.freedesktop.UDisks2'
Jun 18 10:24:03 Doopliss systemd[1]: Started Disk Manager.
Jun 18 10:24:03 Doopliss udisksd[940]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Jun 18 10:24:03 Doopliss dbus-daemon[799]: [session uid=1000 pid=799] Successfully activated service 'org.gtk.vfs.UDisks2VolumeMonitor'
Jun 18 10:24:03 Doopliss systemd[783]: Started Virtual filesystem service - disk device monitor.
Jun 18 10:24:03 Doopliss dbus-daemon[799]: [session uid=1000 pid=799] Successfully activated service 'org.freedesktop.thumbnails.Thumbnailer1'
Jun 18 10:24:03 Doopliss systemd[783]: Started Thumbnailing service.
Jun 18 10:24:03 Doopliss NetworkManager[536]: <info>  [1687098243.3186] agent-manager: agent[0bf4a2695d592400,:1.36/org.freedesktop.nm-applet/1000]: agent registered
Jun 18 10:24:03 Doopliss dbus-daemon[799]: [session uid=1000 pid=799] Activating via systemd: service name='org.gtk.vfs.Metadata' unit='gvfs-metadata.service' requested by ':1.22' (uid=1000 pid=895 comm="xfdesktop --display :0.0 --sm-client-id 23700a199-")
Jun 18 10:24:03 Doopliss systemd[783]: Starting Virtual filesystem metadata service...
Jun 18 10:24:03 Doopliss dbus-daemon[799]: [session uid=1000 pid=799] Successfully activated service 'org.gtk.vfs.Metadata'
Jun 18 10:24:03 Doopliss systemd[783]: Started Virtual filesystem metadata service.
Jun 18 10:24:03 Doopliss wireplumber[870]: GetManagedObjects() failed: org.freedesktop.DBus.Error.NameHasNoOwner
Jun 18 10:24:03 Doopliss wireplumber[870]: <WpSiAudioAdapter:0x55ad2074d450> Object activation aborted: proxy destroyed
Jun 18 10:24:03 Doopliss wireplumber[870]: <WpSiAudioAdapter:0x55ad2074d450> failed to activate item: Object activation aborted: proxy destroyed
Jun 18 10:24:03 Doopliss systemd[1]: snapperd.service: Deactivated successfully.
Jun 18 10:24:05 Doopliss dbus-daemon[525]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.45' (uid=0 pid=1172 comm="sudo -n uptime")
Jun 18 10:24:05 Doopliss dbus-daemon[525]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 18 10:24:05 Doopliss sudo[1172]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 18 10:24:05 Doopliss sudo[1172]:   vivian : TTY=pts/0 ; PWD=/home/vivian ; USER=root ; COMMAND=/usr/bin/uptime
Jun 18 10:24:05 Doopliss sudo[1172]: pam_unix(sudo:session): session opened for user root(uid=0) by vivian(uid=1000)
Jun 18 10:24:05 Doopliss sudo[1172]: pam_unix(sudo:session): session closed for user root
Jun 18 10:24:05 Doopliss dbus-daemon[525]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.46' (uid=0 pid=1176 comm="sudo -S -p  /usr/bin/veracrypt --core-service")
Jun 18 10:24:05 Doopliss dbus-daemon[525]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Jun 18 10:24:05 Doopliss sudo[1176]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Jun 18 10:24:05 Doopliss sudo[1176]:   vivian : TTY=pts/0 ; PWD=/home/vivian ; USER=root ; COMMAND=/usr/bin/veracrypt --core-service
Jun 18 10:24:05 Doopliss sudo[1176]: pam_unix(sudo:session): session opened for user root(uid=0) by vivian(uid=1000)
Jun 18 10:24:05 Doopliss sudo[1176]: pam_unix(sudo:session): session closed for user root
Jun 18 10:24:08 Doopliss kernel: Key type trusted registered
Jun 18 10:24:08 Doopliss kernel: Key type encrypted registered
Jun 18 10:24:08 Doopliss kernel: EXT4-fs (dm-0): mounted filesystem 89b97cbf-04ba-4375-8c61-44563fa76db2 with ordered data mode. Quota mode: none.
Jun 18 10:24:11 Doopliss systemd[1]: Stopping User Manager for UID 972...
Jun 18 10:24:11 Doopliss systemd[715]: Activating special unit Exit the Session...
Jun 18 10:24:11 Doopliss systemd[715]: Stopped target Main User Target.
Jun 18 10:24:11 Doopliss systemd[715]: Stopping Accessibility services bus...
Jun 18 10:24:11 Doopliss gvfsd[735]: A connection to the bus can't be made
Jun 18 10:24:11 Doopliss systemd[715]: Stopping D-Bus User Message Bus...
Jun 18 10:24:11 Doopliss systemd[715]: Stopping Virtual filesystem service...
Jun 18 10:24:11 Doopliss systemd[715]: Stopped Accessibility services bus.
Jun 18 10:24:11 Doopliss systemd[715]: Stopped D-Bus User Message Bus.
Jun 18 10:24:11 Doopliss systemd[715]: Stopped Virtual filesystem service.
Jun 18 10:24:11 Doopliss systemd[1]: run-user-972-gvfs.mount: Deactivated successfully.
Jun 18 10:24:11 Doopliss systemd[715]: Removed slice User Core Session Slice.
Jun 18 10:24:11 Doopliss systemd[715]: Stopped target Basic System.
Jun 18 10:24:11 Doopliss systemd[715]: Stopped target Paths.
Jun 18 10:24:11 Doopliss systemd[715]: Stopped target Sockets.
Jun 18 10:24:11 Doopliss systemd[715]: Stopped target Timers.
Jun 18 10:24:11 Doopliss systemd[715]: Closed D-Bus User Message Bus Socket.
Jun 18 10:24:11 Doopliss systemd[715]: Closed GnuPG network certificate management daemon.
Jun 18 10:24:11 Doopliss systemd[715]: Closed GCR ssh-agent wrapper.
Jun 18 10:24:11 Doopliss systemd[715]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jun 18 10:24:11 Doopliss systemd[715]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
Jun 18 10:24:11 Doopliss systemd[715]: Closed GnuPG cryptographic agent (ssh-agent emulation).
Jun 18 10:24:11 Doopliss systemd[715]: Closed GnuPG cryptographic agent and passphrase cache.
Jun 18 10:24:11 Doopliss systemd[715]: Closed p11-kit server.
Jun 18 10:24:11 Doopliss systemd[715]: Closed PipeWire PulseAudio.
Jun 18 10:24:11 Doopliss systemd[715]: Closed PipeWire Multimedia System Socket.
Jun 18 10:24:11 Doopliss systemd[715]: Removed slice User Application Slice.
Jun 18 10:24:11 Doopliss systemd[715]: Reached target Shutdown.
Jun 18 10:24:11 Doopliss systemd[715]: Finished Exit the Session.
Jun 18 10:24:11 Doopliss systemd[715]: Reached target Exit the Session.
Jun 18 10:24:12 Doopliss (sd-pam)[716]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8004 service=[systemd-user] terminal=[] user=[lightdm] ruser=[<unknown>] rhost=[<unknown>]
Jun 18 10:24:12 Doopliss systemd[1]: user@972.service: Deactivated successfully.
Jun 18 10:24:12 Doopliss systemd[1]: Stopped User Manager for UID 972.
Jun 18 10:24:12 Doopliss systemd[1]: Stopping User Runtime Directory /run/user/972...
Jun 18 10:24:12 Doopliss systemd[1]: run-user-972.mount: Deactivated successfully.
Jun 18 10:24:12 Doopliss systemd[1]: user-runtime-dir@972.service: Deactivated successfully.
Jun 18 10:24:12 Doopliss systemd[1]: Stopped User Runtime Directory /run/user/972.
Jun 18 10:24:12 Doopliss systemd[1]: Removed slice User Slice of UID 972.
Jun 18 10:24:27 Doopliss kernel: logitech-hidpp-device 0003:046D:405E.000A: HID++ 4.5 device connected.
Jun 18 10:24:34 Doopliss kernel: sdb: detected capacity change from 122880000 to 0
Jun 18 10:24:53 Doopliss kernel: warning: `nspr-2' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
Jun 18 10:25:15 Doopliss kernel: SUPR0GipMap: fGetGipCpu=0x1b
Jun 18 10:25:16 Doopliss kernel: vboxdrv: 000000005e1a89c9 VMMR0.r0
Jun 18 10:25:16 Doopliss kernel: vboxdrv: 0000000045f94043 VBoxDDR0.r0
Jun 18 10:25:16 Doopliss kernel: VBoxNetFlt: attached to 'enp3s0' / 04:7c:16:4a:33:3a
Jun 18 10:25:16 Doopliss kernel: r8169 0000:03:00.0 enp3s0: entered promiscuous mode
Jun 18 10:28:51 Doopliss dbus-daemon[799]: [session uid=1000 pid=799] Activating via systemd: service name='ca.desrt.dconf' unit='dconf.service' requested by ':1.59' (uid=1000 pid=1493 comm="/usr/bin/mousepad /drisca/VivQuest/FicaShow/anime/")
Jun 18 10:28:51 Doopliss systemd[783]: Starting User preferences database...
Jun 18 10:28:51 Doopliss dbus-daemon[799]: [session uid=1000 pid=799] Successfully activated service 'ca.desrt.dconf'
Jun 18 10:28:51 Doopliss systemd[783]: Started User preferences database.
Jun 18 10:29:56 Doopliss NetworkManager[536]: <info>  [1687098596.0547] device (wlan0): set-hw-addr: set MAC address to E2:C4:32:36:3D:4D (scanning)
Jun 18 10:29:56 Doopliss NetworkManager[536]: <info>  [1687098596.0855] device (wlan0): supplicant interface state: disconnected -> inactive
Jun 18 10:29:56 Doopliss NetworkManager[536]: <info>  [1687098596.0855] device (p2p-dev-wlan0): supplicant management interface state: disconnected -> inactive
Jun 18 10:33:13 Doopliss systemd[1]: Started Daily Cleanup of Snapper Snapshots.
Jun 18 10:33:13 Doopliss dbus-daemon[525]: [system] Activating via systemd: service name='org.opensuse.Snapper' unit='snapperd.service' requested by ':1.65' (uid=0 pid=2242 comm="/usr/lib/snapper/systemd-helper --cleanup")
Jun 18 10:33:13 Doopliss systemd[1]: Starting DBus interface for snapper...
Jun 18 10:33:13 Doopliss dbus-daemon[525]: [system] Successfully activated service 'org.opensuse.Snapper'
Jun 18 10:33:13 Doopliss systemd[1]: Started DBus interface for snapper.
Jun 18 10:33:13 Doopliss systemd-helper[2242]: running cleanup for 'home'.
Jun 18 10:33:13 Doopliss systemd-helper[2242]: running number cleanup for 'home'.
Jun 18 10:33:13 Doopliss systemd-helper[2242]: running timeline cleanup for 'home'.
Jun 18 10:33:13 Doopliss systemd-helper[2242]: running empty-pre-post cleanup for 'home'.
Jun 18 10:33:13 Doopliss systemd-helper[2242]: running cleanup for 'root'.
Jun 18 10:33:13 Doopliss systemd-helper[2242]: running number cleanup for 'root'.
Jun 18 10:33:13 Doopliss systemd-helper[2242]: running timeline cleanup for 'root'.
Jun 18 10:33:13 Doopliss systemd-helper[2242]: running empty-pre-post cleanup for 'root'.
Jun 18 10:33:13 Doopliss systemd[1]: snapper-cleanup.service: Deactivated successfully.
Jun 18 10:34:02 Doopliss dbus-daemon[799]: [session uid=1000 pid=799] Activating service name='org.xfce.Xfconf' requested by ':1.20' (uid=1000 pid=884 comm="xfce4-panel --display :0.0 --sm-client-id 2cbff2bb")
Jun 18 10:34:02 Doopliss dbus-daemon[799]: [session uid=1000 pid=799] Successfully activated service 'org.xfce.Xfconf'
Jun 18 10:34:13 Doopliss systemd[1]: snapperd.service: Deactivated successfully.
Jun 18 10:36:50 Doopliss NetworkManager[536]: <info>  [1687099010.0548] device (wlan0): set-hw-addr: set MAC address to B2:DF:50:17:88:34 (scanning)
Jun 18 10:36:50 Doopliss NetworkManager[536]: <info>  [1687099010.0800] device (wlan0): supplicant interface state: inactive -> disconnected
Jun 18 10:36:50 Doopliss NetworkManager[536]: <info>  [1687099010.0801] device (p2p-dev-wlan0): supplicant management interface state: inactive -> disconnected
Jun 18 10:36:50 Doopliss NetworkManager[536]: <info>  [1687099010.0855] device (wlan0): supplicant interface state: disconnected -> inactive
Jun 18 10:36:50 Doopliss NetworkManager[536]: <info>  [1687099010.0855] device (p2p-dev-wlan0): supplicant management interface state: disconnected -> inactive
Jun 18 10:38:03 Doopliss systemd[1]: Starting Cleanup of Temporary Directories...
Jun 18 10:38:03 Doopliss systemd[1]: systemd-tmpfiles-clean.service: Deactivated successfully.
Jun 18 10:38:03 Doopliss systemd[1]: Finished Cleanup of Temporary Directories.
Jun 18 10:38:03 Doopliss systemd[1]: run-credentials-systemd\x2dtmpfiles\x2dclean.service.mount: Deactivated successfully.
Jun 18 10:41:50 Doopliss dbus-daemon[799]: [session uid=1000 pid=799] Activating service name='org.xfce.Xfconf' requested by ':1.66' (uid=1000 pid=2528 comm="xfce4-settings-manager")
Jun 18 10:41:50 Doopliss dbus-daemon[799]: [session uid=1000 pid=799] Successfully activated service 'org.xfce.Xfconf'
Jun 18 10:42:56 Doopliss dbus-daemon[799]: [session uid=1000 pid=799] Activating via systemd: service name='org.freedesktop.thumbnails.Thumbnailer1' unit='tumblerd.service' requested by ':1.76' (uid=1000 pid=2656 comm="xfdesktop-settings --socket-id=33590668")
Jun 18 10:42:56 Doopliss systemd[783]: Starting Thumbnailing service...
Jun 18 10:42:56 Doopliss tumblerd[2671]: Failed to load plugin "tumbler-ffmpeg-thumbnailer.so": libffmpegthumbnailer.so.4: cannot open shared object file: No such file or directory
Jun 18 10:42:56 Doopliss tumblerd[2671]: Failed to load plugin "tumbler-gepub-thumbnailer.so": libgepub-0.7.so.0: cannot open shared object file: No such file or directory
Jun 18 10:42:56 Doopliss tumblerd[2671]: Failed to load plugin "tumbler-odf-thumbnailer.so": libgsf-1.so.114: cannot open shared object file: No such file or directory
Jun 18 10:42:56 Doopliss tumblerd[2671]: Failed to load plugin "tumbler-poppler-thumbnailer.so": libpoppler-glib.so.8: cannot open shared object file: No such file or directory
Jun 18 10:42:56 Doopliss tumblerd[2671]: Failed to load plugin "tumbler-raw-thumbnailer.so": libopenrawgnome.so.9: cannot open shared object file: No such file or directory
Jun 18 10:42:56 Doopliss dbus-daemon[799]: [session uid=1000 pid=799] Successfully activated service 'org.freedesktop.thumbnails.Thumbnailer1'
Jun 18 10:42:56 Doopliss systemd[783]: Started Thumbnailing service.
Jun 18 10:42:56 Doopliss dbus-daemon[525]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.73' (uid=1000 pid=2656 comm="xfdesktop-settings --socket-id=33590668")
Jun 18 10:42:56 Doopliss dbus-daemon[525]: [system] Activating via systemd: service name='org.freedesktop.Avahi' unit='dbus-org.freedesktop.Avahi.service' requested by ':1.74' (uid=1000 pid=2708 comm="/usr/lib/gvfsd-dnssd --spawner :1.5 /org/gtk/gvfs/")
Jun 18 10:42:56 Doopliss systemd[1]: Starting Hostname Service...
Jun 18 10:42:56 Doopliss dbus-daemon[525]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.Avahi.service': Unit dbus-org.freedesktop.Avahi.service not found.
Jun 18 10:42:56 Doopliss dbus-daemon[525]: [system] Successfully activated service 'org.freedesktop.hostname1'
Jun 18 10:42:56 Doopliss systemd[1]: Started Hostname Service.
Jun 18 10:43:26 Doopliss systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Jun 18 10:43:44 Doopliss dbus-daemon[525]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.29' (uid=1000 pid=884 comm="xfce4-panel --display :0.0 --sm-client-id 2cbff2bb")
Jun 18 10:43:44 Doopliss systemd[1]: Starting Hostname Service...
Jun 18 10:43:44 Doopliss dbus-daemon[525]: [system] Successfully activated service 'org.freedesktop.hostname1'
Jun 18 10:43:44 Doopliss systemd[1]: Started Hostname Service.
Jun 18 10:43:45 Doopliss NetworkManager[536]: <info>  [1687099425.0481] device (wlan0): set-hw-addr: set MAC address to C6:66:F0:53:15:00 (scanning)
Jun 18 10:43:45 Doopliss NetworkManager[536]: <info>  [1687099425.0967] device (wlan0): supplicant interface state: inactive -> disconnected
Jun 18 10:43:45 Doopliss NetworkManager[536]: <info>  [1687099425.0967] device (p2p-dev-wlan0): supplicant management interface state: inactive -> disconnected
Jun 18 10:43:45 Doopliss NetworkManager[536]: <info>  [1687099425.1019] device (wlan0): supplicant interface state: disconnected -> inactive
Jun 18 10:43:45 Doopliss NetworkManager[536]: <info>  [1687099425.1019] device (p2p-dev-wlan0): supplicant management interface state: disconnected -> inactive
Jun 18 10:44:14 Doopliss systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Jun 18 10:44:41 Doopliss dbus-daemon[525]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.77' (uid=1000 pid=2864 comm="xfce4-terminal --preferences")
Jun 18 10:44:41 Doopliss systemd[1]: Starting Hostname Service...
Jun 18 10:44:41 Doopliss dbus-daemon[525]: [system] Successfully activated service 'org.freedesktop.hostname1'
Jun 18 10:44:41 Doopliss systemd[1]: Started Hostname Service.
Jun 18 10:45:11 Doopliss systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Jun 18 10:45:12 Doopliss dbus-daemon[525]: [system] Activating via systemd: service name='org.freedesktop.ColorManager' unit='colord.service' requested by ':1.79' (uid=1000 pid=2897 comm="xfce4-color-settings --socket-id=33639094")
Jun 18 10:45:12 Doopliss systemd[1]: Starting Manage, Install and Generate Color Profiles...
Jun 18 10:45:12 Doopliss dbus-daemon[525]: [system] Successfully activated service 'org.freedesktop.ColorManager'
Jun 18 10:45:12 Doopliss systemd[1]: Started Manage, Install and Generate Color Profiles.
Jun 18 10:50:38 Doopliss NetworkManager[536]: <info>  [1687099838.0679] device (wlan0): set-hw-addr: set MAC address to 3A:A4:1B:A3:E4:52 (scanning)
Jun 18 10:50:38 Doopliss NetworkManager[536]: <info>  [1687099838.0933] device (wlan0): supplicant interface state: inactive -> disconnected
Jun 18 10:50:38 Doopliss NetworkManager[536]: <info>  [1687099838.0934] device (p2p-dev-wlan0): supplicant management interface state: inactive -> disconnected
Jun 18 10:50:38 Doopliss NetworkManager[536]: <info>  [1687099838.0987] device (wlan0): supplicant interface state: disconnected -> inactive
Jun 18 10:50:38 Doopliss NetworkManager[536]: <info>  [1687099838.0988] device (p2p-dev-wlan0): supplicant management interface state: disconnected -> inactive
Jun 18 10:54:02 Doopliss dbus-daemon[799]: [session uid=1000 pid=799] Activating service name='org.xfce.Xfconf' requested by ':1.20' (uid=1000 pid=884 comm="xfce4-panel --display :0.0 --sm-client-id 2cbff2bb")
Jun 18 10:54:02 Doopliss dbus-daemon[799]: [session uid=1000 pid=799] Successfully activated service 'org.xfce.Xfconf'
Jun 18 10:57:32 Doopliss NetworkManager[536]: <info>  [1687100252.0614] device (wlan0): set-hw-addr: set MAC address to 8A:25:42:B8:5E:C3 (scanning)
Jun 18 10:57:32 Doopliss NetworkManager[536]: <info>  [1687100252.0900] device (wlan0): supplicant interface state: inactive -> disconnected
Jun 18 10:57:32 Doopliss NetworkManager[536]: <info>  [1687100252.0901] device (p2p-dev-wlan0): supplicant management interface state: inactive -> disconnected
Jun 18 10:57:32 Doopliss NetworkManager[536]: <info>  [1687100252.0953] device (wlan0): supplicant interface state: disconnected -> inactive
Jun 18 10:57:32 Doopliss NetworkManager[536]: <info>  [1687100252.0954] device (p2p-dev-wlan0): supplicant management interface state: disconnected -> inactive

edit: I forgot to say.

My goal is to make my computer not use my gpu just so I can use it on my virtual machine. Part of the procedure involves telling xorg to only use my igpu instead, this should be done with the 20-igpu.conf file that should be located under /etc/X11/xorg.conf.d/.

I should mention this is exactly what optimus-manager is doing (with a few additional steps), but optimus-manager also fails.

Last edited by PatoPan (2023-06-19 11:34:51)

Offline

#6 2023-06-19 11:56:01

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 76,337

Re: [Solved] My xorg.conf.d file doesn't work... but xorg.conf does

My goal is to make my computer not use my gpu just so I can use it on my virtual machine.

Don't attach all monitors there, your problem in your OP is that: there's no monitor attached to the IGP, so you don't see anything.

Also you don#t have to configure X11 for this, https://wiki.archlinux.org/title/Vfio will "hide" the GPU from the system.

Offline

#7 2023-06-19 14:21:55

PatoPan
Member
Registered: 2023-06-02
Posts: 14

Re: [Solved] My xorg.conf.d file doesn't work... but xorg.conf does

seth wrote:

Don't attach all monitors there, your problem in your OP is that: there's no monitor attached to the IGP, so you don't see anything.

(edit: i forgot to respond to this. See reply below)

seth wrote:

Also you don#t have to configure X11 for this, https://wiki.archlinux.org/title/Vfio will "hide" the GPU from the system.

I think I heard of doing this before. There was a time where my goal was to do gpu switching, where my host would always use my nvidia gpu, but when I start my virtual machine it would be using my intel gpu. I lowered my goal posts to try something easier. I decided against doing this because I wanted to avoid rebooting my computer to switch my gpu every time I want to use my virtual machine. However, after all of this hassle, what's the point? I mean, no matter the method, the desktop environment has to restart and all the applications will be closed. At this point it would be easier to just do this method, and if I want to switch the gpu of my host machine I can manually do so with this method. I can probably automate it too.

In short, I'll try this and update if I find an issue, since I remember I did try this before and came across an issue. I don't have info on what that issue was though, those logs are long gone.

Last edited by PatoPan (2023-06-19 14:27:38)

Offline

#8 2023-06-19 14:25:49

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 76,337

Re: [Solved] My xorg.conf.d file doesn't work... but xorg.conf does

You can pass the GPU through w/o rebooting the system, but whatever approach you take, you'll have to attach a monitor to the IGP if you don't want to use the GPU.

Offline

#9 2023-06-19 14:28:35

PatoPan
Member
Registered: 2023-06-02
Posts: 14

Re: [Solved] My xorg.conf.d file doesn't work... but xorg.conf does

seth wrote:

You can pass the GPU through w/o rebooting the system, but whatever approach you take, you'll have to attach a monitor to the IGP if you don't want to use the GPU.

How can I achieve this? here's what I tried

I tried to make an 20-igpu.conf that tries to attach a monitor to the IGP (to the best of my understanding). It didn't work. Below are what the files looked like, I only tried the second one after the first one failed

20-igpu.conf (attempt 1)

Section "Monitor"
	Identifier   "Monitor0"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
EndSection

Section "Monitor"
	Identifier   "Monitor1"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
EndSection

Section "Device"
	Identifier  "Card0"
	Driver      "modesetting"
	BusID       "PCI:0:2:0"
EndSection

Section "Device"
	Identifier  "Card1"
	Driver      "modesetting"
	BusID       "PCI:0:2:0"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
EndSection

Section "Screen"
	Identifier "Screen1"
	Device     "Card1"
	Monitor    "Monitor1"
EndSection

20-igpu.conf (attempt 2)

Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "Screen0" 0 0
	Screen      1  "Screen1" RightOf "Screen0"
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
	ModulePath   "/usr/lib/xorg/modules"
	FontPath     "/usr/share/fonts/misc"
	FontPath     "/usr/share/fonts/TTF"
	FontPath     "/usr/share/fonts/OTF"
	FontPath     "/usr/share/fonts/Type1"
	FontPath     "/usr/share/fonts/100dpi"
	FontPath     "/usr/share/fonts/75dpi"
EndSection

Section "Module"
	Load  "glx"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "auto"
	Option	    "Device" "/dev/input/mice"
	Option	    "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
	Identifier   "Monitor0"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
EndSection

Section "Monitor"
	Identifier   "Monitor1"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "SWcursor"           	# [<bool>]
        #Option     "kmsdev"             	# <str>
        #Option     "ShadowFB"           	# [<bool>]
        #Option     "AccelMethod"        	# <str>
        #Option     "PageFlip"           	# [<bool>]
        #Option     "ZaphodHeads"        	# <str>
        #Option     "DoubleShadow"       	# [<bool>]
        #Option     "Atomic"             	# [<bool>]
        #Option     "VariableRefresh"    	# [<bool>]
        #Option     "UseGammaLUT"        	# [<bool>]
        #Option     "AsyncFlipSecondaries" 	# [<bool>]
	Identifier  "Card0"
	Driver      "modesetting"
	BusID       "PCI:0:2:0"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "SWcursor"           	# [<bool>]
        #Option     "kmsdev"             	# <str>
        #Option     "ShadowFB"           	# [<bool>]
        #Option     "AccelMethod"        	# <str>
        #Option     "PageFlip"           	# [<bool>]
        #Option     "ZaphodHeads"        	# <str>
        #Option     "DoubleShadow"       	# [<bool>]
        #Option     "Atomic"             	# [<bool>]
        #Option     "VariableRefresh"    	# [<bool>]
        #Option     "UseGammaLUT"        	# [<bool>]
        #Option     "AsyncFlipSecondaries" 	# [<bool>]
	Identifier  "Card1"
	Driver      "modesetting"
	BusID       "PCI:0:2:0"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	SubSection "Display"
		Viewport   0 0
		Depth     1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

Section "Screen"
	Identifier "Screen1"
	Device     "Card1"
	Monitor    "Monitor1"
	SubSection "Display"
		Viewport   0 0
		Depth     1
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     4
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     8
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     15
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     16
	EndSubSection
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

Offline

#10 2023-06-19 14:39:54

PatoPan
Member
Registered: 2023-06-02
Posts: 14

Re: [Solved] My xorg.conf.d file doesn't work... but xorg.conf does

seth wrote:

You can pass the GPU through w/o rebooting the system, but whatever approach you take, you'll have to attach a monitor to the IGP if you don't want to use the GPU.

oh wait, you mean physically attach them? Changing where the cables are plugged in so they are plugged into the motherboard instead of my gpu? Oh that's annoying. It makes sense but it sounds annoying.

Is that what you meant?

It just makes me wonder. When I don't have the nvidia packages installed, was I still using my gpu anyways? Since my gpu is probably in charge of the monitors.

Edit: Upon trying this myself, I am sad to see this is exactly what you mean, and that I have to the tedious task of unplugging cables every time I want to use my vms. This is the source of most if not all the problems I faced. I wish at least one of the tutorials I saw mentioned this.

It sounds obvious but, I kind of just completely missed it. It slipped my mind. I didn't even consider it.

Last edited by PatoPan (2023-06-19 14:45:52)

Offline

#11 2023-06-19 14:42:03

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 76,337

Re: [Solved] My xorg.conf.d file doesn't work... but xorg.conf does

Is that what you meant?

Yes.
How do you intend to see anything on the output if it's attached to the nvidia device but you explicitly don't use that?

Offline

#12 2023-06-19 14:46:43

PatoPan
Member
Registered: 2023-06-02
Posts: 14

Re: [Solved] My xorg.conf.d file doesn't work... but xorg.conf does

yes you are right. I made an edit knowledging that.

Is there really no other way or some kind of cool trick out there? I doubt there is, but I have to ask.

Last edited by PatoPan (2023-06-19 14:47:17)

Offline

#13 2023-06-19 14:52:29

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 76,337

Re: [Solved] My xorg.conf.d file doesn't work... but xorg.conf does

If your monitor has switchable inputs, you can attach it to the IGP and GPU.
You can also run on the IGP but output over the GPU, https://wiki.archlinux.org/title/PRIME#Reverse_PRIME - but then you're no longer not using the GPU and cannot pass it through either.

Offline

#14 2023-06-19 15:53:26

PatoPan
Member
Registered: 2023-06-02
Posts: 14

Re: [Solved] My xorg.conf.d file doesn't work... but xorg.conf does

I guess I'll have to settle with having switchable outputs which means more wiring. I'll see if I can find another hdmi cable or a displayport one.

Thank you for the help

Last edited by PatoPan (2023-06-19 15:54:21)

Offline

Board footer

Powered by FluxBB