You are not logged in.

#1 2023-10-04 11:36:45

MxIzzy
Member
Registered: 2023-02-14
Posts: 11

Lenovo Legion 5 can't use external display outputs

I've got a new Legion 5, and while almost everything works properly, my DP through USB-C and HDMI don't work.

This has happened on my previous laptop, and the solution was to set

acpi_os_name="Windows2012"

in the kernel parameters, but that doesn't work this time around.

I use wayland as my compositor, and this should work as it doesn't behave like this on my home computer.

lspci | grep VGA works properly, returning this:

00:02.0 VGA compatible controller: Intel Corporation Alder Lake-P Integrated Graphics Controller (rev 0c)
01:00.0 VGA compatible controller: NVIDIA Corporation GA104M [GeForce RTX 3070 Mobile / Max-Q] (rev a1)

This is probably irrelevant because I am using wayland, but xrandr returns

Screen 0: minimum 16 x 16, current 2560 x 1600, maximum 32767 x 32767
eDP-1 connected primary 2560x1600+0+0 (normal left inverted right x axis y axis) 340mm x 210mm
   2560x1600     59.99*+
   2048x1536     59.95  
   1920x1440     59.97  
   1600x1200     59.87  
   1440x1080     59.99  
   1400x1050     59.98  
   1280x1024     59.89  
   1280x960      59.94  
   1152x864      59.96  
   1024x768      59.92  
   800x600       59.86  
   640x480       59.38  
   320x240       59.52  
   1920x1200     59.88  
   1680x1050     59.95  
   1440x900      59.89  
   1280x800      59.81  
   1152x720      59.97  
   960x600       59.63  
   928x580       59.88  
   800x500       59.50  
   768x480       59.90  
   720x480       59.71  
   640x400       59.95  
   320x200       58.96  
   2560x1440     59.96  
   2048x1152     59.90  
   1920x1080     59.96  
   1600x900      59.95  
   1368x768      59.88  
   1280x720      59.86  
   1024x576      59.90  
   864x486       59.92  
   720x400       59.55  
   640x350       59.77  

xrandr --listproviders returns

Providers: number : 0

xorg.conf currently 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     "Accel"                     # [<bool>]
        #Option     "AccelMethod"               # <str>
        #Option     "Backlight"                 # <str>
        #Option     "CustomEDID"                # <str>
        #Option     "DRI"                       # <str>
        #Option     "Present"                   # [<bool>]
        #Option     "ColorKey"                  # <i>
        #Option     "VideoKey"                  # <i>
        #Option     "Tiling"                    # [<bool>]
        #Option     "LinearFramebuffer"         # [<bool>]
        #Option     "HWRotation"                # [<bool>]
        #Option     "VSync"                     # [<bool>]
        #Option     "PageFlip"                  # [<bool>]
        #Option     "SwapbuffersWait"           # [<bool>]
        #Option     "TripleBuffer"              # [<bool>]
        #Option     "XvPreferOverlay"           # [<bool>]
        #Option     "HotPlug"                   # [<bool>]
        #Option     "ReprobeOutputs"            # [<bool>]
        #Option     "XvMC"                      # [<bool>]
        #Option     "ZaphodHeads"               # <str>
        #Option     "VirtualHeads"              # <i>
        #Option     "TearFree"                  # [<bool>]
        #Option     "PerCrtcPixmaps"            # [<bool>]
        #Option     "FallbackDebug"             # [<bool>]
        #Option     "DebugFlushBatches"         # [<bool>]
        #Option     "DebugFlushCaches"          # [<bool>]
        #Option     "DebugWait"                 # [<bool>]
        #Option     "BufferCache"               # [<bool>]
        Identifier  "Card0"
        Driver      "intel"
        BusID       "PCI:0:2:0"
EndSection

Section "Device"
        Identifier  "Card1"
        Driver      "nvidia"
        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

When I plug in an HDMI cable, I get a pop up in KDE for a new display being connected, but nothing actually happens on the new display.
How do I fix this?

Offline

#2 2023-10-05 16:14:04

Bab
Member
Registered: 2018-05-05
Posts: 1

Re: Lenovo Legion 5 can't use external display outputs

I'm having the same problem. I can confirm that this issue has only started happening since kernel >6.4.12 and/or nvidia driver >535, as rolling back to linux-6.4.12.arch1-1 , linux-headers-6.4.12.arch1-1 , nvidia-535.104.05-2 and nvidia-utils-535.104.05-1 makes it work as before. Note that I am using x11, so Wayland should not factor in to this issue.
Monitors connected to my USB-C hub, connected to the laptop via the side port do still work, however.

Last edited by Bab (2023-10-05 16:16:27)

Offline

#3 2023-10-07 16:59:43

MxIzzy
Member
Registered: 2023-02-14
Posts: 11

Re: Lenovo Legion 5 can't use external display outputs

just tried that, but it didn't fix the issue for me, still no display out and still no xrandr providers

Offline

#4 2023-10-07 20:25:44

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,764

Re: Lenovo Legion 5 can't use external display outputs

Remove the xorg.conf and xf86-video-intel if installed and try again.

Post a xorg log if it still doesn't work. https://wiki.archlinux.org/title/Xorg#General

Last edited by V1del (2023-10-07 20:26:52)

Offline

#5 2023-10-07 20:52:10

MxIzzy
Member
Registered: 2023-02-14
Posts: 11

Re: Lenovo Legion 5 can't use external display outputs

removed xorg.conf and the files in xorg.conf.d, still doesn't work, so here's the xorg.0.log:

[     6.899] (--) Log file renamed from "/var/log/Xorg.pid-974.log" to "/var/log/Xorg.0.log"
[     6.900] 
X.Org X Server 1.21.1.8
X Protocol Version 11, Revision 0
[     6.900] Current Operating System: Linux Legion5Pro 6.5.5-arch1-1 #1 SMP PREEMPT_DYNAMIC Sat, 23 Sep 2023 22:55:13 +0000 x86_64
[     6.900] Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root=UUID=ce1f2edd-cf6a-448a-8408-246c82a983a0 rw quiet splash intel_pstate=disable resume=/dev/nvme0n1p2 acpi_os_name="Linux" nvidia_drm.modeset=1
[     6.900]  
[     6.900] Current version of pixman: 0.42.2
[     6.900] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[     6.900] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[     6.900] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Oct  7 22:47:37 2023
[     6.901] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[     6.902] (==) No Layout section.  Using the first Screen section.
[     6.902] (==) No screen section available. Using defaults.
[     6.902] (**) |-->Screen "Default Screen Section" (0)
[     6.902] (**) |   |-->Monitor "<default monitor>"
[     6.902] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[     6.902] (==) Automatically adding devices
[     6.902] (==) Automatically enabling devices
[     6.902] (==) Automatically adding GPU devices
[     6.902] (==) Automatically binding GPU devices
[     6.902] (==) Max clients allowed: 256, resource mask: 0x1fffff
[     6.902] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/misc".
[     6.902] 	Entry deleted from font path.
[     6.902] 	(Run 'mkfontdir' on "/usr/share/fonts/misc").
[     6.902] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/TTF".
[     6.902] 	Entry deleted from font path.
[     6.902] 	(Run 'mkfontdir' on "/usr/share/fonts/TTF").
[     6.902] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[     6.902] 	Entry deleted from font path.
[     6.902] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[     6.902] 	Entry deleted from font path.
[     6.902] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[     6.902] 	Entry deleted from font path.
[     6.902] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[     6.902] 	Entry deleted from font path.
[     6.902] (==) FontPath set to:
	
[     6.902] (==) ModulePath set to "/usr/lib/xorg/modules"
[     6.902] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[     6.902] (II) Module ABI versions:
[     6.902] 	X.Org ANSI C Emulation: 0.4
[     6.902] 	X.Org Video Driver: 25.2
[     6.902] 	X.Org XInput driver : 24.4
[     6.902] 	X.Org Server Extension : 10.0
[     6.903] (++) using VT number 2

[     6.903] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[     6.904] (II) xfree86: Adding drm device (/dev/dri/card0)
[     6.904] (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card0
[     6.907] (--) PCI:*(0@0:2:0) 8086:46a6:17aa:3aed rev 12, Mem @ 0x6203000000/16777216, 0x4000000000/268435456, I/O @ 0x00006000/64, BIOS @ 0x????????/131072
[     6.907] (--) PCI: (1@0:0:0) 10de:24dd:17aa:3833 rev 161, Mem @ 0x60000000/16777216, 0x6000000000/268435456, 0x6010000000/33554432, I/O @ 0x00005000/128, BIOS @ 0x????????/524288
[     6.907] (II) Open ACPI successful (/var/run/acpid.socket)
[     6.907] (II) LoadModule: "glx"
[     6.908] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[     6.913] (II) Module glx: vendor="X.Org Foundation"
[     6.913] 	compiled for 1.21.1.8, module version = 1.0.0
[     6.913] 	ABI class: X.Org Server Extension, version 10.0
[     6.913] (==) Matched intel as autoconfigured driver 0
[     6.913] (==) Matched modesetting as autoconfigured driver 1
[     6.913] (==) Matched fbdev as autoconfigured driver 2
[     6.913] (==) Matched vesa as autoconfigured driver 3
[     6.913] (==) Assigned the driver to the xf86ConfigLayout
[     6.913] (II) LoadModule: "intel"
[     6.913] (WW) Warning, couldn't open module intel
[     6.913] (EE) Failed to load module "intel" (module does not exist, 0)
[     6.913] (II) LoadModule: "modesetting"
[     6.913] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[     6.914] (II) Module modesetting: vendor="X.Org Foundation"
[     6.914] 	compiled for 1.21.1.8, module version = 1.21.1
[     6.914] 	Module class: X.Org Video Driver
[     6.914] 	ABI class: X.Org Video Driver, version 25.2
[     6.914] (II) LoadModule: "fbdev"
[     6.915] (WW) Warning, couldn't open module fbdev
[     6.915] (EE) Failed to load module "fbdev" (module does not exist, 0)
[     6.915] (II) LoadModule: "vesa"
[     6.915] (WW) Warning, couldn't open module vesa
[     6.915] (EE) Failed to load module "vesa" (module does not exist, 0)
[     6.915] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[     6.924] (II) modeset(0): using drv /dev/dri/card0
[     6.924] (II) modeset(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[     6.924] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[     6.924] (==) modeset(0): RGB weight 888
[     6.924] (==) modeset(0): Default visual is TrueColor
[     6.924] (II) Loading sub module "glamoregl"
[     6.924] (II) LoadModule: "glamoregl"
[     6.924] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[     6.928] (II) Module glamoregl: vendor="X.Org Foundation"
[     6.928] 	compiled for 1.21.1.8, module version = 1.0.1
[     6.928] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     8.938] (II) modeset(0): glamor X acceleration enabled on Mesa Intel(R) Graphics (ADL GT2)
[     8.938] (II) modeset(0): glamor initialized
[     8.938] (==) modeset(0): VariableRefresh: disabled
[     8.938] (==) modeset(0): AsyncFlipSecondaries: disabled
[     8.940] (II) modeset(0): Output eDP-1 has no monitor section
[     8.940] (II) modeset(0): Output DP-1 has no monitor section
[     8.940] (II) modeset(0): Output DP-2 has no monitor section
[     8.943] (II) modeset(0): EDID for output eDP-1
[     8.943] (II) modeset(0): Manufacturer: BOE  Model: a1f  Serial#: 0
[     8.943] (II) modeset(0): Year: 2021  Week: 18
[     8.943] (II) modeset(0): EDID Version: 1.4
[     8.943] (II) modeset(0): Digital Display Input
[     8.943] (II) modeset(0): 10 bits per channel
[     8.943] (II) modeset(0): Digital interface is DisplayPort
[     8.943] (II) modeset(0): Max Image Size [cm]: horiz.: 34  vert.: 21
[     8.943] (II) modeset(0): Gamma: 2.20
[     8.943] (II) modeset(0): No DPMS capabilities specified
[     8.943] (II) modeset(0): Supported color encodings: RGB 4:4:4 
[     8.943] (II) modeset(0): First detailed timing is preferred mode
[     8.943] (II) modeset(0): Preferred mode is native pixel format and refresh rate
[     8.943] (II) modeset(0): Display is continuous-frequency
[     8.943] (II) modeset(0): redX: 0.642 redY: 0.335   greenX: 0.300 greenY: 0.621
[     8.943] (II) modeset(0): blueX: 0.151 blueY: 0.061   whiteX: 0.313 whiteY: 0.329
[     8.943] (II) modeset(0): Manufacturer's mask: 0
[     8.943] (II) modeset(0): Supported detailed timing:
[     8.943] (II) modeset(0): clock: 282.7 MHz   Image Size:  344 x 215 mm
[     8.943] (II) modeset(0): h_active: 2560  h_sync: 2608  h_sync_end 2640 h_blank_end 2720 h_border: 0
[     8.943] (II) modeset(0): v_active: 1600  v_sync: 1603  v_sync_end 1609 v_blanking: 1732 v_border: 0
[     8.943] (II) modeset(0): Ranges: V min: 60 V max: 165 Hz, H min: 286 H max: 286 kHz, PixClock max 785 MHz
[     8.943] (II) modeset(0):  BOE CQ
[     8.943] (II) modeset(0):  NE160QDM-NY1
[     8.943] (II) modeset(0): Number of EDID sections to follow: 2
[     8.943] (II) modeset(0): EDID (in hex):
[     8.943] (II) modeset(0): 	00ffffffffffff0009e51f0a00000000
[     8.943] (II) modeset(0): 	121f0104b5221578037ce5a4554c9f26
[     8.943] (II) modeset(0): 	0f505400000001010101010101010101
[     8.943] (II) modeset(0): 	0101010101016b6e00a0a04084603020
[     8.943] (II) modeset(0): 	360058d71000001a000000fd0c3ca51f
[     8.943] (II) modeset(0): 	1f4e010a202020202020000000fe0042
[     8.943] (II) modeset(0): 	4f452043510a202020202020000000fe
[     8.943] (II) modeset(0): 	004e4531363051444d2d4e59310a025a
[     8.943] (II) modeset(0): 	02031d00e3058000e60605016a6a246d
[     8.943] (II) modeset(0): 	1a000002033ca500046a246a24000000
[     8.943] (II) modeset(0): 	00000000000000000000000000000000
[     8.943] (II) modeset(0): 	00000000000000000000000000000000
[     8.943] (II) modeset(0): 	00000000000000000000000000000000
[     8.943] (II) modeset(0): 	00000000000000000000000000000000
[     8.943] (II) modeset(0): 	00000000000000000000000000000000
[     8.943] (II) modeset(0): 	000000000000000000000000000001fe
[     8.943] (II) modeset(0): 	7013790000030114a52f0185ff099f00
[     8.943] (II) modeset(0): 	2f001f003f0683000200050000000000
[     8.943] (II) modeset(0): 	00000000000000000000000000000000
[     8.943] (II) modeset(0): 	00000000000000000000000000000000
[     8.943] (II) modeset(0): 	00000000000000000000000000000000
[     8.943] (II) modeset(0): 	00000000000000000000000000000000
[     8.943] (II) modeset(0): 	00000000000000000000000000000000
[     8.943] (II) modeset(0): 	00000000000000000000000000003e90
[     8.943] (II) modeset(0): Printing probed modes for output eDP-1
[     8.943] (II) modeset(0): Modeline "2560x1600"x165.0  777.34  2560 2608 2640 2720  1600 1603 1609 1732 -hsync -vsync (285.8 kHz eP)
[     8.943] (II) modeset(0): Modeline "2560x1600"x60.0  282.67  2560 2608 2640 2720  1600 1603 1609 1732 +hsync -vsync (103.9 kHz eP)
[     8.943] (II) modeset(0): Modeline "2560x1600"x60.0  348.50  2560 2760 3032 3504  1600 1603 1609 1658 -hsync +vsync (99.5 kHz d)
[     8.943] (II) modeset(0): Modeline "2560x1600"x60.0  268.50  2560 2608 2640 2720  1600 1603 1609 1646 +hsync -vsync (98.7 kHz d)
[     8.943] (II) modeset(0): Modeline "2560x1440"x60.0  638.25  2560 2780 3064 3568  1440 1441 1444 1491 doublescan -hsync +vsync (178.9 kHz d)
[     8.943] (II) modeset(0): Modeline "2560x1440"x60.0  469.12  2560 2584 2600 2640  1440 1441 1444 1481 doublescan +hsync -vsync (177.7 kHz d)
[     8.943] (II) modeset(0): Modeline "2560x1440"x60.0  312.25  2560 2752 3024 3488  1440 1443 1448 1493 -hsync +vsync (89.5 kHz d)
[     8.943] (II) modeset(0): Modeline "2560x1440"x60.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz d)
[     8.943] (II) modeset(0): Modeline "2048x1536"x85.0  388.04  2048 2216 2440 2832  1536 1537 1540 1612 -hsync +vsync (137.0 kHz d)
[     8.943] (II) modeset(0): Modeline "2048x1536"x75.0  340.48  2048 2216 2440 2832  1536 1537 1540 1603 -hsync +vsync (120.2 kHz d)
[     8.943] (II) modeset(0): Modeline "2048x1536"x60.0  266.95  2048 2200 2424 2800  1536 1537 1540 1589 -hsync +vsync (95.3 kHz d)
[     8.943] (II) modeset(0): Modeline "1920x1440"x85.0  341.35  1920 2072 2288 2656  1440 1441 1444 1512 -hsync +vsync (128.5 kHz d)
[     8.943] (II) modeset(0): Modeline "1920x1440"x75.0  297.00  1920 2064 2288 2640  1440 1441 1444 1500 -hsync +vsync (112.5 kHz d)
[     8.943] (II) modeset(0): Modeline "1920x1440"x60.0  234.00  1920 2048 2256 2600  1440 1441 1444 1500 -hsync +vsync (90.0 kHz d)
[     8.943] (II) modeset(0): Modeline "1856x1392"x75.0  288.00  1856 1984 2208 2560  1392 1393 1396 1500 -hsync +vsync (112.5 kHz d)
[     8.943] (II) modeset(0): Modeline "1856x1392"x60.0  218.30  1856 1952 2176 2528  1392 1393 1396 1439 -hsync +vsync (86.4 kHz d)
[     8.943] (II) modeset(0): Modeline "1792x1344"x75.0  261.00  1792 1888 2104 2456  1344 1345 1348 1417 -hsync +vsync (106.3 kHz d)
[     8.943] (II) modeset(0): Modeline "1792x1344"x60.0  204.80  1792 1920 2120 2448  1344 1345 1348 1394 -hsync +vsync (83.7 kHz d)
[     8.943] (II) modeset(0): Modeline "2048x1152"x60.0  406.50  2048 2220 2444 2840  1152 1153 1156 1193 doublescan -hsync +vsync (143.1 kHz d)
[     8.943] (II) modeset(0): Modeline "2048x1152"x60.0  302.50  2048 2072 2088 2128  1152 1153 1156 1185 doublescan +hsync -vsync (142.2 kHz d)
[     8.943] (II) modeset(0): Modeline "2048x1152"x59.9  197.00  2048 2184 2400 2752  1152 1155 1160 1195 -hsync +vsync (71.6 kHz d)
[     8.943] (II) modeset(0): Modeline "2048x1152"x59.9  156.75  2048 2096 2128 2208  1152 1155 1160 1185 +hsync -vsync (71.0 kHz d)
[     8.943] (II) modeset(0): Modeline "1920x1200"x59.9  193.25  1920 2056 2256 2592  1200 1203 1209 1245 -hsync +vsync (74.6 kHz d)
[     8.943] (II) modeset(0): Modeline "1920x1200"x60.0  154.00  1920 1968 2000 2080  1200 1203 1209 1235 +hsync -vsync (74.0 kHz d)
[     8.943] (II) modeset(0): Modeline "1920x1080"x60.0  356.38  1920 2080 2288 2656  1080 1081 1084 1118 doublescan -hsync +vsync (134.2 kHz d)
[     8.943] (II) modeset(0): Modeline "1920x1080"x60.0  266.50  1920 1944 1960 2000  1080 1081 1084 1111 doublescan +hsync -vsync (133.2 kHz d)
[     8.943] (II) modeset(0): Modeline "1920x1080"x60.0  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync (67.2 kHz d)
[     8.943] (II) modeset(0): Modeline "1920x1080"x59.9  138.50  1920 1968 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz d)
[     8.943] (II) modeset(0): Modeline "1600x1200"x85.0  229.50  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (106.2 kHz d)
[     8.943] (II) modeset(0): Modeline "1600x1200"x75.0  202.50  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (93.8 kHz d)
[     8.943] (II) modeset(0): Modeline "1600x1200"x70.0  189.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (87.5 kHz d)
[     8.943] (II) modeset(0): Modeline "1600x1200"x65.0  175.50  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (81.2 kHz d)
[     8.943] (II) modeset(0): Modeline "1600x1200"x60.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz d)
[     8.943] (II) modeset(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz d)
[     8.943] (II) modeset(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz d)
[     8.943] (II) modeset(0): Modeline "1400x1050"x74.8  155.80  1400 1464 1784 1912  1050 1052 1064 1090 +hsync +vsync (81.5 kHz d)
[     8.943] (II) modeset(0): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[     8.943] (II) modeset(0): Modeline "1600x900"x60.0  246.00  1600 1728 1900 2200  900 901 904 932 doublescan -hsync +vsync (111.8 kHz d)
[     8.943] (II) modeset(0): Modeline "1600x900"x59.9  186.50  1600 1624 1640 1680  900 901 904 926 doublescan +hsync -vsync (111.0 kHz d)
[     8.943] (II) modeset(0): Modeline "1600x900"x59.9  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync (56.0 kHz d)
[     8.943] (II) modeset(0): Modeline "1600x900"x59.8   97.50  1600 1648 1680 1760  900 903 908 926 +hsync -vsync (55.4 kHz d)
[     8.943] (II) modeset(0): Modeline "1280x1024"x85.0  157.50  1280 1344 1504 1728  1024 1025 1028 1072 +hsync +vsync (91.1 kHz d)
[     8.943] (II) modeset(0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz d)
[     8.943] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[     8.943] (II) modeset(0): Modeline "1400x900"x60.0  103.50  1400 1480 1624 1848  900 903 913 934 -hsync +vsync (56.0 kHz d)
[     8.943] (II) modeset(0): Modeline "1400x900"x59.9   86.50  1400 1448 1480 1560  900 903 913 926 +hsync -vsync (55.4 kHz d)
[     8.943] (II) modeset(0): Modeline "1280x960"x85.0  148.50  1280 1344 1504 1728  960 961 964 1011 +hsync +vsync (85.9 kHz d)
[     8.943] (II) modeset(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz d)
[     8.943] (II) modeset(0): Modeline "1440x810"x60.0  198.12  1440 1548 1704 1968  810 811 814 839 doublescan -hsync +vsync (100.7 kHz d)
[     8.943] (II) modeset(0): Modeline "1440x810"x60.0  151.88  1440 1464 1480 1520  810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[     8.943] (II) modeset(0): Modeline "1368x768"x59.9   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync (47.8 kHz d)
[     8.943] (II) modeset(0): Modeline "1368x768"x59.9   72.25  1368 1416 1448 1528  768 771 781 790 +hsync -vsync (47.3 kHz d)
[     8.943] (II) modeset(0): Modeline "1280x800"x60.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[     8.943] (II) modeset(0): Modeline "1280x800"x60.0  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[     8.943] (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
[     8.943] (II) modeset(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
[     8.943] (II) modeset(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz d)
[     8.943] (II) modeset(0): Modeline "1280x720"x60.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[     8.943] (II) modeset(0): Modeline "1280x720"x60.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[     8.943] (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
[     8.943] (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[     8.943] (II) modeset(0): Modeline "1024x768"x85.0  194.02  1024 1108 1220 1416  768 768 770 806 doublescan -hsync +vsync (137.0 kHz d)
[     8.943] (II) modeset(0): Modeline "1024x768"x75.0  170.24  1024 1108 1220 1416  768 768 770 801 doublescan -hsync +vsync (120.2 kHz d)
[     8.943] (II) modeset(0): Modeline "1024x768"x60.0  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[     8.943] (II) modeset(0): Modeline "1024x768"x85.0   94.50  1024 1072 1168 1376  768 769 772 808 +hsync +vsync (68.7 kHz d)
[     8.943] (II) modeset(0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz d)
[     8.943] (II) modeset(0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz d)
[     8.943] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[     8.943] (II) modeset(0): Modeline "1024x768i"x87.0   44.90  1024 1032 1208 1264  768 768 776 817 interlace +hsync +vsync (35.5 kHz d)
[     8.943] (II) modeset(0): Modeline "960x720"x85.0  170.68  960 1036 1144 1328  720 720 722 756 doublescan -hsync +vsync (128.5 kHz d)
[     8.943] (II) modeset(0): Modeline "960x720"x75.0  148.50  960 1032 1144 1320  720 720 722 750 doublescan -hsync +vsync (112.5 kHz d)
[     8.943] (II) modeset(0): Modeline "960x720"x60.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[     8.943] (II) modeset(0): Modeline "928x696"x75.0  144.00  928 992 1104 1280  696 696 698 750 doublescan -hsync +vsync (112.5 kHz d)
[     8.943] (II) modeset(0): Modeline "928x696"x60.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[     8.943] (II) modeset(0): Modeline "896x672"x75.0  130.50  896 944 1052 1228  672 672 674 708 doublescan -hsync +vsync (106.3 kHz d)
[     8.943] (II) modeset(0): Modeline "896x672"x60.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[     8.943] (II) modeset(0): Modeline "1024x576"x60.0   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[     8.943] (II) modeset(0): Modeline "1024x576"x60.0   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[     8.943] (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[     8.943] (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[     8.943] (II) modeset(0): Modeline "960x600"x59.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[     8.943] (II) modeset(0): Modeline "960x600"x60.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[     8.943] (II) modeset(0): Modeline "832x624"x74.6   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz d)
[     8.943] (II) modeset(0): Modeline "960x540"x60.0   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[     8.943] (II) modeset(0): Modeline "960x540"x60.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[     8.943] (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[     8.943] (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[     8.943] (II) modeset(0): Modeline "800x600"x85.0  114.75  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (106.2 kHz d)
[     8.943] (II) modeset(0): Modeline "800x600"x75.0  101.25  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (93.8 kHz d)
[     8.943] (II) modeset(0): Modeline "800x600"x70.0   94.50  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (87.5 kHz d)
[     8.943] (II) modeset(0): Modeline "800x600"x65.0   87.75  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (81.2 kHz d)
[     8.943] (II) modeset(0): Modeline "800x600"x60.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[     8.943] (II) modeset(0): Modeline "800x600"x85.1   56.30  800 832 896 1048  600 601 604 631 +hsync +vsync (53.7 kHz d)
[     8.943] (II) modeset(0): Modeline "800x600"x72.2   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz d)
[     8.943] (II) modeset(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz d)
[     8.943] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[     8.943] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[     8.943] (II) modeset(0): Modeline "840x525"x60.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[     8.943] (II) modeset(0): Modeline "840x525"x59.9   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[     8.943] (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[     8.943] (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[     8.943] (II) modeset(0): Modeline "700x525"x74.8   77.90  700 732 892 956  525 526 532 545 doublescan +hsync +vsync (81.5 kHz d)
[     8.943] (II) modeset(0): Modeline "700x525"x60.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[     8.943] (II) modeset(0): Modeline "800x450"x59.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[     8.943] (II) modeset(0): Modeline "800x450"x59.8   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[     8.943] (II) modeset(0): Modeline "640x512"x85.0   78.75  640 672 752 864  512 512 514 536 doublescan +hsync +vsync (91.1 kHz d)
[     8.943] (II) modeset(0): Modeline "640x512"x75.0   67.50  640 648 720 844  512 512 514 533 doublescan +hsync +vsync (80.0 kHz d)
[     8.943] (II) modeset(0): Modeline "640x512"x60.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[     8.943] (II) modeset(0): Modeline "700x450"x60.0   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[     8.943] (II) modeset(0): Modeline "700x450"x59.9   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[     8.943] (II) modeset(0): Modeline "640x480"x85.1   74.25  640 672 752 864  480 480 482 505 doublescan +hsync +vsync (85.9 kHz d)
[     8.943] (II) modeset(0): Modeline "640x480"x60.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[     8.943] (II) modeset(0): Modeline "640x480"x85.0   36.00  640 696 752 832  480 481 484 509 -hsync -vsync (43.3 kHz d)
[     8.943] (II) modeset(0): Modeline "640x480"x72.8   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz d)
[     8.943] (II) modeset(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz d)
[     8.943] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[     8.943] (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[     8.943] (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[     8.943] (II) modeset(0): Modeline "720x400"x85.0   35.50  720 756 828 936  400 401 404 446 -hsync +vsync (37.9 kHz d)
[     8.943] (II) modeset(0): Modeline "684x384"x59.9   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[     8.943] (II) modeset(0): Modeline "684x384"x59.9   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[     8.943] (II) modeset(0): Modeline "640x400"x59.9   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[     8.943] (II) modeset(0): Modeline "640x400"x60.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[     8.943] (II) modeset(0): Modeline "640x400"x85.1   31.50  640 672 736 832  400 401 404 445 -hsync +vsync (37.9 kHz d)
[     8.943] (II) modeset(0): Modeline "576x432"x75.0   54.00  576 608 672 800  432 432 434 450 doublescan +hsync +vsync (67.5 kHz d)
[     8.943] (II) modeset(0): Modeline "640x360"x59.9   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[     8.943] (II) modeset(0): Modeline "640x360"x59.8   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[     8.943] (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[     8.943] (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[     8.943] (II) modeset(0): Modeline "640x350"x85.1   31.50  640 672 736 832  350 382 385 445 +hsync -vsync (37.9 kHz d)
[     8.943] (II) modeset(0): Modeline "512x384"x85.0   47.25  512 536 584 688  384 384 386 404 doublescan +hsync +vsync (68.7 kHz d)
[     8.943] (II) modeset(0): Modeline "512x384"x75.0   39.38  512 520 568 656  384 384 386 400 doublescan +hsync +vsync (60.0 kHz d)
[     8.943] (II) modeset(0): Modeline "512x384"x70.1   37.50  512 524 592 664  384 385 388 403 doublescan -hsync -vsync (56.5 kHz d)
[     8.943] (II) modeset(0): Modeline "512x384"x60.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[     8.943] (II) modeset(0): Modeline "512x384i"x87.1   22.45  512 516 604 632  384 384 388 408 interlace doublescan +hsync +vsync (35.5 kHz d)
[     8.943] (II) modeset(0): Modeline "512x288"x60.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[     8.943] (II) modeset(0): Modeline "512x288"x59.9   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[     8.943] (II) modeset(0): Modeline "416x312"x74.7   28.64  416 432 464 576  312 312 314 333 doublescan -hsync -vsync (49.7 kHz d)
[     8.943] (II) modeset(0): Modeline "480x270"x59.6   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[     8.943] (II) modeset(0): Modeline "480x270"x59.8   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[     8.943] (II) modeset(0): Modeline "400x300"x85.3   28.15  400 416 448 524  300 300 302 315 doublescan +hsync +vsync (53.7 kHz d)
[     8.943] (II) modeset(0): Modeline "400x300"x72.2   25.00  400 428 488 520  300 318 321 333 doublescan +hsync +vsync (48.1 kHz d)
[     8.943] (II) modeset(0): Modeline "400x300"x75.1   24.75  400 408 448 528  300 300 302 312 doublescan +hsync +vsync (46.9 kHz d)
[     8.943] (II) modeset(0): Modeline "400x300"x60.3   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[     8.943] (II) modeset(0): Modeline "400x300"x56.3   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[     8.943] (II) modeset(0): Modeline "432x243"x59.9   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[     8.943] (II) modeset(0): Modeline "432x243"x59.6   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[     8.943] (II) modeset(0): Modeline "320x240"x85.2   18.00  320 348 376 416  240 240 242 254 doublescan -hsync -vsync (43.3 kHz d)
[     8.943] (II) modeset(0): Modeline "320x240"x72.8   15.75  320 332 352 416  240 244 246 260 doublescan -hsync -vsync (37.9 kHz d)
[     8.943] (II) modeset(0): Modeline "320x240"x75.0   15.75  320 328 360 420  240 240 242 250 doublescan -hsync -vsync (37.5 kHz d)
[     8.943] (II) modeset(0): Modeline "320x240"x60.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[     8.943] (II) modeset(0): Modeline "360x202"x59.5   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[     8.943] (II) modeset(0): Modeline "360x202"x59.1   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[     8.943] (II) modeset(0): Modeline "360x200"x85.0   17.75  360 378 414 468  200 200 202 223 doublescan -hsync +vsync (37.9 kHz d)
[     8.943] (II) modeset(0): Modeline "320x200"x85.3   15.75  320 336 368 416  200 200 202 222 doublescan -hsync +vsync (37.9 kHz d)
[     8.943] (II) modeset(0): Modeline "320x180"x59.8    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[     8.943] (II) modeset(0): Modeline "320x180"x59.3    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[     8.943] (II) modeset(0): Modeline "320x175"x85.3   15.75  320 336 368 416  175 191 192 222 doublescan +hsync -vsync (37.9 kHz d)
[     8.943] (II) modeset(0): EDID for output DP-1
[     8.943] (II) modeset(0): EDID for output DP-2
[     8.943] (II) modeset(0): Output eDP-1 connected
[     8.943] (II) modeset(0): Output DP-1 disconnected
[     8.943] (II) modeset(0): Output DP-2 disconnected
[     8.943] (II) modeset(0): Using exact sizes for initial modes
[     8.943] (II) modeset(0): Output eDP-1 using initial mode 2560x1600 +0+0
[     8.943] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[     8.943] (==) modeset(0): DPI set to (96, 96)
[     8.943] (II) Loading sub module "fb"
[     8.943] (II) LoadModule: "fb"
[     8.943] (II) Module "fb" already built-in
[     9.010] (==) modeset(0): Backing store enabled
[     9.010] (==) modeset(0): Silken mouse enabled
[     9.040] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[     9.040] (==) modeset(0): DPMS enabled
[     9.040] (II) modeset(0): [DRI2] Setup complete
[     9.040] (II) modeset(0): [DRI2]   DRI driver: iris
[     9.040] (II) modeset(0): [DRI2]   VDPAU driver: va_gl
[     9.040] (II) Initializing extension Generic Event Extension
[     9.040] (II) Initializing extension SHAPE
[     9.040] (II) Initializing extension MIT-SHM
[     9.040] (II) Initializing extension XInputExtension
[     9.040] (II) Initializing extension XTEST
[     9.040] (II) Initializing extension BIG-REQUESTS
[     9.040] (II) Initializing extension SYNC
[     9.040] (II) Initializing extension XKEYBOARD
[     9.040] (II) Initializing extension XC-MISC
[     9.040] (II) Initializing extension SECURITY
[     9.040] (II) Initializing extension XFIXES
[     9.040] (II) Initializing extension RENDER
[     9.041] (II) Initializing extension RANDR
[     9.041] (II) Initializing extension COMPOSITE
[     9.041] (II) Initializing extension DAMAGE
[     9.041] (II) Initializing extension MIT-SCREEN-SAVER
[     9.041] (II) Initializing extension DOUBLE-BUFFER
[     9.041] (II) Initializing extension RECORD
[     9.041] (II) Initializing extension DPMS
[     9.041] (II) Initializing extension Present
[     9.041] (II) Initializing extension DRI3
[     9.041] (II) Initializing extension X-Resource
[     9.041] (II) Initializing extension XVideo
[     9.041] (II) Initializing extension XVideo-MotionCompensation
[     9.041] (II) Initializing extension GLX
[     9.047] (II) AIGLX: Loaded and initialized iris
[     9.047] (II) GLX: Initialized DRI2 GL provider for screen 0
[     9.047] (II) Initializing extension XFree86-VidModeExtension
[     9.047] (II) Initializing extension XFree86-DGA
[     9.047] (II) Initializing extension XFree86-DRI
[     9.047] (II) Initializing extension DRI2
[     9.047] (II) modeset(0): Damage tracking initialized
[     9.047] (II) modeset(0): Setting screen physical size to 677 x 423
[     9.081] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[     9.081] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     9.081] (II) LoadModule: "libinput"
[     9.081] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[     9.084] (II) Module libinput: vendor="X.Org Foundation"
[     9.084] 	compiled for 1.21.1.8, module version = 1.4.0
[     9.084] 	Module class: X.Org XInput Driver
[     9.084] 	ABI class: X.Org XInput driver, version 24.4
[     9.084] (II) Using input driver 'libinput' for 'Power Button'
[     9.084] (**) Power Button: always reports core events
[     9.084] (**) Option "Device" "/dev/input/event2"
[     9.086] (II) event2  - Power Button: is tagged by udev as: Keyboard
[     9.086] (II) event2  - Power Button: device is a keyboard
[     9.086] (II) event2  - Power Button: device removed
[     9.136] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
[     9.136] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[     9.137] (II) event2  - Power Button: is tagged by udev as: Keyboard
[     9.137] (II) event2  - Power Button: device is a keyboard
[     9.138] (II) config/udev: Adding input device Video Bus (/dev/input/event7)
[     9.138] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[     9.138] (II) Using input driver 'libinput' for 'Video Bus'
[     9.138] (**) Video Bus: always reports core events
[     9.138] (**) Option "Device" "/dev/input/event7"
[     9.138] (II) event7  - Video Bus: is tagged by udev as: Keyboard
[     9.138] (II) event7  - Video Bus: device is a keyboard
[     9.138] (II) event7  - Video Bus: device removed
[     9.163] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input7/event7"
[     9.163] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[     9.164] (II) event7  - Video Bus: is tagged by udev as: Keyboard
[     9.164] (II) event7  - Video Bus: device is a keyboard
[     9.164] (II) config/udev: Adding input device Video Bus (/dev/input/event6)
[     9.164] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[     9.164] (II) Using input driver 'libinput' for 'Video Bus'
[     9.164] (**) Video Bus: always reports core events
[     9.164] (**) Option "Device" "/dev/input/event6"
[     9.165] (II) event6  - Video Bus: is tagged by udev as: Keyboard
[     9.165] (II) event6  - Video Bus: device is a keyboard
[     9.165] (II) event6  - Video Bus: device removed
[     9.203] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:03/LNXVIDEO:00/input/input6/event6"
[     9.203] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[     9.204] (II) event6  - Video Bus: is tagged by udev as: Keyboard
[     9.204] (II) event6  - Video Bus: device is a keyboard
[     9.204] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[     9.204] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     9.204] (II) Using input driver 'libinput' for 'Power Button'
[     9.204] (**) Power Button: always reports core events
[     9.204] (**) Option "Device" "/dev/input/event1"
[     9.205] (II) event1  - Power Button: is tagged by udev as: Keyboard
[     9.205] (II) event1  - Power Button: device is a keyboard
[     9.205] (II) event1  - Power Button: device removed
[     9.226] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[     9.226] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
[     9.227] (II) event1  - Power Button: is tagged by udev as: Keyboard
[     9.227] (II) event1  - Power Button: device is a keyboard
[     9.228] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[     9.228] (II) No input driver specified, ignoring this device.
[     9.228] (II) This device may have been added with another device file.
[     9.228] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event10)
[     9.228] (II) No input driver specified, ignoring this device.
[     9.228] (II) This device may have been added with another device file.
[     9.228] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event11)
[     9.228] (II) No input driver specified, ignoring this device.
[     9.228] (II) This device may have been added with another device file.
[     9.228] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event12)
[     9.228] (II) No input driver specified, ignoring this device.
[     9.228] (II) This device may have been added with another device file.
[     9.228] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event13)
[     9.228] (II) No input driver specified, ignoring this device.
[     9.228] (II) This device may have been added with another device file.
[     9.229] (II) config/udev: Adding input device ITE Tech. Inc. ITE Device(8910) Keyboard (/dev/input/event4)
[     9.229] (**) ITE Tech. Inc. ITE Device(8910) Keyboard: Applying InputClass "libinput keyboard catchall"
[     9.229] (II) Using input driver 'libinput' for 'ITE Tech. Inc. ITE Device(8910) Keyboard'
[     9.229] (**) ITE Tech. Inc. ITE Device(8910) Keyboard: always reports core events
[     9.229] (**) Option "Device" "/dev/input/event4"
[     9.230] (II) event4  - ITE Tech. Inc. ITE Device(8910) Keyboard: is tagged by udev as: Keyboard
[     9.230] (II) event4  - ITE Tech. Inc. ITE Device(8910) Keyboard: device is a keyboard
[     9.230] (II) event4  - ITE Tech. Inc. ITE Device(8910) Keyboard: device removed
[     9.253] (II) libinput: ITE Tech. Inc. ITE Device(8910) Keyboard: needs a virtual subdevice
[     9.253] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-5/3-5:1.0/0003:048D:C102.0001/input/input4/event4"
[     9.253] (II) XINPUT: Adding extended input device "ITE Tech. Inc. ITE Device(8910) Keyboard" (type: MOUSE, id 10)
[     9.253] (**) Option "AccelerationScheme" "none"
[     9.253] (**) ITE Tech. Inc. ITE Device(8910) Keyboard: (accel) selected scheme none/0
[     9.253] (**) ITE Tech. Inc. ITE Device(8910) Keyboard: (accel) acceleration factor: 2.000
[     9.253] (**) ITE Tech. Inc. ITE Device(8910) Keyboard: (accel) acceleration threshold: 4
[     9.254] (II) event4  - ITE Tech. Inc. ITE Device(8910) Keyboard: is tagged by udev as: Keyboard
[     9.254] (II) event4  - ITE Tech. Inc. ITE Device(8910) Keyboard: device is a keyboard
[     9.255] (II) config/udev: Adding input device ITE Tech. Inc. ITE Device(8910) Wireless Radio Control (/dev/input/event5)
[     9.255] (**) ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: Applying InputClass "libinput keyboard catchall"
[     9.255] (II) Using input driver 'libinput' for 'ITE Tech. Inc. ITE Device(8910) Wireless Radio Control'
[     9.255] (**) ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: always reports core events
[     9.255] (**) Option "Device" "/dev/input/event5"
[     9.256] (II) event5  - ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: is tagged by udev as: Keyboard
[     9.256] (II) event5  - ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: device is a keyboard
[     9.256] (II) event5  - ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: device removed
[     9.286] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-5/3-5:1.0/0003:048D:C102.0001/input/input5/event5"
[     9.286] (II) XINPUT: Adding extended input device "ITE Tech. Inc. ITE Device(8910) Wireless Radio Control" (type: KEYBOARD, id 11)
[     9.287] (II) event5  - ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: is tagged by udev as: Keyboard
[     9.288] (II) event5  - ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: device is a keyboard
[     9.288] (II) config/udev: Adding input device MSFT0001:01 04F3:31AD Mouse (/dev/input/event20)
[     9.288] (**) MSFT0001:01 04F3:31AD Mouse: Applying InputClass "libinput pointer catchall"
[     9.288] (II) Using input driver 'libinput' for 'MSFT0001:01 04F3:31AD Mouse'
[     9.288] (**) MSFT0001:01 04F3:31AD Mouse: always reports core events
[     9.288] (**) Option "Device" "/dev/input/event20"
[     9.289] (II) event20 - MSFT0001:01 04F3:31AD Mouse: is tagged by udev as: Mouse Pointingstick
[     9.289] (II) event20 - MSFT0001:01 04F3:31AD Mouse: device is a pointer
[     9.290] (II) event20 - MSFT0001:01 04F3:31AD Mouse: device removed
[     9.330] (II) libinput: MSFT0001:01 04F3:31AD Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[     9.330] (II) libinput: MSFT0001:01 04F3:31AD Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[     9.330] (II) libinput: MSFT0001:01 04F3:31AD Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[     9.330] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-14/i2c-MSFT0001:01/0018:04F3:31AD.0002/input/input23/event20"
[     9.330] (II) XINPUT: Adding extended input device "MSFT0001:01 04F3:31AD Mouse" (type: MOUSE, id 12)
[     9.330] (**) Option "AccelerationScheme" "none"
[     9.330] (**) MSFT0001:01 04F3:31AD Mouse: (accel) selected scheme none/0
[     9.330] (**) MSFT0001:01 04F3:31AD Mouse: (accel) acceleration factor: 2.000
[     9.330] (**) MSFT0001:01 04F3:31AD Mouse: (accel) acceleration threshold: 4
[     9.331] (II) event20 - MSFT0001:01 04F3:31AD Mouse: is tagged by udev as: Mouse Pointingstick
[     9.331] (II) event20 - MSFT0001:01 04F3:31AD Mouse: device is a pointer
[     9.332] (II) config/udev: Adding input device MSFT0001:01 04F3:31AD Mouse (/dev/input/mouse0)
[     9.332] (II) No input driver specified, ignoring this device.
[     9.332] (II) This device may have been added with another device file.
[     9.332] (II) config/udev: Adding input device MSFT0001:01 04F3:31AD Touchpad (/dev/input/event21)
[     9.332] (**) MSFT0001:01 04F3:31AD Touchpad: Applying InputClass "libinput touchpad catchall"
[     9.332] (II) Using input driver 'libinput' for 'MSFT0001:01 04F3:31AD Touchpad'
[     9.332] (**) MSFT0001:01 04F3:31AD Touchpad: always reports core events
[     9.332] (**) Option "Device" "/dev/input/event21"
[     9.333] (II) event21 - MSFT0001:01 04F3:31AD Touchpad: is tagged by udev as: Touchpad
[     9.334] (II) event21 - MSFT0001:01 04F3:31AD Touchpad: device is a touchpad
[     9.334] (II) event21 - MSFT0001:01 04F3:31AD Touchpad: device removed
[     9.373] (II) libinput: MSFT0001:01 04F3:31AD Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[     9.373] (II) libinput: MSFT0001:01 04F3:31AD Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[     9.373] (II) libinput: MSFT0001:01 04F3:31AD Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[     9.373] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-14/i2c-MSFT0001:01/0018:04F3:31AD.0002/input/input25/event21"
[     9.373] (II) XINPUT: Adding extended input device "MSFT0001:01 04F3:31AD Touchpad" (type: TOUCHPAD, id 13)
[     9.375] (**) Option "AccelerationScheme" "none"
[     9.375] (**) MSFT0001:01 04F3:31AD Touchpad: (accel) selected scheme none/0
[     9.375] (**) MSFT0001:01 04F3:31AD Touchpad: (accel) acceleration factor: 2.000
[     9.375] (**) MSFT0001:01 04F3:31AD Touchpad: (accel) acceleration threshold: 4
[     9.375] (II) event21 - MSFT0001:01 04F3:31AD Touchpad: is tagged by udev as: Touchpad
[     9.377] (II) event21 - MSFT0001:01 04F3:31AD Touchpad: device is a touchpad
[     9.377] (II) config/udev: Adding input device MSFT0001:01 04F3:31AD Touchpad (/dev/input/mouse1)
[     9.377] (II) No input driver specified, ignoring this device.
[     9.377] (II) This device may have been added with another device file.
[     9.378] (II) config/udev: Adding input device Ideapad extra buttons (/dev/input/event8)
[     9.378] (**) Ideapad extra buttons: Applying InputClass "libinput keyboard catchall"
[     9.378] (II) Using input driver 'libinput' for 'Ideapad extra buttons'
[     9.378] (**) Ideapad extra buttons: always reports core events
[     9.378] (**) Option "Device" "/dev/input/event8"
[     9.378] (II) event8  - Ideapad extra buttons: is tagged by udev as: Keyboard
[     9.378] (II) event8  - Ideapad extra buttons: device is a keyboard
[     9.378] (II) event8  - Ideapad extra buttons: device removed
[     9.400] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/input/input8/event8"
[     9.400] (II) XINPUT: Adding extended input device "Ideapad extra buttons" (type: KEYBOARD, id 14)
[     9.401] (II) event8  - Ideapad extra buttons: is tagged by udev as: Keyboard
[     9.401] (II) event8  - Ideapad extra buttons: device is a keyboard
[     9.401] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event14)
[     9.401] (II) No input driver specified, ignoring this device.
[     9.401] (II) This device may have been added with another device file.
[     9.401] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event15)
[     9.401] (II) No input driver specified, ignoring this device.
[     9.401] (II) This device may have been added with another device file.
[     9.401] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event16)
[     9.401] (II) No input driver specified, ignoring this device.
[     9.401] (II) This device may have been added with another device file.
[     9.402] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event17)
[     9.402] (II) No input driver specified, ignoring this device.
[     9.402] (II) This device may have been added with another device file.
[     9.402] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event18)
[     9.402] (II) No input driver specified, ignoring this device.
[     9.402] (II) This device may have been added with another device file.
[     9.402] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event19)
[     9.402] (II) No input driver specified, ignoring this device.
[     9.402] (II) This device may have been added with another device file.
[     9.402] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3)
[     9.402] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[     9.402] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[     9.402] (**) AT Translated Set 2 keyboard: always reports core events
[     9.402] (**) Option "Device" "/dev/input/event3"
[     9.403] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[     9.403] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
[     9.404] (II) event3  - AT Translated Set 2 keyboard: device removed
[     9.426] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input3/event3"
[     9.426] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 15)
[     9.427] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[     9.427] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
[     9.428] (II) config/udev: Adding input device PC Speaker (/dev/input/event9)
[     9.428] (II) No input driver specified, ignoring this device.
[     9.428] (II) This device may have been added with another device file.
[     9.433] (**) ITE Tech. Inc. ITE Device(8910) Keyboard: Applying InputClass "libinput keyboard catchall"
[     9.433] (II) Using input driver 'libinput' for 'ITE Tech. Inc. ITE Device(8910) Keyboard'
[     9.433] (**) ITE Tech. Inc. ITE Device(8910) Keyboard: always reports core events
[     9.433] (**) Option "Device" "/dev/input/event4"
[     9.433] (II) libinput: ITE Tech. Inc. ITE Device(8910) Keyboard: is a virtual subdevice
[     9.433] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-5/3-5:1.0/0003:048D:C102.0001/input/input4/event4"
[     9.433] (II) XINPUT: Adding extended input device "ITE Tech. Inc. ITE Device(8910) Keyboard" (type: KEYBOARD, id 16)
[    30.678] (II) event2  - Power Button: device removed
[    30.700] (II) event7  - Video Bus: device removed
[    30.716] (II) event6  - Video Bus: device removed
[    30.746] (II) event1  - Power Button: device removed
[    30.773] (II) event5  - ITE Tech. Inc. ITE Device(8910) Wireless Radio Control: device removed
[    30.806] (II) event20 - MSFT0001:01 04F3:31AD Mouse: device removed
[    30.840] (II) event21 - MSFT0001:01 04F3:31AD Touchpad: device removed
[    30.883] (II) event8  - Ideapad extra buttons: device removed
[    30.900] (II) event3  - AT Translated Set 2 keyboard: device removed
[    30.916] (II) event4  - ITE Tech. Inc. ITE Device(8910) Keyboard: device removed
[    30.933] (II) AIGLX: Suspending AIGLX clients for VT switch

Offline

#6 2023-10-07 22:31:59

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,764

Re: Lenovo Legion 5 can't use external display outputs

The nvidia driver isn't loaded. 

pacman -Qs nvidia
pacman -Qikk nvidia{,-dkms,-utils} 
journalctl -b

"in xorg.conf.d" which xorg.conf.d exactly? if you touched the one in /usr/share/X11/xorg.conf.d you shouldn't have.

Offline

#7 2023-10-07 22:41:01

MxIzzy
Member
Registered: 2023-02-14
Posts: 11

Re: Lenovo Legion 5 can't use external display outputs

The xorg.conf.d I emptied was the one in /etc/X11 , which only contained a handwritten 20-intel file

I executed the commands you sent but they change anything for as far as I can tell

Offline

#8 2023-10-07 22:46:47

MxIzzy
Member
Registered: 2023-02-14
Posts: 11

Re: Lenovo Legion 5 can't use external display outputs

Oh wait i think I need to add nvidia as a kernel parameter or into the initramfs

Offline

#9 2023-10-07 23:31:31

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,764

Re: Lenovo Legion 5 can't use external display outputs

They aren't supposed to change anything, you need to post them here so we know what's going on. Make sure you've read and followed step 5 for the nvidia installation so nouveau isn't included in the initramfs: https://wiki.archlinux.org/title/NVIDIA#Installation

Offline

#10 2023-10-07 23:51:03

MxIzzy
Member
Registered: 2023-02-14
Posts: 11

Re: Lenovo Legion 5 can't use external display outputs

my apologies, here's the outputs

pacman -Qs nvidia

local/bumblebee 3.2.1-21
    NVIDIA Optimus support for Linux through VirtualGL
local/egl-wayland 2:1.1.12-1
    EGLStream-based Wayland external platform
local/lib32-nvidia-utils 535.113.01-1
    NVIDIA drivers utilities (32-bit)
local/libvdpau 1.5-2
    Nvidia VDPAU library
local/libxnvctrl 535.113.01-1
    NVIDIA NV-CONTROL X extension
local/nvidia 535.113.01-2
    NVIDIA drivers for linux
local/nvidia-cg-toolkit 3.1-6
    NVIDIA Cg libraries
local/nvidia-lts 1:535.113.01-3
    NVIDIA drivers for linux-lts
local/nvidia-prime 1.0-4
    NVIDIA Prime Render Offload configuration and utilities
local/nvidia-settings 535.113.01-1
    Tool for configuring the NVIDIA graphics driver
local/nvidia-utils 535.113.01-2
    NVIDIA drivers utilities

pacman -Qikk nvidia{,-dkms,-utils}

Name            : nvidia
Version         : 535.113.01-2
Description     : NVIDIA drivers for linux
Architecture    : x86_64
URL             : https://www.nvidia.com/
Licenses        : custom
Groups          : None
Provides        : NVIDIA-MODULE
Depends On      : linux  nvidia-utils=535.113.01  libglvnd
Optional Deps   : None
Required By     : None
Optional For    : bumblebee
Conflicts With  : None
Replaces        : None
Installed Size  : 43.70 MiB
Packager        : Jan Alexander Steffens (heftig) <heftig@archlinux.org>
Build Date      : Sun Sep 24 01:35:43 2023
Install Date    : Sat Oct 7 19:03:12 2023
Install Reason  : Explicitly installed
Install Script  : No
Validated By    : Signature

nvidia: 14 total files, 0 altered files
error: package 'nvidia-dkms' was not found
Name            : nvidia-utils
Version         : 535.113.01-2
Description     : NVIDIA drivers utilities
Architecture    : x86_64
URL             : http://www.nvidia.com/
Licenses        : custom
Groups          : None
Provides        : vulkan-driver  opengl-driver  nvidia-libgl
Depends On      : libglvnd  egl-wayland
Optional Deps   : nvidia-settings: configuration tool [installed]
                  xorg-server: Xorg support [installed]
                  xorg-server-devel: nvidia-xconfig
                  opencl-nvidia: OpenCL support
Required By     : lib32-nvidia-utils  libglvnd  nvidia  nvidia-lts  nvidia-prime  nvidia-settings  steam
Optional For    : ffmpeg  ffmpeg4.4  libvdpau  vulkan-icd-loader
Conflicts With  : nvidia-libgl
Replaces        : nvidia-libgl
Installed Size  : 673.39 MiB
Packager        : Sven-Hendrik Haase <svenstaro@archlinux.org>
Build Date      : Mon Sep 25 00:23:11 2023
Install Date    : Sat Oct 7 19:03:02 2023
Install Reason  : Installed as a dependency for another package
Install Script  : Yes
Validated By    : Signature

nvidia-utils: 230 total files, 0 altered files

journalctl -b

Oct 08 00:58:54 Legion5Pro kernel: microcode: updated early: 0x413 -> 0x42c, date = 2023-04-18
Oct 08 00:58:54 Legion5Pro kernel: Linux version 6.5.5-arch1-1 (linux@archlinux) (gcc (GCC) 13.2.1 20230801, GNU ld (GNU Binutils) 2.41.0) #1 SMP PREEMPT_D>
Oct 08 00:58:54 Legion5Pro kernel: Command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root=UUID=ce1f2edd-cf6a-448a-8408-246c82a983a0 rw quie>
Oct 08 00:58:54 Legion5Pro kernel: x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
Oct 08 00:58:54 Legion5Pro kernel: BIOS-provided physical RAM map:
Oct 08 00:58:54 Legion5Pro kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
Oct 08 00:58:54 Legion5Pro kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
Oct 08 00:58:54 Legion5Pro kernel: BIOS-e820: [mem 0x0000000000100000-0x000000003d2c8fff] usable
Oct 08 00:58:54 Legion5Pro kernel: BIOS-e820: [mem 0x000000003d2c9000-0x000000003dbc8fff] reserved
Oct 08 00:58:54 Legion5Pro kernel: BIOS-e820: [mem 0x000000003dbc9000-0x000000003f9defff] usable
Oct 08 00:58:54 Legion5Pro kernel: BIOS-e820: [mem 0x000000003f9df000-0x0000000041a7efff] reserved
Oct 08 00:58:54 Legion5Pro kernel: BIOS-e820: [mem 0x0000000041a7f000-0x0000000044a2efff] ACPI NVS
Oct 08 00:58:54 Legion5Pro kernel: BIOS-e820: [mem 0x0000000044a2f000-0x0000000044afefff] ACPI data
Oct 08 00:58:54 Legion5Pro kernel: BIOS-e820: [mem 0x0000000044aff000-0x0000000044afffff] usable
Oct 08 00:58:54 Legion5Pro kernel: BIOS-e820: [mem 0x0000000044b00000-0x0000000048ffffff] reserved
Oct 08 00:58:54 Legion5Pro kernel: BIOS-e820: [mem 0x0000000049200000-0x00000000493fffff] reserved
Oct 08 00:58:54 Legion5Pro kernel: BIOS-e820: [mem 0x000000004a000000-0x00000000503fffff] reserved
Oct 08 00:58:54 Legion5Pro kernel: BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
Oct 08 00:58:54 Legion5Pro kernel: BIOS-e820: [mem 0x00000000fe010000-0x00000000fe010fff] reserved
Oct 08 00:58:54 Legion5Pro kernel: BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
Oct 08 00:58:54 Legion5Pro kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Oct 08 00:58:54 Legion5Pro kernel: BIOS-e820: [mem 0x0000000100000000-0x00000008afbfffff] usable
Oct 08 00:58:54 Legion5Pro kernel: The simpledrm driver will not be probed
Oct 08 00:58:54 Legion5Pro kernel: NX (Execute Disable) protection: active
Oct 08 00:58:54 Legion5Pro kernel: efi: EFI v2.7 by INSYDE Corp.
Oct 08 00:58:54 Legion5Pro kernel: efi: ACPI=0x44afe000 ACPI 2.0=0x44afe014 TPMFinalLog=0x44966000 SMBIOS=0x40086000 MEMATTR=0x38e5a098 ESRT=0x38e5b518 RNG>
Oct 08 00:58:54 Legion5Pro kernel: random: crng init done
Oct 08 00:58:54 Legion5Pro kernel: efi: Remove mem85: MMIO range=[0xc0000000-0xcfffffff] (256MB) from e820 map
Oct 08 00:58:54 Legion5Pro kernel: e820: remove [mem 0xc0000000-0xcfffffff] reserved
Oct 08 00:58:54 Legion5Pro kernel: efi: Not removing mem86: MMIO range=[0xfe010000-0xfe010fff] (4KB) from e820 map
Oct 08 00:58:54 Legion5Pro kernel: efi: Remove mem88: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
Oct 08 00:58:54 Legion5Pro kernel: e820: remove [mem 0xff000000-0xffffffff] reserved
Oct 08 00:58:54 Legion5Pro kernel: SMBIOS 3.3 present.
Oct 08 00:58:54 Legion5Pro kernel: DMI: LENOVO 82RF/LNVNB161216, BIOS J2CN40WW 04/15/2022
Oct 08 00:58:54 Legion5Pro kernel: tsc: Detected 2700.000 MHz processor
Oct 08 00:58:54 Legion5Pro kernel: tsc: Detected 2688.000 MHz TSC
Oct 08 00:58:54 Legion5Pro kernel: [Firmware Bug]: TSC ADJUST: CPU0: -4500110615 force to 0
Oct 08 00:58:54 Legion5Pro kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Oct 08 00:58:54 Legion5Pro kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Oct 08 00:58:54 Legion5Pro kernel: last_pfn = 0x8afc00 max_arch_pfn = 0x400000000
Oct 08 00:58:54 Legion5Pro kernel: MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
Oct 08 00:58:54 Legion5Pro kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Oct 08 00:58:54 Legion5Pro kernel: last_pfn = 0x44b00 max_arch_pfn = 0x400000000
Oct 08 00:58:54 Legion5Pro kernel: esrt: Reserving ESRT space from 0x0000000038e5b518 to 0x0000000038e5b5a0.
Oct 08 00:58:54 Legion5Pro kernel: e820: update [mem 0x38e5b000-0x38e5bfff] usable ==> reserved
Oct 08 00:58:54 Legion5Pro kernel: Using GB pages for direct mapping
Oct 08 00:58:54 Legion5Pro kernel: Incomplete global flushes, disabling PCID
Oct 08 00:58:54 Legion5Pro kernel: Secure boot disabled
Oct 08 00:58:54 Legion5Pro kernel: RAMDISK: [mem 0x33bf1000-0x35386fff]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Early table checksum verification disabled
Oct 08 00:58:54 Legion5Pro kernel: ACPI: RSDP 0x0000000044AFE014 000024 (v02 LENOVO)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: XSDT 0x0000000044AC9188 00013C (v01 LENOVO CB-01    00000001      01000013)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: FACP 0x0000000044AFD000 000114 (v06 LENOVO CB-01    00000001 ACPI 00040000)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: DSDT 0x0000000044A4F000 076245 (v02 LENOVO CB-01    00000001 ACPI 00040000)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: FACS 0x0000000044941000 000040
Oct 08 00:58:54 Legion5Pro kernel: ACPI: UEFI 0x0000000044A2E000 000236 (v01 INSYDE ADL-P-M  00000001 ACPI 00040000)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0x0000000044AF6000 006FD1 (v02 LENOVO CB-01    00000001 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0x0000000044AF5000 00038C (v02 LENOVO CB-01    00000001 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0x0000000044AEF000 005D2C (v02 LENOVO CB-01    00000001 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0x0000000044AEC000 002B22 (v02 LENOVO CB-01    00000001 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0x0000000044AE8000 0033D3 (v02 LENOVO CB-01    00000001 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0x0000000044ADA000 00D2DF (v02 INTEL  TcssSsdt 00001000 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0x0000000044AD8000 001972 (v01 LENOVO CB-01    00000001 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0x0000000044AD7000 00077B (v02 LENOVO CB-01    00000001 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: TPM2 0x0000000044AD6000 00004C (v04 LENOVO CB-01    00000001 ACPI 00040000)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: MSDM 0x0000000044AD5000 000055 (v03 LENOVO CB-01    00000001 ACPI 00040000)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0x0000000044AD3000 0011A9 (v02 LENOVO CB-01    00000001 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LPIT 0x0000000044AD2000 0000CC (v01 LENOVO CB-01    00000001 ACPI 00040000)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: WSMT 0x0000000044AD1000 000028 (v01 LENOVO CB-01    00000001 ACPI 00040000)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0x0000000044AD0000 000AD9 (v02 LENOVO CB-01    00000001 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0x0000000044ACD000 002357 (v02 LENOVO CB-01    00000001 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: DBGP 0x0000000044ACC000 000034 (v01 LENOVO CB-01    00000001 ACPI 00040000)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: DBG2 0x0000000044ACB000 000054 (v00 LENOVO CB-01    00000001 ACPI 00040000)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: NHLT 0x0000000044ACA000 00002D (v00 LENOVO CB-01    00000001 ACPI 00040000)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: HPET 0x0000000044AC8000 000038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: APIC 0x0000000044AC7000 0001DC (v04 LENOVO CB-01    00000001 ACPI 00040000)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: MCFG 0x0000000044AC6000 00003C (v01 LENOVO CB-01    00000001 ACPI 00040000)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0x0000000044A4C000 002439 (v02 LENOVO CB-01    00000001      01000013)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: $H2O 0x0000000044A4B000 00002C (v01 LENOVO CB-01    00000001 ACPI 00040000)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: DMAR 0x0000000044A4A000 000088 (v02 LENOVO CB-01    00000001 ACPI 00040000)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0x0000000044A46000 0039B6 (v01 LENOVO CB-01    00000001 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0x0000000044A45000 000C7C (v02 LENOVO CB-01    00000001 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0x0000000044A41000 003AEA (v02 LENOVO CB-01    00000001 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0x0000000044A3E000 002B2A (v02 LENOVO CB-01    00000001 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0x0000000044A3D000 000131 (v02 LENOVO CB-01    00000001 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0x0000000044A3C000 0000F8 (v01 LENOVO CB-01    00000001 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: FPDT 0x0000000044A3B000 000044 (v01 LENOVO CB-01    00000001 ACPI 00040000)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: BGRT 0x0000000044A3A000 000038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: PHAT 0x0000000044A39000 00083C (v00 LENOVO CB-01    00000001 ACPI 00040000)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving FACP table memory at [mem 0x44afd000-0x44afd113]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving DSDT table memory at [mem 0x44a4f000-0x44ac5244]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving FACS table memory at [mem 0x44941000-0x4494103f]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving UEFI table memory at [mem 0x44a2e000-0x44a2e235]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving SSDT table memory at [mem 0x44af6000-0x44afcfd0]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving SSDT table memory at [mem 0x44af5000-0x44af538b]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving SSDT table memory at [mem 0x44aef000-0x44af4d2b]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving SSDT table memory at [mem 0x44aec000-0x44aeeb21]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving SSDT table memory at [mem 0x44ae8000-0x44aeb3d2]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving SSDT table memory at [mem 0x44ada000-0x44ae72de]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving SSDT table memory at [mem 0x44ad8000-0x44ad9971]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving SSDT table memory at [mem 0x44ad7000-0x44ad777a]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving TPM2 table memory at [mem 0x44ad6000-0x44ad604b]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving MSDM table memory at [mem 0x44ad5000-0x44ad5054]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving SSDT table memory at [mem 0x44ad3000-0x44ad41a8]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving LPIT table memory at [mem 0x44ad2000-0x44ad20cb]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving WSMT table memory at [mem 0x44ad1000-0x44ad1027]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving SSDT table memory at [mem 0x44ad0000-0x44ad0ad8]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving SSDT table memory at [mem 0x44acd000-0x44acf356]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving DBGP table memory at [mem 0x44acc000-0x44acc033]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving DBG2 table memory at [mem 0x44acb000-0x44acb053]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving NHLT table memory at [mem 0x44aca000-0x44aca02c]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving HPET table memory at [mem 0x44ac8000-0x44ac8037]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving APIC table memory at [mem 0x44ac7000-0x44ac71db]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving MCFG table memory at [mem 0x44ac6000-0x44ac603b]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving SSDT table memory at [mem 0x44a4c000-0x44a4e438]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving $H2O table memory at [mem 0x44a4b000-0x44a4b02b]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving DMAR table memory at [mem 0x44a4a000-0x44a4a087]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving SSDT table memory at [mem 0x44a46000-0x44a499b5]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving SSDT table memory at [mem 0x44a45000-0x44a45c7b]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving SSDT table memory at [mem 0x44a41000-0x44a44ae9]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving SSDT table memory at [mem 0x44a3e000-0x44a40b29]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving SSDT table memory at [mem 0x44a3d000-0x44a3d130]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving SSDT table memory at [mem 0x44a3c000-0x44a3c0f7]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving FPDT table memory at [mem 0x44a3b000-0x44a3b043]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving BGRT table memory at [mem 0x44a3a000-0x44a3a037]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Reserving PHAT table memory at [mem 0x44a39000-0x44a3983b]
Oct 08 00:58:54 Legion5Pro kernel: No NUMA configuration found
Oct 08 00:58:54 Legion5Pro kernel: Faking a node at [mem 0x0000000000000000-0x00000008afbfffff]
Oct 08 00:58:54 Legion5Pro kernel: NODE_DATA(0) allocated [mem 0x8afbfb000-0x8afbfffff]
Oct 08 00:58:54 Legion5Pro kernel: Zone ranges:
Oct 08 00:58:54 Legion5Pro kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Oct 08 00:58:54 Legion5Pro kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Oct 08 00:58:54 Legion5Pro kernel:   Normal   [mem 0x0000000100000000-0x00000008afbfffff]
Oct 08 00:58:54 Legion5Pro kernel:   Device   empty
Oct 08 00:58:54 Legion5Pro kernel: Movable zone start for each node
Oct 08 00:58:54 Legion5Pro kernel: Early memory node ranges
Oct 08 00:58:54 Legion5Pro kernel:   node   0: [mem 0x0000000000001000-0x000000000009efff]
Oct 08 00:58:54 Legion5Pro kernel:   node   0: [mem 0x0000000000100000-0x000000003d2c8fff]
Oct 08 00:58:54 Legion5Pro kernel:   node   0: [mem 0x000000003dbc9000-0x000000003f9defff]
Oct 08 00:58:54 Legion5Pro kernel:   node   0: [mem 0x0000000044aff000-0x0000000044afffff]
Oct 08 00:58:54 Legion5Pro kernel:   node   0: [mem 0x0000000100000000-0x00000008afbfffff]
Oct 08 00:58:54 Legion5Pro kernel: Initmem setup node 0 [mem 0x0000000000001000-0x00000008afbfffff]
Oct 08 00:58:54 Legion5Pro kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Oct 08 00:58:54 Legion5Pro kernel: On node 0, zone DMA: 97 pages in unavailable ranges
Oct 08 00:58:54 Legion5Pro kernel: On node 0, zone DMA32: 2304 pages in unavailable ranges
Oct 08 00:58:54 Legion5Pro kernel: On node 0, zone DMA32: 20768 pages in unavailable ranges
Oct 08 00:58:54 Legion5Pro kernel: On node 0, zone Normal: 13568 pages in unavailable ranges
Oct 08 00:58:54 Legion5Pro kernel: On node 0, zone Normal: 1024 pages in unavailable ranges
Oct 08 00:58:54 Legion5Pro kernel: Reserving Intel graphics memory at [mem 0x4c800000-0x503fffff]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: PM-Timer IO Port: 0x1808
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
Oct 08 00:58:54 Legion5Pro kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
Oct 08 00:58:54 Legion5Pro kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
Oct 08 00:58:54 Legion5Pro kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Oct 08 00:58:54 Legion5Pro kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Oct 08 00:58:54 Legion5Pro kernel: e820: update [mem 0x38e0c000-0x38e4dfff] usable ==> reserved
Oct 08 00:58:54 Legion5Pro kernel: TSC deadline timer available
Oct 08 00:58:54 Legion5Pro kernel: smpboot: Allowing 20 CPUs, 0 hotplug CPUs
Oct 08 00:58:54 Legion5Pro kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Oct 08 00:58:54 Legion5Pro kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
Oct 08 00:58:54 Legion5Pro kernel: PM: hibernation: Registered nosave memory: [mem 0x38e0c000-0x38e4dfff]
Oct 08 00:58:54 Legion5Pro kernel: PM: hibernation: Registered nosave memory: [mem 0x38e5b000-0x38e5bfff]
Oct 08 00:58:54 Legion5Pro kernel: PM: hibernation: Registered nosave memory: [mem 0x3d2c9000-0x3dbc8fff]
Oct 08 00:58:54 Legion5Pro kernel: PM: hibernation: Registered nosave memory: [mem 0x3f9df000-0x41a7efff]
Oct 08 00:58:54 Legion5Pro kernel: PM: hibernation: Registered nosave memory: [mem 0x41a7f000-0x44a2efff]
Oct 08 00:58:54 Legion5Pro kernel: PM: hibernation: Registered nosave memory: [mem 0x44a2f000-0x44afefff]
Oct 08 00:58:54 Legion5Pro kernel: PM: hibernation: Registered nosave memory: [mem 0x44b00000-0x48ffffff]
Oct 08 00:58:54 Legion5Pro kernel: PM: hibernation: Registered nosave memory: [mem 0x49000000-0x491fffff]
Oct 08 00:58:54 Legion5Pro kernel: PM: hibernation: Registered nosave memory: [mem 0x49200000-0x493fffff]
Oct 08 00:58:54 Legion5Pro kernel: PM: hibernation: Registered nosave memory: [mem 0x49400000-0x49ffffff]
Oct 08 00:58:54 Legion5Pro kernel: PM: hibernation: Registered nosave memory: [mem 0x4a000000-0x503fffff]
Oct 08 00:58:54 Legion5Pro kernel: PM: hibernation: Registered nosave memory: [mem 0x50400000-0xfe00ffff]
Oct 08 00:58:54 Legion5Pro kernel: PM: hibernation: Registered nosave memory: [mem 0xfe010000-0xfe010fff]
Oct 08 00:58:54 Legion5Pro kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfed1ffff]
Oct 08 00:58:54 Legion5Pro kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
Oct 08 00:58:54 Legion5Pro kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xffffffff]
Oct 08 00:58:54 Legion5Pro kernel: [mem 0x50400000-0xfe00ffff] available for PCI devices
Oct 08 00:58:54 Legion5Pro kernel: Booting paravirtualized kernel on bare hardware
Oct 08 00:58:54 Legion5Pro kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
Oct 08 00:58:54 Legion5Pro kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:20 nr_cpu_ids:20 nr_node_ids:1
Oct 08 00:58:54 Legion5Pro kernel: percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u262144
Oct 08 00:58:54 Legion5Pro kernel: pcpu-alloc: s225280 r8192 d28672 u262144 alloc=1*2097152
Oct 08 00:58:54 Legion5Pro kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
Oct 08 00:58:54 Legion5Pro kernel: pcpu-alloc: [0] 16 17 18 19 -- -- -- -- 
Oct 08 00:58:54 Legion5Pro kernel: Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root=UUID=ce1f2edd-cf6a-448a-8408-246c82a983a0 >
Oct 08 00:58:54 Legion5Pro kernel: Unknown kernel command line parameters "splash", will be passed to user space.
Oct 08 00:58:54 Legion5Pro kernel: printk: log_buf_len individual max cpu contribution: 4096 bytes
Oct 08 00:58:54 Legion5Pro kernel: printk: log_buf_len total cpu_extra contributions: 77824 bytes
Oct 08 00:58:54 Legion5Pro kernel: printk: log_buf_len min size: 131072 bytes
Oct 08 00:58:54 Legion5Pro kernel: printk: log_buf_len: 262144 bytes
Oct 08 00:58:54 Legion5Pro kernel: printk: early log buf free: 115144(87%)
Oct 08 00:58:54 Legion5Pro kernel: Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
Oct 08 00:58:54 Legion5Pro kernel: Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
Oct 08 00:58:54 Legion5Pro kernel: Fallback order for Node 0: 0 
Oct 08 00:58:54 Legion5Pro kernel: Built 1 zonelists, mobility grouping on.  Total pages: 8187948
Oct 08 00:58:54 Legion5Pro kernel: Policy zone: Normal
Oct 08 00:58:54 Legion5Pro kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
Oct 08 00:58:54 Legion5Pro kernel: software IO TLB: area num 32.
Oct 08 00:58:54 Legion5Pro kernel: Memory: 32441828K/33272312K available (16384K kernel code, 2123K rwdata, 12952K rodata, 3384K init, 3916K bss, 830224K r>
Oct 08 00:58:54 Legion5Pro kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=20, Nodes=1
Oct 08 00:58:54 Legion5Pro kernel: ftrace: allocating 48459 entries in 190 pages
Oct 08 00:58:54 Legion5Pro kernel: ftrace: allocated 190 pages with 6 groups
Oct 08 00:58:54 Legion5Pro kernel: Dynamic Preempt: full
Oct 08 00:58:54 Legion5Pro kernel: rcu: Preemptible hierarchical RCU implementation.
Oct 08 00:58:54 Legion5Pro kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=20.
Oct 08 00:58:54 Legion5Pro kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
Oct 08 00:58:54 Legion5Pro kernel:         Trampoline variant of Tasks RCU enabled.
Oct 08 00:58:54 Legion5Pro kernel:         Rude variant of Tasks RCU enabled.
Oct 08 00:58:54 Legion5Pro kernel:         Tracing variant of Tasks RCU enabled.
Oct 08 00:58:54 Legion5Pro kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
Oct 08 00:58:54 Legion5Pro kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=20
Oct 08 00:58:54 Legion5Pro kernel: NR_IRQS: 20736, nr_irqs: 2216, preallocated irqs: 16
Oct 08 00:58:54 Legion5Pro kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
Oct 08 00:58:54 Legion5Pro kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
Oct 08 00:58:54 Legion5Pro kernel: Console: colour dummy device 80x25
Oct 08 00:58:54 Legion5Pro kernel: printk: console [tty0] enabled
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Core revision 20230331
Oct 08 00:58:54 Legion5Pro kernel: ACPI: OSL: Overriding _OS definition to 'Linux'
Oct 08 00:58:54 Legion5Pro kernel: hpet: HPET dysfunctional in PC10. Force disabled.
Oct 08 00:58:54 Legion5Pro kernel: APIC: Switch to symmetric I/O mode setup
Oct 08 00:58:54 Legion5Pro kernel: DMAR: Host address width 39
Oct 08 00:58:54 Legion5Pro kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
Oct 08 00:58:54 Legion5Pro kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
Oct 08 00:58:54 Legion5Pro kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
Oct 08 00:58:54 Legion5Pro kernel: DMAR: dmar1: reg_base_addr fed91000 ver 5:0 cap d2008c40660462 ecap f050da
Oct 08 00:58:54 Legion5Pro kernel: DMAR: RMRR base: 0x0000004c000000 end: 0x000000503fffff
Oct 08 00:58:54 Legion5Pro kernel: DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
Oct 08 00:58:54 Legion5Pro kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
Oct 08 00:58:54 Legion5Pro kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
Oct 08 00:58:54 Legion5Pro kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
Oct 08 00:58:54 Legion5Pro kernel: x2apic enabled
Oct 08 00:58:54 Legion5Pro kernel: Switched APIC routing to cluster x2apic.
Oct 08 00:58:54 Legion5Pro kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x26bef67878b, max_idle_ns: 440795293631 ns
Oct 08 00:58:54 Legion5Pro kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5378.00 BogoMIPS (lpj=8960000)
Oct 08 00:58:54 Legion5Pro kernel: CPU0: Thermal monitoring enabled (TM1)
Oct 08 00:58:54 Legion5Pro kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
Oct 08 00:58:54 Legion5Pro kernel: process: using mwait in idle threads
Oct 08 00:58:54 Legion5Pro kernel: CET detected: Indirect Branch Tracking enabled
Oct 08 00:58:54 Legion5Pro kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
Oct 08 00:58:54 Legion5Pro kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
Oct 08 00:58:54 Legion5Pro kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Oct 08 00:58:54 Legion5Pro kernel: Spectre V2 : Mitigation: Enhanced / Automatic IBRS
Oct 08 00:58:54 Legion5Pro kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Oct 08 00:58:54 Legion5Pro kernel: Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
Oct 08 00:58:54 Legion5Pro kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Oct 08 00:58:54 Legion5Pro kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
Oct 08 00:58:54 Legion5Pro kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Oct 08 00:58:54 Legion5Pro kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Oct 08 00:58:54 Legion5Pro kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Oct 08 00:58:54 Legion5Pro kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
Oct 08 00:58:54 Legion5Pro kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Oct 08 00:58:54 Legion5Pro kernel: x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
Oct 08 00:58:54 Legion5Pro kernel: x86/fpu: Enabled xstate features 0x207, context size is 840 bytes, using 'compacted' format.
Oct 08 00:58:54 Legion5Pro kernel: Freeing SMP alternatives memory: 40K
Oct 08 00:58:54 Legion5Pro kernel: pid_max: default: 32768 minimum: 301
Oct 08 00:58:54 Legion5Pro kernel: LSM: initializing lsm=capability,landlock,lockdown,yama,bpf,integrity
Oct 08 00:58:54 Legion5Pro kernel: landlock: Up and running.
Oct 08 00:58:54 Legion5Pro kernel: Yama: becoming mindful.
Oct 08 00:58:54 Legion5Pro kernel: LSM support for eBPF active
Oct 08 00:58:54 Legion5Pro kernel: Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
Oct 08 00:58:54 Legion5Pro kernel: Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
Oct 08 00:58:54 Legion5Pro kernel: smpboot: CPU0: 12th Gen Intel(R) Core(TM) i7-12700H (family: 0x6, model: 0x9a, stepping: 0x3)
Oct 08 00:58:54 Legion5Pro kernel: RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
Oct 08 00:58:54 Legion5Pro kernel: RCU Tasks Rude: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
Oct 08 00:58:54 Legion5Pro kernel: RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
Oct 08 00:58:54 Legion5Pro kernel: Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline,  AnyThread deprecated, Alderlake Hybrid events, 32-dee>
Oct 08 00:58:54 Legion5Pro kernel: core: cpu_core PMU driver: 
Oct 08 00:58:54 Legion5Pro kernel: ... version:                5
Oct 08 00:58:54 Legion5Pro kernel: ... bit width:              48
Oct 08 00:58:54 Legion5Pro kernel: ... generic registers:      8
Oct 08 00:58:54 Legion5Pro kernel: ... value mask:             0000ffffffffffff
Oct 08 00:58:54 Legion5Pro kernel: ... max period:             00007fffffffffff
Oct 08 00:58:54 Legion5Pro kernel: ... fixed-purpose events:   4
Oct 08 00:58:54 Legion5Pro kernel: ... event mask:             0001000f000000ff
Oct 08 00:58:54 Legion5Pro kernel: signal: max sigframe size: 3632
Oct 08 00:58:54 Legion5Pro kernel: Estimated ratio of average max frequency by base frequency (times 1024): 1668
Oct 08 00:58:54 Legion5Pro kernel: rcu: Hierarchical SRCU implementation.
Oct 08 00:58:54 Legion5Pro kernel: rcu:         Max phase no-delay instances is 1000.
Oct 08 00:58:54 Legion5Pro kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Oct 08 00:58:54 Legion5Pro kernel: smp: Bringing up secondary CPUs ...
Oct 08 00:58:54 Legion5Pro kernel: smpboot: x86: Booting SMP configuration:
Oct 08 00:58:54 Legion5Pro kernel: .... node  #0, CPUs:        #2  #4  #6  #8 #10 #12 #13 #14 #15 #16 #17 #18 #19
Oct 08 00:58:54 Legion5Pro kernel: [Firmware Bug]: TSC ADJUST differs within socket(s), fixing all errors
Oct 08 00:58:54 Legion5Pro kernel: core: cpu_atom PMU driver: PEBS-via-PT 
Oct 08 00:58:54 Legion5Pro kernel: ... version:                5
Oct 08 00:58:54 Legion5Pro kernel: ... bit width:              48
Oct 08 00:58:54 Legion5Pro kernel: ... generic registers:      6
Oct 08 00:58:54 Legion5Pro kernel: ... value mask:             0000ffffffffffff
Oct 08 00:58:54 Legion5Pro kernel: ... max period:             00007fffffffffff
Oct 08 00:58:54 Legion5Pro kernel: ... fixed-purpose events:   3
Oct 08 00:58:54 Legion5Pro kernel: ... event mask:             000000070000003f
Oct 08 00:58:54 Legion5Pro kernel:   #1  #3  #5  #7  #9 #11
Oct 08 00:58:54 Legion5Pro kernel: smp: Brought up 1 node, 20 CPUs
Oct 08 00:58:54 Legion5Pro kernel: smpboot: Max logical packages: 1
Oct 08 00:58:54 Legion5Pro kernel: smpboot: Total of 20 processors activated (107563.00 BogoMIPS)
Oct 08 00:58:54 Legion5Pro kernel: devtmpfs: initialized
Oct 08 00:58:54 Legion5Pro kernel: x86/mm: Memory block size: 128MB
Oct 08 00:58:54 Legion5Pro kernel: ACPI: PM: Registering ACPI NVS region [mem 0x41a7f000-0x44a2efff] (50003968 bytes)
Oct 08 00:58:54 Legion5Pro kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
Oct 08 00:58:54 Legion5Pro kernel: futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
Oct 08 00:58:54 Legion5Pro kernel: pinctrl core: initialized pinctrl subsystem
Oct 08 00:58:54 Legion5Pro kernel: PM: RTC time: 22:58:49, date: 2023-10-07
Oct 08 00:58:54 Legion5Pro kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Oct 08 00:58:54 Legion5Pro kernel: DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
Oct 08 00:58:54 Legion5Pro kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Oct 08 00:58:54 Legion5Pro kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Oct 08 00:58:54 Legion5Pro kernel: audit: initializing netlink subsys (disabled)
Oct 08 00:58:54 Legion5Pro kernel: audit: type=2000 audit(1696719529.023:1): state=initialized audit_enabled=0 res=1
Oct 08 00:58:54 Legion5Pro kernel: thermal_sys: Registered thermal governor 'fair_share'
Oct 08 00:58:54 Legion5Pro kernel: thermal_sys: Registered thermal governor 'bang_bang'
Oct 08 00:58:54 Legion5Pro kernel: thermal_sys: Registered thermal governor 'step_wise'
Oct 08 00:58:54 Legion5Pro kernel: thermal_sys: Registered thermal governor 'user_space'
Oct 08 00:58:54 Legion5Pro kernel: thermal_sys: Registered thermal governor 'power_allocator'
Oct 08 00:58:54 Legion5Pro kernel: cpuidle: using governor ladder
Oct 08 00:58:54 Legion5Pro kernel: cpuidle: using governor menu
Oct 08 00:58:54 Legion5Pro kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Oct 08 00:58:54 Legion5Pro kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Oct 08 00:58:54 Legion5Pro kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
Oct 08 00:58:54 Legion5Pro kernel: PCI: not using MMCONFIG
Oct 08 00:58:54 Legion5Pro kernel: PCI: Using configuration type 1 for base access
Oct 08 00:58:54 Legion5Pro kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Oct 08 00:58:54 Legion5Pro kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
Oct 08 00:58:54 Legion5Pro kernel: HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
Oct 08 00:58:54 Legion5Pro kernel: HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
Oct 08 00:58:54 Legion5Pro kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
Oct 08 00:58:54 Legion5Pro kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Added _OSI(Module Device)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Added _OSI(Processor Device)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Added _OSI(Processor Aggregator Device)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: 19 ACPI AML tables successfully acquired and loaded
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Dynamic OEM Table Load:
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0xFFFF92B5C2A8CC00 0001AB (v02 PmRef  Cpu0Psd  00003000 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
Oct 08 00:58:54 Legion5Pro kernel: ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
Oct 08 00:58:54 Legion5Pro kernel: ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Dynamic OEM Table Load:
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0xFFFF92B5C2B1C000 000394 (v02 PmRef  Cpu0Cst  00003001 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Dynamic OEM Table Load:
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0xFFFF92B5C2B36000 000626 (v02 PmRef  Cpu0Ist  00003000 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Dynamic OEM Table Load:
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0xFFFF92B5C2B35000 0004BA (v02 PmRef  Cpu0Hwp  00003000 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Dynamic OEM Table Load:
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0xFFFF92B5C1484000 001BAF (v02 PmRef  ApIst    00003000 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Dynamic OEM Table Load:
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0xFFFF92B5C1482000 001038 (v02 PmRef  ApHwp    00003000 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Dynamic OEM Table Load:
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0xFFFF92B5C30B8000 001349 (v02 PmRef  ApPsd    00003000 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Dynamic OEM Table Load:
Oct 08 00:58:54 Legion5Pro kernel: ACPI: SSDT 0xFFFF92B5C2B10000 000FBB (v02 PmRef  ApCst    00003000 INTL 20200717)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: EC: EC started
Oct 08 00:58:54 Legion5Pro kernel: ACPI: EC: interrupt blocked
Oct 08 00:58:54 Legion5Pro kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Oct 08 00:58:54 Legion5Pro kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC used to handle transactions
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Interpreter enabled
Oct 08 00:58:54 Legion5Pro kernel: ACPI: PM: (supports S0 S3 S4 S5)
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Using IOAPIC for interrupt routing
Oct 08 00:58:54 Legion5Pro kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
Oct 08 00:58:54 Legion5Pro kernel: PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved as ACPI motherboard resource
Oct 08 00:58:54 Legion5Pro kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Oct 08 00:58:54 Legion5Pro kernel: PCI: Using E820 reservations for host bridge windows
Oct 08 00:58:54 Legion5Pro kernel: ACPI: Enabled 10 GPEs in block 00 to 7F
Oct 08 00:58:54 Legion5Pro kernel: ACPI: \_SB_.PC00.PEG1.PXP_: New power resource
Oct 08 00:58:54 Legion5Pro kernel: ACPI: \_SB_.PC00.XHCI.RHUB.HS10.BTRT: New power resource
Oct 08 00:58:54 Legion5Pro kernel: ACPI: \_SB_.PC00.CNVW.WRST: New power resource
Oct 08 00:58:54 Legion5Pro kernel: ACPI: \_SB_.PC00.TBT0: New power resource
Oct 08 00:58:54 Legion5Pro kernel: ACPI: \_SB_.PC00.TBT1: New power resource
Oct 08 00:58:54 Legion5Pro kernel: ACPI: \_SB_.PC00.D3C_: New power resource
Oct 08 00:58:54 Legion5Pro kernel: ACPI: \PIN_: New power resource
Oct 08 00:58:54 Legion5Pro kernel: ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-fe])
Oct 08 00:58:54 Legion5Pro kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Oct 08 00:58:54 Legion5Pro kernel: acpi PNP0A08:00: _OSC: platform does not support [AER]
Oct 08 00:58:54 Legion5Pro kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR DPC]
Oct 08 00:58:54 Legion5Pro kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
Oct 08 00:58:54 Legion5Pro kernel: PCI host bridge to bus 0000:00
Oct 08 00:58:54 Legion5Pro kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Oct 08 00:58:54 Legion5Pro kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Oct 08 00:58:54 Legion5Pro kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Oct 08 00:58:54 Legion5Pro kernel: pci_bus 0000:00: root bus resource [mem 0x50400000-0xbfffffff window]
Oct 08 00:58:54 Legion5Pro kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
Oct 08 00:58:54 Legion5Pro kernel: pci_bus 0000:00: root bus resource [bus 00-fe]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:00.0: [8086:4641] type 00 class 0x060000
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:01.0: [8086:460d] type 01 class 0x060400
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:01.0: broken device, retraining non-functional downstream link at 2.5GT/s
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:01.0: PTM enabled (root), 4ns granularity
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:02.0: [8086:46a6] type 00 class 0x030000
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:02.0: reg 0x10: [mem 0x6203000000-0x6203ffffff 64bit]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:02.0: reg 0x20: [io  0x6000-0x603f]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:04.0: [8086:461d] type 00 class 0x118000
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:04.0: reg 0x10: [mem 0x6204140000-0x620415ffff 64bit]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:06.0: [8086:464d] type 01 class 0x060400
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:06.0: PTM enabled (root), 4ns granularity
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:06.2: [8086:463d] type 01 class 0x060400
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:06.2: PME# supported from D0 D3hot D3cold
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:06.2: PTM enabled (root), 4ns granularity
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:07.0: [8086:466e] type 01 class 0x060400
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:07.0: Overriding RP PIO Log Size to 4
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:07.0: PTM enabled (root), 4ns granularity
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:0a.0: [8086:467d] type 00 class 0x118000
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:0a.0: reg 0x10: [mem 0x6204170000-0x6204177fff 64bit]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:0a.0: enabling Extended Tags
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:0d.0: [8086:461e] type 00 class 0x0c0330
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:0d.0: reg 0x10: [mem 0x6204160000-0x620416ffff 64bit]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:0d.0: PME# supported from D3hot D3cold
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:0d.2: [8086:463e] type 00 class 0x0c0340
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:0d.2: reg 0x10: [mem 0x6204100000-0x620413ffff 64bit]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:0d.2: reg 0x18: [mem 0x6204189000-0x6204189fff 64bit]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:0d.2: supports D1 D2
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:0d.2: PME# supported from D0 D1 D2 D3hot D3cold
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:14.0: [8086:51ed] type 00 class 0x0c0330
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:14.0: reg 0x10: [mem 0x5e480000-0x5e48ffff 64bit]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:14.2: [8086:51ef] type 00 class 0x050000
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:14.2: reg 0x10: [mem 0x6204180000-0x6204183fff 64bit]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:14.2: reg 0x18: [mem 0x6204188000-0x6204188fff 64bit]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:14.3: [8086:51f0] type 00 class 0x028000
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:14.3: reg 0x10: [mem 0x620417c000-0x620417ffff 64bit]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:15.0: [8086:51e8] type 00 class 0x0c8000
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:15.1: [8086:51e9] type 00 class 0x0c8000
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:15.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:16.0: [8086:51e0] type 00 class 0x078000
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:16.0: reg 0x10: [mem 0x6204185000-0x6204185fff 64bit]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:16.0: PME# supported from D3hot
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1d.0: [8086:51b0] type 01 class 0x060400
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1d.1: [8086:51b1] type 01 class 0x060400
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1d.1: PME# supported from D0 D3hot D3cold
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1d.1: PTM enabled (root), 4ns granularity
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1f.0: [8086:5182] type 00 class 0x060100
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1f.3: [8086:51c8] type 00 class 0x040380
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1f.3: reg 0x10: [mem 0x6204178000-0x620417bfff 64bit]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1f.3: reg 0x20: [mem 0x6204000000-0x62040fffff 64bit]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1f.4: [8086:51a3] type 00 class 0x0c0500
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1f.4: reg 0x10: [mem 0x6204184000-0x62041840ff 64bit]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1f.5: [8086:51a4] type 00 class 0x0c8000
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:01:00.0: [10de:24dd] type 00 class 0x030000
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:01:00.0: reg 0x10: [mem 0x00000000-0x00ffffff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:01:00.0: reg 0x14: [mem 0x00000000-0x0fffffff 64bit pref]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:01:00.0: reg 0x1c: [mem 0x00000000-0x01ffffff 64bit pref]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:01:00.0: reg 0x24: [io  0x0000-0x007f]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:01:00.0: reg 0x30: [mem 0x00000000-0x0007ffff pref]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:01:00.0: Max Payload Size set to 256 (was 128, max 256)
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:01:00.0: PME# supported from D0 D3hot
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:01:00.0: 16.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x8 link at 0000:00:01.0 (capable of 252>
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:01:00.1: [10de:228b] type 00 class 0x040300
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:01:00.1: reg 0x10: [mem 0x00000000-0x00003fff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:01:00.1: Max Payload Size set to 256 (was 128, max 256)
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:01.0: PCI bridge to [bus 01-04]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:01.0:   bridge window [io  0x5000-0x5fff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:01.0:   bridge window [mem 0x60000000-0x610fffff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:01.0:   bridge window [mem 0x6000000000-0x6201ffffff 64bit pref]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:06.0: PCI bridge to [bus 05]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:06:00.0: [1344:5407] type 00 class 0x010802
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:06:00.0: reg 0x10: [mem 0x5e300000-0x5e303fff 64bit]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:06:00.0: enabling Extended Tags
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:06.2: PCI bridge to [bus 06]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:06.2:   bridge window [mem 0x5e300000-0x5e3fffff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:07.0: PCI bridge to [bus 07-2f]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:07.0:   bridge window [mem 0x52000000-0x5e1fffff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:07.0:   bridge window [mem 0x6210000000-0x622bffffff 64bit pref]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1d.0: PCI bridge to [bus 30-33]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1d.0:   bridge window [io  0x4000-0x4fff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1d.0:   bridge window [mem 0x5f000000-0x5fffffff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1d.0:   bridge window [mem 0x6202000000-0x6202ffffff 64bit pref]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:34:00.0: [10ec:8168] type 00 class 0x020000
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:34:00.0: reg 0x10: [io  0x3000-0x30ff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:34:00.0: reg 0x18: [mem 0x5e204000-0x5e204fff 64bit]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:34:00.0: reg 0x20: [mem 0x5e200000-0x5e203fff 64bit]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:34:00.0: supports D1 D2
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:34:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1d.1: PCI bridge to [bus 34]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1d.1:   bridge window [io  0x3000-0x3fff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1d.1:   bridge window [mem 0x5e200000-0x5e2fffff]
Oct 08 00:58:54 Legion5Pro kernel: ACPI: EC: interrupt unblocked
Oct 08 00:58:54 Legion5Pro kernel: ACPI: EC: event unblocked
Oct 08 00:58:54 Legion5Pro kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Oct 08 00:58:54 Legion5Pro kernel: ACPI: EC: GPE=0x6e
Oct 08 00:58:54 Legion5Pro kernel: ACPI: \_SB_.PC00.LPCB.EC0_: Boot DSDT EC initialization complete
Oct 08 00:58:54 Legion5Pro kernel: ACPI: \_SB_.PC00.LPCB.EC0_: EC: Used to handle transactions and events
Oct 08 00:58:54 Legion5Pro kernel: iommu: Default domain type: Translated
Oct 08 00:58:54 Legion5Pro kernel: iommu: DMA domain TLB invalidation policy: lazy mode
Oct 08 00:58:54 Legion5Pro kernel: SCSI subsystem initialized
Oct 08 00:58:54 Legion5Pro kernel: libata version 3.00 loaded.
Oct 08 00:58:54 Legion5Pro kernel: ACPI: bus type USB registered
Oct 08 00:58:54 Legion5Pro kernel: usbcore: registered new interface driver usbfs
Oct 08 00:58:54 Legion5Pro kernel: usbcore: registered new interface driver hub
Oct 08 00:58:54 Legion5Pro kernel: usbcore: registered new device driver usb
Oct 08 00:58:54 Legion5Pro kernel: pps_core: LinuxPPS API ver. 1 registered
Oct 08 00:58:54 Legion5Pro kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Oct 08 00:58:54 Legion5Pro kernel: PTP clock support registered
Oct 08 00:58:54 Legion5Pro kernel: EDAC MC: Ver: 3.0.0
Oct 08 00:58:54 Legion5Pro kernel: efivars: Registered efivars operations
Oct 08 00:58:54 Legion5Pro kernel: NetLabel: Initializing
Oct 08 00:58:54 Legion5Pro kernel: NetLabel:  domain hash size = 128
Oct 08 00:58:54 Legion5Pro kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Oct 08 00:58:54 Legion5Pro kernel: NetLabel:  unlabeled traffic allowed by default
Oct 08 00:58:54 Legion5Pro kernel: mctp: management component transport protocol core
Oct 08 00:58:54 Legion5Pro kernel: NET: Registered PF_MCTP protocol family
Oct 08 00:58:54 Legion5Pro kernel: PCI: Using ACPI for IRQ routing
Oct 08 00:58:54 Legion5Pro kernel: PCI: pci_cache_line_size set to 64 bytes
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
Oct 08 00:58:54 Legion5Pro kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
Oct 08 00:58:54 Legion5Pro kernel: e820: reserve RAM buffer [mem 0x38e0c000-0x3bffffff]
Oct 08 00:58:54 Legion5Pro kernel: e820: reserve RAM buffer [mem 0x38e5b000-0x3bffffff]
Oct 08 00:58:54 Legion5Pro kernel: e820: reserve RAM buffer [mem 0x3d2c9000-0x3fffffff]
Oct 08 00:58:54 Legion5Pro kernel: e820: reserve RAM buffer [mem 0x3f9df000-0x3fffffff]
Oct 08 00:58:54 Legion5Pro kernel: e820: reserve RAM buffer [mem 0x44b00000-0x47ffffff]
Oct 08 00:58:54 Legion5Pro kernel: e820: reserve RAM buffer [mem 0x8afc00000-0x8afffffff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:02.0: vgaarb: bridge control possible
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:01:00.0: vgaarb: bridge control possible
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
Oct 08 00:58:54 Legion5Pro kernel: vgaarb: loaded
Oct 08 00:58:54 Legion5Pro kernel: clocksource: Switched to clocksource tsc-early
Oct 08 00:58:54 Legion5Pro kernel: VFS: Disk quotas dquot_6.6.0
Oct 08 00:58:54 Legion5Pro kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Oct 08 00:58:54 Legion5Pro kernel: pnp: PnP ACPI init
Oct 08 00:58:54 Legion5Pro kernel: pnp 00:00: disabling [io  0x002e-0x002f] because it overlaps 0000:01:00.0 BAR 5 [io  0x0000-0x007f]
Oct 08 00:58:54 Legion5Pro kernel: pnp 00:00: disabling [io  0x004e-0x004f] because it overlaps 0000:01:00.0 BAR 5 [io  0x0000-0x007f]
Oct 08 00:58:54 Legion5Pro kernel: pnp 00:00: disabling [io  0x0061] because it overlaps 0000:01:00.0 BAR 5 [io  0x0000-0x007f]
Oct 08 00:58:54 Legion5Pro kernel: pnp 00:00: disabling [io  0x0063] because it overlaps 0000:01:00.0 BAR 5 [io  0x0000-0x007f]
Oct 08 00:58:54 Legion5Pro kernel: pnp 00:00: disabling [io  0x0065] because it overlaps 0000:01:00.0 BAR 5 [io  0x0000-0x007f]
Oct 08 00:58:54 Legion5Pro kernel: pnp 00:00: disabling [io  0x0067] because it overlaps 0000:01:00.0 BAR 5 [io  0x0000-0x007f]
Oct 08 00:58:54 Legion5Pro kernel: pnp 00:00: disabling [io  0x0070] because it overlaps 0000:01:00.0 BAR 5 [io  0x0000-0x007f]
Oct 08 00:58:54 Legion5Pro kernel: system 00:00: [io  0x0680-0x069f] has been reserved
Oct 08 00:58:54 Legion5Pro kernel: system 00:00: [io  0x164e-0x164f] has been reserved
Oct 08 00:58:54 Legion5Pro kernel: system 00:01: [io  0x1854-0x1857] has been reserved
Oct 08 00:58:54 Legion5Pro kernel: pnp 00:03: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit>
Oct 08 00:58:54 Legion5Pro kernel: system 00:03: [mem 0xfedc0000-0xfedc7fff] has been reserved
Oct 08 00:58:54 Legion5Pro kernel: system 00:03: [mem 0xfeda0000-0xfeda0fff] has been reserved
Oct 08 00:58:54 Legion5Pro kernel: system 00:03: [mem 0xfeda1000-0xfeda1fff] has been reserved
Oct 08 00:58:54 Legion5Pro kernel: system 00:03: [mem 0xfed20000-0xfed7ffff] could not be reserved
Oct 08 00:58:54 Legion5Pro kernel: system 00:03: [mem 0xfed90000-0xfed93fff] could not be reserved
Oct 08 00:58:54 Legion5Pro kernel: system 00:03: [mem 0xfed45000-0xfed8ffff] could not be reserved
Oct 08 00:58:54 Legion5Pro kernel: system 00:03: [mem 0xfee00000-0xfeefffff] has been reserved
Oct 08 00:58:54 Legion5Pro kernel: system 00:04: [io  0x2000-0x20fe] has been reserved
Oct 08 00:58:54 Legion5Pro kernel: pnp: PnP ACPI: found 6 devices
Oct 08 00:58:54 Legion5Pro kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Oct 08 00:58:54 Legion5Pro kernel: NET: Registered PF_INET protocol family
Oct 08 00:58:54 Legion5Pro kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Oct 08 00:58:54 Legion5Pro kernel: tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
Oct 08 00:58:54 Legion5Pro kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
Oct 08 00:58:54 Legion5Pro kernel: TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Oct 08 00:58:54 Legion5Pro kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
Oct 08 00:58:54 Legion5Pro kernel: TCP: Hash tables configured (established 262144 bind 65536)
Oct 08 00:58:54 Legion5Pro kernel: MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
Oct 08 00:58:54 Legion5Pro kernel: UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
Oct 08 00:58:54 Legion5Pro kernel: UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
Oct 08 00:58:54 Legion5Pro kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Oct 08 00:58:54 Legion5Pro kernel: NET: Registered PF_XDP protocol family
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:07.0: bridge window [io  0x1000-0x0fff] to [bus 07-2f] add_size 1000
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:07.0: BAR 13: assigned [io  0x7000-0x7fff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:15.1: BAR 0: assigned [mem 0x4017001000-0x4017001fff 64bit]
Oct 08 00:58:54 Legion5Pro kernel: resource: avoiding allocation from e820 entry [mem 0x0009f000-0x000fffff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1f.5: BAR 0: assigned [mem 0x50400000-0x50400fff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:01:00.0: BAR 1: assigned [mem 0x6000000000-0x600fffffff 64bit pref]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:01:00.0: BAR 3: assigned [mem 0x6010000000-0x6011ffffff 64bit pref]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:01:00.0: BAR 0: assigned [mem 0x60000000-0x60ffffff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:01:00.0: BAR 6: assigned [mem 0x61000000-0x6107ffff pref]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:01:00.1: BAR 0: assigned [mem 0x61080000-0x61083fff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:01:00.0: BAR 5: assigned [io  0x5000-0x507f]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:01.0: PCI bridge to [bus 01-04]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:01.0:   bridge window [io  0x5000-0x5fff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:01.0:   bridge window [mem 0x60000000-0x610fffff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:01.0:   bridge window [mem 0x6000000000-0x6201ffffff 64bit pref]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:06.0: PCI bridge to [bus 05]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:06.2: PCI bridge to [bus 06]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:06.2:   bridge window [mem 0x5e300000-0x5e3fffff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:07.0: PCI bridge to [bus 07-2f]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:07.0:   bridge window [io  0x7000-0x7fff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:07.0:   bridge window [mem 0x52000000-0x5e1fffff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:07.0:   bridge window [mem 0x6210000000-0x622bffffff 64bit pref]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1d.0: PCI bridge to [bus 30-33]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1d.0:   bridge window [io  0x4000-0x4fff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1d.0:   bridge window [mem 0x5f000000-0x5fffffff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1d.0:   bridge window [mem 0x6202000000-0x6202ffffff 64bit pref]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1d.1: PCI bridge to [bus 34]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1d.1:   bridge window [io  0x3000-0x3fff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1d.1:   bridge window [mem 0x5e200000-0x5e2fffff]
Oct 08 00:58:54 Legion5Pro kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Oct 08 00:58:54 Legion5Pro kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Oct 08 00:58:54 Legion5Pro kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Oct 08 00:58:54 Legion5Pro kernel: pci_bus 0000:00: resource 7 [mem 0x50400000-0xbfffffff window]
Oct 08 00:58:54 Legion5Pro kernel: pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
Oct 08 00:58:54 Legion5Pro kernel: pci_bus 0000:01: resource 0 [io  0x5000-0x5fff]
Oct 08 00:58:54 Legion5Pro kernel: pci_bus 0000:01: resource 1 [mem 0x60000000-0x610fffff]
Oct 08 00:58:54 Legion5Pro kernel: pci_bus 0000:01: resource 2 [mem 0x6000000000-0x6201ffffff 64bit pref]
Oct 08 00:58:54 Legion5Pro kernel: pci_bus 0000:06: resource 1 [mem 0x5e300000-0x5e3fffff]
Oct 08 00:58:54 Legion5Pro kernel: pci_bus 0000:07: resource 0 [io  0x7000-0x7fff]
Oct 08 00:58:54 Legion5Pro kernel: pci_bus 0000:07: resource 1 [mem 0x52000000-0x5e1fffff]
Oct 08 00:58:54 Legion5Pro kernel: pci_bus 0000:07: resource 2 [mem 0x6210000000-0x622bffffff 64bit pref]
Oct 08 00:58:54 Legion5Pro kernel: pci_bus 0000:30: resource 0 [io  0x4000-0x4fff]
Oct 08 00:58:54 Legion5Pro kernel: pci_bus 0000:30: resource 1 [mem 0x5f000000-0x5fffffff]
Oct 08 00:58:54 Legion5Pro kernel: pci_bus 0000:30: resource 2 [mem 0x6202000000-0x6202ffffff 64bit pref]
Oct 08 00:58:54 Legion5Pro kernel: pci_bus 0000:34: resource 0 [io  0x3000-0x3fff]
Oct 08 00:58:54 Legion5Pro kernel: pci_bus 0000:34: resource 1 [mem 0x5e200000-0x5e2fffff]
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:01:00.1: extending delay after power-on from D3hot to 20 msec
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
Oct 08 00:58:54 Legion5Pro kernel: PCI: CLS 64 bytes, default 64
Oct 08 00:58:54 Legion5Pro kernel: DMAR: Intel-IOMMU force enabled due to platform opt in
Oct 08 00:58:54 Legion5Pro kernel: DMAR: No ATSR found
Oct 08 00:58:54 Legion5Pro kernel: DMAR: No SATC found
Oct 08 00:58:54 Legion5Pro kernel: DMAR: IOMMU feature fl1gp_support inconsistent
Oct 08 00:58:54 Legion5Pro kernel: DMAR: IOMMU feature pgsel_inv inconsistent
Oct 08 00:58:54 Legion5Pro kernel: DMAR: IOMMU feature nwfs inconsistent
Oct 08 00:58:54 Legion5Pro kernel: DMAR: IOMMU feature dit inconsistent
Oct 08 00:58:54 Legion5Pro kernel: DMAR: IOMMU feature sc_support inconsistent
Oct 08 00:58:54 Legion5Pro kernel: DMAR: IOMMU feature dev_iotlb_support inconsistent
Oct 08 00:58:54 Legion5Pro kernel: DMAR: dmar0: Using Queued invalidation
Oct 08 00:58:54 Legion5Pro kernel: DMAR: dmar1: Using Queued invalidation
Oct 08 00:58:54 Legion5Pro kernel: Trying to unpack rootfs image as initramfs...
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:02.0: Adding to iommu group 0
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:00.0: Adding to iommu group 1
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:01.0: Adding to iommu group 2
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:04.0: Adding to iommu group 3
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:06.0: Adding to iommu group 4
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:06.2: Adding to iommu group 5
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:07.0: Adding to iommu group 6
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:0a.0: Adding to iommu group 7
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:0d.0: Adding to iommu group 8
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:0d.2: Adding to iommu group 8
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:14.0: Adding to iommu group 9
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:14.2: Adding to iommu group 9
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:14.3: Adding to iommu group 10
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:15.0: Adding to iommu group 11
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:15.1: Adding to iommu group 11
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:16.0: Adding to iommu group 12
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1d.0: Adding to iommu group 13
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1d.1: Adding to iommu group 14
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1f.0: Adding to iommu group 15
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1f.3: Adding to iommu group 15
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1f.4: Adding to iommu group 15
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:00:1f.5: Adding to iommu group 15
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:01:00.0: Adding to iommu group 16
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:01:00.1: Adding to iommu group 16
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:06:00.0: Adding to iommu group 17
Oct 08 00:58:54 Legion5Pro kernel: pci 0000:34:00.0: Adding to iommu group 18
Oct 08 00:58:54 Legion5Pro kernel: DMAR: Intel(R) Virtualization Technology for Directed I/O
Oct 08 00:58:54 Legion5Pro kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Oct 08 00:58:54 Legion5Pro kernel: software IO TLB: mapped [mem 0x000000002fbf1000-0x0000000033bf1000] (64MB)
Oct 08 00:58:54 Legion5Pro kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x26bef67878b, max_idle_ns: 440795293631 ns
Oct 08 00:58:54 Legion5Pro kernel: clocksource: Switched to clocksource tsc
Oct 08 00:58:54 Legion5Pro kernel: platform rtc_cmos: registered platform RTC device (no PNP device found)
Oct 08 00:58:54 Legion5Pro kernel: Initialise system trusted keyrings
Oct 08 00:58:54 Legion5Pro kernel: Key type blacklist registered
Oct 08 00:58:54 Legion5Pro kernel: workingset: timestamp_bits=41 max_order=23 bucket_order=0
Oct 08 00:58:54 Legion5Pro kernel: zbud: loaded
Oct 08 00:58:54 Legion5Pro kernel: integrity: Platform Keyring initialized
Oct 08 00:58:54 Legion5Pro kernel: integrity: Machine keyring initialized
Oct 08 00:58:54 Legion5Pro kernel: Key type asymmetric registered
Oct 08 00:58:54 Legion5Pro kernel: Asymmetric key parser 'x509' registered
Oct 08 00:58:54 Legion5Pro kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
Oct 08 00:58:54 Legion5Pro kernel: io scheduler mq-deadline registered
Oct 08 00:58:54 Legion5Pro kernel: io scheduler kyber registered
Oct 08 00:58:54 Legion5Pro kernel: io scheduler bfq registered
Oct 08 00:58:54 Legion5Pro kernel: pcieport 0000:00:01.0: PME: Signaling with IRQ 122
Oct 08 00:58:54 Legion5Pro kernel: pcieport 0000:00:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ Ib>
Oct 08 00:58:54 Legion5Pro kernel: pcieport 0000:00:06.0: PME: Signaling with IRQ 123
Oct 08 00:58:54 Legion5Pro kernel: pcieport 0000:00:06.2: PME: Signaling with IRQ 124
Oct 08 00:58:54 Legion5Pro kernel: pcieport 0000:00:07.0: PME: Signaling with IRQ 125
Oct 08 00:58:54 Legion5Pro kernel: pcieport 0000:00:07.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ Ib>
Oct 08 00:58:54 Legion5Pro kernel: pcieport 0000:00:1d.0: PME: Signaling with IRQ 126
Oct 08 00:58:54 Legion5Pro kernel: pcieport 0000:00:1d.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ Ib>
Oct 08 00:58:54 Legion5Pro kernel: pcieport 0000:00:1d.1: PME: Signaling with IRQ 127
Oct 08 00:58:54 Legion5Pro kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Oct 08 00:58:54 Legion5Pro kernel: efifb: probing for efifb
Oct 08 00:58:54 Legion5Pro kernel: efifb: showing boot graphics
Oct 08 00:58:54 Legion5Pro kernel: efifb: framebuffer at 0x4000000000, using 16000k, total 16000k
Oct 08 00:58:54 Legion5Pro kernel: efifb: mode is 2560x1600x32, linelength=10240, pages=1
Oct 08 00:58:54 Legion5Pro kernel: efifb: scrolling: redraw
Oct 08 00:58:54 Legion5Pro kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Oct 08 00:58:54 Legion5Pro kernel: fbcon: Deferring console take-over
Oct 08 00:58:54 Legion5Pro kernel: fb0: EFI VGA frame buffer device
Oct 08 00:58:54 Legion5Pro kernel: ACPI: AC: AC Adapter [ADP0] (on-line)
Oct 08 00:58:54 Legion5Pro kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
Oct 08 00:58:54 Legion5Pro kernel: ACPI: button: Lid Switch [LID0]
Oct 08 00:58:54 Legion5Pro kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
Oct 08 00:58:54 Legion5Pro kernel: ACPI: button: Power Button [PWRB]
Oct 08 00:58:54 Legion5Pro kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
Oct 08 00:58:54 Legion5Pro kernel: ACPI: button: Power Button [PWRF]
Oct 08 00:58:54 Legion5Pro kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Oct 08 00:58:54 Legion5Pro kernel: hpet_acpi_add: no address or irqs in _CRS
Oct 08 00:58:54 Legion5Pro kernel: Non-volatile memory driver v1.3
Oct 08 00:58:54 Legion5Pro kernel: Linux agpgart interface v0.103
Oct 08 00:58:54 Legion5Pro kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
Oct 08 00:58:54 Legion5Pro kernel: ACPI: bus type drm_connector registered
Oct 08 00:58:54 Legion5Pro kernel: usbcore: registered new interface driver usbserial_generic
Oct 08 00:58:54 Legion5Pro kernel: usbserial: USB Serial support registered for generic
Oct 08 00:58:54 Legion5Pro kernel: rtc_cmos rtc_cmos: RTC can wake from S4
Oct 08 00:58:54 Legion5Pro kernel: rtc_cmos rtc_cmos: registered as rtc0
Oct 08 00:58:54 Legion5Pro kernel: rtc_cmos rtc_cmos: setting system clock to 2023-10-07T22:58:50 UTC (1696719530)
Oct 08 00:58:54 Legion5Pro kernel: rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
Oct 08 00:58:54 Legion5Pro kernel: ledtrig-cpu: registered to indicate activity on CPUs
Oct 08 00:58:54 Legion5Pro kernel: hid: raw HID events driver (C) Jiri Kosina
Oct 08 00:58:54 Legion5Pro kernel: intel_pmc_core INT33A1:00:  initialized
Oct 08 00:58:54 Legion5Pro kernel: drop_monitor: Initializing network drop monitor service
Oct 08 00:58:54 Legion5Pro kernel: Initializing XFRM netlink socket
Oct 08 00:58:54 Legion5Pro kernel: NET: Registered PF_INET6 protocol family
Oct 08 00:58:54 Legion5Pro kernel: Freeing initrd memory: 24152K
Oct 08 00:58:54 Legion5Pro kernel: Segment Routing with IPv6
Oct 08 00:58:54 Legion5Pro kernel: RPL Segment Routing with IPv6
Oct 08 00:58:54 Legion5Pro kernel: In-situ OAM (IOAM) with IPv6
Oct 08 00:58:54 Legion5Pro kernel: NET: Registered PF_PACKET protocol family
Oct 08 00:58:54 Legion5Pro kernel: microcode: Microcode Update Driver: v2.2.
Oct 08 00:58:54 Legion5Pro kernel: resctrl: L2 allocation detected
Oct 08 00:58:54 Legion5Pro kernel: IPI shorthand broadcast: enabled
Oct 08 00:58:54 Legion5Pro kernel: sched_clock: Marking stable (669093220, 6393408)->(699120233, -23633605)
Oct 08 00:58:54 Legion5Pro kernel: registered taskstats version 1
Oct 08 00:58:54 Legion5Pro kernel: Loading compiled-in X.509 certificates
Oct 08 00:58:54 Legion5Pro kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 84625fc02c1a53756a889bb3ea4fa4e0b56462ee'
Oct 08 00:58:54 Legion5Pro kernel: zswap: loaded using pool zstd/zsmalloc
Oct 08 00:58:54 Legion5Pro kernel: Key type .fscrypt registered
Oct 08 00:58:54 Legion5Pro kernel: Key type fscrypt-provisioning registered
Oct 08 00:58:54 Legion5Pro kernel: PM:   Magic number: 11:328:1007
Oct 08 00:58:54 Legion5Pro kernel: memory memory46: hash matches
Oct 08 00:58:54 Legion5Pro kernel: ACPI: battery: Slot [BAT0] (battery present)
Oct 08 00:58:54 Legion5Pro kernel: RAS: Correctable Errors collector initialized.
Oct 08 00:58:54 Legion5Pro kernel: clk: Disabling unused clocks
Oct 08 00:58:54 Legion5Pro kernel: Freeing unused decrypted memory: 2036K
Oct 08 00:58:54 Legion5Pro kernel: Freeing unused kernel image (initmem) memory: 3384K
Oct 08 00:58:54 Legion5Pro kernel: Write protecting the kernel read-only data: 30720k
Oct 08 00:58:54 Legion5Pro kernel: Freeing unused kernel image (rodata/data gap) memory: 1384K
Oct 08 00:58:54 Legion5Pro kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Oct 08 00:58:54 Legion5Pro kernel: rodata_test: all tests were successful
Oct 08 00:58:54 Legion5Pro kernel: Run /init as init process
Oct 08 00:58:54 Legion5Pro kernel:   with arguments:
Oct 08 00:58:54 Legion5Pro kernel:     /init
Oct 08 00:58:54 Legion5Pro kernel:     splash
Oct 08 00:58:54 Legion5Pro kernel:   with environment:
Oct 08 00:58:54 Legion5Pro kernel:     HOME=/
Oct 08 00:58:54 Legion5Pro kernel:     TERM=linux
Oct 08 00:58:54 Legion5Pro kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
Oct 08 00:58:54 Legion5Pro kernel: i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
Oct 08 00:58:54 Legion5Pro kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Oct 08 00:58:54 Legion5Pro kernel: xhci_hcd 0000:00:0d.0: xHCI Host Controller
Oct 08 00:58:54 Legion5Pro kernel: xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 1
Oct 08 00:58:54 Legion5Pro kernel: xhci_hcd 0000:00:0d.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
Oct 08 00:58:54 Legion5Pro kernel: xhci_hcd 0000:00:0d.0: xHCI Host Controller
Oct 08 00:58:54 Legion5Pro kernel: xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 2
Oct 08 00:58:54 Legion5Pro kernel: xhci_hcd 0000:00:0d.0: Host supports USB 3.2 Enhanced SuperSpeed
Oct 08 00:58:54 Legion5Pro kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.05
Oct 08 00:58:54 Legion5Pro kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 08 00:58:54 Legion5Pro kernel: usb usb1: Product: xHCI Host Controller
Oct 08 00:58:54 Legion5Pro kernel: usb usb1: Manufacturer: Linux 6.5.5-arch1-1 xhci-hcd
Oct 08 00:58:54 Legion5Pro kernel: usb usb1: SerialNumber: 0000:00:0d.0
Oct 08 00:58:54 Legion5Pro kernel: hub 1-0:1.0: USB hub found
Oct 08 00:58:54 Legion5Pro kernel: hub 1-0:1.0: 1 port detected
Oct 08 00:58:54 Legion5Pro kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.05
Oct 08 00:58:54 Legion5Pro kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 08 00:58:54 Legion5Pro kernel: usb usb2: Product: xHCI Host Controller
Oct 08 00:58:54 Legion5Pro kernel: usb usb2: Manufacturer: Linux 6.5.5-arch1-1 xhci-hcd
Oct 08 00:58:54 Legion5Pro kernel: usb usb2: SerialNumber: 0000:00:0d.0
Oct 08 00:58:54 Legion5Pro kernel: hub 2-0:1.0: USB hub found
Oct 08 00:58:54 Legion5Pro kernel: hub 2-0:1.0: 1 port detected
Oct 08 00:58:54 Legion5Pro kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Oct 08 00:58:54 Legion5Pro kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
Oct 08 00:58:54 Legion5Pro kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000100200009810
Oct 08 00:58:54 Legion5Pro kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Oct 08 00:58:54 Legion5Pro kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
Oct 08 00:58:54 Legion5Pro kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
Oct 08 00:58:54 Legion5Pro kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.05
Oct 08 00:58:54 Legion5Pro kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 08 00:58:54 Legion5Pro kernel: usb usb3: Product: xHCI Host Controller
Oct 08 00:58:54 Legion5Pro kernel: usb usb3: Manufacturer: Linux 6.5.5-arch1-1 xhci-hcd
Oct 08 00:58:54 Legion5Pro kernel: usb usb3: SerialNumber: 0000:00:14.0
Oct 08 00:58:54 Legion5Pro kernel: hub 3-0:1.0: USB hub found
Oct 08 00:58:54 Legion5Pro kernel: hub 3-0:1.0: 12 ports detected
Oct 08 00:58:54 Legion5Pro kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.05
Oct 08 00:58:54 Legion5Pro kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 08 00:58:54 Legion5Pro kernel: usb usb4: Product: xHCI Host Controller
Oct 08 00:58:54 Legion5Pro kernel: usb usb4: Manufacturer: Linux 6.5.5-arch1-1 xhci-hcd
Oct 08 00:58:54 Legion5Pro kernel: usb usb4: SerialNumber: 0000:00:14.0
Oct 08 00:58:54 Legion5Pro kernel: hub 4-0:1.0: USB hub found
Oct 08 00:58:54 Legion5Pro kernel: hub 4-0:1.0: 4 ports detected
Oct 08 00:58:54 Legion5Pro kernel: nvme nvme0: pci function 0000:06:00.0
Oct 08 00:58:54 Legion5Pro kernel: nvme nvme0: 20/0/0 default/read/poll queues
Oct 08 00:58:54 Legion5Pro kernel:  nvme0n1: p1 p2 p3
Oct 08 00:58:54 Legion5Pro kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
Oct 08 00:58:54 Legion5Pro kernel: usb 3-2: new high-speed USB device number 2 using xhci_hcd
Oct 08 00:58:54 Legion5Pro kernel: i915 0000:00:02.0: [drm] VT-d active for gfx access
Oct 08 00:58:54 Legion5Pro kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
Oct 08 00:58:54 Legion5Pro kernel: i915 0000:00:02.0: [drm] Using Transparent Hugepages
Oct 08 00:58:54 Legion5Pro kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=io+mem
Oct 08 00:58:54 Legion5Pro kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/adlp_dmc.bin (v2.20)
Oct 08 00:58:54 Legion5Pro kernel: i915 0000:00:02.0: [drm] [ENCODER:244:DDI B/PHY B] unusable PPS, disabling eDP
Oct 08 00:58:54 Legion5Pro kernel: i915 0000:00:02.0: [drm] GT0: GuC firmware i915/adlp_guc_70.bin version 70.5.1
Oct 08 00:58:54 Legion5Pro kernel: i915 0000:00:02.0: [drm] GT0: HuC firmware i915/tgl_huc.bin version 7.9.3
Oct 08 00:58:54 Legion5Pro kernel: i915 0000:00:02.0: [drm] GT0: HuC: authenticated for all workloads
Oct 08 00:58:54 Legion5Pro kernel: i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
Oct 08 00:58:54 Legion5Pro kernel: i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
Oct 08 00:58:54 Legion5Pro kernel: i915 0000:00:02.0: [drm] GT0: GUC: RC enabled
Oct 08 00:58:54 Legion5Pro kernel: i915 0000:00:02.0: [drm] Protected Xe Path (PXP) protected content support initialized
Oct 08 00:58:54 Legion5Pro kernel: usb 3-2: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=23.11
Oct 08 00:58:54 Legion5Pro kernel: usb 3-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Oct 08 00:58:54 Legion5Pro kernel: usb 3-2: Product: USB2.1 Hub
Oct 08 00:58:54 Legion5Pro kernel: usb 3-2: Manufacturer: GenesysLogic
Oct 08 00:58:54 Legion5Pro kernel: hub 3-2:1.0: USB hub found
Oct 08 00:58:54 Legion5Pro kernel: hub 3-2:1.0: 2 ports detected
Oct 08 00:58:54 Legion5Pro kernel: usb 4-3: new SuperSpeed USB device number 2 using xhci_hcd
Oct 08 00:58:54 Legion5Pro kernel: usb 4-3: New USB device found, idVendor=05e3, idProduct=0620, bcdDevice=23.11
Oct 08 00:58:54 Legion5Pro kernel: usb 4-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Oct 08 00:58:54 Legion5Pro kernel: usb 4-3: Product: USB3.2 Hub
Oct 08 00:58:54 Legion5Pro kernel: usb 4-3: Manufacturer: GenesysLogic
Oct 08 00:58:54 Legion5Pro kernel: hub 4-3:1.0: USB hub found
Oct 08 00:58:54 Legion5Pro kernel: hub 4-3:1.0: 2 ports detected
Oct 08 00:58:54 Legion5Pro kernel: usb 3-5: new full-speed USB device number 3 using xhci_hcd
Oct 08 00:58:54 Legion5Pro kernel: usb 3-5: New USB device found, idVendor=048d, idProduct=c102, bcdDevice= 8.00
Oct 08 00:58:54 Legion5Pro kernel: usb 3-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Oct 08 00:58:54 Legion5Pro kernel: usb 3-5: Product: ITE Device(8910)
Oct 08 00:58:54 Legion5Pro kernel: usb 3-5: Manufacturer: ITE Tech. Inc.
Oct 08 00:58:54 Legion5Pro kernel: input: ITE Tech. Inc. ITE Device(8910) Keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-5/3-5:1.0/0003:048D:C102.0001>
Oct 08 00:58:54 Legion5Pro kernel: input: ITE Tech. Inc. ITE Device(8910) Wireless Radio Control as /devices/pci0000:00/0000:00:14.0/usb3/3-5/3-5:1.0/0003:>
Oct 08 00:58:54 Legion5Pro kernel: hid-generic 0003:048D:C102.0001: input,hiddev96,hidraw0: USB HID v1.10 Keyboard [ITE Tech. Inc. ITE Device(8910)] on usb>
Oct 08 00:58:54 Legion5Pro kernel: usbcore: registered new interface driver usbhid
Oct 08 00:58:54 Legion5Pro kernel: usbhid: USB HID core driver
Oct 08 00:58:54 Legion5Pro kernel: usb 3-10: new full-speed USB device number 4 using xhci_hcd
Oct 08 00:58:54 Legion5Pro kernel: usb 3-10: New USB device found, idVendor=8087, idProduct=0033, bcdDevice= 0.00
Oct 08 00:58:54 Legion5Pro kernel: usb 3-10: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Oct 08 00:58:54 Legion5Pro kernel: [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
Oct 08 00:58:54 Legion5Pro kernel: ACPI: video: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
Oct 08 00:58:54 Legion5Pro kernel: ACPI: video: Video Device [PEGP] (multi-head: yes  rom: no  post: no)
Oct 08 00:58:54 Legion5Pro kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:03/LNXVIDEO:00/input/input6
Oct 08 00:58:54 Legion5Pro kernel: ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
Oct 08 00:58:54 Legion5Pro kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input7
Oct 08 00:58:54 Legion5Pro kernel: fbcon: i915drmfb (fb0) is primary device
Oct 08 00:58:54 Legion5Pro kernel: fbcon: Deferring console take-over
Oct 08 00:58:54 Legion5Pro kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
Oct 08 00:58:54 Legion5Pro kernel: PM: Image not found (code -22)
Oct 08 00:58:54 Legion5Pro kernel: fbcon: Taking over console
Oct 08 00:58:54 Legion5Pro kernel: Console: switching to colour frame buffer device 160x50
Oct 08 00:58:54 Legion5Pro kernel: EXT4-fs (nvme0n1p3): mounted filesystem ce1f2edd-cf6a-448a-8408-246c82a983a0 r/w with ordered data mode. Quota mode: non>
Oct 08 00:58:54 Legion5Pro systemd[1]: systemd 254.5-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OP>
Oct 08 00:58:54 Legion5Pro systemd[1]: Detected architecture x86-64.
Oct 08 00:58:54 Legion5Pro systemd[1]: Hostname set to <Legion5Pro>.
Oct 08 00:58:54 Legion5Pro systemd[1]: bpf-lsm: LSM BPF program attached
Oct 08 00:58:54 Legion5Pro systemd[1]: Queued start job for default target Graphical Interface.
Oct 08 00:58:54 Legion5Pro systemd[1]: Created slice Virtual Machine and Container Slice.
Oct 08 00:58:54 Legion5Pro systemd[1]: Created slice Slice /system/getty.
Oct 08 00:58:54 Legion5Pro systemd[1]: Created slice Slice /system/modprobe.
Oct 08 00:58:54 Legion5Pro systemd[1]: Created slice Slice /system/systemd-fsck.
Oct 08 00:58:54 Legion5Pro systemd[1]: Created slice User and Session Slice.
Oct 08 00:58:54 Legion5Pro systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Oct 08 00:58:54 Legion5Pro systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Oct 08 00:58:54 Legion5Pro systemd[1]: Reached target Login Prompts.
Oct 08 00:58:54 Legion5Pro systemd[1]: Reached target Local Integrity Protected Volumes.
Oct 08 00:58:54 Legion5Pro systemd[1]: Reached target Remote File Systems.
Oct 08 00:58:54 Legion5Pro systemd[1]: Reached target Slice Units.
Oct 08 00:58:54 Legion5Pro systemd[1]: Reached target Local Verity Protected Volumes.
Oct 08 00:58:54 Legion5Pro systemd[1]: Listening on Device-mapper event daemon FIFOs.
Oct 08 00:58:54 Legion5Pro systemd[1]: Listening on LVM2 poll daemon socket.
Oct 08 00:58:54 Legion5Pro systemd[1]: Listening on Process Core Dump Socket.
Oct 08 00:58:54 Legion5Pro systemd[1]: Listening on Journal Socket (/dev/log).
Oct 08 00:58:54 Legion5Pro systemd[1]: Listening on Journal Socket.
Oct 08 00:58:54 Legion5Pro systemd[1]: Listening on udev Control Socket.
Oct 08 00:58:54 Legion5Pro systemd[1]: Listening on udev Kernel Socket.
Oct 08 00:58:54 Legion5Pro systemd[1]: Mounting Huge Pages File System...
Oct 08 00:58:54 Legion5Pro systemd[1]: Mounting POSIX Message Queue File System...
Oct 08 00:58:54 Legion5Pro systemd[1]: Mounting Kernel Debug File System...
Oct 08 00:58:54 Legion5Pro systemd[1]: Mounting Kernel Trace File System...
Oct 08 00:58:54 Legion5Pro systemd[1]: Starting Create List of Static Device Nodes...
Oct 08 00:58:54 Legion5Pro systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Oct 08 00:58:54 Legion5Pro systemd[1]: Starting Load Kernel Module configfs...
Oct 08 00:58:54 Legion5Pro systemd[1]: Starting Load Kernel Module dm_mod...
Oct 08 00:58:54 Legion5Pro systemd[1]: Starting Load Kernel Module drm...
Oct 08 00:58:54 Legion5Pro systemd[1]: Starting Load Kernel Module fuse...
Oct 08 00:58:54 Legion5Pro systemd[1]: Starting Load Kernel Module loop...
Oct 08 00:58:54 Legion5Pro systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
Oct 08 00:58:54 Legion5Pro systemd[1]: Starting Journal Service...
Oct 08 00:58:54 Legion5Pro systemd[1]: Starting Load Kernel Modules...
Oct 08 00:58:54 Legion5Pro systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/e>
Oct 08 00:58:54 Legion5Pro systemd[1]: Starting Remount Root and Kernel File Systems...
Oct 08 00:58:54 Legion5Pro systemd[1]: Starting Coldplug All udev Devices...
Oct 08 00:58:54 Legion5Pro systemd[1]: Starting Virtual Console Setup...
Oct 08 00:58:54 Legion5Pro kernel: loop: module loaded
Oct 08 00:58:54 Legion5Pro systemd[1]: Mounted Huge Pages File System.
Oct 08 00:58:54 Legion5Pro systemd[1]: Mounted POSIX Message Queue File System.
Oct 08 00:58:54 Legion5Pro systemd[1]: Mounted Kernel Debug File System.
Oct 08 00:58:54 Legion5Pro systemd[1]: Mounted Kernel Trace File System.
Oct 08 00:58:54 Legion5Pro kernel: fuse: init (API version 7.38)
Oct 08 00:58:54 Legion5Pro kernel: EXT4-fs (nvme0n1p3): re-mounted ce1f2edd-cf6a-448a-8408-246c82a983a0 r/w. Quota mode: none.
Oct 08 00:58:54 Legion5Pro systemd-journald[345]: Collecting audit messages is disabled.
Oct 08 00:58:54 Legion5Pro kernel: device-mapper: uevent: version 1.0.3
Oct 08 00:58:54 Legion5Pro kernel: device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
Oct 08 00:58:54 Legion5Pro systemd-journald[345]: Journal started
Oct 08 00:58:54 Legion5Pro systemd-journald[345]: Runtime Journal (/run/log/journal/a93767a5bc454b23a22131b91a1aa170) is 8.0M, max 1.5G, 1.5G free.
Oct 08 00:58:54 Legion5Pro systemd-modules-load[346]: Inserted module 'crypto_user'
Oct 08 00:58:54 Legion5Pro systemd-modules-load[346]: Inserted module 'dm_multipath'
Oct 08 00:58:54 Legion5Pro systemd-modules-load[346]: Module 'nvidia_uvm' is deny-listed (by kmod)
Oct 08 00:58:54 Legion5Pro systemd[1]: modprobe@configfs.service: Deactivated successfully.
Oct 08 00:58:54 Legion5Pro systemd[1]: Finished Create List of Static Device Nodes.
Oct 08 00:58:54 Legion5Pro systemd[1]: Started Journal Service.
Oct 08 00:58:54 Legion5Pro systemd[1]: Finished Load Kernel Module configfs.
Oct 08 00:58:54 Legion5Pro systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
Oct 08 00:58:54 Legion5Pro systemd[1]: Finished Load Kernel Module dm_mod.
Oct 08 00:58:54 Legion5Pro systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Oct 08 00:58:54 Legion5Pro systemd[1]: modprobe@drm.service: Deactivated successfully.
Oct 08 00:58:54 Legion5Pro systemd[1]: Finished Load Kernel Module drm.
Oct 08 00:58:54 Legion5Pro systemd[1]: modprobe@fuse.service: Deactivated successfully.
Oct 08 00:58:54 Legion5Pro systemd[1]: Finished Load Kernel Module fuse.
Oct 08 00:58:54 Legion5Pro systemd[1]: modprobe@loop.service: Deactivated successfully.
Oct 08 00:58:54 Legion5Pro systemd[1]: Finished Load Kernel Module loop.
Oct 08 00:58:54 Legion5Pro systemd[1]: Finished Load Kernel Modules.
Oct 08 00:58:54 Legion5Pro systemd[1]: Finished Remount Root and Kernel File Systems.
Oct 08 00:58:54 Legion5Pro systemd[1]: Finished Coldplug All udev Devices.
Oct 08 00:58:54 Legion5Pro systemd[1]: Finished Virtual Console Setup.
Oct 08 00:58:54 Legion5Pro systemd[1]: Mounting FUSE Control File System...
Oct 08 00:58:54 Legion5Pro systemd[1]: Mounting Kernel Configuration File System...
Oct 08 00:58:54 Legion5Pro systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
Oct 08 00:58:54 Legion5Pro systemd[1]: Starting Flush Journal to Persistent Storage...
Oct 08 00:58:54 Legion5Pro systemd[1]: Starting Load/Save OS Random Seed...
Oct 08 00:58:54 Legion5Pro systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
Oct 08 00:58:54 Legion5Pro systemd[1]: Starting Apply Kernel Variables...
Oct 08 00:58:54 Legion5Pro systemd[1]: Starting Create Static Device Nodes in /dev gracefully...
Oct 08 00:58:54 Legion5Pro systemd[1]: Mounted FUSE Control File System.
Oct 08 00:58:54 Legion5Pro systemd[1]: Mounted Kernel Configuration File System.
Oct 08 00:58:54 Legion5Pro systemd-journald[345]: Time spent on flushing to /var/log/journal/a93767a5bc454b23a22131b91a1aa170 is 26.407ms for 959 entries.
Oct 08 00:58:54 Legion5Pro systemd-journald[345]: System Journal (/var/log/journal/a93767a5bc454b23a22131b91a1aa170) is 443.1M, max 4.0G, 3.5G free.
Oct 08 00:58:54 Legion5Pro systemd-journald[345]: Received client request to flush runtime journal.
Oct 08 00:58:54 Legion5Pro systemd-journald[345]: /var/log/journal/a93767a5bc454b23a22131b91a1aa170/system.journal: Journal file uses a different sequence >
Oct 08 00:58:54 Legion5Pro systemd-journald[345]: Rotating system journal.
Oct 08 00:58:54 Legion5Pro systemd[1]: Finished Apply Kernel Variables.
Oct 08 00:58:54 Legion5Pro systemd[1]: Finished Flush Journal to Persistent Storage.
Oct 08 00:58:54 Legion5Pro systemd[1]: Finished Load/Save OS Random Seed.
Oct 08 00:58:54 Legion5Pro systemd[1]: Finished Create Static Device Nodes in /dev gracefully.
Oct 08 00:58:54 Legion5Pro systemd[1]: Create System Users was skipped because no trigger condition checks were met.
Oct 08 00:58:54 Legion5Pro systemd[1]: Starting Create Static Device Nodes in /dev...
Oct 08 00:58:54 Legion5Pro systemd[1]: Finished Create Static Device Nodes in /dev.
Oct 08 00:58:54 Legion5Pro systemd[1]: Reached target Preparation for Local File Systems.
Oct 08 00:58:54 Legion5Pro systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of an unmet condition check (ConditionPath>
Oct 08 00:58:54 Legion5Pro systemd[1]: Starting Rule-based Manager for Device Events and Files...
Oct 08 00:58:54 Legion5Pro systemd-udevd[397]: Using default interface naming scheme 'v253'.
Oct 08 00:58:54 Legion5Pro systemd[1]: Started Rule-based Manager for Device Events and Files.
Oct 08 00:58:54 Legion5Pro systemd[1]: Starting Show Plymouth Boot Screen...
Oct 08 00:58:54 Legion5Pro systemd[1]: Received SIGRTMIN+20 from PID 417 (plymouthd).
Oct 08 00:58:54 Legion5Pro systemd[1]: Started Show Plymouth Boot Screen.
Oct 08 00:58:54 Legion5Pro systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPath>
Oct 08 00:58:54 Legion5Pro systemd[1]: Started Forward Password Requests to Plymouth Directory Watch.
Oct 08 00:58:54 Legion5Pro systemd[1]: Reached target Local Encrypted Volumes.
Oct 08 00:58:54 Legion5Pro kernel: Consider using thermal netlink events interface
Oct 08 00:58:54 Legion5Pro systemd[1]: Created slice Slice /system/systemd-backlight.
Oct 08 00:58:54 Legion5Pro kernel: resource: resource sanity check: requesting [mem 0x00000000fedc0000-0x00000000fedcffff], which spans more than pnp 00:03>
Oct 08 00:58:54 Legion5Pro kernel: caller igen6_probe+0x1a0/0x8d0 [igen6_edac] mapping multiple BARs
Oct 08 00:58:54 Legion5Pro systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:intel_backlight...
Oct 08 00:58:54 Legion5Pro kernel: ACPI: bus type thunderbolt registered
Oct 08 00:58:54 Legion5Pro kernel: EDAC MC0: Giving out device to module igen6_edac controller Intel_client_SoC MC#0: DEV 0000:00:00.0 (INTERRUPT)
Oct 08 00:58:54 Legion5Pro kernel: EDAC MC1: Giving out device to module igen6_edac controller Intel_client_SoC MC#1: DEV 0000:00:00.0 (INTERRUPT)
Oct 08 00:58:54 Legion5Pro kernel: EDAC igen6 MC0: HANDLING IBECC MEMORY ERROR
Oct 08 00:58:54 Legion5Pro kernel: EDAC igen6 MC0: ADDR 0x7fffffffe0 
Oct 08 00:58:54 Legion5Pro kernel: EDAC igen6 MC1: HANDLING IBECC MEMORY ERROR
Oct 08 00:58:54 Legion5Pro kernel: EDAC igen6 MC1: ADDR 0x7fffffffe0 
Oct 08 00:58:54 Legion5Pro kernel: EDAC igen6: v2.5.1
Oct 08 00:58:54 Legion5Pro systemd[1]: Found device Micron MTFDKBA1T0TFH 1.
Oct 08 00:58:54 Legion5Pro kernel: input: Ideapad extra buttons as /devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/input/input8
Oct 08 00:58:54 Legion5Pro kernel: ideapad_acpi VPC2004:00: Keyboard backlight control not available
Oct 08 00:58:54 Legion5Pro systemd[1]: Found device Micron MTFDKBA1T0TFH 2.
Oct 08 00:58:54 Legion5Pro kernel: ideapad_acpi VPC2004:00: DYTC interface is not available
Oct 08 00:58:54 Legion5Pro systemd[1]: Finished Load/Save Screen Backlight Brightness of backlight:intel_backlight.
Oct 08 00:58:54 Legion5Pro systemd[1]: Activating swap /dev/disk/by-uuid/40849e53-a13c-4d2c-8a8e-49cd46896338...
Oct 08 00:58:54 Legion5Pro systemd[1]: Starting File System Check on /dev/disk/by-uuid/6872-DF6A...
Oct 08 00:58:54 Legion5Pro kernel: Adding 20971516k swap on /dev/nvme0n1p2.  Priority:-2 extents:1 across:20971516k SSFS
Oct 08 00:58:54 Legion5Pro systemd[1]: Activated swap /dev/disk/by-uuid/40849e53-a13c-4d2c-8a8e-49cd46896338.
Oct 08 00:58:54 Legion5Pro systemd[1]: Reached target Swaps.
Oct 08 00:58:54 Legion5Pro systemd[1]: Mounting Temporary Directory /tmp...
Oct 08 00:58:54 Legion5Pro systemd[1]: Mounted Temporary Directory /tmp.
Oct 08 00:58:54 Legion5Pro systemd-fsck[532]: fsck.fat 4.2 (2021-01-31)
Oct 08 00:58:54 Legion5Pro systemd-fsck[532]: /dev/nvme0n1p1: 21 files, 52409/130812 clusters
Oct 08 00:58:54 Legion5Pro kernel: input: PC Speaker as /devices/platform/pcspkr/input/input9
Oct 08 00:58:54 Legion5Pro kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
Oct 08 00:58:54 Legion5Pro kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
Oct 08 00:58:54 Legion5Pro kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Oct 08 00:58:54 Legion5Pro kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
Oct 08 00:58:54 Legion5Pro kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Oct 08 00:58:54 Legion5Pro kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
Oct 08 00:58:54 Legion5Pro kernel: cfg80211: failed to load regulatory.db
Oct 08 00:58:54 Legion5Pro kernel: i2c i2c-12: 2/2 memory slots populated (from DMI)
Oct 08 00:58:54 Legion5Pro kernel: i2c i2c-12: Memory type 0x22 not supported yet, not instantiating SPD
Oct 08 00:58:54 Legion5Pro kernel: RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
Oct 08 00:58:54 Legion5Pro kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
Oct 08 00:58:54 Legion5Pro kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
Oct 08 00:58:54 Legion5Pro kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
Oct 08 00:58:54 Legion5Pro kernel: RAPL PMU: hw unit of domain psys 2^-14 Joules
Oct 08 00:58:54 Legion5Pro kernel: spi-nor spi0.0: s25fl064k (8192 Kbytes)
Oct 08 00:58:54 Legion5Pro kernel: r8169 0000:34:00.0: can't disable ASPM; OS doesn't have ASPM control
Oct 08 00:58:54 Legion5Pro kernel: cryptd: max_cpu_qlen set to 1000
Oct 08 00:58:54 Legion5Pro kernel: intel_rapl_msr: PL4 support detected.
Oct 08 00:58:54 Legion5Pro kernel: intel_rapl_common: Found RAPL domain package
Oct 08 00:58:54 Legion5Pro kernel: intel_rapl_common: Found RAPL domain core
Oct 08 00:58:54 Legion5Pro kernel: intel_rapl_common: Found RAPL domain uncore
Oct 08 00:58:54 Legion5Pro kernel: intel_rapl_common: Found RAPL domain psys
Oct 08 00:58:54 Legion5Pro kernel: Creating 1 MTD partitions on "0000:00:1f.5":
Oct 08 00:58:54 Legion5Pro kernel: 0x000000000000-0x000001800000 : "BIOS"
Oct 08 00:58:54 Legion5Pro kernel: mtd: partition "BIOS" extends beyond the end of device "0000:00:1f.5" -- size truncated to 0x800000
Oct 08 00:58:54 Legion5Pro kernel: spi-nor spi0.1: w25q128 (16384 Kbytes)
Oct 08 00:58:54 Legion5Pro kernel: iTCO_vendor_support: vendor-support=0
Oct 08 00:58:54 Legion5Pro kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
Oct 08 00:58:54 Legion5Pro kernel: intel_rapl_common: Found RAPL domain package
Oct 08 00:58:54 Legion5Pro kernel: intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
Oct 08 00:58:54 Legion5Pro kernel: mei_pxp 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1: bound 0000:00:02.0 (ops i915_pxp_tee_component_ops [i915])
Oct 08 00:58:54 Legion5Pro kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit
Oct 08 00:58:54 Legion5Pro systemd[1]: Finished File System Check on /dev/disk/by-uuid/6872-DF6A.
Oct 08 00:58:54 Legion5Pro kernel: AVX2 version of gcm_enc/dec engaged.
Oct 08 00:58:54 Legion5Pro kernel: AES CTR mode by8 optimization enabled
Oct 08 00:58:54 Legion5Pro kernel: Intel(R) Wireless WiFi driver for Linux
Oct 08 00:58:54 Legion5Pro kernel: iwlwifi 0000:00:14.3: Detected crf-id 0x400410, cnv-id 0x80400 wfpm id 0x80000020
Oct 08 00:58:54 Legion5Pro kernel: iwlwifi 0000:00:14.3: PCI dev 51f0/0094, rev=0x370, rfid=0x2010d000
Oct 08 00:58:54 Legion5Pro kernel: iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
Oct 08 00:58:54 Legion5Pro kernel: iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
Oct 08 00:58:54 Legion5Pro kernel: r8169 0000:34:00.0 eth0: RTL8168h/8111h, 9c:2d:cd:1c:66:9c, XID 541, IRQ 186
Oct 08 00:58:54 Legion5Pro kernel: r8169 0000:34:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
Oct 08 00:58:54 Legion5Pro kernel: r8169 0000:34:00.0 enp52s0: renamed from eth0
Oct 08 00:58:54 Legion5Pro systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Oct 08 00:58:54 Legion5Pro systemd[1]: boot.mount: Directory /boot to mount over is not empty, mounting anyway.
Oct 08 00:58:54 Legion5Pro kernel: iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
Oct 08 00:58:54 Legion5Pro kernel: iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 0.0.2.41
Oct 08 00:58:54 Legion5Pro kernel: iwlwifi 0000:00:14.3: loaded firmware version 83.e8f84e98.0 so-a0-gf-a0-83.ucode op_mode iwlmvm
Oct 08 00:58:54 Legion5Pro kernel: snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
Oct 08 00:58:54 Legion5Pro kernel: snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
Oct 08 00:58:54 Legion5Pro kernel: snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Oct 08 00:58:54 Legion5Pro kernel: snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
Oct 08 00:58:54 Legion5Pro kernel: snd_hda_intel 0000:01:00.1: Disabling MSI
Oct 08 00:58:54 Legion5Pro kernel: snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
Oct 08 00:58:55 Legion5Pro kernel: input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input10
Oct 08 00:58:55 Legion5Pro kernel: input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input11
Oct 08 00:58:55 Legion5Pro kernel: input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input12
Oct 08 00:58:55 Legion5Pro kernel: input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input13
Oct 08 00:58:55 Legion5Pro systemd[1]: Mounting /boot...
Oct 08 00:58:55 Legion5Pro systemd[1]: systemd-vconsole-setup.service: Deactivated successfully.
Oct 08 00:58:55 Legion5Pro kernel: snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC257: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
Oct 08 00:58:55 Legion5Pro kernel: snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Oct 08 00:58:55 Legion5Pro kernel: snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
Oct 08 00:58:55 Legion5Pro kernel: snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
Oct 08 00:58:55 Legion5Pro kernel: snd_hda_codec_realtek hdaudioC0D0:    inputs:
Oct 08 00:58:55 Legion5Pro kernel: snd_hda_codec_realtek hdaudioC0D0:      Mic=0x19
Oct 08 00:58:55 Legion5Pro kernel: snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
Oct 08 00:58:55 Legion5Pro systemd[1]: Stopped Virtual Console Setup.
Oct 08 00:58:55 Legion5Pro systemd[1]: Stopping Virtual Console Setup...
Oct 08 00:58:55 Legion5Pro systemd[1]: Starting Virtual Console Setup...
Oct 08 00:58:55 Legion5Pro systemd[1]: Mounted /boot.
Oct 08 00:58:55 Legion5Pro systemd[1]: Reached target Local File Systems.
Oct 08 00:58:55 Legion5Pro systemd[1]: Reached target Sound Card.
Oct 08 00:58:55 Legion5Pro systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
Oct 08 00:58:55 Legion5Pro systemd[1]: Starting Tell Plymouth To Write Out Runtime Data...
Oct 08 00:58:55 Legion5Pro systemd[1]: Starting Set Up Additional Binary Formats...
Oct 08 00:58:55 Legion5Pro systemd[1]: Starting Update Boot Loader Random Seed...
Oct 08 00:58:55 Legion5Pro systemd[1]: Starting Load/Save RF Kill Switch Status...
Oct 08 00:58:55 Legion5Pro systemd[1]: Starting Create Volatile Files and Directories...
Oct 08 00:58:55 Legion5Pro systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 590 (systemd-bin>
Oct 08 00:58:55 Legion5Pro kernel: iwlwifi 0000:00:14.3: Detected Intel(R) Wi-Fi 6E AX211 160MHz, REV=0x370
Oct 08 00:58:55 Legion5Pro kernel: thermal thermal_zone11: failed to read out thermal zone (-61)
Oct 08 00:58:55 Legion5Pro systemd[1]: Mounting Arbitrary Executable File Formats File System...
Oct 08 00:58:55 Legion5Pro systemd[1]: Mounted Arbitrary Executable File Formats File System.
Oct 08 00:58:55 Legion5Pro kernel: intel_tcc_cooling: TCC Offset locked
Oct 08 00:58:55 Legion5Pro bootctl[591]: ! Mount point '/boot' which backs the random seed file is world accessible, which is a security hole! !
Oct 08 00:58:55 Legion5Pro bootctl[591]: ! Random seed file '/boot/loader/random-seed' is world accessible, which is a security hole! !
Oct 08 00:58:55 Legion5Pro systemd-vconsole-setup[586]: KD_FONT_OP_GET failed while trying to get the font metadata: Invalid argument
Oct 08 00:58:55 Legion5Pro systemd-vconsole-setup[586]: Fonts will not be copied to remaining consoles
Oct 08 00:58:55 Legion5Pro bootctl[591]: Random seed file /boot/loader/random-seed successfully refreshed (32 bytes).
Oct 08 00:58:55 Legion5Pro kernel: iwlwifi 0000:00:14.3: WRT: Invalid buffer destination
Oct 08 00:58:55 Legion5Pro kernel: input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
Oct 08 00:58:55 Legion5Pro kernel: input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
Oct 08 00:58:55 Legion5Pro kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
Oct 08 00:58:55 Legion5Pro kernel: input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
Oct 08 00:58:55 Legion5Pro kernel: input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input18
Oct 08 00:58:55 Legion5Pro kernel: input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input19
Oct 08 00:58:55 Legion5Pro systemd[1]: Finished Set Up Additional Binary Formats.
Oct 08 00:58:55 Legion5Pro systemd[1]: Finished Virtual Console Setup.
Oct 08 00:58:55 Legion5Pro systemd[1]: Finished Tell Plymouth To Write Out Runtime Data.
Oct 08 00:58:55 Legion5Pro kernel: iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
Oct 08 00:58:55 Legion5Pro kernel: iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
Oct 08 00:58:55 Legion5Pro kernel: iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
Oct 08 00:58:55 Legion5Pro kernel: iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
Oct 08 00:58:55 Legion5Pro kernel: iwlwifi 0000:00:14.3: loaded PNVM version 181407b3
Oct 08 00:58:55 Legion5Pro kernel: iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 5
Oct 08 00:58:55 Legion5Pro kernel: iwlwifi 0000:00:14.3: Detected RF GF, rfid=0x2010d000
Oct 08 00:58:55 Legion5Pro systemd[1]: Finished Update Boot Loader Random Seed.
Oct 08 00:58:55 Legion5Pro systemd[1]: Started Load/Save RF Kill Switch Status.
Oct 08 00:58:55 Legion5Pro systemd[1]: Received SIGRTMIN+20 from PID 417 (plymouthd).
Oct 08 00:58:55 Legion5Pro systemd[1]: Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPath>
Oct 08 00:58:55 Legion5Pro systemd[1]: Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
Oct 08 00:58:55 Legion5Pro kernel: intel-lpss 0000:00:15.1: enabling device (0004 -> 0006)
Oct 08 00:58:55 Legion5Pro kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
Oct 08 00:58:55 Legion5Pro systemd[1]: Starting Load Kernel Module dm_mod...
Oct 08 00:58:55 Legion5Pro systemd[1]: Starting Load Kernel Module loop...
Oct 08 00:58:55 Legion5Pro systemd[1]: Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
Oct 08 00:58:55 Legion5Pro systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/e>
Oct 08 00:58:55 Legion5Pro systemd[1]: Create System Users was skipped because no trigger condition checks were met.
Oct 08 00:58:55 Legion5Pro systemd[1]: modprobe@loop.service: Deactivated successfully.
Oct 08 00:58:55 Legion5Pro kernel: iwlwifi 0000:00:14.3: base HW address: 38:7a:0e:a6:11:a7
Oct 08 00:58:55 Legion5Pro systemd[1]: Finished Load Kernel Module loop.
Oct 08 00:58:55 Legion5Pro systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
Oct 08 00:58:55 Legion5Pro kernel: iwlwifi 0000:00:14.3 wlp0s20f3: renamed from wlan0
Oct 08 00:58:55 Legion5Pro kernel: input: MSFT0001:01 04F3:31AD Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-14/i2c-MSFT0001:01/0018:04F3>
Oct 08 00:58:55 Legion5Pro kernel: input: MSFT0001:01 04F3:31AD Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-14/i2c-MSFT0001:01/0018:0>
Oct 08 00:58:55 Legion5Pro kernel: hid-generic 0018:04F3:31AD.0002: input,hidraw1: I2C HID v1.00 Mouse [MSFT0001:01 04F3:31AD] on i2c-MSFT0001:01
Oct 08 00:58:55 Legion5Pro mtp-probe[650]: checking bus 3, device 3: "/sys/devices/pci0000:00/0000:00:14.0/usb3/3-5"
Oct 08 00:58:55 Legion5Pro mtp-probe[650]: bus: 3, device: 3 was not an MTP device
Oct 08 00:58:55 Legion5Pro systemd[1]: Finished Load Kernel Module dm_mod.
Oct 08 00:58:55 Legion5Pro systemd[1]: Repartition Root Disk was skipped because no trigger condition checks were met.
Oct 08 00:58:55 Legion5Pro systemd[1]: Finished Create Volatile Files and Directories.
Oct 08 00:58:55 Legion5Pro systemd[1]: First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Oct 08 00:58:55 Legion5Pro systemd[1]: First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Oct 08 00:58:55 Legion5Pro systemd[1]: Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
Oct 08 00:58:55 Legion5Pro systemd[1]: Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/et>
Oct 08 00:58:55 Legion5Pro systemd[1]: Update is Completed was skipped because no trigger condition checks were met.
Oct 08 00:58:55 Legion5Pro kernel: input: MSFT0001:01 04F3:31AD Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-14/i2c-MSFT0001:01/0018:04F3>
Oct 08 00:58:55 Legion5Pro kernel: input: MSFT0001:01 04F3:31AD Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-14/i2c-MSFT0001:01/0018:0>
Oct 08 00:58:55 Legion5Pro kernel: hid-multitouch 0018:04F3:31AD.0002: input,hidraw1: I2C HID v1.00 Mouse [MSFT0001:01 04F3:31AD] on i2c-MSFT0001:01
Oct 08 00:58:55 Legion5Pro kernel: mousedev: PS/2 mouse device common for all mice
Oct 08 00:58:55 Legion5Pro systemd[1]: Starting Record System Boot/Shutdown in UTMP...
Oct 08 00:58:55 Legion5Pro systemd[1]: Finished Record System Boot/Shutdown in UTMP.
Oct 08 00:58:55 Legion5Pro systemd[1]: Reached target System Initialization.
Oct 08 00:58:55 Legion5Pro systemd[1]: Started CUPS Scheduler.
Oct 08 00:58:55 Legion5Pro systemd[1]: Started Refresh existing PGP keys of archlinux-keyring regularly.
Oct 08 00:58:55 Legion5Pro systemd[1]: Started Daily man-db regeneration.
Oct 08 00:58:55 Legion5Pro systemd[1]: Started Daily verification of password and group files.
Oct 08 00:58:55 Legion5Pro systemd[1]: Started Daily Cleanup of Temporary Directories.
Oct 08 00:58:55 Legion5Pro systemd[1]: Reached target Path Units.
Oct 08 00:58:55 Legion5Pro systemd[1]: Reached target Timer Units.
Oct 08 00:58:55 Legion5Pro systemd[1]: Listening on CUPS Scheduler.
Oct 08 00:58:55 Legion5Pro systemd[1]: Listening on D-Bus System Message Bus Socket.
Oct 08 00:58:55 Legion5Pro systemd[1]: Listening on Libvirt local socket.
Oct 08 00:58:55 Legion5Pro systemd[1]: Listening on Libvirt admin socket.
Oct 08 00:58:55 Legion5Pro systemd[1]: Listening on Libvirt local read-only socket.
Oct 08 00:58:55 Legion5Pro systemd[1]: Listening on Virtual machine lock manager socket.
Oct 08 00:58:55 Legion5Pro systemd[1]: Listening on Virtual machine log manager socket.
Oct 08 00:58:55 Legion5Pro systemd[1]: Reached target Socket Units.
Oct 08 00:58:55 Legion5Pro systemd[1]: TPM2 PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware>
Oct 08 00:58:55 Legion5Pro systemd[1]: Reached target Basic System.
Oct 08 00:58:55 Legion5Pro systemd[1]: Started ACPI event daemon.
Oct 08 00:58:55 Legion5Pro systemd[1]: Starting Thunderbolt system service...
Oct 08 00:58:55 Legion5Pro systemd[1]: Started Bumblebee C Daemon.
Oct 08 00:58:55 Legion5Pro systemd[1]: Starting D-Bus System Message Bus...
Oct 08 00:58:55 Legion5Pro systemd[1]: Starting User Login Management...
Oct 08 00:58:55 Legion5Pro systemd[1]: Starting Virtual Machine and Container Registration Service...
Oct 08 00:58:55 Legion5Pro systemd[1]: TPM2 PCR Barrier (User) was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efiva>
Oct 08 00:58:55 Legion5Pro kernel: bbswitch: loading out-of-tree module taints kernel.
Oct 08 00:58:55 Legion5Pro kernel: bbswitch: module verification failed: signature and/or required key missing - tainting kernel
Oct 08 00:58:55 Legion5Pro kernel: bbswitch: version 0.8
Oct 08 00:58:55 Legion5Pro kernel: bbswitch: Found integrated VGA device 0000:00:02.0: \_SB_.PC00.GFX0
Oct 08 00:58:55 Legion5Pro kernel: bbswitch: Found discrete VGA device 0000:01:00.0: \_SB_.PC00.PEG1.PEGP
Oct 08 00:58:55 Legion5Pro kernel: ACPI Warning: \_SB.PC00.PEG1.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20230331/ns>
Oct 08 00:58:55 Legion5Pro kernel: bbswitch: detected an Optimus _DSM function
Oct 08 00:58:55 Legion5Pro kernel: pci 0000:01:00.0: enabling device (0000 -> 0003)
Oct 08 00:58:55 Legion5Pro kernel: bbswitch: Succesfully loaded. Discrete card 0000:01:00.0 is on
Oct 08 00:58:55 Legion5Pro boltd[718]: bolt 0.9.6 starting up.
Oct 08 00:58:55 Legion5Pro bumblebeed[719]: [    5.707064] [INFO]/usr/bin/bumblebeed 3.2.1 started
Oct 08 00:58:55 Legion5Pro kernel: bbswitch: disabling discrete graphics
Oct 08 00:58:55 Legion5Pro systemd-logind[723]: New seat seat0.
Oct 08 00:58:55 Legion5Pro systemd-logind[723]: Watching system buttons on /dev/input/event2 (Power Button)
Oct 08 00:58:55 Legion5Pro systemd-logind[723]: Watching system buttons on /dev/input/event1 (Power Button)
Oct 08 00:58:55 Legion5Pro systemd-logind[723]: Watching system buttons on /dev/input/event0 (Lid Switch)
Oct 08 00:58:55 Legion5Pro systemd[1]: Started D-Bus System Message Bus.
Oct 08 00:58:55 Legion5Pro systemd-logind[723]: Watching system buttons on /dev/input/event3 (AT Translated Set 2 keyboard)
Oct 08 00:58:55 Legion5Pro systemd[1]: Started User Login Management.
Oct 08 00:58:55 Legion5Pro boltd[718]: manager: initializing store
Oct 08 00:58:55 Legion5Pro boltd[718]: store: located at: /var/lib/boltd
Oct 08 00:58:55 Legion5Pro boltd[718]: config: loading user config
Oct 08 00:58:55 Legion5Pro boltd[718]: bouncer: initializing polkit
Oct 08 00:58:55 Legion5Pro systemd[1]: Starting Network Manager...
Oct 08 00:58:55 Legion5Pro dbus-daemon[720]: [system] Successfully activated service 'org.freedesktop.systemd1'
Oct 08 00:58:55 Legion5Pro systemd[1]: Started Virtual Machine and Container Registration Service.
Oct 08 00:58:55 Legion5Pro dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' requested by >
Oct 08 00:58:55 Legion5Pro systemd[1]: Starting Authorization Manager...
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.5945] NetworkManager (version 1.44.2-1) is starting... (boot:a5e49e5a-9569-469c-bf85-eb>
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.5945] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 20-connectivity.conf)
Oct 08 00:58:55 Legion5Pro polkitd[758]: Started polkitd version 123
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.5998] manager[0x5609bcdd0a60]: monitoring kernel firmware directory '/lib/firmware'.
Oct 08 00:58:55 Legion5Pro dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1>
Oct 08 00:58:55 Legion5Pro polkitd[758]: Loading rules from directory /etc/polkit-1/rules.d
Oct 08 00:58:55 Legion5Pro systemd[1]: Starting Hostname Service...
Oct 08 00:58:55 Legion5Pro polkitd[758]: Loading rules from directory /usr/share/polkit-1/rules.d
Oct 08 00:58:55 Legion5Pro polkitd[758]: Finished loading, compiling and executing 8 rules
Oct 08 00:58:55 Legion5Pro dbus-daemon[720]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Oct 08 00:58:55 Legion5Pro systemd[1]: Started Authorization Manager.
Oct 08 00:58:55 Legion5Pro polkitd[758]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
Oct 08 00:58:55 Legion5Pro boltd[718]: watchdog: enabled [pulse: 90s]
Oct 08 00:58:55 Legion5Pro boltd[718]: udev: initializing udev
Oct 08 00:58:55 Legion5Pro boltd[718]: store: loading domains
Oct 08 00:58:55 Legion5Pro boltd[718]: store: loading devices
Oct 08 00:58:55 Legion5Pro boltd[718]: power: state located at: /run/boltd/power
Oct 08 00:58:55 Legion5Pro boltd[718]: power: force power support: no
Oct 08 00:58:55 Legion5Pro boltd[718]: udev: enumerating devices
Oct 08 00:58:55 Legion5Pro boltd[718]: [432f8780-8029-domain0                    ] newly connected [iommu+user] (/sys/devices/pci0000:00/0000:00:0d.2/domai>
Oct 08 00:58:55 Legion5Pro boltd[718]: security level set to 'user'
Oct 08 00:58:55 Legion5Pro boltd[718]: [432f8780-8029-domain0                    ] domain: registered (bootacl: 0/0)
Oct 08 00:58:55 Legion5Pro boltd[718]: [432f8780-8029-domain0                    ] bootacl: bootacl not supported, no sync
Oct 08 00:58:55 Legion5Pro boltd[718]: [432f8780-8029-domain0                    ] udev: failed to determine if uid is stable: unknown NHI PCI id '0x463e'
Oct 08 00:58:55 Legion5Pro boltd[718]: [432f8780-8029-domain0                    ] udev: uuid is stable: no (for NHI: 0x463e)
Oct 08 00:58:55 Legion5Pro boltd[718]: global 'generation' set to '4'
Oct 08 00:58:55 Legion5Pro boltd[718]: [432f8780-8029-Gen12                      ] device added, status: authorized, at /sys/devices/pci0000:00/0000:00:0d.>
Oct 08 00:58:55 Legion5Pro boltd[718]: [432f8780-8029-Gen12                      ] labeling device: INTEL Gen12
Oct 08 00:58:55 Legion5Pro boltd[718]: [432f8780-8029-domain0                    ] dbus: exported domain at /org/freedesktop/bolt/domains/432f8780_8029_2fc>
Oct 08 00:58:55 Legion5Pro boltd[718]: [432f8780-8029-Gen12                      ] dbus: exported device at /org/freedesktop/bolt/devices/432f8780_8029...
Oct 08 00:58:55 Legion5Pro systemd[1]: Started Thunderbolt system service.
Oct 08 00:58:55 Legion5Pro dbus-daemon[720]: [system] Successfully activated service 'org.freedesktop.hostname1'
Oct 08 00:58:55 Legion5Pro systemd[1]: Started Hostname Service.
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6210] hostname: hostname: using hostnamed
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6211] hostname: static hostname changed from (none) to "Legion5Pro"
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6214] dns-mgr: init: dns=default,systemd-resolved rc-manager=symlink
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6221] rfkill2: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:14.3/ie>
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6222] rfkill0: found Wi-Fi radio killswitch (at /sys/devices/pci0000:00/0000:00:1f.0/PN>
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6246] manager[0x5609bcdd0a60]: rfkill: Wi-Fi hardware radio set enabled
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6246] manager[0x5609bcdd0a60]: rfkill: WWAN hardware radio set enabled
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6401] Loaded device plugin: NMTeamFactory (/usr/lib/NetworkManager/1.44.2-1/libnm-devic>
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6405] Loaded device plugin: NMOvsFactory (/usr/lib/NetworkManager/1.44.2-1/libnm-device>
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6408] Loaded device plugin: NMAtmManager (/usr/lib/NetworkManager/1.44.2-1/libnm-device>
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6432] Loaded device plugin: NMWwanFactory (/usr/lib/NetworkManager/1.44.2-1/libnm-devic>
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6443] Loaded device plugin: NMBluezManager (/usr/lib/NetworkManager/1.44.2-1/libnm-devi>
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6457] Loaded device plugin: NMWifiFactory (/usr/lib/NetworkManager/1.44.2-1/libnm-devic>
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6459] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6459] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6459] manager: Networking is enabled by state file
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6462] settings: Loaded settings plugin: keyfile (internal)
Oct 08 00:58:55 Legion5Pro dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-di>
Oct 08 00:58:55 Legion5Pro systemd[1]: Starting Network Manager Script Dispatcher Service...
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6498] dhcp: init: Using DHCP client 'internal'
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6499] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1)
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6505] device (lo): state change: unmanaged -> unavailable (reason 'connection-assumed',>
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6507] device (lo): state change: unavailable -> disconnected (reason 'connection-assume>
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6511] device (lo): Activation: starting connection 'lo' (5e62f900-c735-4080-9c9f-ef7b5a>
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6515] manager: (enp52s0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/>
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6521] settings: (enp52s0): created default wired connection 'Wired connection 1'
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.6522] device (enp52s0): state change: unmanaged -> unavailable (reason 'managed', sys-i>
Oct 08 00:58:55 Legion5Pro dbus-daemon[720]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Oct 08 00:58:55 Legion5Pro systemd[1]: Started Network Manager Script Dispatcher Service.
Oct 08 00:58:55 Legion5Pro kernel: Generic FE-GE Realtek PHY r8169-0-3400:00: attached PHY driver (mii_bus:phy_addr=r8169-0-3400:00, irq=MAC)
Oct 08 00:58:55 Legion5Pro acpid[717]: starting up with netlink and the input layer
Oct 08 00:58:55 Legion5Pro acpid[717]: 1 rule loaded
Oct 08 00:58:55 Legion5Pro acpid[717]: waiting for events: event logging is off
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.8827] device (wlp0s20f3): driver supports Access Point (AP) mode
Oct 08 00:58:55 Legion5Pro kernel: r8169 0000:34:00.0 enp52s0: Link is Down
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.8840] manager: (wlp0s20f3): new 802.11 Wi-Fi device (/org/freedesktop/NetworkManager/De>
Oct 08 00:58:55 Legion5Pro NetworkManager[757]: <info>  [1696719535.8846] device (wlp0s20f3): state change: unmanaged -> unavailable (reason 'managed', sys>
Oct 08 00:58:55 Legion5Pro kernel: iwlwifi 0000:00:14.3: WRT: Invalid buffer destination
Oct 08 00:58:55 Legion5Pro kernel: Bluetooth: Core ver 2.22
Oct 08 00:58:55 Legion5Pro kernel: NET: Registered PF_BLUETOOTH protocol family
Oct 08 00:58:55 Legion5Pro kernel: Bluetooth: HCI device and connection manager initialized
Oct 08 00:58:55 Legion5Pro kernel: Bluetooth: HCI socket layer initialized
Oct 08 00:58:55 Legion5Pro kernel: Bluetooth: L2CAP socket layer initialized
Oct 08 00:58:55 Legion5Pro kernel: Bluetooth: SCO socket layer initialized
Oct 08 00:58:55 Legion5Pro systemd-logind[723]: Watching system buttons on /dev/input/event4 (ITE Tech. Inc. ITE Device(8910) Keyboard)
Oct 08 00:58:56 Legion5Pro kernel: usbcore: registered new interface driver btusb
Oct 08 00:58:56 Legion5Pro kernel: Bluetooth: hci0: Device revision is 0
Oct 08 00:58:56 Legion5Pro kernel: Bluetooth: hci0: Secure boot is enabled
Oct 08 00:58:56 Legion5Pro kernel: Bluetooth: hci0: OTP lock is enabled
Oct 08 00:58:56 Legion5Pro kernel: Bluetooth: hci0: API lock is enabled
Oct 08 00:58:56 Legion5Pro kernel: Bluetooth: hci0: Debug lock is disabled
Oct 08 00:58:56 Legion5Pro kernel: Bluetooth: hci0: Minimum firmware build 1 week 10 2014
Oct 08 00:58:56 Legion5Pro kernel: Bluetooth: hci0: Bootloader timestamp 2019.40 buildtype 1 build 38
Oct 08 00:58:56 Legion5Pro kernel: iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
Oct 08 00:58:56 Legion5Pro kernel: iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
Oct 08 00:58:56 Legion5Pro kernel: iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
Oct 08 00:58:56 Legion5Pro kernel: iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
Oct 08 00:58:56 Legion5Pro kernel: iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 5
Oct 08 00:58:56 Legion5Pro kernel: Bluetooth: hci0: Found device firmware: intel/ibt-0040-0041.sfi
Oct 08 00:58:56 Legion5Pro kernel: Bluetooth: hci0: Boot Address: 0x100800
Oct 08 00:58:56 Legion5Pro kernel: Bluetooth: hci0: Firmware Version: 252-24.23
Oct 08 00:58:56 Legion5Pro systemd[1]: Starting Bluetooth service...
Oct 08 00:58:56 Legion5Pro bluetoothd[823]: Bluetooth daemon 5.70
Oct 08 00:58:56 Legion5Pro systemd[1]: Started Bluetooth service.
Oct 08 00:58:56 Legion5Pro bluetoothd[823]: Starting SDP server
Oct 08 00:58:56 Legion5Pro systemd[1]: Reached target Bluetooth Support.
Oct 08 00:58:56 Legion5Pro bluetoothd[823]: src/plugin.c:plugin_init() System does not support csip plugin
Oct 08 00:58:56 Legion5Pro bluetoothd[823]: profiles/audio/micp.c:micp_init() D-Bus experimental not enabled
Oct 08 00:58:56 Legion5Pro bluetoothd[823]: src/plugin.c:plugin_init() System does not support micp plugin
Oct 08 00:58:56 Legion5Pro bluetoothd[823]: src/plugin.c:plugin_init() System does not support vcp plugin
Oct 08 00:58:56 Legion5Pro bluetoothd[823]: src/plugin.c:plugin_init() System does not support mcp plugin
Oct 08 00:58:56 Legion5Pro bluetoothd[823]: src/plugin.c:plugin_init() System does not support bass plugin
Oct 08 00:58:56 Legion5Pro bluetoothd[823]: src/plugin.c:plugin_init() System does not support bap plugin
Oct 08 00:58:56 Legion5Pro bluetoothd[823]: Bluetooth management interface 1.22 initialized
Oct 08 00:58:56 Legion5Pro kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Oct 08 00:58:56 Legion5Pro kernel: Bluetooth: BNEP filters: protocol multicast
Oct 08 00:58:56 Legion5Pro kernel: Bluetooth: BNEP socket layer initialized
Oct 08 00:58:56 Legion5Pro kernel: iwlwifi 0000:00:14.3: Registered PHC clock: iwlwifi-PTP, with index: 0
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.2019] device (wlp0s20f3): set-hw-addr: set MAC address to FA:D1:A8:97:BF:CC (scanning)
Oct 08 00:58:56 Legion5Pro kernel: iwlwifi 0000:00:14.3: WRT: Invalid buffer destination
Oct 08 00:58:56 Legion5Pro kernel: iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
Oct 08 00:58:56 Legion5Pro kernel: iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
Oct 08 00:58:56 Legion5Pro kernel: iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
Oct 08 00:58:56 Legion5Pro kernel: iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x0
Oct 08 00:58:56 Legion5Pro kernel: iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 5
Oct 08 00:58:56 Legion5Pro dbus-daemon[720]: [system] Activating via systemd: service name='fi.w1.wpa_supplicant1' unit='wpa_supplicant.service' requested >
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.4710] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Oct 08 00:58:56 Legion5Pro systemd[1]: Started Network Manager.
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.4749] ovsdb: disconnected from ovsdb
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.4750] device (lo): state change: disconnected -> prepare (reason 'none', sys-iface-stat>
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.4753] device (lo): state change: prepare -> config (reason 'none', sys-iface-state: 'ex>
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.4756] device (lo): state change: config -> ip-config (reason 'none', sys-iface-state: '>
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.4765] device (lo): state change: ip-config -> ip-check (reason 'none', sys-iface-state:>
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.4811] device (lo): state change: ip-check -> secondaries (reason 'none', sys-iface-stat>
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.4814] device (lo): state change: secondaries -> activated (reason 'none', sys-iface-sta>
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.4819] device (lo): Activation: successful, device activated.
Oct 08 00:58:56 Legion5Pro systemd[1]: Starting WPA supplicant...
Oct 08 00:58:56 Legion5Pro dbus-daemon[720]: [system] Successfully activated service 'fi.w1.wpa_supplicant1'
Oct 08 00:58:56 Legion5Pro systemd[1]: Started WPA supplicant.
Oct 08 00:58:56 Legion5Pro wpa_supplicant[825]: Successfully initialized wpa_supplicant
Oct 08 00:58:56 Legion5Pro systemd[1]: Reached target Network.
Oct 08 00:58:56 Legion5Pro systemd[1]: Started auto-cpufreq - Automatic CPU speed & power optimizer for Linux.
Oct 08 00:58:56 Legion5Pro systemd[1]: Starting CUPS Scheduler...
Oct 08 00:58:56 Legion5Pro systemd[1]: Starting dnsmasq - A lightweight DHCP and caching DNS server...
Oct 08 00:58:56 Legion5Pro systemd[1]: Starting Virtualization daemon...
Oct 08 00:58:56 Legion5Pro systemd[1]: Starting Permit User Sessions...
Oct 08 00:58:56 Legion5Pro dnsmasq[828]: dnsmasq: syntax check OK.
Oct 08 00:58:56 Legion5Pro dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.ColorManager' unit='colord.service' requested b>
Oct 08 00:58:56 Legion5Pro systemd[1]: Finished Permit User Sessions.
Oct 08 00:58:56 Legion5Pro systemd[1]: Started Virtualization daemon.
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.5645] device (wlp0s20f3): supplicant interface state: internal-starting -> disconnected
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.5646] Wi-Fi P2P device controlled by interface wlp0s20f3 created
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.5648] manager: (p2p-dev-wlp0s20f3): new 802.11 Wi-Fi P2P device (/org/freedesktop/Netwo>
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.5650] device (p2p-dev-wlp0s20f3): state change: unmanaged -> unavailable (reason 'manag>
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.5654] device (wlp0s20f3): state change: unavailable -> disconnected (reason 'supplicant>
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.5658] device (p2p-dev-wlp0s20f3): state change: unavailable -> disconnected (reason 'no>
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.5794] manager: (virbr0): new Bridge device (/org/freedesktop/NetworkManager/Devices/5)
Oct 08 00:58:56 Legion5Pro kernel: bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if yo>
Oct 08 00:58:56 Legion5Pro systemd[1]: Starting Manage, Install and Generate Color Profiles...
Oct 08 00:58:56 Legion5Pro systemd[1]: Starting Hold until boot process finishes up...
Oct 08 00:58:56 Legion5Pro systemd[1]: Starting Terminate Plymouth Boot Screen...
Oct 08 00:58:56 Legion5Pro systemd[1]: Started dnsmasq - A lightweight DHCP and caching DNS server.
Oct 08 00:58:56 Legion5Pro systemd[1]: Reached target Host and Network Name Lookups.
Oct 08 00:58:56 Legion5Pro dnsmasq[855]: started, version 2.89 cachesize 150
Oct 08 00:58:56 Legion5Pro dnsmasq[855]: compile time options: IPv6 GNU-getopt DBus no-UBus i18n IDN2 DHCP DHCPv6 no-Lua TFTP conntrack ipset nftset auth c>
Oct 08 00:58:56 Legion5Pro dnsmasq[855]: DBus support enabled: connected to system bus
Oct 08 00:58:56 Legion5Pro dnsmasq[855]: no servers found in /etc/resolv.conf, will retry
Oct 08 00:58:56 Legion5Pro dnsmasq[855]: read /etc/hosts - 4 names
Oct 08 00:58:56 Legion5Pro systemd[1]: Received SIGRTMIN+21 from PID 417 (plymouthd).
Oct 08 00:58:56 Legion5Pro dbus-daemon[720]: [system] Successfully activated service 'org.freedesktop.ColorManager'
Oct 08 00:58:56 Legion5Pro systemd[1]: Started Manage, Install and Generate Color Profiles.
Oct 08 00:58:56 Legion5Pro systemd[1]: Received SIGRTMIN+21 from PID 417 (plymouthd).
Oct 08 00:58:56 Legion5Pro systemd[1]: Finished Hold until boot process finishes up.
Oct 08 00:58:56 Legion5Pro systemd[1]: Started CUPS Scheduler.
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.7031] device (virbr0): state change: unmanaged -> unavailable (reason 'connection-assum>
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.7033] device (virbr0): state change: unavailable -> disconnected (reason 'connection-as>
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.7036] device (virbr0): Activation: starting connection 'virbr0' (4a1cd187-5e52-40ce-bbf>
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.7037] device (virbr0): state change: disconnected -> prepare (reason 'none', sys-iface->
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.7038] device (virbr0): state change: prepare -> config (reason 'none', sys-iface-state:>
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.7039] device (virbr0): state change: config -> ip-config (reason 'none', sys-iface-stat>
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.7040] device (virbr0): state change: ip-config -> ip-check (reason 'none', sys-iface-st>
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.7051] device (virbr0): state change: ip-check -> secondaries (reason 'none', sys-iface->
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.7051] device (virbr0): state change: secondaries -> activated (reason 'none', sys-iface>
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.7053] manager: NetworkManager state is now CONNECTED_LOCAL
Oct 08 00:58:56 Legion5Pro NetworkManager[757]: <info>  [1696719536.7054] device (virbr0): Activation: successful, device activated.
Oct 08 00:58:56 Legion5Pro systemd[1]: Finished Terminate Plymouth Boot Screen.
Oct 08 00:58:56 Legion5Pro systemd[1]: Reached target Multi-User System.
Oct 08 00:58:56 Legion5Pro systemd[1]: Started Simple Desktop Display Manager.
Oct 08 00:58:56 Legion5Pro systemd[1]: Reached target Graphical Interface.
Oct 08 00:58:56 Legion5Pro systemd[1]: Starting TLP system startup/shutdown...
Oct 08 00:58:56 Legion5Pro dnsmasq[944]: started, version 2.89 cachesize 150
Oct 08 00:58:56 Legion5Pro dnsmasq[944]: compile time options: IPv6 GNU-getopt DBus no-UBus i18n IDN2 DHCP DHCPv6 no-Lua TFTP conntrack ipset nftset auth c>
Oct 08 00:58:56 Legion5Pro dnsmasq-dhcp[944]: DHCP, IP range 192.168.122.2 -- 192.168.122.254, lease time 1h
Oct 08 00:58:56 Legion5Pro dnsmasq-dhcp[944]: DHCP, sockets bound exclusively to interface virbr0
Oct 08 00:58:56 Legion5Pro dnsmasq[944]: no servers found in /etc/resolv.conf, will retry
Oct 08 00:58:56 Legion5Pro dnsmasq[944]: read /etc/hosts - 4 names
Oct 08 00:58:56 Legion5Pro dnsmasq[944]: read /var/lib/libvirt/dnsmasq/default.addnhosts - 0 names
Oct 08 00:58:56 Legion5Pro dnsmasq-dhcp[944]: read /var/lib/libvirt/dnsmasq/default.hostsfile
Oct 08 00:58:56 Legion5Pro libvirtd[829]: libvirt version: 9.7.0
Oct 08 00:58:56 Legion5Pro libvirtd[829]: hostname: Legion5Pro
Oct 08 00:58:56 Legion5Pro libvirtd[829]: ignoring dangling symlink '/home/corra/.steampath'
Oct 08 00:58:56 Legion5Pro libvirtd[829]: cannot open directory '/run/media/corra/e1928fad-9c6c-440c-8cbd-474beda9f896': No such file or directory
Oct 08 00:58:56 Legion5Pro libvirtd[829]: internal error: Failed to autostart storage pool 'e1928fad-9c6c-440c-8cbd-474beda9f896': cannot open directory '/>
Oct 08 00:58:56 Legion5Pro sddm[940]: Initializing...
Oct 08 00:58:56 Legion5Pro sddm[940]: Starting...
Oct 08 00:58:56 Legion5Pro sddm[940]: Logind interface found
Oct 08 00:58:56 Legion5Pro sddm[940]: Adding new display...
Oct 08 00:58:56 Legion5Pro sddm[940]: Loaded empty theme configuration
Oct 08 00:58:56 Legion5Pro sddm[940]: Xauthority path: "/run/sddm/xauth_IPJftB"
Oct 08 00:58:56 Legion5Pro sddm[940]: Using VT 2
Oct 08 00:58:56 Legion5Pro sddm[940]: Display server starting...
Oct 08 00:58:56 Legion5Pro sddm[940]: Writing cookie to "/run/sddm/xauth_IPJftB"
Oct 08 00:58:56 Legion5Pro sddm[940]: Running: /usr/bin/X -nolisten tcp -background none -seat seat0 vt2 -auth /run/sddm/xauth_IPJftB -noreset -displayfd 16
Oct 08 00:58:56 Legion5Pro acpid[717]: client connected from 963[0:0]
Oct 08 00:58:56 Legion5Pro acpid[717]: 1 client rule loaded
Oct 08 00:58:56 Legion5Pro kernel: qemu-system-x86[1062]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set
Oct 08 00:58:57 Legion5Pro tlp[942]: Applying power save settings...done.
Oct 08 00:58:57 Legion5Pro tlp[942]: Setting battery charge thresholds...done.
Oct 08 00:58:57 Legion5Pro systemd[1]: Finished TLP system startup/shutdown.
Oct 08 00:58:57 Legion5Pro systemd[1]: Startup finished in 5.009s (firmware) + 300ms (loader) + 4.030s (kernel) + 3.503s (userspace) = 12.843s.
Oct 08 00:58:57 Legion5Pro kernel: Bluetooth: hci0: Waiting for firmware download to complete
Oct 08 00:58:57 Legion5Pro kernel: Bluetooth: hci0: Firmware loaded in 1571905 usecs
Oct 08 00:58:57 Legion5Pro kernel: Bluetooth: hci0: Waiting for device to boot
Oct 08 00:58:57 Legion5Pro kernel: Bluetooth: hci0: Device booted in 15675 usecs
Oct 08 00:58:57 Legion5Pro kernel: Bluetooth: hci0: Malformed MSFT vendor event: 0x02
Oct 08 00:58:57 Legion5Pro kernel: Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-0040-0041.ddc
Oct 08 00:58:57 Legion5Pro kernel: Bluetooth: hci0: Applying Intel DDC parameters completed
Oct 08 00:58:57 Legion5Pro kernel: Bluetooth: hci0: Firmware timestamp 2023.24 buildtype 1 build 67068
Oct 08 00:58:57 Legion5Pro kernel: Bluetooth: MGMT ver 1.22
Oct 08 00:58:57 Legion5Pro kernel: NET: Registered PF_ALG protocol family
Oct 08 00:58:57 Legion5Pro kernel: nvidia: module license 'NVIDIA' taints kernel.
Oct 08 00:58:57 Legion5Pro kernel: Disabling lock debugging due to kernel taint
Oct 08 00:58:57 Legion5Pro kernel: nvidia: module license taints kernel.
Oct 08 00:58:58 Legion5Pro kernel: nvidia-nvlink: Nvlink Core is being initialized, major device number 511
Oct 08 00:58:58 Legion5Pro kernel: 
Oct 08 00:58:58 Legion5Pro kernel: nvidia 0000:01:00.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=none
Oct 08 00:58:58 Legion5Pro kernel: NVRM: loading NVIDIA UNIX x86_64 Kernel Module  535.113.01  Tue Sep 12 19:41:24 UTC 2023
Oct 08 00:58:58 Legion5Pro (udev-worker)[444]: nvidia: Process '/usr/bin/bash -c '/usr/bin/mknod -Z -m 666 /dev/nvidiactl c $(grep nvidia-frontend /proc/de>
Oct 08 00:58:58 Legion5Pro (udev-worker)[422]: nvidia: Process '/usr/bin/bash -c '/usr/bin/mknod -Z -m 666 /dev/nvidiactl c $(grep nvidia-frontend /proc/de>
Oct 08 00:58:58 Legion5Pro kernel: ACPI Warning: \_SB.NPCF._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20230331/nsarguments->
Oct 08 00:58:58 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:58:58 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:58:58 Legion5Pro (udev-worker)[422]: nvidia: Process '/usr/bin/bash -c 'for i in $(cat /proc/driver/nvidia/gpus/*/information | grep Minor | cut >
Oct 08 00:58:58 Legion5Pro (udev-worker)[444]: nvidia: Process '/usr/bin/bash -c 'for i in $(cat /proc/driver/nvidia/gpus/*/information | grep Minor | cut >
Oct 08 00:58:58 Legion5Pro (udev-worker)[444]: nvidia: Process '/bin/mknod -m 666 /dev/nvidiactl c 195 255' failed with exit code 1.
Oct 08 00:58:58 Legion5Pro (udev-worker)[444]: nvidia: Process '/bin/mknod -m 666 /dev/nvidia0   c 195 0' failed with exit code 1.
Oct 08 00:58:58 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:58:58 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:58:58 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:58:58 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:58:58 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:58:58 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:58:59 Legion5Pro sddm[940]: Setting default cursor
Oct 08 00:58:59 Legion5Pro sddm[940]: Running display setup script  "/usr/share/sddm/scripts/Xsetup"
Oct 08 00:58:59 Legion5Pro sddm[940]: Display server started.
Oct 08 00:58:59 Legion5Pro sddm[940]: Socket server starting...
Oct 08 00:58:59 Legion5Pro sddm[940]: Socket server started.
Oct 08 00:58:59 Legion5Pro sddm[940]: Loading theme configuration from "/usr/share/sddm/themes/breeze/theme.conf"
Oct 08 00:58:59 Legion5Pro sddm[940]: Greeter starting...
Oct 08 00:58:59 Legion5Pro sddm-helper[1335]: [PAM] Starting...
Oct 08 00:58:59 Legion5Pro sddm-helper[1335]: [PAM] Authenticating...
Oct 08 00:58:59 Legion5Pro sddm-helper[1335]: [PAM] returning.
Oct 08 00:58:59 Legion5Pro sddm-helper[1335]: pam_unix(sddm-greeter:session): session opened for user sddm(uid=968) by (uid=0)
Oct 08 00:58:59 Legion5Pro systemd[1]: Created slice User Slice of UID 968.
Oct 08 00:58:59 Legion5Pro systemd[1]: Starting User Runtime Directory /run/user/968...
Oct 08 00:58:59 Legion5Pro systemd-logind[723]: New session c1 of user sddm.
Oct 08 00:58:59 Legion5Pro systemd[1]: Finished User Runtime Directory /run/user/968.
Oct 08 00:58:59 Legion5Pro systemd[1]: Starting User Manager for UID 968...
Oct 08 00:58:59 Legion5Pro dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service>
Oct 08 00:58:59 Legion5Pro dbus-daemon[720]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedeskto>
Oct 08 00:58:59 Legion5Pro (systemd)[1339]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=>
Oct 08 00:58:59 Legion5Pro (systemd)[1339]: pam_unix(systemd-user:session): session opened for user sddm(uid=968) by sddm(uid=0)
Oct 08 00:58:59 Legion5Pro systemd[1339]: Queued start job for default target Main User Target.
Oct 08 00:58:59 Legion5Pro systemd[1339]: Created slice User Application Slice.
Oct 08 00:58:59 Legion5Pro systemd[1339]: Reached target Paths.
Oct 08 00:58:59 Legion5Pro systemd[1339]: Reached target Timers.
Oct 08 00:58:59 Legion5Pro systemd[1339]: Starting D-Bus User Message Bus Socket...
Oct 08 00:58:59 Legion5Pro systemd[1339]: Listening on GnuPG network certificate management daemon.
Oct 08 00:58:59 Legion5Pro systemd[1339]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Oct 08 00:58:59 Legion5Pro systemd[1339]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Oct 08 00:58:59 Legion5Pro systemd[1339]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Oct 08 00:58:59 Legion5Pro systemd[1339]: Listening on GnuPG cryptographic agent and passphrase cache.
Oct 08 00:58:59 Legion5Pro systemd[1339]: Listening on p11-kit server.
Oct 08 00:58:59 Legion5Pro systemd[1339]: Listening on PipeWire Multimedia System Socket.
Oct 08 00:58:59 Legion5Pro systemd[1339]: Listening on Sound System.
Oct 08 00:58:59 Legion5Pro systemd[1339]: Listening on D-Bus User Message Bus Socket.
Oct 08 00:58:59 Legion5Pro systemd[1339]: Reached target Sockets.
Oct 08 00:58:59 Legion5Pro systemd[1339]: Reached target Basic System.
Oct 08 00:58:59 Legion5Pro systemd[1]: Started User Manager for UID 968.
Oct 08 00:58:59 Legion5Pro systemd[1339]: Starting Update XDG user dir configuration...
Oct 08 00:58:59 Legion5Pro systemd[1]: Started Session c1 of User sddm.
Oct 08 00:58:59 Legion5Pro systemd[1339]: Finished Update XDG user dir configuration.
Oct 08 00:58:59 Legion5Pro systemd[1339]: Reached target Main User Target.
Oct 08 00:58:59 Legion5Pro systemd[1339]: Startup finished in 62ms.
Oct 08 00:58:59 Legion5Pro sddm-helper[1335]: Writing cookie to "/tmp/xauth_YTiJwc"
Oct 08 00:58:59 Legion5Pro sddm-helper[1335]: Starting X11 session: "" "/usr/bin/sddm-greeter --socket /tmp/sddm-:0-wPWxpn --theme /usr/share/sddm/themes/b>
Oct 08 00:58:59 Legion5Pro sddm[940]: Greeter session started successfully
Oct 08 00:58:59 Legion5Pro sddm-greeter[1350]: High-DPI autoscaling Enabled
Oct 08 00:58:59 Legion5Pro sddm-greeter[1350]: Reading from "/usr/local/share/wayland-sessions/plasmawayland.desktop"
Oct 08 00:58:59 Legion5Pro sddm-greeter[1350]: Reading from "/usr/share/wayland-sessions/plasmawayland.desktop"
Oct 08 00:58:59 Legion5Pro sddm-greeter[1350]: Reading from "/usr/local/share/xsessions/plasma.desktop"
Oct 08 00:58:59 Legion5Pro sddm-greeter[1350]: Reading from "/usr/share/xsessions/plasma.desktop"
Oct 08 00:58:59 Legion5Pro sddm-greeter[1350]: Loading theme configuration from "/usr/share/sddm/themes/breeze/theme.conf"
Oct 08 00:58:59 Legion5Pro systemd[1339]: Created slice User Core Session Slice.
Oct 08 00:58:59 Legion5Pro systemd[1339]: Starting D-Bus User Message Bus...
Oct 08 00:58:59 Legion5Pro systemd[1339]: Started D-Bus User Message Bus.
Oct 08 00:58:59 Legion5Pro sddm-greeter[1350]: Connected to the daemon.
Oct 08 00:58:59 Legion5Pro sddm[940]: Message received from greeter: Connect
Oct 08 00:58:59 Legion5Pro sddm-greeter[1350]: Loading file:///usr/share/sddm/themes/breeze/Main.qml...
Oct 08 00:58:59 Legion5Pro sddm-greeter[1350]: QObject: Cannot create children for a parent that is in a different thread.
                                               (Parent is QGuiApplication(0x7ffd0e6c4fa0), parent's thread is QThread(0x560bd2170a00), current thread is QT>
Oct 08 00:58:59 Legion5Pro sddm-greeter[1350]: QObject: Cannot create children for a parent that is in a different thread.
                                               (Parent is QGuiApplication(0x7ffd0e6c4fa0), parent's thread is QThread(0x560bd2170a00), current thread is QT>
Oct 08 00:58:59 Legion5Pro sddm-greeter[1350]: QObject: Cannot create children for a parent that is in a different thread.
                                               (Parent is QGuiApplication(0x7ffd0e6c4fa0), parent's thread is QThread(0x560bd2170a00), current thread is QT>
Oct 08 00:58:59 Legion5Pro sddm-greeter[1350]: QObject: Cannot create children for a parent that is in a different thread.
                                               (Parent is QGuiApplication(0x7ffd0e6c4fa0), parent's thread is QThread(0x560bd2170a00), current thread is QT>
Oct 08 00:58:59 Legion5Pro sddm-greeter[1350]: QObject::installEventFilter(): Cannot filter events for objects in a different thread.
Oct 08 00:58:59 Legion5Pro dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.UDisks2' unit='udisks2.service' requested by ':>
Oct 08 00:58:59 Legion5Pro wpa_supplicant[825]: wlp0s20f3: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=COUNTRY alpha2=NL
Oct 08 00:58:59 Legion5Pro systemd[1]: Starting Disk Manager...
Oct 08 00:58:59 Legion5Pro udisksd[1375]: udisks daemon version 2.10.1 starting
Oct 08 00:59:00 Legion5Pro dbus-daemon[720]: [system] Successfully activated service 'org.freedesktop.UDisks2'
Oct 08 00:59:00 Legion5Pro systemd[1]: Started Disk Manager.
Oct 08 00:59:00 Legion5Pro dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service' requested by ':1.>
Oct 08 00:59:00 Legion5Pro udisksd[1375]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Oct 08 00:59:00 Legion5Pro systemd[1]: Starting Daemon for power management...
Oct 08 00:59:00 Legion5Pro dbus-daemon[720]: [system] Successfully activated service 'org.freedesktop.UPower'
Oct 08 00:59:00 Legion5Pro systemd[1]: Started Daemon for power management.
Oct 08 00:59:00 Legion5Pro sddm-greeter[1350]: Failed to find a Kirigami platform plugin
Oct 08 00:59:00 Legion5Pro sddm-greeter[1350]: file:///usr/share/sddm/themes/breeze/components/VirtualKeyboard.qml:8:1: module "QtQuick.VirtualKeyboard" is>
Oct 08 00:59:00 Legion5Pro sddm-greeter[1350]: Adding view for "eDP-1" QRect(0,0 2560x1600)
Oct 08 00:59:00 Legion5Pro sddm-greeter[1350]: QDBusConnection: name 'org.freedesktop.UDisks2' had owner '' but we thought it was ':1.23'
Oct 08 00:59:00 Legion5Pro sddm-greeter[1350]: QDBusConnection: name 'org.freedesktop.UPower' had owner '' but we thought it was ':1.24'
Oct 08 00:59:00 Legion5Pro sddm-greeter[1350]: Message received from daemon: Capabilities
Oct 08 00:59:00 Legion5Pro sddm-greeter[1350]: Message received from daemon: HostName
Oct 08 00:59:01 Legion5Pro systemd[1]: systemd-rfkill.service: Deactivated successfully.
Oct 08 00:59:02 Legion5Pro NetworkManager[757]: <info>  [1696719542.0928] manager: startup complete
Oct 08 00:59:03 Legion5Pro sddm-greeter[1350]: Reading from "/usr/share/wayland-sessions/plasmawayland.desktop"
Oct 08 00:59:03 Legion5Pro sddm[940]: Message received from greeter: Login
Oct 08 00:59:03 Legion5Pro sddm[940]: Reading from "/usr/share/wayland-sessions/plasmawayland.desktop"
Oct 08 00:59:03 Legion5Pro sddm[940]: Session "/usr/share/wayland-sessions/plasmawayland.desktop" selected, command: "/usr/lib/plasma-dbus-run-session-if-n>
Oct 08 00:59:03 Legion5Pro root[1437]: ACPI group/action undefined: button/kpenter / KPENTER
Oct 08 00:59:03 Legion5Pro sddm-helper[1436]: [PAM] Starting...
Oct 08 00:59:03 Legion5Pro sddm-helper[1436]: [PAM] Authenticating...
Oct 08 00:59:03 Legion5Pro dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service>
Oct 08 00:59:03 Legion5Pro dbus-daemon[720]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedeskto>
Oct 08 00:59:03 Legion5Pro sddm-helper[1436]: [PAM] Preparing to converse...
Oct 08 00:59:03 Legion5Pro sddm-helper[1436]: [PAM] Conversation with 1 messages
Oct 08 00:59:03 Legion5Pro sddm-helper[1436]: pam_kwallet5(sddm:auth): pam_kwallet5: pam_sm_authenticate
Oct 08 00:59:03 Legion5Pro sddm-helper[1436]: [PAM] returning.
Oct 08 00:59:03 Legion5Pro sddm[940]: Authentication for user  "corra"  successful
Oct 08 00:59:03 Legion5Pro sddm-greeter[1350]: Message received from daemon: LoginSucceeded
Oct 08 00:59:03 Legion5Pro sddm-helper[1436]: pam_kwallet5(sddm:setcred): pam_kwallet5: pam_sm_setcred
Oct 08 00:59:03 Legion5Pro sddm-helper[1436]: pam_unix(sddm:session): session opened for user corra(uid=1000) by corra(uid=0)
Oct 08 00:59:03 Legion5Pro NetworkManager[757]: <info>  [1696719543.4700] policy: auto-activating connection 'HEESAKKERTJES' (6c0ce101-290a-40b7-8b4c-1720b>
Oct 08 00:59:03 Legion5Pro NetworkManager[757]: <info>  [1696719543.4704] device (wlp0s20f3): Activation: starting connection 'HEESAKKERTJES' (6c0ce101-290>
Oct 08 00:59:03 Legion5Pro NetworkManager[757]: <info>  [1696719543.4705] device (wlp0s20f3): state change: disconnected -> prepare (reason 'none', sys-ifa>
Oct 08 00:59:03 Legion5Pro NetworkManager[757]: <info>  [1696719543.4707] manager: NetworkManager state is now CONNECTING
Oct 08 00:59:03 Legion5Pro systemd[1]: Created slice User Slice of UID 1000.
Oct 08 00:59:03 Legion5Pro systemd[1]: Starting User Runtime Directory /run/user/1000...
Oct 08 00:59:03 Legion5Pro systemd-logind[723]: New session 2 of user corra.
Oct 08 00:59:03 Legion5Pro NetworkManager[757]: <info>  [1696719543.5091] device (wlp0s20f3): set-hw-addr: reset MAC address to 38:7A:0E:A6:11:A7 (preserve)
Oct 08 00:59:03 Legion5Pro NetworkManager[757]: <info>  [1696719543.5125] device (wlp0s20f3): state change: prepare -> config (reason 'none', sys-iface-sta>
Oct 08 00:59:03 Legion5Pro NetworkManager[757]: <info>  [1696719543.5129] device (wlp0s20f3): Activation: (wifi) access point 'HEESAKKERTJES' has security,>
Oct 08 00:59:03 Legion5Pro NetworkManager[757]: <info>  [1696719543.5129] device (wlp0s20f3): state change: config -> need-auth (reason 'none', sys-iface-s>
Oct 08 00:59:03 Legion5Pro NetworkManager[757]: <info>  [1696719543.5131] sup-iface[aef6c262bb5e008c,0,wlp0s20f3]: wps: type pbc start...
Oct 08 00:59:03 Legion5Pro NetworkManager[757]: <warn>  [1696719543.5135] device (wlp0s20f3): no secrets: No agents were available for this request.
Oct 08 00:59:03 Legion5Pro NetworkManager[757]: <info>  [1696719543.5136] device (wlp0s20f3): state change: need-auth -> failed (reason 'no-secrets', sys-i>
Oct 08 00:59:03 Legion5Pro NetworkManager[757]: <info>  [1696719543.5138] manager: NetworkManager state is now CONNECTED_LOCAL
Oct 08 00:59:03 Legion5Pro NetworkManager[757]: <warn>  [1696719543.5140] device (wlp0s20f3): Activation: failed for connection 'HEESAKKERTJES'
Oct 08 00:59:03 Legion5Pro NetworkManager[757]: <info>  [1696719543.5142] device (wlp0s20f3): state change: failed -> disconnected (reason 'none', sys-ifac>
Oct 08 00:59:03 Legion5Pro sddm-helper[1335]: [PAM] Closing session
Oct 08 00:59:03 Legion5Pro sddm-helper[1335]: pam_unix(sddm-greeter:session): session closed for user sddm
Oct 08 00:59:03 Legion5Pro sddm-helper[1335]: [PAM] Ended.
Oct 08 00:59:03 Legion5Pro sddm[940]: Auth: sddm-helper exited successfully
Oct 08 00:59:03 Legion5Pro sddm[940]: Greeter stopped. SDDM::Auth::HELPER_SUCCESS
Oct 08 00:59:03 Legion5Pro systemd[1]: Finished User Runtime Directory /run/user/1000.
Oct 08 00:59:03 Legion5Pro systemd[1]: session-c1.scope: Deactivated successfully.
Oct 08 00:59:03 Legion5Pro NetworkManager[757]: <info>  [1696719543.5773] device (wlp0s20f3): set-hw-addr: set MAC address to 7E:67:22:73:F8:0E (scanning)
Oct 08 00:59:03 Legion5Pro wpa_supplicant[825]: wlp0s20f3: WPS-CANCEL
Oct 08 00:59:03 Legion5Pro NetworkManager[757]: <info>  [1696719543.5850] device (wlp0s20f3): supplicant interface state: disconnected -> interface_disabled
Oct 08 00:59:03 Legion5Pro NetworkManager[757]: <info>  [1696719543.5850] device (p2p-dev-wlp0s20f3): supplicant management interface state: disconnected ->
Oct 08 00:59:03 Legion5Pro systemd-logind[723]: Session c1 logged out. Waiting for processes to exit.
Oct 08 00:59:03 Legion5Pro systemd[1]: Starting User Manager for UID 1000...
Oct 08 00:59:03 Legion5Pro systemd-logind[723]: Removed session c1.
Oct 08 00:59:03 Legion5Pro dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service>
Oct 08 00:59:03 Legion5Pro dbus-daemon[720]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedeskto>
Oct 08 00:59:03 Legion5Pro (systemd)[1440]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=>
Oct 08 00:59:03 Legion5Pro (systemd)[1440]: pam_unix(systemd-user:session): session opened for user corra(uid=1000) by corra(uid=0)
Oct 08 00:59:03 Legion5Pro NetworkManager[757]: <info>  [1696719543.6256] device (wlp0s20f3): supplicant interface state: interface_disabled -> inactive
Oct 08 00:59:03 Legion5Pro NetworkManager[757]: <info>  [1696719543.6256] device (p2p-dev-wlp0s20f3): supplicant management interface state: interface_disa>
Oct 08 00:59:03 Legion5Pro systemd[1440]: Queued start job for default target Main User Target.
Oct 08 00:59:03 Legion5Pro systemd-journald[345]: /var/log/journal/a93767a5bc454b23a22131b91a1aa170/user-1000.journal: Journal file uses a different sequen>
Oct 08 00:59:03 Legion5Pro sddm-helper[1436]: pam_kwallet5(sddm:session): pam_kwallet5: pam_sm_open_session
Oct 08 00:59:03 Legion5Pro systemd[1440]: Created slice User Application Slice.
Oct 08 00:59:03 Legion5Pro systemd[1440]: Reached target Paths.
Oct 08 00:59:03 Legion5Pro systemd[1440]: Reached target Timers.
Oct 08 00:59:03 Legion5Pro systemd[1440]: Starting D-Bus User Message Bus Socket...
Oct 08 00:59:03 Legion5Pro systemd[1440]: Listening on GnuPG network certificate management daemon.
Oct 08 00:59:03 Legion5Pro systemd[1440]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Oct 08 00:59:03 Legion5Pro systemd[1440]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Oct 08 00:59:03 Legion5Pro systemd[1440]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Oct 08 00:59:03 Legion5Pro systemd[1440]: Listening on GnuPG cryptographic agent and passphrase cache.
Oct 08 00:59:03 Legion5Pro systemd[1440]: Listening on p11-kit server.
Oct 08 00:59:03 Legion5Pro systemd[1440]: Listening on PipeWire Multimedia System Socket.
Oct 08 00:59:03 Legion5Pro systemd[1440]: Listening on Sound System.
Oct 08 00:59:03 Legion5Pro systemd[1440]: Listening on D-Bus User Message Bus Socket.
Oct 08 00:59:03 Legion5Pro systemd[1440]: Reached target Sockets.
Oct 08 00:59:03 Legion5Pro systemd[1440]: Reached target Basic System.
Oct 08 00:59:03 Legion5Pro systemd[1]: Started User Manager for UID 1000.
Oct 08 00:59:03 Legion5Pro systemd[1440]: Starting Update XDG user dir configuration...
Oct 08 00:59:03 Legion5Pro systemd[1]: Started Session 2 of User corra.
Oct 08 00:59:03 Legion5Pro systemd[1440]: Finished Update XDG user dir configuration.
Oct 08 00:59:03 Legion5Pro systemd[1440]: Reached target Main User Target.
Oct 08 00:59:03 Legion5Pro systemd[1440]: Startup finished in 143ms.
Oct 08 00:59:03 Legion5Pro sddm-helper[1456]: pam_kwallet5: final socket path: /run/user/1000/kwallet5.socket
Oct 08 00:59:03 Legion5Pro sddm-helper[1436]: Starting Wayland user session: "/usr/share/sddm/scripts/wayland-session" "/usr/lib/plasma-dbus-run-session-if>
Oct 08 00:59:03 Legion5Pro sddm-helper[1458]: Jumping to VT 1
Oct 08 00:59:03 Legion5Pro sddm-helper[1458]: VT mode didn't need to be fixed
Oct 08 00:59:04 Legion5Pro sddm[940]: Session started true
Oct 08 00:59:04 Legion5Pro dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.locale1' unit='dbus-org.freedesktop.locale1.ser>
Oct 08 00:59:04 Legion5Pro systemd[1]: Starting Locale Service...
Oct 08 00:59:04 Legion5Pro dbus-daemon[720]: [system] Successfully activated service 'org.freedesktop.locale1'
Oct 08 00:59:04 Legion5Pro systemd[1]: Started Locale Service.
Oct 08 00:59:04 Legion5Pro systemd[1440]: Created slice User Core Session Slice.
Oct 08 00:59:04 Legion5Pro systemd[1440]: Starting D-Bus User Message Bus...
Oct 08 00:59:04 Legion5Pro systemd[1440]: Started D-Bus User Message Bus.
Oct 08 00:59:04 Legion5Pro dbus-daemon[1470]: [session uid=1000 pid=1470] Successfully activated service 'org.freedesktop.systemd1'
Oct 08 00:59:04 Legion5Pro systemd[1440]: Reloading requested from client PID 1458 ('startplasma-way')...
Oct 08 00:59:04 Legion5Pro systemd[1440]: Reloading...
Oct 08 00:59:04 Legion5Pro systemd[1440]: Reloading finished in 158 ms.
Oct 08 00:59:04 Legion5Pro dbus-daemon[1470]: [session uid=1000 pid=1470] Activating service name='org.kde.KSplash' requested by ':1.0' (uid=1000 pid=1458 >
Oct 08 00:59:04 Legion5Pro systemd[1440]: Created slice User Background Tasks Slice.
Oct 08 00:59:04 Legion5Pro systemd[1440]: Reached target Session services which should run early before the graphical session is brought up.
Oct 08 00:59:04 Legion5Pro systemd[1440]: Starting KDE Window Manager...
Oct 08 00:59:04 Legion5Pro systemd[1440]: Starting Baloo File Indexer Daemon...
Oct 08 00:59:04 Legion5Pro systemd[1440]: Started KDE Window Manager.
Oct 08 00:59:04 Legion5Pro systemd[1440]: Starting KDE Config Module Initialization...
Oct 08 00:59:04 Legion5Pro systemd[1440]: Starting Splash screen shown during boot...
Oct 08 00:59:04 Legion5Pro systemd[1440]: Started Baloo File Indexer Daemon.
Oct 08 00:59:04 Legion5Pro dbus-daemon[1470]: [session uid=1000 pid=1470] Activating via systemd: service name='org.freedesktop.portal.Desktop' unit='xdg-d>
Oct 08 00:59:04 Legion5Pro systemd[1440]: Starting Portal service...
Oct 08 00:59:04 Legion5Pro dbus-daemon[1470]: [session uid=1000 pid=1470] Activating via systemd: service name='org.freedesktop.portal.Documents' unit='xdg>
Oct 08 00:59:04 Legion5Pro systemd[1440]: Starting flatpak document portal service...
Oct 08 00:59:04 Legion5Pro dbus-daemon[1470]: [session uid=1000 pid=1470] Activating via systemd: service name='org.freedesktop.impl.portal.PermissionStore>
Oct 08 00:59:04 Legion5Pro systemd[1440]: Starting sandboxed app permission store...
Oct 08 00:59:04 Legion5Pro dbus-daemon[1470]: [session uid=1000 pid=1470] Successfully activated service 'org.freedesktop.impl.portal.PermissionStore'
Oct 08 00:59:04 Legion5Pro systemd[1440]: Started sandboxed app permission store.
Oct 08 00:59:04 Legion5Pro dbus-daemon[1470]: [session uid=1000 pid=1470] Successfully activated service 'org.freedesktop.portal.Documents'
Oct 08 00:59:04 Legion5Pro systemd[1440]: Started flatpak document portal service.
Oct 08 00:59:04 Legion5Pro dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service' reque>
Oct 08 00:59:04 Legion5Pro systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Oct 08 00:59:04 Legion5Pro dbus-daemon[720]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
Oct 08 00:59:04 Legion5Pro systemd[1]: Started RealtimeKit Scheduling Policy Service.
Oct 08 00:59:04 Legion5Pro rtkit-daemon[1519]: Successfully called chroot.
Oct 08 00:59:04 Legion5Pro rtkit-daemon[1519]: Successfully dropped privileges.
Oct 08 00:59:04 Legion5Pro rtkit-daemon[1519]: Successfully limited resources.
Oct 08 00:59:04 Legion5Pro rtkit-daemon[1519]: Running.
Oct 08 00:59:04 Legion5Pro rtkit-daemon[1519]: Canary thread running.
Oct 08 00:59:04 Legion5Pro rtkit-daemon[1519]: Watchdog thread running.
Oct 08 00:59:04 Legion5Pro rtkit-daemon[1519]: Supervising 0 threads of 0 processes of 0 users.
Oct 08 00:59:04 Legion5Pro rtkit-daemon[1519]: Supervising 0 threads of 0 processes of 0 users.
Oct 08 00:59:04 Legion5Pro rtkit-daemon[1519]: Supervising 0 threads of 0 processes of 0 users.
Oct 08 00:59:04 Legion5Pro dbus-daemon[1470]: [session uid=1000 pid=1470] Activating via systemd: service name='org.freedesktop.impl.portal.desktop.kde' un>
Oct 08 00:59:04 Legion5Pro kwin_wayland[1484]: No backend specified, automatically choosing drm
Oct 08 00:59:04 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:04 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:05 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:05 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:05 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:05 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:05 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:05 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:05 Legion5Pro kwin_wayland[1484]: OpenGL vendor string:                   Intel
Oct 08 00:59:05 Legion5Pro kwin_wayland[1484]: OpenGL renderer string:                 Mesa Intel(R) Graphics (ADL GT2)
Oct 08 00:59:05 Legion5Pro kwin_wayland[1484]: OpenGL version string:                  4.6 (Core Profile) Mesa 23.2.1-arch1.2
Oct 08 00:59:05 Legion5Pro kwin_wayland[1484]: OpenGL shading language version string: 4.60
Oct 08 00:59:05 Legion5Pro kwin_wayland[1484]: Driver:                                 Intel
Oct 08 00:59:05 Legion5Pro kwin_wayland[1484]: GPU class:                              Unknown
Oct 08 00:59:05 Legion5Pro kwin_wayland[1484]: OpenGL version:                         4.6
Oct 08 00:59:05 Legion5Pro kwin_wayland[1484]: GLSL version:                           4.60
Oct 08 00:59:05 Legion5Pro kwin_wayland[1484]: Mesa version:                           23.2.1
Oct 08 00:59:05 Legion5Pro kwin_wayland[1484]: Linux kernel version:                   6.5.5
Oct 08 00:59:05 Legion5Pro kwin_wayland[1484]: Requires strict binding:                no
Oct 08 00:59:05 Legion5Pro kwin_wayland[1484]: GLSL shaders:                           yes
Oct 08 00:59:05 Legion5Pro kwin_wayland[1484]: Texture NPOT support:                   yes
Oct 08 00:59:05 Legion5Pro kwin_wayland[1484]: Virtual Machine:                        no
Oct 08 00:59:05 Legion5Pro kwin_wayland[1484]: kwin_xkbcommon: XKB: inet:323:58: unrecognized keysym "XF86EmojiPicker"
Oct 08 00:59:05 Legion5Pro kwin_wayland[1484]: kwin_xkbcommon: XKB: inet:324:58: unrecognized keysym "XF86Dictate"
Oct 08 00:59:05 Legion5Pro kwin_wayland_wrapper[1569]: (WW) Option "-listen" for file descriptors is deprecated
Oct 08 00:59:05 Legion5Pro kwin_wayland_wrapper[1569]: Please use "-listenfd" instead.
Oct 08 00:59:05 Legion5Pro kwin_wayland_wrapper[1569]: (WW) Option "-listen" for file descriptors is deprecated
Oct 08 00:59:05 Legion5Pro kwin_wayland_wrapper[1569]: Please use "-listenfd" instead.
Oct 08 00:59:05 Legion5Pro systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Oct 08 00:59:05 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:05 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:05 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:05 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:05 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:05 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:06 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:06 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:06 Legion5Pro kcminit_startup[1490]: Initializing  "/usr/lib/qt/plugins/plasma/kcms/systemsettings/kcm_fonts.so"
Oct 08 00:59:06 Legion5Pro kwin_wayland_wrapper[1631]: The XKEYBOARD keymap compiler (xkbcomp) reports:
Oct 08 00:59:06 Legion5Pro kwin_wayland_wrapper[1631]: > Warning:          Unsupported maximum keycode 708, clipping.
Oct 08 00:59:06 Legion5Pro kwin_wayland_wrapper[1631]: >                   X11 cannot support keycodes above 255.
Oct 08 00:59:06 Legion5Pro kwin_wayland_wrapper[1631]: Errors from xkbcomp are not fatal to the X server
Oct 08 00:59:06 Legion5Pro kcminit_startup[1490]: Initializing  "/usr/lib/qt/plugins/plasma/kcms/systemsettings/kcm_style.so"
Oct 08 00:59:07 Legion5Pro kcminit_startup[1490]: Initializing  "/usr/lib/qt/plugins/plasma/kcms/systemsettings/kcm_mouse.so"
Oct 08 00:59:07 Legion5Pro systemd[1440]: Started KDE Config Module Initialization.
Oct 08 00:59:07 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:07 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:07 Legion5Pro systemd[1440]: Starting KDE Session Management Server...
Oct 08 00:59:07 Legion5Pro systemd[1440]: Started Unlock kwallet from pam credentials.
Oct 08 00:59:07 Legion5Pro systemd[1440]: Starting KDE Daemon...
Oct 08 00:59:07 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:07 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:07 Legion5Pro ksmserver[1637]: Qt: Session management error: networkIdsList argument is NULL
Oct 08 00:59:07 Legion5Pro systemd[1440]: Started KDE Session Management Server.
Oct 08 00:59:07 Legion5Pro systemd[1440]: Starting KDE Plasma Workspace...
Oct 08 00:59:07 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:07 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:07 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:07 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:07 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:07 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:07 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:07 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:07 Legion5Pro dbus-daemon[1470]: [session uid=1000 pid=1470] Successfully activated service 'org.kde.KSplash'
Oct 08 00:59:08 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:08 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:08 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:08 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:08 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:08 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:08 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:08 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:08 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:08 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:08 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:08 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:08 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:08 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:08 Legion5Pro systemd[1440]: Started KDE Daemon.
Oct 08 00:59:08 Legion5Pro systemd[1440]: Starting KDE Configuration Module Initialization (Phase 1)...
Oct 08 00:59:08 Legion5Pro kcminit_startup[1490]: Initializing  "/usr/lib/qt/plugins/plasma/kcms/systemsettings/kcm_touchpad.so"
Oct 08 00:59:08 Legion5Pro kcminit_startup[1490]: Initializing  "/usr/lib/qt/plugins/plasma/kcms/systemsettings/kcm_kgamma.so"
Oct 08 00:59:08 Legion5Pro systemd[1440]: Finished KDE Configuration Module Initialization (Phase 1).
Oct 08 00:59:08 Legion5Pro kernel: warning: `kded5' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
Oct 08 00:59:08 Legion5Pro NetworkManager[757]: <info>  [1696719548.8901] agent-manager: agent[b044528c425b8a27,:1.37/org.kde.plasma.networkmanagement/1000>
Oct 08 00:59:08 Legion5Pro kded5[1642]: print-manager.kded: unable to register service to dbus
Oct 08 00:59:08 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:08 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:08 Legion5Pro dbus-daemon[1470]: [session uid=1000 pid=1470] Activating via systemd: service name='ca.desrt.dconf' unit='dconf.service' reques>
Oct 08 00:59:08 Legion5Pro systemd[1440]: Starting User preferences database...
Oct 08 00:59:08 Legion5Pro dbus-daemon[1470]: [session uid=1000 pid=1470] Successfully activated service 'ca.desrt.dconf'
Oct 08 00:59:08 Legion5Pro systemd[1440]: Started User preferences database.
Oct 08 00:59:08 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:08 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:09 Legion5Pro dbus-daemon[1470]: [session uid=1000 pid=1470] Activating via systemd: service name='org.kde.ActivityManager' unit='plasma-kacti>
Oct 08 00:59:09 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:09 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:09 Legion5Pro kded5[1642]: Installing the delayed initialization callback.
Oct 08 00:59:09 Legion5Pro kded5[1642]: colord: X11 not detect disabling
Oct 08 00:59:09 Legion5Pro systemd[1440]: Starting KActivityManager Activity manager Service...
Oct 08 00:59:09 Legion5Pro plasmashell[1700]: Checking screens: available: (QScreen(0x55d3a9fac7a0, name="eDP-1")) redundant: QHash() fake: QSet() all: (QS>
Oct 08 00:59:09 Legion5Pro systemd[1440]: Started KDE Plasma Workspace.
Oct 08 00:59:09 Legion5Pro systemd[1440]: Reached target KDE Plasma Workspace Core.
Oct 08 00:59:09 Legion5Pro dbus-daemon[1470]: [session uid=1000 pid=1470] Successfully activated service 'org.kde.ActivityManager'
Oct 08 00:59:09 Legion5Pro systemd[1440]: Started Proxies GTK DBus menus to a Plasma readable format.
Oct 08 00:59:09 Legion5Pro systemd[1440]: Starting KDE PolicyKit Authentication Agent...
Oct 08 00:59:09 Legion5Pro systemd[1440]: Starting Powerdevil...
Oct 08 00:59:09 Legion5Pro systemd[1440]: Starting Xdg Desktop Portal For KDE...
Oct 08 00:59:09 Legion5Pro systemd[1440]: Started Handle legacy xembed system tray icons.
Oct 08 00:59:09 Legion5Pro systemd[1440]: Started KActivityManager Activity manager Service.
Oct 08 00:59:09 Legion5Pro libddcutil[1877]: Initializing.  ddcutil version 1.4.1
Oct 08 00:59:09 Legion5Pro libddcutil[1877]: Library initialization complete.
Oct 08 00:59:09 Legion5Pro dbus-daemon[720]: [system] Activating service name='org.kde.powerdevil.discretegpuhelper' requested by ':1.38' (uid=1000 pid=187>
Oct 08 00:59:09 Legion5Pro plasmashell[1700]: Aborting shell load: The activity manager daemon (kactivitymanagerd) is not running.
Oct 08 00:59:09 Legion5Pro plasmashell[1700]: If this Plasma has been installed into a custom prefix, verify that its D-Bus services dir is known to the sy>
Oct 08 00:59:09 Legion5Pro plasmashell[1700]: Aborting shell load: The activity manager daemon (kactivitymanagerd) is not running.
Oct 08 00:59:09 Legion5Pro plasmashell[1700]: If this Plasma has been installed into a custom prefix, verify that its D-Bus services dir is known to the sy>
Oct 08 00:59:09 Legion5Pro dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.ModemManager1' unit='dbus-org.freedesktop.Modem>
Oct 08 00:59:09 Legion5Pro dbus-daemon[720]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit dbus-org.fr>
Oct 08 00:59:09 Legion5Pro dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.ModemManager1' unit='dbus-org.freedesktop.Modem>
Oct 08 00:59:09 Legion5Pro dbus-daemon[720]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit dbus-org.fr>
Oct 08 00:59:09 Legion5Pro kded5[1642]: kf.modemmanagerqt: Failed enumerating MM objects: "org.freedesktop.systemd1.NoSuchUnit" 
                                         "Unit dbus-org.freedesktop.ModemManager1.service not found."
Oct 08 00:59:09 Legion5Pro kded5[1642]: Delayed initialization.
Oct 08 00:59:09 Legion5Pro kded5[1642]: Reloading the khotkeys configuration
Oct 08 00:59:09 Legion5Pro kded5[1642]: Version 2 File!
Oct 08 00:59:09 Legion5Pro kded5[1642]: true
Oct 08 00:59:09 Legion5Pro kded5[1642]: Imported file "/usr/share/khotkeys/defaults.khotkeys"
Oct 08 00:59:09 Legion5Pro plasmashell[1700]: kf.plasma.quick: Applet preload policy set to 1
Oct 08 00:59:09 Legion5Pro kded5[1642]: Imported file "/usr/share/khotkeys/kde32b1.khotkeys"
Oct 08 00:59:09 Legion5Pro kded5[1642]: Imported file "/usr/share/khotkeys/konqueror_gestures_kde321.khotkeys"
Oct 08 00:59:09 Legion5Pro dbus-daemon[720]: [system] Successfully activated service 'org.kde.powerdevil.discretegpuhelper'
Oct 08 00:59:09 Legion5Pro dbus-daemon[720]: [system] Activating service name='org.kde.powerdevil.chargethresholdhelper' requested by ':1.38' (uid=1000 pid>
Oct 08 00:59:09 Legion5Pro kded5[1642]: 
Oct 08 00:59:09 Legion5Pro dbus-daemon[720]: [system] Successfully activated service 'org.kde.powerdevil.chargethresholdhelper'
Oct 08 00:59:09 Legion5Pro dbus-daemon[1470]: [session uid=1000 pid=1470] Activating via systemd: service name='org.bluez.obex' unit='dbus-org.bluez.obex.s>
Oct 08 00:59:09 Legion5Pro dbus-daemon[720]: [system] Activating service name='org.kde.powerdevil.backlighthelper' requested by ':1.38' (uid=1000 pid=1877 >
Oct 08 00:59:09 Legion5Pro dbus-daemon[720]: [system] Activating service name='org.kde.kded.smart' requested by ':1.37' (uid=1000 pid=1642 comm="/usr/bin/k>
Oct 08 00:59:09 Legion5Pro systemd[1440]: Starting Bluetooth OBEX service...
Oct 08 00:59:09 Legion5Pro dbus-daemon[720]: [system] Successfully activated service 'org.kde.kded.smart'
Oct 08 00:59:09 Legion5Pro obexd[1948]: OBEX daemon 5.70
Oct 08 00:59:09 Legion5Pro dbus-daemon[720]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
Oct 08 00:59:09 Legion5Pro dbus-daemon[1470]: [session uid=1000 pid=1470] Successfully activated service 'org.bluez.obex'
Oct 08 00:59:09 Legion5Pro systemd[1440]: Started Bluetooth OBEX service.
Oct 08 00:59:09 Legion5Pro kded5[1642]: QDBusAbstractAdaptor: Cannot relay signal KDEDModule::moduleDeleted(KDEDModule*): Pointers are not supported: KDEDM>
Oct 08 00:59:09 Legion5Pro kded5[1642]: Known activities: ("8b984049-d058-439a-8687-826ee952f0d9")
Oct 08 00:59:09 Legion5Pro org_kde_powerdevil[1877]: org.kde.powerdevil: org.kde.powerdevil.chargethresholdhelper.getthreshold failed "Charge thresholds ar>
Oct 08 00:59:09 Legion5Pro kded5[1642]: kscreen.kded: PowerDevil SuspendSession action not available!
Oct 08 00:59:09 Legion5Pro kernel: Bluetooth: RFCOMM TTY layer initialized
Oct 08 00:59:09 Legion5Pro kernel: Bluetooth: RFCOMM socket layer initialized
Oct 08 00:59:09 Legion5Pro kernel: Bluetooth: RFCOMM ver 1.11
Oct 08 00:59:09 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:09 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:09 Legion5Pro kcminit[1972]: Initializing  "/usr/lib/qt/plugins/plasma/kcms/systemsettings/kcm_fonts.so"
Oct 08 00:59:09 Legion5Pro systemd[1440]: Started Powerdevil.
Oct 08 00:59:09 Legion5Pro org_kde_powerdevil[1877]: org.kde.powerdevil: Handle button events action could not check for screen configuration
Oct 08 00:59:09 Legion5Pro org_kde_powerdevil[1877]: org.kde.powerdevil: org.kde.powerdevil.chargethresholdhelper.getthreshold failed "Charge thresholds ar>
Oct 08 00:59:09 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:09 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:09 Legion5Pro plasmashell[1700]: file:///usr/lib/qt/qml/org/kde/kirigami.2/templates/InlineMessage.qml:265:13: QML SelectableLabel: Binding lo>
Oct 08 00:59:09 Legion5Pro plasmashell[1700]: qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
Oct 08 00:59:09 Legion5Pro plasmashell[1700]: qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
Oct 08 00:59:09 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:09 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:09 Legion5Pro kioslave5[2012]: QObject::connect: No such slot DesktopProtocol::_k_slotRedirection(KIO::Job *, QUrl)
Oct 08 00:59:09 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:09 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:09 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:09 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:09 Legion5Pro plasmashell[1700]: qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
Oct 08 00:59:09 Legion5Pro plasmashell[1700]: qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
Oct 08 00:59:09 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:09 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:09 Legion5Pro plasmashell[1700]: Trying to use rootObject before initialization is completed, whilst using setInitializationDelayed. Forcing c>
Oct 08 00:59:09 Legion5Pro systemd[1440]: Starting Sound Service...
Oct 08 00:59:09 Legion5Pro rtkit-daemon[1519]: Successfully made thread 2047 of process 2047 owned by '1000' high priority at nice level -11.
Oct 08 00:59:09 Legion5Pro rtkit-daemon[1519]: Supervising 1 threads of 1 processes of 1 users.
Oct 08 00:59:09 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:09 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:09 Legion5Pro plasmashell[1700]: qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
Oct 08 00:59:09 Legion5Pro polkit-kde-authentication-agent-1[1876]: KXMessages used on non-X11 platform! This is an application bug.
Oct 08 00:59:09 Legion5Pro systemd[1440]: Started KDE PolicyKit Authentication Agent.
Oct 08 00:59:09 Legion5Pro polkit-kde-authentication-agent-1[1876]: New PolkitAgentListener  0x564f24d23d80
Oct 08 00:59:09 Legion5Pro polkit-kde-authentication-agent-1[1876]: Adding new listener  PolkitQt1::Agent::Listener(0x564f24d22680) for  0x564f24d23d80
Oct 08 00:59:09 Legion5Pro polkit-kde-authentication-agent-1[1876]: Listener online
Oct 08 00:59:09 Legion5Pro systemd[1440]: Reached target KDE Plasma Workspace.
Oct 08 00:59:09 Legion5Pro systemd[1440]: Reached target Current graphical user session.
Oct 08 00:59:09 Legion5Pro systemd[1440]: Reached target plasma-workspace-wayland.target.
Oct 08 00:59:09 Legion5Pro systemd[1440]: Starting AT-SPI D-Bus Bus...
Oct 08 00:59:09 Legion5Pro polkitd[758]: Registered Authentication Agent for unix-session:2 (system bus name :1.58 [/usr/lib/polkit-kde-authentication-agen>
Oct 08 00:59:09 Legion5Pro systemd[1440]: Starting Autorandr...
Oct 08 00:59:09 Legion5Pro polkit-kde-authentication-agent-1[1876]: Authentication agent result: true
Oct 08 00:59:09 Legion5Pro systemd[1440]: Starting Autorandr...
Oct 08 00:59:09 Legion5Pro systemd[1440]: Starting Geoclue Demo agent...
Oct 08 00:59:09 Legion5Pro systemd[1440]: Starting Accessibility...
Oct 08 00:59:09 Legion5Pro systemd[1440]: Starting Klipper...
Oct 08 00:59:09 Legion5Pro systemd[1440]: Starting Discover...
Oct 08 00:59:09 Legion5Pro systemd[1440]: Starting org.kde.kclockd-autostart...
Oct 08 00:59:09 Legion5Pro systemd[1440]: Starting KGpg...
Oct 08 00:59:09 Legion5Pro systemd[1440]: Starting Welcome Center...
Oct 08 00:59:09 Legion5Pro systemd[1440]: Starting PulseAudio Sound System...
Oct 08 00:59:09 Legion5Pro systemd[1440]: Starting KSplash "ready" Stage...
Oct 08 00:59:09 Legion5Pro systemd[1440]: Starting KDE Session Restoration...
Oct 08 00:59:09 Legion5Pro systemd[1440]: app-at\x2dspi\x2ddbus\x2dbus@autostart.service: Skipped due to 'exec-condition'.
Oct 08 00:59:09 Legion5Pro systemd[1440]: Condition check resulted in AT-SPI D-Bus Bus being skipped.
Oct 08 00:59:09 Legion5Pro systemd[1440]: app-org.kde.kgpg@autostart.service: Skipped due to 'exec-condition'.
Oct 08 00:59:09 Legion5Pro systemd[1440]: Condition check resulted in KGpg being skipped.
Oct 08 00:59:09 Legion5Pro systemd[1440]: Started org.kde.kclockd-autostart.
Oct 08 00:59:09 Legion5Pro systemd[1440]: Started Autorandr.
Oct 08 00:59:09 Legion5Pro systemd[1440]: Started Autorandr.
Oct 08 00:59:09 Legion5Pro systemd[1440]: Started Geoclue Demo agent.
Oct 08 00:59:09 Legion5Pro systemd[1440]: Started Accessibility.
Oct 08 00:59:09 Legion5Pro systemd[1440]: Started Discover.
Oct 08 00:59:09 Legion5Pro systemd[1440]: Started PulseAudio Sound System.
Oct 08 00:59:09 Legion5Pro systemd[1440]: app-klipper@autostart.service: Skipped due to 'exec-condition'.
Oct 08 00:59:09 Legion5Pro systemd[1440]: Condition check resulted in Klipper being skipped.
Oct 08 00:59:09 Legion5Pro kwin_wayland[1484]: kf.config.core: "\"fsrestore1\" - conversion of \"0,0,0,0\" to QRect failed"
Oct 08 00:59:09 Legion5Pro systemd[1440]: app-org.kde.plasma\x2dwelcome@autostart.service: Skipped due to 'exec-condition'.
Oct 08 00:59:09 Legion5Pro systemd[1440]: Condition check resulted in Welcome Center being skipped.
Oct 08 00:59:09 Legion5Pro systemd[1440]: Reached target Startup of XDG autostart applications.
Oct 08 00:59:09 Legion5Pro systemd[1440]: Started Firefox Web Browser - Web Browser.
Oct 08 00:59:09 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:09 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:09 Legion5Pro kaccess[2104]: Xlib XKB extension major= 1  minor= 0
Oct 08 00:59:10 Legion5Pro systemd[1440]: Finished KSplash "ready" Stage.
Oct 08 00:59:10 Legion5Pro autorandr[2100]: Detected Wayland session 'wayland-0'. Exiting.
Oct 08 00:59:10 Legion5Pro autorandr[2098]: Detected Wayland session 'wayland-0'. Exiting.
Oct 08 00:59:10 Legion5Pro systemd[1440]: app-autorandr\x2dkde@autostart.service: Main process exited, code=exited, status=1/FAILURE
Oct 08 00:59:10 Legion5Pro systemd[1440]: app-autorandr\x2dkde@autostart.service: Failed with result 'exit-code'.
Oct 08 00:59:10 Legion5Pro systemd[1440]: app-autorandr@autostart.service: Main process exited, code=exited, status=1/FAILURE
Oct 08 00:59:10 Legion5Pro systemd[1440]: app-autorandr@autostart.service: Failed with result 'exit-code'.
Oct 08 00:59:10 Legion5Pro dbus-daemon[1470]: [session uid=1000 pid=1470] Successfully activated service 'org.freedesktop.impl.portal.desktop.kde'
Oct 08 00:59:10 Legion5Pro systemd[1440]: Started Xdg Desktop Portal For KDE.
Oct 08 00:59:10 Legion5Pro plasmashell[1700]: Cyclic dependency detected between "file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/>
Oct 08 00:59:10 Legion5Pro plasmashell[1700]: Cyclic dependency detected between "file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/>
Oct 08 00:59:10 Legion5Pro systemd[1440]: Started PipeWire Multimedia Service.
Oct 08 00:59:10 Legion5Pro systemd[1440]: Started PipeWire Media Session Manager.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Supervising 1 threads of 1 processes of 1 users.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Supervising 1 threads of 1 processes of 1 users.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Supervising 1 threads of 1 processes of 1 users.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Supervising 1 threads of 1 processes of 1 users.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Supervising 1 threads of 1 processes of 1 users.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Supervising 1 threads of 1 processes of 1 users.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Successfully made thread 2159 of process 2159 owned by '1000' high priority at nice level -11.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Supervising 2 threads of 2 processes of 1 users.
Oct 08 00:59:10 Legion5Pro dbus-daemon[1470]: [session uid=1000 pid=1470] Successfully activated service 'org.freedesktop.portal.Desktop'
Oct 08 00:59:10 Legion5Pro systemd[1440]: Started Portal service.
Oct 08 00:59:10 Legion5Pro systemd[1440]: Finished KDE Session Restoration.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Successfully made thread 2185 of process 2182 owned by '1000' RT at priority 20.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Supervising 3 threads of 3 processes of 1 users.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Successfully made thread 2186 of process 2159 owned by '1000' RT at priority 20.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Supervising 4 threads of 3 processes of 1 users.
Oct 08 00:59:10 Legion5Pro kaccess[2104]: X server XKB extension major= 1  minor= 0
Oct 08 00:59:10 Legion5Pro plasmashell[1700]: file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml:95: TypeError: Canno>
Oct 08 00:59:10 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:10 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:10 Legion5Pro systemd[1440]: Finished Splash screen shown during boot.
Oct 08 00:59:10 Legion5Pro plasmashell[1700]: qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
Oct 08 00:59:10 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:10 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:10 Legion5Pro plasmashell[1700]: file:///usr/lib/qt/qml/org/kde/plasma/extras/PlaceholderMessage.qml:238:5: QML Heading: Binding loop detected>
Oct 08 00:59:10 Legion5Pro plasmashell[1700]: kf5idletime_wayland: This plugin does not support polling idle time
Oct 08 00:59:10 Legion5Pro plasmashell[1700]: file:///usr/share/plasma/plasmoids/org.kde.plasma.printmanager/contents/ui/PrinterItem.qml:22:5: Unable to as>
Oct 08 00:59:10 Legion5Pro plasmashell[1700]: QFont::setPointSizeF: Point size <= 0 (0.000000), must be greater than 0
Oct 08 00:59:10 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:10 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Supervising 4 threads of 3 processes of 1 users.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Successfully made thread 2300 of process 2047 owned by '1000' RT at priority 5.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Supervising 5 threads of 3 processes of 1 users.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Supervising 5 threads of 3 processes of 1 users.
Oct 08 00:59:10 Legion5Pro ksmserver[2120]: [GFX1-]: vaapitest: ERROR
Oct 08 00:59:10 Legion5Pro ksmserver[2120]: [GFX1-]: vaapitest: VA-API test failed: failed to initialise VAAPI connection.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Successfully made thread 2302 of process 2047 owned by '1000' RT at priority 5.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Supervising 6 threads of 3 processes of 1 users.
Oct 08 00:59:10 Legion5Pro pulseaudio[2047]: stat('/etc/pulse/default.pa.d'): No such file or directory
Oct 08 00:59:10 Legion5Pro systemd[1440]: Started Sound Service.
Oct 08 00:59:10 Legion5Pro dbus-daemon[1470]: [session uid=1000 pid=1470] Activating via systemd: service name='org.a11y.Bus' unit='at-spi-dbus-bus.service>
Oct 08 00:59:10 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:10 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:10 Legion5Pro systemd[1440]: Starting Accessibility services bus...
Oct 08 00:59:10 Legion5Pro dbus-daemon[1470]: [session uid=1000 pid=1470] Successfully activated service 'org.a11y.Bus'
Oct 08 00:59:10 Legion5Pro systemd[1440]: Started Accessibility services bus.
Oct 08 00:59:10 Legion5Pro dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.timedate1' unit='dbus-org.freedesktop.timedate1>
Oct 08 00:59:10 Legion5Pro systemd[1]: Starting Time & Date Service...
Oct 08 00:59:10 Legion5Pro dbus-daemon[720]: [system] Successfully activated service 'org.freedesktop.timedate1'
Oct 08 00:59:10 Legion5Pro systemd[1]: Started Time & Date Service.
Oct 08 00:59:10 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:10 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:10 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:10 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Supervising 6 threads of 3 processes of 1 users.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Supervising 6 threads of 3 processes of 1 users.
Oct 08 00:59:10 Legion5Pro kclockd[2087]: Starting kclockd 23.08.1
Oct 08 00:59:10 Legion5Pro kclockd[2087]: Requesting portal to run in the background and autostart...
Oct 08 00:59:10 Legion5Pro kclockd[2087]: Registered on DBus: true
Oct 08 00:59:10 Legion5Pro kclockd[2087]: PowerDevil found, using it for time tracking.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Supervising 6 threads of 3 processes of 1 users.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Supervising 6 threads of 3 processes of 1 users.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Supervising 6 threads of 3 processes of 1 users.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Supervising 6 threads of 3 processes of 1 users.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Successfully made thread 2452 of process 2120 owned by '1000' RT at priority 10.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Supervising 7 threads of 4 processes of 1 users.
Oct 08 00:59:10 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:10 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.7854] policy: auto-activating connection 'HEESAKKERTJES' (6c0ce101-290a-40b7-8b4c-1720b>
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.7856] device (wlp0s20f3): Activation: starting connection 'HEESAKKERTJES' (6c0ce101-290>
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.7858] device (wlp0s20f3): state change: disconnected -> prepare (reason 'none', sys-ifa>
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.7860] manager: NetworkManager state is now CONNECTING
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.8347] device (wlp0s20f3): set-hw-addr: reset MAC address to 38:7A:0E:A6:11:A7 (preserve)
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.8370] device (wlp0s20f3): state change: prepare -> config (reason 'none', sys-iface-sta>
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.8371] device (wlp0s20f3): Activation: (wifi) access point 'HEESAKKERTJES' has security,>
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.8371] device (wlp0s20f3): state change: config -> need-auth (reason 'none', sys-iface-s>
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.8372] sup-iface[aef6c262bb5e008c,0,wlp0s20f3]: wps: type pbc start...
Oct 08 00:59:10 Legion5Pro kded5[1642]: kf.networkmanagerqt: void NetworkManager::ConnectionPrivate::onPropertiesChanged(const QVariantMap&) Unhandled prop>
Oct 08 00:59:10 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:10 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:10 Legion5Pro plasmashell[1700]: kf.networkmanagerqt: void NetworkManager::ConnectionPrivate::onPropertiesChanged(const QVariantMap&) Unhandle>
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.8461] device (wlp0s20f3): state change: need-auth -> prepare (reason 'none', sys-iface->
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.8463] device (wlp0s20f3): state change: prepare -> config (reason 'none', sys-iface-sta>
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.8464] device (wlp0s20f3): Activation: (wifi) connection 'HEESAKKERTJES' has security, a>
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.8465] Config: added 'ssid' value 'HEESAKKERTJES'
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.8465] Config: added 'scan_ssid' value '1'
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.8465] Config: added 'bgscan' value 'simple:30:-65:300'
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.8465] Config: added 'key_mgmt' value 'WPA-PSK WPA-PSK-SHA256 FT-PSK SAE FT-SAE'
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.8465] Config: added 'auth_alg' value 'OPEN'
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.8465] Config: added 'psk' value '<hidden>'
Oct 08 00:59:10 Legion5Pro wpa_supplicant[825]: wlp0s20f3: WPS-CANCEL
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.8835] device (wlp0s20f3): supplicant interface state: inactive -> disconnected
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.8836] device (p2p-dev-wlp0s20f3): supplicant management interface state: inactive -> di>
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Supervising 7 threads of 4 processes of 1 users.
Oct 08 00:59:10 Legion5Pro rtkit-daemon[1519]: Supervising 7 threads of 4 processes of 1 users.
Oct 08 00:59:10 Legion5Pro wpa_supplicant[825]: wlp0s20f3: SME: Trying to authenticate with e4:75:dc:ab:99:6e (SSID='HEESAKKERTJES' freq=5280 MHz)
Oct 08 00:59:10 Legion5Pro kernel: wlp0s20f3: authenticate with e4:75:dc:ab:99:6e
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.8949] device (wlp0s20f3): supplicant interface state: disconnected -> authenticating
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.8949] device (p2p-dev-wlp0s20f3): supplicant management interface state: disconnected ->
Oct 08 00:59:10 Legion5Pro kernel: wlp0s20f3: send auth to e4:75:dc:ab:99:6e (try 1/3)
Oct 08 00:59:10 Legion5Pro wpa_supplicant[825]: wlp0s20f3: Trying to associate with e4:75:dc:ab:99:6e (SSID='HEESAKKERTJES' freq=5280 MHz)
Oct 08 00:59:10 Legion5Pro kernel: wlp0s20f3: authenticated
Oct 08 00:59:10 Legion5Pro kernel: wlp0s20f3: associate with e4:75:dc:ab:99:6e (try 1/3)
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.9265] device (wlp0s20f3): supplicant interface state: authenticating -> associating
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.9266] device (p2p-dev-wlp0s20f3): supplicant management interface state: authenticating>
Oct 08 00:59:10 Legion5Pro kernel: wlp0s20f3: RX AssocResp from e4:75:dc:ab:99:6e (capab=0x1131 status=0 aid=5)
Oct 08 00:59:10 Legion5Pro wpa_supplicant[825]: wlp0s20f3: Associated with e4:75:dc:ab:99:6e
Oct 08 00:59:10 Legion5Pro wpa_supplicant[825]: wlp0s20f3: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Oct 08 00:59:10 Legion5Pro kernel: wlp0s20f3: associated
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.9512] device (wlp0s20f3): supplicant interface state: associating -> associated
Oct 08 00:59:10 Legion5Pro NetworkManager[757]: <info>  [1696719550.9513] device (p2p-dev-wlp0s20f3): supplicant management interface state: associating ->>
Oct 08 00:59:10 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:10 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:10 Legion5Pro DiscoverNotifier[2106]: couldn't load "/usr/lib/qt/plugins/discover-notifier/DiscoverPackageKitNotifier.so" because "Cannot load>
Oct 08 00:59:11 Legion5Pro kded5[1642]: Registering ":1.45/StatusNotifierItem" to system tray
Oct 08 00:59:11 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:11 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:11 Legion5Pro wpa_supplicant[825]: wlp0s20f3: WPA: Key negotiation completed with e4:75:dc:ab:99:6e [PTK=CCMP GTK=CCMP]
Oct 08 00:59:11 Legion5Pro wpa_supplicant[825]: wlp0s20f3: CTRL-EVENT-CONNECTED - Connection to e4:75:dc:ab:99:6e completed [id=0 id_str=]
Oct 08 00:59:11 Legion5Pro NetworkManager[757]: <info>  [1696719551.1336] device (wlp0s20f3): supplicant interface state: associated -> completed
Oct 08 00:59:11 Legion5Pro NetworkManager[757]: <info>  [1696719551.1336] device (wlp0s20f3): Activation: (wifi) Stage 2 of 5 (Device Configure) successful>
Oct 08 00:59:11 Legion5Pro NetworkManager[757]: <info>  [1696719551.1336] device (p2p-dev-wlp0s20f3): supplicant management interface state: associated -> >
Oct 08 00:59:11 Legion5Pro NetworkManager[757]: <info>  [1696719551.1337] device (wlp0s20f3): state change: config -> ip-config (reason 'none', sys-iface-s>
Oct 08 00:59:11 Legion5Pro NetworkManager[757]: <info>  [1696719551.1340] dhcp4 (wlp0s20f3): activation: beginning transaction (timeout in 45 seconds)
Oct 08 00:59:11 Legion5Pro wpa_supplicant[825]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-38 noise=9999 txrate=1000
Oct 08 00:59:11 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:11 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:11 Legion5Pro NetworkManager[757]: <info>  [1696719551.1903] dhcp4 (wlp0s20f3): state changed new lease, address=192.168.2.22
Oct 08 00:59:11 Legion5Pro NetworkManager[757]: <info>  [1696719551.1905] policy: set 'HEESAKKERTJES' (wlp0s20f3) as default for IPv4 routing and DNS
Oct 08 00:59:11 Legion5Pro dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.resolve1' unit='dbus-org.freedesktop.resolve1.s>
Oct 08 00:59:11 Legion5Pro dbus-daemon[720]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.resolve1.service': Unit dbus-org.freedes>
Oct 08 00:59:11 Legion5Pro dnsmasq[855]: reading /etc/resolv.conf
Oct 08 00:59:11 Legion5Pro dnsmasq[944]: reading /etc/resolv.conf
Oct 08 00:59:11 Legion5Pro dnsmasq[944]: using nameserver 192.168.2.254#53
Oct 08 00:59:11 Legion5Pro dnsmasq[855]: using nameserver 192.168.2.254#53
Oct 08 00:59:11 Legion5Pro NetworkManager[757]: <info>  [1696719551.1952] device (wlp0s20f3): state change: ip-config -> ip-check (reason 'none', sys-iface>
Oct 08 00:59:11 Legion5Pro dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-di>
Oct 08 00:59:11 Legion5Pro systemd[1]: Starting Network Manager Script Dispatcher Service...
Oct 08 00:59:11 Legion5Pro dbus-daemon[720]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Oct 08 00:59:11 Legion5Pro systemd[1]: Started Network Manager Script Dispatcher Service.
Oct 08 00:59:11 Legion5Pro NetworkManager[757]: <info>  [1696719551.2318] device (wlp0s20f3): state change: ip-check -> secondaries (reason 'none', sys-ifa>
Oct 08 00:59:11 Legion5Pro NetworkManager[757]: <info>  [1696719551.2319] device (wlp0s20f3): state change: secondaries -> activated (reason 'none', sys-if>
Oct 08 00:59:11 Legion5Pro NetworkManager[757]: <info>  [1696719551.2320] manager: NetworkManager state is now CONNECTED_SITE
Oct 08 00:59:11 Legion5Pro NetworkManager[757]: <info>  [1696719551.2329] device (wlp0s20f3): Activation: successful, device activated.
Oct 08 00:59:11 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:11 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:11 Legion5Pro NetworkManager[757]: <info>  [1696719551.3077] manager: NetworkManager state is now CONNECTED_GLOBAL
Oct 08 00:59:11 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:11 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:11 Legion5Pro acpid[717]: client 963[0:0] has disconnected
Oct 08 00:59:11 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:11 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:11 Legion5Pro plasmashell[1700]: file:///usr/lib/qt/qml/org/kde/plasma/extras/PlaceholderMessage.qml:238:5: QML Heading: Binding loop detected>
Oct 08 00:59:11 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:11 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:11 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:11 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:11 Legion5Pro rtkit-daemon[1519]: Supervising 7 threads of 4 processes of 1 users.
Oct 08 00:59:11 Legion5Pro rtkit-daemon[1519]: Supervising 7 threads of 4 processes of 1 users.
Oct 08 00:59:11 Legion5Pro rtkit-daemon[1519]: Supervising 7 threads of 4 processes of 1 users.
Oct 08 00:59:11 Legion5Pro rtkit-daemon[1519]: Supervising 7 threads of 4 processes of 1 users.
Oct 08 00:59:11 Legion5Pro rtkit-daemon[1519]: Supervising 7 threads of 4 processes of 1 users.
Oct 08 00:59:11 Legion5Pro rtkit-daemon[1519]: Supervising 7 threads of 4 processes of 1 users.
Oct 08 00:59:12 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:12 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:12 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:12 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:12 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:12 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:12 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:12 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:12 Legion5Pro kstart5[2788]: Omitting both --window and --windowclass arguments is not recommended
Oct 08 00:59:12 Legion5Pro systemd[1440]: Started konsole.
Oct 08 00:59:12 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:12 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:12 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:12 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:12 Legion5Pro plasmashell[1700]: file:///usr/lib/qt/qml/org/kde/plasma/extras/PlaceholderMessage.qml:238:5: QML Heading: Binding loop detected>
Oct 08 00:59:12 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:12 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:12 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 00:59:12 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 00:59:12 Legion5Pro plasmashell[1700]: file:///usr/lib/qt/qml/org/kde/plasma/extras/PlaceholderMessage.qml:238:5: QML Heading: Binding loop detected>
Oct 08 00:59:12 Legion5Pro plasmashell[1700]: file:///usr/lib/qt/qml/org/kde/plasma/extras/PlaceholderMessage.qml:238:5: QML Heading: Binding loop detected>
Oct 08 00:59:13 Legion5Pro rtkit-daemon[1519]: Supervising 7 threads of 4 processes of 1 users.
Oct 08 00:59:13 Legion5Pro rtkit-daemon[1519]: Supervising 7 threads of 4 processes of 1 users.
Oct 08 00:59:13 Legion5Pro systemd[1]: Stopping User Manager for UID 968...
Oct 08 00:59:13 Legion5Pro systemd[1339]: Activating special unit Exit the Session...
Oct 08 00:59:13 Legion5Pro systemd[1339]: Stopped target Main User Target.
Oct 08 00:59:13 Legion5Pro systemd[1339]: Stopping D-Bus User Message Bus...
Oct 08 00:59:13 Legion5Pro systemd[1339]: Stopped D-Bus User Message Bus.
Oct 08 00:59:13 Legion5Pro systemd[1339]: Removed slice User Core Session Slice.
Oct 08 00:59:13 Legion5Pro systemd[1339]: Stopped target Basic System.
Oct 08 00:59:13 Legion5Pro systemd[1339]: Stopped target Paths.
Oct 08 00:59:13 Legion5Pro systemd[1339]: Stopped target Sockets.
Oct 08 00:59:13 Legion5Pro systemd[1339]: Stopped target Timers.
Oct 08 00:59:13 Legion5Pro systemd[1339]: Closed D-Bus User Message Bus Socket.
Oct 08 00:59:13 Legion5Pro systemd[1339]: Closed GnuPG network certificate management daemon.
Oct 08 00:59:13 Legion5Pro systemd[1339]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
Oct 08 00:59:13 Legion5Pro systemd[1339]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
Oct 08 00:59:13 Legion5Pro systemd[1339]: Closed GnuPG cryptographic agent (ssh-agent emulation).
Oct 08 00:59:13 Legion5Pro systemd[1339]: Closed GnuPG cryptographic agent and passphrase cache.
Oct 08 00:59:13 Legion5Pro systemd[1339]: Closed p11-kit server.
Oct 08 00:59:13 Legion5Pro systemd[1339]: Closed PipeWire Multimedia System Socket.
Oct 08 00:59:13 Legion5Pro systemd[1339]: Closed Sound System.
Oct 08 00:59:13 Legion5Pro systemd[1339]: Removed slice User Application Slice.
Oct 08 00:59:13 Legion5Pro systemd[1339]: Reached target Shutdown.
Oct 08 00:59:13 Legion5Pro systemd[1339]: Finished Exit the Session.
Oct 08 00:59:13 Legion5Pro systemd[1339]: Reached target Exit the Session.
Oct 08 00:59:13 Legion5Pro systemd[1]: user@968.service: Deactivated successfully.
Oct 08 00:59:13 Legion5Pro plasmashell[1700]: file:///usr/lib/qt/qml/org/kde/plasma/extras/PlaceholderMessage.qml:238:5: QML Heading: Binding loop detected>
Oct 08 00:59:13 Legion5Pro plasmashell[1700]: file:///usr/lib/qt/qml/org/kde/plasma/extras/PlaceholderMessage.qml:238:5: QML Heading: Binding loop detected>
Oct 08 00:59:13 Legion5Pro systemd[1]: Stopped User Manager for UID 968.
Oct 08 00:59:13 Legion5Pro systemd[1]: Stopping User Runtime Directory /run/user/968...
Oct 08 00:59:13 Legion5Pro systemd[1]: run-user-968.mount: Deactivated successfully.
Oct 08 00:59:13 Legion5Pro systemd[1]: user-runtime-dir@968.service: Deactivated successfully.
Oct 08 00:59:14 Legion5Pro systemd[1]: Stopped User Runtime Directory /run/user/968.
Oct 08 00:59:14 Legion5Pro systemd[1]: Removed slice User Slice of UID 968.
Oct 08 00:59:14 Legion5Pro systemd[1]: user-968.slice: Consumed 1.054s CPU time.
Oct 08 00:59:14 Legion5Pro plasmashell[1700]: file:///usr/lib/qt/qml/org/kde/plasma/extras/PlaceholderMessage.qml:238:5: QML Heading: Binding loop detected>
Oct 08 00:59:14 Legion5Pro plasmashell[1700]: file:///usr/lib/qt/qml/org/kde/plasma/extras/PlaceholderMessage.qml:238:5: QML Heading: Binding loop detected>
Oct 08 00:59:18 Legion5Pro dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service>
Oct 08 00:59:18 Legion5Pro dbus-daemon[720]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedeskto>
Oct 08 00:59:20 Legion5Pro sudo[2967]:    corra : TTY=pts/1 ; PWD=/home/corra ; USER=root ; COMMAND=/usr/bin/journalctl -b
Oct 08 00:59:20 Legion5Pro sudo[2967]: pam_unix(sudo:session): session opened for user root(uid=0) by corra(uid=1000)
Oct 08 00:59:21 Legion5Pro systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Oct 08 00:59:26 Legion5Pro systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Oct 08 00:59:34 Legion5Pro systemd[1]: systemd-localed.service: Deactivated successfully.
Oct 08 00:59:40 Legion5Pro systemd[1]: systemd-timedated.service: Deactivated successfully.
Oct 08 01:00:56 Legion5Pro systemd[1]: libvirtd.service: Deactivated successfully.
Oct 08 01:00:56 Legion5Pro systemd[1]: libvirtd.service: Unit process 944 (dnsmasq) remains running after unit stopped.
Oct 08 01:00:56 Legion5Pro systemd[1]: libvirtd.service: Unit process 946 (dnsmasq) remains running after unit stopped.
Oct 08 01:01:46 Legion5Pro NetworkManager[757]: <info>  [1696719706.3033] dhcp6 (wlp0s20f3): activation: beginning transaction (timeout in 45 seconds)
Oct 08 01:01:46 Legion5Pro NetworkManager[757]: <info>  [1696719706.3039] policy: set 'HEESAKKERTJES' (wlp0s20f3) as default for IPv6 routing and DNS
Oct 08 01:01:46 Legion5Pro dnsmasq[855]: reading /etc/resolv.conf
Oct 08 01:01:46 Legion5Pro dnsmasq[855]: using nameserver 192.168.2.254#53
Oct 08 01:01:46 Legion5Pro dnsmasq[855]: using nameserver fe80::8edc:2ff:fed7:adf0%wlp0s20f3#53
Oct 08 01:01:46 Legion5Pro dnsmasq[944]: reading /etc/resolv.conf
Oct 08 01:01:46 Legion5Pro dnsmasq[944]: using nameserver 192.168.2.254#53
Oct 08 01:01:46 Legion5Pro dnsmasq[944]: using nameserver fe80::8edc:2ff:fed7:adf0%wlp0s20f3#53
Oct 08 01:01:46 Legion5Pro NetworkManager[757]: <info>  [1696719706.6085] dhcp6 (wlp0s20f3): state changed new lease
Oct 08 01:01:46 Legion5Pro dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-di>
Oct 08 01:01:46 Legion5Pro systemd[1]: Starting Network Manager Script Dispatcher Service...
Oct 08 01:01:46 Legion5Pro dbus-daemon[720]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Oct 08 01:01:46 Legion5Pro systemd[1]: Started Network Manager Script Dispatcher Service.
Oct 08 01:01:56 Legion5Pro systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Oct 08 01:02:23 Legion5Pro root[4450]: ACPI group/action undefined: button/left / LEFT
Oct 08 01:04:30 Legion5Pro wpa_supplicant[825]: wlp0s20f3: CTRL-EVENT-SIGNAL-CHANGE above=1 signal=-33 noise=9999 txrate=866700
Oct 08 01:09:04 Legion5Pro dbus-daemon[720]: [system] Activating service name='org.kde.powerdevil.backlighthelper' requested by ':1.38' (uid=1000 pid=1877 >
Oct 08 01:09:04 Legion5Pro dbus-daemon[720]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
Oct 08 01:09:05 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 01:09:05 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 01:09:05 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 01:09:05 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 01:09:05 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 01:09:05 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 01:09:05 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: RmInitAdapter failed! (0x24:0x72:1436)
Oct 08 01:09:05 Legion5Pro kernel: NVRM: GPU 0000:01:00.0: rm_init_adapter failed, device minor number 0
Oct 08 01:09:05 Legion5Pro kscreenlocker_greet[7575]: kf.kirigami: Failed to find a Kirigami platform plugin
Oct 08 01:09:05 Legion5Pro kscreenlocker_greet[7575]: qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
Oct 08 01:09:06 Legion5Pro kscreenlocker_greet[7575]: qt.qpa.wayland: Wayland does not support QWindow::requestActivate()
Oct 08 01:13:55 Legion5Pro systemd[1]: Starting Cleanup of Temporary Directories...
Oct 08 01:13:56 Legion5Pro systemd[1]: systemd-tmpfiles-clean.service: Deactivated successfully.
Oct 08 01:13:56 Legion5Pro systemd[1]: Finished Cleanup of Temporary Directories.
Oct 08 01:19:04 Legion5Pro systemd-logind[723]: The system will suspend now!
Oct 08 01:19:04 Legion5Pro NetworkManager[757]: <info>  [1696720744.8741] manager: sleep: sleep requested (sleeping: no  enabled: yes)
Oct 08 01:19:04 Legion5Pro NetworkManager[757]: <info>  [1696720744.8741] device (enp52s0): state change: unavailable -> unmanaged (reason 'sleeping', sys->
Oct 08 01:19:04 Legion5Pro NetworkManager[757]: <info>  [1696720744.8839] device (p2p-dev-wlp0s20f3): state change: disconnected -> unmanaged (reason 'slee>
Oct 08 01:19:04 Legion5Pro NetworkManager[757]: <info>  [1696720744.8841] manager: NetworkManager state is now ASLEEP
Oct 08 01:19:04 Legion5Pro NetworkManager[757]: <info>  [1696720744.8842] device (wlp0s20f3): state change: activated -> deactivating (reason 'sleeping', s>
Oct 08 01:19:04 Legion5Pro kded5[1642]: org.kde.plasma.nm.kded: Unhandled active connection state change:  3
Oct 08 01:19:04 Legion5Pro dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-di>
Oct 08 01:19:04 Legion5Pro systemd[1]: Starting Network Manager Script Dispatcher Service...
Oct 08 01:19:04 Legion5Pro dbus-daemon[720]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Oct 08 01:19:04 Legion5Pro systemd[1]: Started Network Manager Script Dispatcher Service.
Oct 08 01:19:04 Legion5Pro kernel: wlp0s20f3: deauthenticating from e4:75:dc:ab:99:6e by local choice (Reason: 3=DEAUTH_LEAVING)
Oct 08 01:19:05 Legion5Pro wpa_supplicant[825]: wlp0s20f3: CTRL-EVENT-DISCONNECTED bssid=e4:75:dc:ab:99:6e reason=3 locally_generated=1
Oct 08 01:19:05 Legion5Pro wpa_supplicant[825]: wlp0s20f3: CTRL-EVENT-DSCP-POLICY clear_all

Offline

Board footer

Powered by FluxBB