You are not logged in.

#1 2024-02-21 13:09:49

LabRicecat
Member
Registered: 2023-09-10
Posts: 36

[SOLVED] GPU drivers broken after update. Cant start display servers.

Hello!

I updated my system recently using paru (paru -Syyu) and now I am unable to start any display servers.
I am usually using X and start it manually by using the startx script. When that stopped working (The exact errors and what I could track down follows below) I tried Wayland with Sway, but there were no different results in that.

First of all, the error message produced by startx looks like this:

$ startx
X.Org X server 1.21.1.11
X Protocol Version 11, Revision 0
Current Operating System: Linux meow 6.7.5-arch1-1 #1 SMP PREEMPT_DYNAMIC Sat 17 Feb 2024 14:02:33 +0000 x86_64
Kernel command line: root=UUID=34...45 rw

Current version of pixman: 0.43.2
    Before reporting Problems, check http://wiki.x.org
    to make sure that you have the latest version.
Markers: ...
(==) Lof file: "/home/labricecat/.local/share/xorg/Xorg.0.log", Time: Wed Jan 24 16:39:59 2024
(==) Using system config directory "/usr/share/X11/xorg.conf.d"
The XKEYBOARD keymap compiler (xkbcomp= reports:
> Warning: Could not resove kesym XF86CameraAccessEnable
> Warning: Could not resolve keysym XF86CameraAccessDisable
...
Check the log file at "/home/labricecat/.local/share/xorg/Xorg.0.log" for additional Information.(EE) (II) AIGLX Suspending AIGLX clients for VT switch(EE) Server terminated with error (1). Closing file.o
xinit: connection to X server lost

My .xinitrc:

#!/bin/sh

userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap

# merge in defaults and keymaps

if [ -f $sysresources ]; then
    xrdb -merge $sysresources

fi

if [ -f $sysmodmap ]; then
    xmodmap $sysmodmap
fi

if [ -f "$userresources" ]; then
    xrdb -merge "$userresources"

fi

if [ -f "$usermodmap" ]; then
    xmodmap "$usermodmap"
fi

# start some nice programs

if [ -d /etc/X11/xinit/xinitrc.d ] ; then
 for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
  [ -x "$f" ] && . "$f"
 done
 unset f
fi

rm -rf /home/labricecat/nul/*
loadkeys de-latin1-nodeadkeys
setxkbmap -layout de -variant nodeadkeys
rm -rf ~/.i3/i3log.log
exec i3 -V >> ~/.i3/i3log.log 2>&1 &
pipewire

Checking said log file yields the following:

[   103.512] Current Operating System: Linux meow 6.7.5-arch1-1 #1 SMP PREEMPT_DYNAMIC Sat, 17 Feb 2024 14:02:33 +0000 x86_64
[   103.512] Kernel command line: root=UUID=34f603b6-0a05-4e2e-b45d-7887beeb5645 rw
[   103.512]  
[   103.512] Current version of pixman: 0.43.2
[   103.512] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[   103.512] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   103.512] (==) Log file: "/home/labricecat/.local/share/xorg/Xorg.0.log", Time: Wed Jan 24 16:39:59 2024
[   103.512] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[   103.512] (==) No Layout section.  Using the first Screen section.
[   103.512] (==) No screen section available. Using defaults.
[   103.512] (**) |-->Screen "Default Screen Section" (0)
[   103.512] (**) |   |-->Monitor "<default monitor>"
[   103.512] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[   103.512] (==) Automatically adding devices
[   103.512] (==) Automatically enabling devices
[   103.512] (==) Automatically adding GPU devices
[   103.512] (==) Automatically binding GPU devices
[   103.512] (==) Max clients allowed: 256, resource mask: 0x1fffff
[   103.512] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[   103.512] 	Entry deleted from font path.
[   103.512] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[   103.512] 	Entry deleted from font path.
[   103.512] (==) FontPath set to:
	/usr/share/fonts/misc,
	/usr/share/fonts/TTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[   103.512] (==) ModulePath set to "/usr/lib/xorg/modules"
[   103.512] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[   103.512] (II) Module ABI versions:
[   103.512] 	X.Org ANSI C Emulation: 0.4
[   103.512] 	X.Org Video Driver: 25.2
[   103.512] 	X.Org XInput driver : 24.4
[   103.512] 	X.Org Server Extension : 10.0
[   103.513] (++) using VT number 1

[   103.514] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[   103.515] (II) xfree86: Adding drm device (/dev/dri/card0)
[   103.515] (II) Platform probe for /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card0
[   103.515] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 13 paused 0
[   103.517] (--) PCI:*(1@0:0:0) 1002:6810:1043:0464 rev 0, Mem @ 0xe0000000/268435456, 0xf7e00000/262144, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072
[   103.517] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[   103.517] (II) LoadModule: "glx"
[   103.517] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[   103.518] (II) Module glx: vendor="X.Org Foundation"
[   103.518] 	compiled for 1.21.1.11, module version = 1.0.0
[   103.518] 	ABI class: X.Org Server Extension, version 10.0
[   103.518] (==) Matched ati as autoconfigured driver 0
[   103.518] (==) Matched modesetting as autoconfigured driver 1
[   103.518] (==) Matched fbdev as autoconfigured driver 2
[   103.518] (==) Matched vesa as autoconfigured driver 3
[   103.518] (==) Assigned the driver to the xf86ConfigLayout
[   103.518] (II) LoadModule: "ati"
[   103.518] (WW) Warning, couldn't open module ati
[   103.518] (EE) Failed to load module "ati" (module does not exist, 0)
[   103.518] (II) LoadModule: "modesetting"
[   103.518] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[   103.519] (II) Module modesetting: vendor="X.Org Foundation"
[   103.519] 	compiled for 1.21.1.11, module version = 1.21.1
[   103.519] 	Module class: X.Org Video Driver
[   103.519] 	ABI class: X.Org Video Driver, version 25.2
[   103.519] (II) LoadModule: "fbdev"
[   103.519] (WW) Warning, couldn't open module fbdev
[   103.519] (EE) Failed to load module "fbdev" (module does not exist, 0)
[   103.519] (II) LoadModule: "vesa"
[   103.519] (WW) Warning, couldn't open module vesa
[   103.519] (EE) Failed to load module "vesa" (module does not exist, 0)
[   103.519] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[   103.519] (II) modeset(0): using drv /dev/dri/card0
[   103.519] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[   103.519] (II) modeset(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[   103.519] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[   103.519] (==) modeset(0): RGB weight 888
[   103.519] (==) modeset(0): Default visual is TrueColor
[   103.519] (II) Loading sub module "glamoregl"
[   103.519] (II) LoadModule: "glamoregl"
[   103.519] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[   103.522] (II) Module glamoregl: vendor="X.Org Foundation"
[   103.522] 	compiled for 1.21.1.11, module version = 1.0.1
[   103.522] 	ABI class: X.Org ANSI C Emulation, version 0.4
[   103.552] (II) modeset(0): glamor X acceleration enabled on PITCAIRN (radeonsi, , LLVM 16.0.6, DRM 2.50, 6.7.5-arch1-1)
[   103.552] (II) modeset(0): glamor initialized
[   103.552] (==) modeset(0): VariableRefresh: disabled
[   103.552] (==) modeset(0): AsyncFlipSecondaries: disabled
[   103.579] (II) modeset(0): Output DP-1 has no monitor section
[   103.580] (II) modeset(0): Output HDMI-1 has no monitor section
[   103.611] (II) modeset(0): Output DVI-I-1 has no monitor section
[   103.612] (II) modeset(0): Output DVI-D-1 has no monitor section
[   103.639] (II) modeset(0): EDID for output DP-1
[   103.640] (II) modeset(0): EDID for output HDMI-1
[   103.671] (II) modeset(0): EDID for output DVI-I-1
[   103.671] (II) modeset(0): Manufacturer: HWP  Model: 2847  Serial#: 16843009
[   103.671] (II) modeset(0): Year: 2010  Week: 49
[   103.671] (II) modeset(0): EDID Version: 1.3
[   103.671] (II) modeset(0): Analog Display Input,  Input Voltage Level: 0.700/0.700 V
[   103.671] (II) modeset(0): Sync:  Separate
[   103.671] (II) modeset(0): Max Image Size [cm]: horiz.: 47  vert.: 30
[   103.671] (II) modeset(0): Gamma: 2.20
[   103.671] (II) modeset(0): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
[   103.671] (II) modeset(0): Default color space is primary color space
[   103.671] (II) modeset(0): First detailed timing is preferred mode
[   103.671] (II) modeset(0): redX: 0.641 redY: 0.335   greenX: 0.298 greenY: 0.611
[   103.671] (II) modeset(0): blueX: 0.147 blueY: 0.070   whiteX: 0.313 whiteY: 0.329
[   103.671] (II) modeset(0): Supported established timings:
[   103.671] (II) modeset(0): 720x400@70Hz
[   103.671] (II) modeset(0): 640x480@60Hz
[   103.671] (II) modeset(0): 800x600@60Hz
[   103.671] (II) modeset(0): 1024x768@60Hz
[   103.671] (II) modeset(0): Manufacturer's mask: 0
[   103.671] (II) modeset(0): Supported standard timings:
[   103.671] (II) modeset(0): #0: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[   103.671] (II) modeset(0): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[   103.671] (II) modeset(0): #2: hsize: 1440  vsize 900  refresh: 60  vid: 149
[   103.671] (II) modeset(0): #3: hsize: 1600  vsize 1200  refresh: 60  vid: 16553
[   103.671] (II) modeset(0): #4: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[   103.671] (II) modeset(0): Supported detailed timing:
[   103.671] (II) modeset(0): clock: 146.2 MHz   Image Size:  473 x 296 mm
[   103.671] (II) modeset(0): h_active: 1680  h_sync: 1784  h_sync_end 1960 h_blank_end 2240 h_border: 0
[   103.671] (II) modeset(0): v_active: 1050  v_sync: 1053  v_sync_end 1059 v_blanking: 1089 v_border: 0
[   103.671] (II) modeset(0): Ranges: V min: 50 V max: 76 Hz, H min: 24 H max: 83 kHz, PixClock max 175 MHz
[   103.671] (II) modeset(0): Monitor name: LA2205
[   103.671] (II) modeset(0): Serial No: 3CQ049N7V1
[   103.671] (II) modeset(0): EDID (in hex):
[   103.671] (II) modeset(0): 	00ffffffffffff0022f0472801010101
[   103.671] (II) modeset(0): 	31140103682f1e78ee36c5a4554c9c25
[   103.671] (II) modeset(0): 	125054a10800814081809500a940b300
[   103.671] (II) modeset(0): 	01010101010121399030621a274068b0
[   103.671] (II) modeset(0): 	3600d9281100001c000000fd00324c18
[   103.671] (II) modeset(0): 	5311000a202020202020000000fc004c
[   103.671] (II) modeset(0): 	41323230350a202020202020000000ff
[   103.671] (II) modeset(0): 	003343513034394e3756310a202000b5
[   103.671] (II) modeset(0): Not using default mode "1600x1200" (bad mode clock/interlace/doublescan)
[   103.671] (II) modeset(0): Not using default mode "1440x810" (bad mode clock/interlace/doublescan)
[   103.671] (II) modeset(0): Not using default mode "1600x900" (bad mode clock/interlace/doublescan)
[   103.671] (II) modeset(0): Not using default mode "1600x900" (bad mode clock/interlace/doublescan)
[   103.671] (II) modeset(0): Printing probed modes for output DVI-I-1
[   103.671] (II) modeset(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz eP)
[   103.671] (II) modeset(0): Modeline "1600x1200"x65.0  175.50  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (81.2 kHz d)
[   103.671] (II) modeset(0): Modeline "1600x1200"x60.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[   103.671] (II) modeset(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz d)
[   103.671] (II) modeset(0): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[   103.671] (II) modeset(0): Modeline "1600x900"x59.9  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync (56.0 kHz d)
[   103.671] (II) modeset(0): Modeline "1600x900"x59.8   97.50  1600 1648 1680 1760  900 903 908 926 +hsync -vsync (55.4 kHz d)
[   103.671] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[   103.671] (II) modeset(0): Modeline "1440x900"x59.9  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
[   103.671] (II) modeset(0): Modeline "1400x900"x60.0  103.50  1400 1480 1624 1848  900 903 913 934 -hsync +vsync (56.0 kHz d)
[   103.671] (II) modeset(0): Modeline "1400x900"x59.9   86.50  1400 1448 1480 1560  900 903 913 926 +hsync -vsync (55.4 kHz d)
[   103.671] (II) modeset(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[   103.671] (II) modeset(0): Modeline "1440x810"x60.0  151.88  1440 1464 1480 1520  810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[   103.671] (II) modeset(0): Modeline "1368x768"x59.9   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync (47.8 kHz d)
[   103.671] (II) modeset(0): Modeline "1368x768"x59.9   72.25  1368 1416 1448 1528  768 771 781 790 +hsync -vsync (47.3 kHz d)
[   103.671] (II) modeset(0): Modeline "1280x800"x60.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[   103.671] (II) modeset(0): Modeline "1280x800"x60.0  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[   103.671] (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
[   103.671] (II) modeset(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
[   103.671] (II) modeset(0): Modeline "1280x720"x60.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[   103.671] (II) modeset(0): Modeline "1280x720"x60.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[   103.671] (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
[   103.671] (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[   103.671] (II) modeset(0): Modeline "1024x768"x60.0  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[   103.671] (II) modeset(0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz d)
[   103.671] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[   103.671] (II) modeset(0): Modeline "960x720"x60.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[   103.671] (II) modeset(0): Modeline "928x696"x60.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[   103.671] (II) modeset(0): Modeline "896x672"x60.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[   103.671] (II) modeset(0): Modeline "1024x576"x60.0   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[   103.671] (II) modeset(0): Modeline "1024x576"x60.0   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[   103.671] (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[   103.671] (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[   103.671] (II) modeset(0): Modeline "960x600"x59.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[   103.671] (II) modeset(0): Modeline "960x600"x60.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[   103.671] (II) modeset(0): Modeline "960x540"x60.0   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[   103.671] (II) modeset(0): Modeline "960x540"x60.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[   103.671] (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[   103.671] (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[   103.671] (II) modeset(0): Modeline "800x600"x70.0   94.50  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (87.5 kHz d)
[   103.671] (II) modeset(0): Modeline "800x600"x65.0   87.75  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (81.2 kHz d)
[   103.671] (II) modeset(0): Modeline "800x600"x60.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[   103.671] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[   103.671] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[   103.671] (II) modeset(0): Modeline "840x525"x60.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[   103.671] (II) modeset(0): Modeline "840x525"x59.9   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[   103.671] (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[   103.671] (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[   103.671] (II) modeset(0): Modeline "700x525"x60.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[   103.671] (II) modeset(0): Modeline "800x450"x59.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[   103.671] (II) modeset(0): Modeline "800x450"x59.8   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[   103.671] (II) modeset(0): Modeline "640x512"x60.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[   103.671] (II) modeset(0): Modeline "700x450"x60.0   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[   103.671] (II) modeset(0): Modeline "700x450"x59.9   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[   103.671] (II) modeset(0): Modeline "640x480"x60.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[   103.671] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[   103.671] (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[   103.671] (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[   103.671] (II) modeset(0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[   103.671] (II) modeset(0): Modeline "684x384"x59.9   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[   103.671] (II) modeset(0): Modeline "684x384"x59.9   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[   103.671] (II) modeset(0): Modeline "640x400"x59.9   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[   103.671] (II) modeset(0): Modeline "640x400"x60.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[   103.671] (II) modeset(0): Modeline "640x360"x59.9   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[   103.671] (II) modeset(0): Modeline "640x360"x59.8   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[   103.671] (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[   103.671] (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[   103.671] (II) modeset(0): Modeline "512x384"x70.1   37.50  512 524 592 664  384 385 388 403 doublescan -hsync -vsync (56.5 kHz d)
[   103.671] (II) modeset(0): Modeline "512x384"x60.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[   103.671] (II) modeset(0): Modeline "512x288"x60.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[   103.671] (II) modeset(0): Modeline "512x288"x59.9   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[   103.671] (II) modeset(0): Modeline "480x270"x59.6   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[   103.671] (II) modeset(0): Modeline "480x270"x59.8   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[   103.671] (II) modeset(0): Modeline "400x300"x60.3   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[   103.671] (II) modeset(0): Modeline "400x300"x56.3   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[   103.671] (II) modeset(0): Modeline "432x243"x59.9   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[   103.671] (II) modeset(0): Modeline "432x243"x59.6   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[   103.671] (II) modeset(0): Modeline "320x240"x60.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[   103.671] (II) modeset(0): Modeline "360x202"x59.5   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[   103.671] (II) modeset(0): Modeline "360x202"x59.1   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[   103.671] (II) modeset(0): Modeline "320x180"x59.8    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[   103.671] (II) modeset(0): Modeline "320x180"x59.3    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[   103.672] (II) modeset(0): EDID for output DVI-D-1
[   103.672] (II) modeset(0): Output DP-1 disconnected
[   103.672] (II) modeset(0): Output HDMI-1 disconnected
[   103.672] (II) modeset(0): Output DVI-I-1 connected
[   103.672] (II) modeset(0): Output DVI-D-1 disconnected
[   103.672] (II) modeset(0): Using exact sizes for initial modes
[   103.672] (II) modeset(0): Output DVI-I-1 using initial mode 1680x1050 +0+0
[   103.672] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[   103.672] (==) modeset(0): DPI set to (96, 96)
[   103.672] (II) Loading sub module "fb"
[   103.672] (II) LoadModule: "fb"
[   103.672] (II) Module "fb" already built-in
[   103.679] (==) modeset(0): Backing store enabled
[   103.679] (==) modeset(0): Silken mouse enabled
[   103.680] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[   103.680] (==) modeset(0): DPMS enabled
[   103.680] (II) modeset(0): [DRI2] Setup complete
[   103.680] (II) modeset(0): [DRI2]   DRI driver: radeonsi
[   103.680] (II) modeset(0): [DRI2]   VDPAU driver: radeonsi
[   103.680] (II) Initializing extension Generic Event Extension
[   103.680] (II) Initializing extension SHAPE
[   103.680] (II) Initializing extension MIT-SHM
[   103.680] (II) Initializing extension XInputExtension
[   103.680] (II) Initializing extension XTEST
[   103.680] (II) Initializing extension BIG-REQUESTS
[   103.680] (II) Initializing extension SYNC
[   103.680] (II) Initializing extension XKEYBOARD
[   103.680] (II) Initializing extension XC-MISC
[   103.681] (II) Initializing extension SECURITY
[   103.681] (II) Initializing extension XFIXES
[   103.681] (II) Initializing extension RENDER
[   103.681] (II) Initializing extension RANDR
[   103.681] (II) Initializing extension COMPOSITE
[   103.681] (II) Initializing extension DAMAGE
[   103.681] (II) Initializing extension MIT-SCREEN-SAVER
[   103.681] (II) Initializing extension DOUBLE-BUFFER
[   103.681] (II) Initializing extension RECORD
[   103.681] (II) Initializing extension DPMS
[   103.681] (II) Initializing extension Present
[   103.681] (II) Initializing extension DRI3
[   103.682] (II) Initializing extension X-Resource
[   103.682] (II) Initializing extension XVideo
[   103.682] (II) Initializing extension XVideo-MotionCompensation
[   103.682] (II) Initializing extension GLX
[   103.688] (II) AIGLX: Loaded and initialized radeonsi
[   103.688] (II) GLX: Initialized DRI2 GL provider for screen 0
[   103.688] (II) Initializing extension XFree86-VidModeExtension
[   103.688] (II) Initializing extension XFree86-DGA
[   103.688] (II) Initializing extension XFree86-DRI
[   103.688] (II) Initializing extension DRI2
[   103.688] (II) modeset(0): Damage tracking initialized
[   103.688] (II) modeset(0): Setting screen physical size to 444 x 277
[   103.751] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[   103.751] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[   103.751] (II) LoadModule: "libinput"
[   103.751] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[   103.752] (II) Module libinput: vendor="X.Org Foundation"
[   103.752] 	compiled for 1.21.1.8, module version = 1.4.0
[   103.752] 	Module class: X.Org XInput Driver
[   103.752] 	ABI class: X.Org XInput driver, version 24.4
[   103.752] (II) Using input driver 'libinput' for 'Power Button'
[   103.753] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 25 paused 0
[   103.753] (**) Power Button: always reports core events
[   103.753] (**) Option "Device" "/dev/input/event1"
[   103.755] (II) event1  - Power Button: is tagged by udev as: Keyboard
[   103.755] (II) event1  - Power Button: device is a keyboard
[   103.755] (II) event1  - Power Button: device removed
[   103.755] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[   103.755] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[   103.756] (II) event1  - Power Button: is tagged by udev as: Keyboard
[   103.756] (II) event1  - Power Button: device is a keyboard
[   103.756] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[   103.756] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[   103.756] (II) Using input driver 'libinput' for 'Power Button'
[   103.757] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 28 paused 0
[   103.757] (**) Power Button: always reports core events
[   103.757] (**) Option "Device" "/dev/input/event0"
[   103.758] (II) event0  - Power Button: is tagged by udev as: Keyboard
[   103.758] (II) event0  - Power Button: device is a keyboard
[   103.758] (II) event0  - Power Button: device removed
[   103.758] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[   103.758] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[   103.759] (II) event0  - Power Button: is tagged by udev as: Keyboard
[   103.759] (II) event0  - Power Button: device is a keyboard
[   103.759] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=8 (/dev/input/event9)
[   103.759] (II) No input driver specified, ignoring this device.
[   103.759] (II) This device may have been added with another device file.
[   103.760] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=9 (/dev/input/event10)
[   103.760] (II) No input driver specified, ignoring this device.
[   103.760] (II) This device may have been added with another device file.
[   103.760] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=10 (/dev/input/event11)
[   103.760] (II) No input driver specified, ignoring this device.
[   103.760] (II) This device may have been added with another device file.
[   103.760] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=11 (/dev/input/event12)
[   103.760] (II) No input driver specified, ignoring this device.
[   103.760] (II) This device may have been added with another device file.
[   103.761] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event7)
[   103.761] (II) No input driver specified, ignoring this device.
[   103.761] (II) This device may have been added with another device file.
[   103.761] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=7 (/dev/input/event8)
[   103.761] (II) No input driver specified, ignoring this device.
[   103.761] (II) This device may have been added with another device file.
[   103.761] (II) config/udev: Adding input device WFDZ Gaming Keyboard (/dev/input/event2)
[   103.761] (**) WFDZ Gaming Keyboard: Applying InputClass "libinput keyboard catchall"
[   103.761] (II) Using input driver 'libinput' for 'WFDZ Gaming Keyboard'
[   103.762] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 29 paused 0
[   103.762] (**) WFDZ Gaming Keyboard: always reports core events
[   103.762] (**) Option "Device" "/dev/input/event2"
[   103.764] (II) event2  - WFDZ Gaming Keyboard: is tagged by udev as: Keyboard
[   103.764] (II) event2  - WFDZ Gaming Keyboard: device is a keyboard
[   103.764] (II) event2  - WFDZ Gaming Keyboard: device removed
[   103.764] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:1EA7:2007.0001/input/input2/event2"
[   103.764] (II) XINPUT: Adding extended input device "WFDZ Gaming Keyboard" (type: KEYBOARD, id 8)
[   103.765] (II) event2  - WFDZ Gaming Keyboard: is tagged by udev as: Keyboard
[   103.765] (II) event2  - WFDZ Gaming Keyboard: device is a keyboard
[   103.766] (II) config/udev: Adding input device WFDZ Gaming Keyboard Mouse (/dev/input/event3)
[   103.766] (**) WFDZ Gaming Keyboard Mouse: Applying InputClass "libinput pointer catchall"
[   103.766] (II) Using input driver 'libinput' for 'WFDZ Gaming Keyboard Mouse'
[   103.767] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 30 paused 0
[   103.767] (**) WFDZ Gaming Keyboard Mouse: always reports core events
[   103.767] (**) Option "Device" "/dev/input/event3"
[   103.768] (II) event3  - WFDZ Gaming Keyboard Mouse: is tagged by udev as: Mouse
[   103.768] (II) event3  - WFDZ Gaming Keyboard Mouse: device is a pointer
[   103.768] (II) event3  - WFDZ Gaming Keyboard Mouse: device removed
[   103.768] (II) libinput: WFDZ Gaming Keyboard Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[   103.768] (II) libinput: WFDZ Gaming Keyboard Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[   103.768] (II) libinput: WFDZ Gaming Keyboard Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[   103.768] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.1/0003:1EA7:2007.0002/input/input3/event3"
[   103.768] (II) XINPUT: Adding extended input device "WFDZ Gaming Keyboard Mouse" (type: MOUSE, id 9)
[   103.769] (**) Option "AccelerationScheme" "none"
[   103.769] (**) WFDZ Gaming Keyboard Mouse: (accel) selected scheme none/0
[   103.769] (**) WFDZ Gaming Keyboard Mouse: (accel) acceleration factor: 2.000
[   103.769] (**) WFDZ Gaming Keyboard Mouse: (accel) acceleration threshold: 4
[   103.770] (II) event3  - WFDZ Gaming Keyboard Mouse: is tagged by udev as: Mouse
[   103.770] (II) event3  - WFDZ Gaming Keyboard Mouse: device is a pointer
[   103.771] (II) config/udev: Adding input device WFDZ Gaming Keyboard Mouse (/dev/input/mouse0)
[   103.771] (II) No input driver specified, ignoring this device.
[   103.771] (II) This device may have been added with another device file.
[   103.771] (II) config/udev: Adding input device WFDZ Gaming Keyboard (/dev/input/event4)
[   103.771] (**) WFDZ Gaming Keyboard: Applying InputClass "libinput keyboard catchall"
[   103.771] (II) Using input driver 'libinput' for 'WFDZ Gaming Keyboard'
[   103.772] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 31 paused 0
[   103.772] (**) WFDZ Gaming Keyboard: always reports core events
[   103.772] (**) Option "Device" "/dev/input/event4"
[   103.773] (II) event4  - WFDZ Gaming Keyboard: is tagged by udev as: Keyboard
[   103.773] (II) event4  - WFDZ Gaming Keyboard: device is a keyboard
[   103.773] (II) event4  - WFDZ Gaming Keyboard: device removed
[   103.773] (II) libinput: WFDZ Gaming Keyboard: needs a virtual subdevice
[   103.773] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.1/0003:1EA7:2007.0002/input/input4/event4"
[   103.773] (II) XINPUT: Adding extended input device "WFDZ Gaming Keyboard" (type: MOUSE, id 10)
[   103.774] (**) Option "AccelerationScheme" "none"
[   103.774] (**) WFDZ Gaming Keyboard: (accel) selected scheme none/0
[   103.774] (**) WFDZ Gaming Keyboard: (accel) acceleration factor: 2.000
[   103.774] (**) WFDZ Gaming Keyboard: (accel) acceleration threshold: 4
[   103.775] (II) event4  - WFDZ Gaming Keyboard: is tagged by udev as: Keyboard
[   103.775] (II) event4  - WFDZ Gaming Keyboard: device is a keyboard
[   103.775] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event13)
[   103.775] (II) No input driver specified, ignoring this device.
[   103.775] (II) This device may have been added with another device file.
[   103.776] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event14)
[   103.776] (II) No input driver specified, ignoring this device.
[   103.776] (II) This device may have been added with another device file.
[   103.776] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event15)
[   103.776] (II) No input driver specified, ignoring this device.
[   103.776] (II) This device may have been added with another device file.
[   103.776] (II) config/udev: Adding input device HDA Intel PCH Line Out (/dev/input/event16)
[   103.776] (II) No input driver specified, ignoring this device.
[   103.776] (II) This device may have been added with another device file.
[   103.777] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event17)
[   103.777] (II) No input driver specified, ignoring this device.
[   103.777] (II) This device may have been added with another device file.
[   103.777] (II) config/udev: Adding input device Eee PC WMI hotkeys (/dev/input/event6)
[   103.777] (**) Eee PC WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[   103.777] (II) Using input driver 'libinput' for 'Eee PC WMI hotkeys'
[   103.777] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 32 paused 0
[   103.777] (**) Eee PC WMI hotkeys: always reports core events
[   103.777] (**) Option "Device" "/dev/input/event6"
[   103.778] (II) event6  - Eee PC WMI hotkeys: is tagged by udev as: Keyboard
[   103.778] (II) event6  - Eee PC WMI hotkeys: device is a keyboard
[   103.778] (II) event6  - Eee PC WMI hotkeys: device removed
[   103.778] (**) Option "config_info" "udev:/sys/devices/platform/eeepc-wmi/input/input7/event6"
[   103.778] (II) XINPUT: Adding extended input device "Eee PC WMI hotkeys" (type: KEYBOARD, id 11)
[   103.779] (II) event6  - Eee PC WMI hotkeys: is tagged by udev as: Keyboard
[   103.779] (II) event6  - Eee PC WMI hotkeys: device is a keyboard
[   103.779] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
[   103.779] (II) No input driver specified, ignoring this device.
[   103.779] (II) This device may have been added with another device file.
[   103.784] (**) WFDZ Gaming Keyboard: Applying InputClass "libinput keyboard catchall"
[   103.784] (II) Using input driver 'libinput' for 'WFDZ Gaming Keyboard'
[   103.784] (II) systemd-logind: returning pre-existing fd for /dev/input/event4 13:68
[   103.784] (**) WFDZ Gaming Keyboard: always reports core events
[   103.784] (**) Option "Device" "/dev/input/event4"
[   103.784] (II) libinput: WFDZ Gaming Keyboard: is a virtual subdevice
[   103.784] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.1/0003:1EA7:2007.0002/input/input4/event4"
[   103.784] (II) XINPUT: Adding extended input device "WFDZ Gaming Keyboard" (type: KEYBOARD, id 12)
[   103.872] (EE) 
[   103.872] (EE) Backtrace:
[   103.872] (EE) 0: /usr/lib/Xorg (xorg_backtrace+0x2dd) [0x5992c3286c4d]
[   103.873] (EE) 1: /usr/lib/libc.so.6 (__sigaction+0x50) [0x7a60de521770]
[   103.873] (EE) 2: /usr/lib/dri/radeonsi_dri.so (__driDriverGetExtensions_d3d12+0x67eeb5) [0x7a60db8cd545]
[   103.873] (EE) 3: /usr/lib/dri/radeonsi_dri.so (__driDriverGetExtensions_d3d12+0x67f081) [0x7a60db8cd711]
[   103.873] (EE) 4: /usr/lib/dri/radeonsi_dri.so (nouveau_drm_screen_create+0x2934a6) [0x7a60dbd55396]
[   103.873] (EE) 5: /usr/lib/dri/radeonsi_dri.so (nouveau_drm_screen_create+0x293649) [0x7a60dbd55539]
[   103.873] (EE) 6: /usr/lib/dri/radeonsi_dri.so (radeon_drm_winsys_create+0x278b) [0x7a60db8e4e7b]
[   103.874] (EE) 7: /usr/lib/dri/radeonsi_dri.so (radeon_drm_winsys_create+0x133113) [0x7a60dba15803]
[   103.874] (EE) 8: /usr/lib/dri/radeonsi_dri.so (radeon_drm_winsys_create+0x1156da) [0x7a60db9f7dca]
[   103.874] (EE) 9: /usr/lib/dri/radeonsi_dri.so (radeon_drm_winsys_create+0x116af1) [0x7a60db9f91e1]
[   103.874] (EE) 10: /usr/lib/dri/radeonsi_dri.so (radeon_drm_winsys_create+0x113560) [0x7a60db9f5c50]
[   103.874] (EE) 11: /usr/lib/dri/radeonsi_dri.so (nouveau_drm_screen_create+0x28fc27) [0x7a60dbd51b17]
[   103.874] (EE) 12: /usr/lib/dri/radeonsi_dri.so (__driDriverGetExtensions_d3d12+0xc2f42) [0x7a60db3115d2]
[   103.874] (EE) 13: /usr/lib/dri/radeonsi_dri.so (__driDriverGetExtensions_d3d12+0x8430d) [0x7a60db2d299d]
[   103.875] (EE) 14: /usr/lib/dri/radeonsi_dri.so (__driDriverGetExtensions_d3d12+0x870ed) [0x7a60db2d577d]
[   103.875] (EE) 15: /usr/lib/dri/radeonsi_dri.so (__driDriverGetExtensions_d3d12+0x871dc) [0x7a60db2d586c]
[   103.875] (EE) 16: /usr/lib/xorg/modules/libglamoregl.so (glamor_pixmap_exchange_fbos+0x3ff2) [0x7a60dd79f822]
[   103.875] (EE) 17: /usr/lib/xorg/modules/libglamoregl.so (glamor_finish+0x1361) [0x7a60dd786f11]
[   103.875] (EE) 18: /usr/lib/Xorg (RRXineramaExtensionInit+0x16cd) [0x5992c320276d]
[   103.875] (EE) 19: /usr/lib/Xorg (UpdateCurrentTime+0x2985) [0x5992c31ac7f5]
[   103.875] (EE) 20: /usr/lib/Xorg (SProcXkbDispatch+0x28f5) [0x5992c3173fee]
[   103.876] (EE) 21: /usr/lib/libc.so.6 (__libc_init_first+0x90) [0x7a60de50acd0]
[   103.876] (EE) 22: /usr/lib/libc.so.6 (__libc_start_main+0x8a) [0x7a60de50ad8a]
[   103.876] (EE) 23: /usr/lib/Xorg (_start+0x25) [0x5992c31745a5]
[   103.876] (EE) 
[   103.876] (EE) Segmentation fault at address 0x40
[   103.876] (EE) 
Fatal server error:
[   103.876] (EE) Caught signal 11 (Segmentation fault). Server aborting
[   103.876] (EE) 
[   103.876] (EE) 
Please consult the The X.Org Foundation support 
	at http://wiki.x.org
 for help. 
[   103.876] (EE) Please also check the log file at "/home/labricecat/.local/share/xorg/Xorg.0.log" for additional information.
[   103.876] (EE) 
[   103.876] (II) AIGLX: Suspending AIGLX clients for VT switch
[   103.879] (EE) Server terminated with error (1). Closing log file.

dmesg shows only these two lines:

[   71.546697] i3[488]: segfault at 8 ip 00005f3736ec87d5 sp 00007ffe7eb11770 error 4 in i3[5f3736ec4000+55000] likely on CPU 3 (core 3, socket 0)
[   71.546712] Code: 76 07 00 48 8b 3d e3 74 07 00 89 85 30 ff ff ff ff 15 8f 11 07 00 48 8b 3d d0 74 07 00 48 8d 35 e1 69 07 00 ff 15 0b 0f 07 00 <80> 78 08 00 48 89 85 88 fe ff ff 0f 95 05 29 18 07 00 0f 85 64 0e

Here I noticed the lines which mention a segfault, and how they refer to radeonsi_dri.so, so I looked on how I could update my GPU drivers.
I have an AMD GPU which requires the ATI drivers.
Output of lspci:

01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Curacao XT / Trinidad XT [Radeon R7 370 / R9 270X/370X]

I firstly noticed that mesa has been updated recently, so figured this must be the problem. I installed xf86-video-ati and now startx doesn't fail anymore! Hooray!
Only problem being is that now I get a black screen that I cant exit.

I decided to downgrade mesa to version 23, and that kinda worked! I was able to start the X server and everything seemed to work, but then I noticed that certain programs (picom, kitty, steam) wouldn't open, and figured out that they complain about the OpenGL GLX extension, and how it isnt present/not supported. Which is weird to me, as version 23 isnt that old (I got it from the arch archives, latest update was begin of 2023)

Following the arch wiki, I found out about eglinfo and it resulted in this:

$ eglinfo -B
GBM platform:
EGL API version: 1.5
EGL vendor string: Mesa Project
EGL version string: 1.5
EGL client APIs: OpenGL OpenGL_ES 
OpenGL core profile vendor: AMD
OpenGL core profile renderer: PITCAIRN (radeonsi, , LLVM 16.0.6, DRM 2.50, 6.7.5-arch1-1)
OpenGL core profile version: 4.5 (Core Profile) Mesa 24.0.1-arch1.1
OpenGL core profile shading language version: 4.50
OpenGL compatibility profile vendor: AMD
OpenGL compatibility profile renderer: PITCAIRN (radeonsi, , LLVM 16.0.6, DRM 2.50, 6.7.5-arch1-1)
OpenGL compatibility profile version: 4.5 (Compatibility Profile) Mesa 24.0.1-arch1.1
OpenGL compatibility profile shading language version: 4.50
OpenGL ES profile vendor: AMD
OpenGL ES profile renderer: PITCAIRN (radeonsi, , LLVM 16.0.6, DRM 2.50, 6.7.5-arch1-1)
OpenGL ES profile version: OpenGL ES 3.2 Mesa 24.0.1-arch1.1
OpenGL ES profile shading language version: OpenGL ES GLSL ES 3.20

Wayland platform:
eglinfo: eglInitialize failed

X11 platform:
eglinfo: eglInitialize failed

Surfaceless platform:
EGL API version: 1.5
EGL vendor string: Mesa Project
EGL version string: 1.5
EGL client APIs: OpenGL OpenGL_ES 
OpenGL core profile vendor: AMD
OpenGL core profile renderer: PITCAIRN (radeonsi, , LLVM 16.0.6, DRM 2.50, 6.7.5-arch1-1)
OpenGL core profile version: 4.5 (Core Profile) Mesa 24.0.1-arch1.1
OpenGL core profile shading language version: 4.50
OpenGL compatibility profile vendor: AMD
OpenGL compatibility profile renderer: PITCAIRN (radeonsi, , LLVM 16.0.6, DRM 2.50, 6.7.5-arch1-1)
OpenGL compatibility profile version: 4.5 (Compatibility Profile) Mesa 24.0.1-arch1.1
OpenGL compatibility profile shading language version: 4.50
OpenGL ES profile vendor: AMD
OpenGL ES profile renderer: PITCAIRN (radeonsi, , LLVM 16.0.6, DRM 2.50, 6.7.5-arch1-1)
OpenGL ES profile version: OpenGL ES 3.2 Mesa 24.0.1-arch1.1
OpenGL ES profile shading language version: OpenGL ES GLSL ES 3.20

Device platform:
Device #0:

Platform Device platform:
EGL API version: 1.5
EGL vendor string: Mesa Project
EGL version string: 1.5
EGL client APIs: OpenGL OpenGL_ES 
OpenGL core profile vendor: AMD
OpenGL core profile renderer: PITCAIRN (radeonsi, , LLVM 16.0.6, DRM 2.50, 6.7.5-arch1-1)
OpenGL core profile version: 4.5 (Core Profile) Mesa 24.0.1-arch1.1
OpenGL core profile shading language version: 4.50
OpenGL compatibility profile vendor: AMD
OpenGL compatibility profile renderer: PITCAIRN (radeonsi, , LLVM 16.0.6, DRM 2.50, 6.7.5-arch1-1)
OpenGL compatibility profile version: 4.5 (Compatibility Profile) Mesa 24.0.1-arch1.1
OpenGL compatibility profile shading language version: 4.50
OpenGL ES profile vendor: AMD
OpenGL ES profile renderer: PITCAIRN (radeonsi, , LLVM 16.0.6, DRM 2.50, 6.7.5-arch1-1)
OpenGL ES profile version: OpenGL ES 3.2 Mesa 24.0.1-arch1.1
OpenGL ES profile shading language version: OpenGL ES GLSL ES 3.20

Device #1:

Platform Device platform:
EGL API version: 1.5
EGL vendor string: Mesa Project
EGL version string: 1.5
EGL client APIs: OpenGL OpenGL_ES 
OpenGL core profile vendor: Mesa
OpenGL core profile renderer: llvmpipe (LLVM 16.0.6, 256 bits)
OpenGL core profile version: 4.5 (Core Profile) Mesa 24.0.1-arch1.1
OpenGL core profile shading language version: 4.50
OpenGL compatibility profile vendor: Mesa
OpenGL compatibility profile renderer: llvmpipe (LLVM 16.0.6, 256 bits)
OpenGL compatibility profile version: 4.5 (Compatibility Profile) Mesa 24.0.1-arch1.1
OpenGL compatibility profile shading language version: 4.50
OpenGL ES profile vendor: Mesa
OpenGL ES profile renderer: llvmpipe (LLVM 16.0.6, 256 bits)
OpenGL ES profile version: OpenGL ES 3.2 Mesa 24.0.1-arch1.1
OpenGL ES profile shading language version: OpenGL ES GLSL ES 3.20

Both Wayland and X11 fail here.
With glxinfo:

$ glxinfo
Error: unable to open display

Currently I am again on the new mesa version, and a bit stuck on what to do.
I reinstalled arch again because why not, but that didnt fix the issue. I suspect the mesa package to have changed somehow, but I cant think of a solution and the google results begin to run dry.

Any ideas how this could be fixed? Thanks a lot!!

Last edited by LabRicecat (2024-02-22 16:03:23)

Offline

#2 2024-02-21 13:19:35

loqs
Member
Registered: 2014-03-06
Posts: 18,922

Re: [SOLVED] GPU drivers broken after update. Cant start display servers.

Please post the full output of the system journal for a boot with the issue.  Please also provide the update entry from /var/log/pacman.log that triggered the issue.

Offline

#3 2024-02-21 13:27:48

LabRicecat
Member
Registered: 2023-09-10
Posts: 36

Re: [SOLVED] GPU drivers broken after update. Cant start display servers.

I sadly dont have these pacman logs anymore, as I reinstalled my system afterwards.
Here is the journal

$ journalctl
Jan 24 16:38:33 meow systemd[392]: Queued start job for default target Main User Target.
Jan 24 16:38:33 meow systemd[392]: Created slice User Application Slice.
Jan 24 16:38:33 meow systemd[392]: Reached target Paths.
Jan 24 16:38:33 meow systemd[392]: Reached target Timers.
Jan 24 16:38:33 meow systemd[392]: Starting D-Bus User Message Bus Socket...
Jan 24 16:38:33 meow systemd[392]: Listening on GnuPG network certificate management daemon.
Jan 24 16:38:33 meow systemd[392]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jan 24 16:38:33 meow systemd[392]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Jan 24 16:38:33 meow systemd[392]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Jan 24 16:38:33 meow systemd[392]: Listening on GnuPG cryptographic agent and passphrase cache.
Jan 24 16:38:33 meow systemd[392]: Listening on GnuPG public key management service.
Jan 24 16:38:33 meow systemd[392]: Listening on p11-kit server.
Jan 24 16:38:33 meow systemd[392]: Listening on PipeWire PulseAudio.
Jan 24 16:38:33 meow systemd[392]: Listening on PipeWire Multimedia System Sockets.
Jan 24 16:38:33 meow systemd[392]: Listening on D-Bus User Message Bus Socket.
Jan 24 16:38:33 meow systemd[392]: Reached target Sockets.
Jan 24 16:38:33 meow systemd[392]: Reached target Basic System.
Jan 24 16:38:33 meow systemd[392]: Starting Update XDG user dir configuration...
Jan 24 16:38:33 meow systemd[392]: Finished Update XDG user dir configuration.
Jan 24 16:38:33 meow systemd[392]: Reached target Main User Target.
Jan 24 16:38:33 meow systemd[392]: Startup finished in 163ms.
-- Boot 427ccd41ca0240598908281ec9a7c7a4 --
Jan 24 16:38:32 meow systemd[390]: Queued start job for default target Main User Target.
Jan 24 16:38:32 meow systemd[390]: Created slice User Application Slice.
Jan 24 16:38:32 meow systemd[390]: Reached target Paths.
Jan 24 16:38:32 meow systemd[390]: Reached target Timers.
Jan 24 16:38:32 meow systemd[390]: Starting D-Bus User Message Bus Socket...
Jan 24 16:38:32 meow systemd[390]: Listening on GnuPG network certificate management daemon.
Jan 24 16:38:32 meow systemd[390]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jan 24 16:38:32 meow systemd[390]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Jan 24 16:38:32 meow systemd[390]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Jan 24 16:38:32 meow systemd[390]: Listening on GnuPG cryptographic agent and passphrase cache.
Jan 24 16:38:32 meow systemd[390]: Listening on GnuPG public key management service.
Jan 24 16:38:32 meow systemd[390]: Listening on p11-kit server.
Jan 24 16:38:32 meow systemd[390]: Listening on PipeWire PulseAudio.
Jan 24 16:38:32 meow systemd[390]: Listening on PipeWire Multimedia System Sockets.
Jan 24 16:38:32 meow systemd[390]: Listening on D-Bus User Message Bus Socket.
Jan 24 16:38:32 meow systemd[390]: Reached target Sockets.
Jan 24 16:38:32 meow systemd[390]: Reached target Basic System.
Jan 24 16:38:32 meow systemd[390]: Starting Update XDG user dir configuration...
Jan 24 16:38:32 meow systemd[390]: Finished Update XDG user dir configuration.
Jan 24 16:38:32 meow systemd[390]: Reached target Main User Target.
Jan 24 16:38:32 meow systemd[390]: Startup finished in 174ms.
Jan 24 16:38:37 meow systemd[390]: Created slice User Core Session Slice.
Jan 24 16:38:37 meow systemd[390]: Starting D-Bus User Message Bus...
Jan 24 16:38:37 meow dbus-broker-launch[432]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
Jan 24 16:38:37 meow dbus-broker-launch[432]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
Jan 24 16:38:37 meow systemd[390]: Started D-Bus User Message Bus.
Jan 24 16:38:37 meow dbus-broker-launch[432]: Ready
Jan 24 16:38:37 meow pipewire[442]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:38:37 meow pipewire[442]: mod.rt: RTKit does not give us MaxRealtimePriority, using 1
Jan 24 16:38:37 meow pipewire[442]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:38:37 meow pipewire[442]: mod.rt: RTKit does not give us MinNiceLevel, using 0
Jan 24 16:38:37 meow pipewire[442]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:38:37 meow pipewire[442]: mod.rt: RTKit does not give us RTTimeUSecMax, using -1
Jan 24 16:38:37 meow systemd[390]: Started PipeWire Multimedia Service.
Jan 24 16:38:37 meow systemd[390]: Started Multimedia Service Session Manager.
Jan 24 16:38:37 meow systemd[390]: Started PipeWire PulseAudio.
Jan 24 16:38:37 meow pipewire[471]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:38:37 meow pipewire[471]: mod.rt: RTKit does not give us MaxRealtimePriority, using 1
Jan 24 16:38:37 meow pipewire[471]: mod.protocol-native: server 0x63198ee069d0: unable to lock lockfile '/run/user/1000/pipewire-0.lock': Resource temporarily unavailable (maybe another daemon is running)
Jan 24 16:38:37 meow pipewire[471]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:38:37 meow pipewire[471]: mod.rt: RTKit does not give us MinNiceLevel, using 0
Jan 24 16:38:37 meow pipewire[471]: pw.conf: 0x63198edbeaa0: could not load mandatory module "libpipewire-module-protocol-native": Resource temporarily unavailable
Jan 24 16:38:37 meow pipewire[471]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:38:37 meow pipewire[471]: mod.rt: RTKit does not give us RTTimeUSecMax, using -1
Jan 24 16:38:37 meow pipewire[471]: default: failed to create context: Resource temporarily unavailable
Jan 24 16:38:37 meow systemd[390]: pipewire.service: Main process exited, code=exited, status=245/KSM
Jan 24 16:38:37 meow systemd[390]: pipewire.service: Failed with result 'exit-code'.
Jan 24 16:38:37 meow systemd[390]: Stopping Multimedia Service Session Manager...
Jan 24 16:38:37 meow systemd[390]: Stopped Multimedia Service Session Manager.
Jan 24 16:38:37 meow pipewire-pulse[473]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:38:37 meow pipewire-pulse[473]: mod.rt: RTKit does not give us MaxRealtimePriority, using 1
Jan 24 16:38:37 meow pipewire-pulse[473]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:38:37 meow pipewire-pulse[473]: mod.rt: RTKit does not give us MinNiceLevel, using 0
Jan 24 16:38:37 meow pipewire-pulse[473]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:38:37 meow pipewire-pulse[473]: mod.rt: RTKit does not give us RTTimeUSecMax, using -1
Jan 24 16:38:37 meow systemd[390]: pipewire.service: Scheduled restart job, restart counter is at 1.
Jan 24 16:38:37 meow systemd[390]: Started PipeWire Multimedia Service.
Jan 24 16:38:37 meow systemd[390]: Started Multimedia Service Session Manager.
Jan 24 16:38:37 meow pipewire[485]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:38:37 meow pipewire[485]: mod.rt: RTKit does not give us MaxRealtimePriority, using 1
Jan 24 16:38:37 meow pipewire[485]: mod.protocol-native: server 0x5e50ae1e19d0: unable to lock lockfile '/run/user/1000/pipewire-0.lock': Resource temporarily unavailable (maybe another daemon is running)
Jan 24 16:38:37 meow pipewire[485]: pw.conf: 0x5e50ae199aa0: could not load mandatory module "libpipewire-module-protocol-native": Resource temporarily unavailable
Jan 24 16:38:37 meow pipewire[485]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:38:37 meow pipewire[485]: mod.rt: RTKit does not give us MinNiceLevel, using 0
Jan 24 16:38:37 meow pipewire[485]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:38:37 meow pipewire[485]: mod.rt: RTKit does not give us RTTimeUSecMax, using -1
Jan 24 16:38:37 meow pipewire[485]: default: failed to create context: Resource temporarily unavailable
Jan 24 16:38:37 meow systemd[390]: pipewire.service: Main process exited, code=exited, status=245/KSM
Jan 24 16:38:37 meow systemd[390]: pipewire.service: Failed with result 'exit-code'.
Jan 24 16:38:37 meow systemd[390]: Stopping Multimedia Service Session Manager...
Jan 24 16:38:37 meow systemd[390]: Stopped Multimedia Service Session Manager.
Jan 24 16:38:38 meow systemd[390]: pipewire.service: Scheduled restart job, restart counter is at 2.
Jan 24 16:38:38 meow systemd[390]: Started PipeWire Multimedia Service.
Jan 24 16:38:38 meow systemd[390]: Started Multimedia Service Session Manager.
Jan 24 16:38:38 meow pipewire[490]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:38:38 meow pipewire[490]: mod.rt: RTKit does not give us MaxRealtimePriority, using 1
Jan 24 16:38:38 meow pipewire[490]: mod.protocol-native: server 0x63615b4629d0: unable to lock lockfile '/run/user/1000/pipewire-0.lock': Resource temporarily unavailable (maybe another daemon is running)
Jan 24 16:38:38 meow pipewire[490]: pw.conf: 0x63615b41aaa0: could not load mandatory module "libpipewire-module-protocol-native": Resource temporarily unavailable
Jan 24 16:38:38 meow pipewire[490]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:38:38 meow pipewire[490]: mod.rt: RTKit does not give us MinNiceLevel, using 0
Jan 24 16:38:38 meow pipewire[490]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:38:38 meow pipewire[490]: mod.rt: RTKit does not give us RTTimeUSecMax, using -1
Jan 24 16:38:38 meow pipewire[490]: default: failed to create context: Resource temporarily unavailable
Jan 24 16:38:38 meow systemd[390]: pipewire.service: Main process exited, code=exited, status=245/KSM
Jan 24 16:38:38 meow systemd[390]: pipewire.service: Failed with result 'exit-code'.
Jan 24 16:38:38 meow systemd[390]: Stopping Multimedia Service Session Manager...
Jan 24 16:38:38 meow systemd[390]: Stopped Multimedia Service Session Manager.
Jan 24 16:38:38 meow systemd[390]: pipewire.service: Scheduled restart job, restart counter is at 3.
Jan 24 16:38:38 meow systemd[390]: Started PipeWire Multimedia Service.
Jan 24 16:38:38 meow systemd[390]: Started Multimedia Service Session Manager.
Jan 24 16:38:38 meow pipewire[502]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:38:38 meow pipewire[502]: mod.rt: RTKit does not give us MaxRealtimePriority, using 1
Jan 24 16:38:38 meow pipewire[502]: mod.protocol-native: server 0x63c0575839d0: unable to lock lockfile '/run/user/1000/pipewire-0.lock': Resource temporarily unavailable (maybe another daemon is running)
Jan 24 16:38:38 meow pipewire[502]: pw.conf: 0x63c05753baa0: could not load mandatory module "libpipewire-module-protocol-native": Resource temporarily unavailable
Jan 24 16:38:38 meow pipewire[502]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:38:38 meow pipewire[502]: mod.rt: RTKit does not give us MinNiceLevel, using 0
Jan 24 16:38:38 meow pipewire[502]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:38:38 meow pipewire[502]: mod.rt: RTKit does not give us RTTimeUSecMax, using -1
Jan 24 16:38:38 meow pipewire[502]: default: failed to create context: Resource temporarily unavailable
Jan 24 16:38:38 meow systemd[390]: pipewire.service: Main process exited, code=exited, status=245/KSM
Jan 24 16:38:38 meow systemd[390]: pipewire.service: Failed with result 'exit-code'.
Jan 24 16:38:38 meow systemd[390]: Stopping Multimedia Service Session Manager...
Jan 24 16:38:38 meow systemd[390]: Stopped Multimedia Service Session Manager.
Jan 24 16:38:38 meow systemd[390]: pipewire.service: Scheduled restart job, restart counter is at 4.
Jan 24 16:38:38 meow systemd[390]: Started PipeWire Multimedia Service.
Jan 24 16:38:38 meow systemd[390]: Started Multimedia Service Session Manager.
Jan 24 16:38:38 meow pipewire[507]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:38:38 meow pipewire[507]: mod.rt: RTKit does not give us MaxRealtimePriority, using 1
Jan 24 16:38:38 meow pipewire[507]: mod.protocol-native: server 0x632f639c79d0: unable to lock lockfile '/run/user/1000/pipewire-0.lock': Resource temporarily unavailable (maybe another daemon is running)
Jan 24 16:38:38 meow pipewire[507]: pw.conf: 0x632f6397faa0: could not load mandatory module "libpipewire-module-protocol-native": Resource temporarily unavailable
Jan 24 16:38:38 meow pipewire[507]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:38:38 meow pipewire[507]: mod.rt: RTKit does not give us MinNiceLevel, using 0
Jan 24 16:38:38 meow pipewire[507]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:38:38 meow pipewire[507]: mod.rt: RTKit does not give us RTTimeUSecMax, using -1
Jan 24 16:38:38 meow pipewire[507]: default: failed to create context: Resource temporarily unavailable
Jan 24 16:38:38 meow systemd[390]: pipewire.service: Main process exited, code=exited, status=245/KSM
Jan 24 16:38:38 meow systemd[390]: pipewire.service: Failed with result 'exit-code'.
Jan 24 16:38:38 meow systemd[390]: Stopping Multimedia Service Session Manager...
Jan 24 16:38:38 meow systemd[390]: Stopped Multimedia Service Session Manager.
Jan 24 16:38:38 meow systemd[390]: pipewire.service: Scheduled restart job, restart counter is at 5.
Jan 24 16:38:38 meow systemd[390]: pipewire.service: Start request repeated too quickly.
Jan 24 16:38:38 meow systemd[390]: pipewire.service: Failed with result 'exit-code'.
Jan 24 16:38:38 meow systemd[390]: Failed to start PipeWire Multimedia Service.
Jan 24 16:38:38 meow systemd[390]: Dependency failed for Multimedia Service Session Manager.
Jan 24 16:38:38 meow systemd[390]: wireplumber.service: Job wireplumber.service/start failed with result 'dependency'.
Jan 24 16:38:38 meow systemd[390]: pipewire.socket: Failed with result 'service-start-limit-hit'.
Jan 24 16:38:49 meow systemd[390]: Starting Accessibility services bus...
Jan 24 16:38:49 meow systemd[390]: Started Accessibility services bus.
-- Boot 493ae357499046d9b60b126699329621 --
Jan 24 16:38:42 meow systemd[396]: Queued start job for default target Main User Target.
Jan 24 16:38:42 meow systemd[396]: Created slice User Application Slice.
Jan 24 16:38:42 meow systemd[396]: Reached target Paths.
Jan 24 16:38:42 meow systemd[396]: Reached target Timers.
Jan 24 16:38:42 meow systemd[396]: Starting D-Bus User Message Bus Socket...
Jan 24 16:38:42 meow systemd[396]: Listening on GnuPG network certificate management daemon.
Jan 24 16:38:42 meow systemd[396]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jan 24 16:38:42 meow systemd[396]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Jan 24 16:38:42 meow systemd[396]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Jan 24 16:38:42 meow systemd[396]: Listening on GnuPG cryptographic agent and passphrase cache.
Jan 24 16:38:42 meow systemd[396]: Listening on GnuPG public key management service.
Jan 24 16:38:42 meow systemd[396]: Listening on p11-kit server.
Jan 24 16:38:42 meow systemd[396]: Listening on PipeWire PulseAudio.
Jan 24 16:38:42 meow systemd[396]: Listening on PipeWire Multimedia System Sockets.
Jan 24 16:38:42 meow systemd[396]: Listening on D-Bus User Message Bus Socket.
Jan 24 16:38:42 meow systemd[396]: Reached target Sockets.
Jan 24 16:38:42 meow systemd[396]: Reached target Basic System.
Jan 24 16:38:42 meow systemd[396]: Starting Update XDG user dir configuration...
Jan 24 16:38:42 meow systemd[396]: Finished Update XDG user dir configuration.
Jan 24 16:38:42 meow systemd[396]: Reached target Main User Target.
Jan 24 16:38:42 meow systemd[396]: Startup finished in 164ms.
Jan 24 16:38:50 meow sudo[422]: labricecat : TTY=tty1 ; PWD=/home/labricecat ; USER=root ; COMMAND=/usr/bin/pacman --sync -y -y -u --
Jan 24 16:38:50 meow sudo[422]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Jan 24 16:40:16 meow systemd[396]: Received SIGHUP from PID 1 (systemd).
Jan 24 16:40:16 meow systemd[396]: Reloading...
Jan 24 16:40:16 meow systemd[396]: Reloading finished in 99 ms.
Jan 24 16:40:39 meow sudo[422]: pam_unix(sudo:session): session closed for user root
Jan 24 16:41:27 meow sudo[16870]: labricecat : TTY=tty1 ; PWD=/home/labricecat ; USER=root ; COMMAND=/usr/bin/pacman --sync -- mesa
Jan 24 16:41:27 meow sudo[16870]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Jan 24 16:41:32 meow sudo[16870]: pam_unix(sudo:session): session closed for user root
Jan 24 16:43:07 meow sudo[16913]: labricecat : TTY=tty1 ; PWD=/home/labricecat ; USER=root ; COMMAND=/usr/bin/pacman --sync -- mesa-utils
Jan 24 16:43:07 meow sudo[16913]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Jan 24 16:43:09 meow sudo[16913]: pam_unix(sudo:session): session closed for user root
Jan 24 16:46:13 meow sudo[17035]: labricecat : TTY=tty1 ; PWD=/home/labricecat ; USER=root ; COMMAND=/usr/bin/pacman --sync -- llvm
Jan 24 16:46:13 meow sudo[17035]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Jan 24 16:46:15 meow sudo[17035]: pam_unix(sudo:session): session closed for user root
-- Boot a355cb0438404dad820b6fe8cbfc90ff --
Jan 24 16:38:41 meow systemd[410]: Queued start job for default target Main User Target.
Jan 24 16:38:41 meow systemd[410]: Created slice User Application Slice.
Jan 24 16:38:41 meow systemd[410]: Reached target Paths.
Jan 24 16:38:41 meow systemd[410]: Reached target Timers.
Jan 24 16:38:41 meow systemd[410]: Starting D-Bus User Message Bus Socket...
Jan 24 16:38:41 meow systemd[410]: Listening on GnuPG network certificate management daemon.
Jan 24 16:38:41 meow systemd[410]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jan 24 16:38:41 meow systemd[410]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Jan 24 16:38:41 meow systemd[410]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Jan 24 16:38:41 meow systemd[410]: Listening on GnuPG cryptographic agent and passphrase cache.
Jan 24 16:38:41 meow systemd[410]: Listening on GnuPG public key management service.
Jan 24 16:38:41 meow systemd[410]: Listening on p11-kit server.
Jan 24 16:38:41 meow systemd[410]: Listening on PipeWire PulseAudio.
Jan 24 16:38:41 meow systemd[410]: Listening on PipeWire Multimedia System Sockets.
Jan 24 16:38:41 meow systemd[410]: Listening on D-Bus User Message Bus Socket.
Jan 24 16:38:41 meow systemd[410]: Reached target Sockets.
Jan 24 16:38:41 meow systemd[410]: Reached target Basic System.
Jan 24 16:38:41 meow systemd[410]: Starting Update XDG user dir configuration...
Jan 24 16:38:42 meow systemd[410]: Finished Update XDG user dir configuration.
Jan 24 16:38:42 meow systemd[410]: Reached target Main User Target.
Jan 24 16:38:42 meow systemd[410]: Startup finished in 173ms.
Jan 24 16:38:50 meow sudo[434]: labricecat : TTY=tty1 ; PWD=/home/labricecat ; USER=root ; COMMAND=/usr/bin/pacman --sync -y -y -u --
Jan 24 16:38:50 meow sudo[434]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Jan 24 16:39:02 meow sudo[434]: pam_unix(sudo:session): session closed for user root
Jan 24 16:39:08 meow sudo[454]: labricecat : TTY=tty1 ; PWD=/home/labricecat ; USER=root ; COMMAND=/usr/bin/pacman --sync -y -y -u --ignore=lib32-ffi --
Jan 24 16:39:08 meow sudo[454]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Jan 24 16:39:17 meow sudo[454]: pam_unix(sudo:session): session closed for user root
Jan 24 16:39:21 meow sudo[468]: labricecat : TTY=tty1 ; PWD=/home/labricecat ; USER=root ; COMMAND=/usr/bin/pacman --sync -y -y -u --ignore=lib32-libffi --
Jan 24 16:39:21 meow sudo[468]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Jan 24 16:39:29 meow sudo[468]: pam_unix(sudo:session): session closed for user root
Jan 24 16:39:43 meow sudo[593]: labricecat : TTY=tty1 ; PWD=/home/labricecat ; USER=root ; COMMAND=/usr/bin/pacman --sync -- mesa
Jan 24 16:39:43 meow sudo[593]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Jan 24 16:39:47 meow sudo[593]: pam_unix(sudo:session): session closed for user root
Jan 24 16:39:50 meow sudo[628]: labricecat : TTY=tty1 ; PWD=/home/labricecat ; USER=root ; COMMAND=/usr/bin/pacman --sync -y -y -u --
Jan 24 16:39:50 meow sudo[628]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Jan 24 16:40:23 meow sudo[628]: pam_unix(sudo:session): session closed for user root
Jan 24 16:45:48 meow systemd[410]: Created slice User Core Session Slice.
Jan 24 16:45:49 meow systemd[410]: Starting D-Bus User Message Bus...
Jan 24 16:45:49 meow dbus-broker-launch[673]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
Jan 24 16:45:49 meow dbus-broker-launch[673]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
Jan 24 16:45:49 meow systemd[410]: Started D-Bus User Message Bus.
Jan 24 16:45:49 meow dbus-broker-launch[673]: Ready
Jan 24 16:50:17 meow systemd[410]: Activating special unit Exit the Session...
Jan 24 16:50:17 meow systemd[410]: Stopped target Main User Target.
Jan 24 16:50:17 meow systemd[410]: Stopped target Basic System.
Jan 24 16:50:17 meow systemd[410]: Stopped target Paths.
Jan 24 16:50:17 meow systemd[410]: Stopped target Sockets.
Jan 24 16:50:17 meow systemd[410]: Stopped target Timers.
Jan 24 16:50:17 meow systemd[410]: Closed GnuPG network certificate management daemon.
Jan 24 16:50:17 meow systemd[410]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jan 24 16:50:17 meow systemd[410]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
Jan 24 16:50:17 meow systemd[410]: Closed GnuPG cryptographic agent (ssh-agent emulation).
Jan 24 16:50:17 meow systemd[410]: Closed GnuPG cryptographic agent and passphrase cache.
Jan 24 16:50:17 meow systemd[410]: Closed GnuPG public key management service.
Jan 24 16:50:17 meow systemd[410]: Closed p11-kit server.
Jan 24 16:50:17 meow systemd[410]: Closed PipeWire PulseAudio.
Jan 24 16:50:17 meow systemd[410]: Closed PipeWire Multimedia System Sockets.
Jan 24 16:50:17 meow dbus-broker[674]: Dispatched 126 messages @ 1(±2)μs / message.
Jan 24 16:50:17 meow systemd[410]: Stopping D-Bus User Message Bus...
Jan 24 16:50:17 meow systemd[410]: Stopped D-Bus User Message Bus.
Jan 24 16:50:17 meow systemd[410]: Removed slice User Core Session Slice.
Jan 24 16:50:17 meow systemd[410]: Closed D-Bus User Message Bus Socket.
Jan 24 16:50:17 meow systemd[410]: Removed slice User Application Slice.
Jan 24 16:50:17 meow systemd[410]: Reached target Shutdown.
Jan 24 16:50:17 meow systemd[410]: Finished Exit the Session.
Jan 24 16:50:17 meow systemd[410]: Reached target Exit the Session.
Jan 24 16:50:17 meow (sd-pam)[412]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8004 service=[systemd-user] terminal=[] user=[labricecat] ruser=[<unknown>] rhost=[<unknown>]
-- Boot aa57c3a108134b71832edd8e78479694 --
Jan 24 16:38:39 meow systemd[410]: Queued start job for default target Main User Target.
Jan 24 16:38:39 meow systemd[410]: Created slice User Application Slice.
Jan 24 16:38:39 meow systemd[410]: Reached target Paths.
Jan 24 16:38:39 meow systemd[410]: Reached target Timers.
Jan 24 16:38:39 meow systemd[410]: Starting D-Bus User Message Bus Socket...
Jan 24 16:38:39 meow systemd[410]: Listening on GnuPG network certificate management daemon.
Jan 24 16:38:39 meow systemd[410]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jan 24 16:38:39 meow systemd[410]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Jan 24 16:38:39 meow systemd[410]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Jan 24 16:38:39 meow systemd[410]: Listening on GnuPG cryptographic agent and passphrase cache.
Jan 24 16:38:39 meow systemd[410]: Listening on GnuPG public key management service.
Jan 24 16:38:39 meow systemd[410]: Listening on p11-kit server.
Jan 24 16:38:39 meow systemd[410]: Listening on PipeWire PulseAudio.
Jan 24 16:38:39 meow systemd[410]: Listening on PipeWire Multimedia System Sockets.
Jan 24 16:38:39 meow systemd[410]: Listening on D-Bus User Message Bus Socket.
Jan 24 16:38:39 meow systemd[410]: Reached target Sockets.
Jan 24 16:38:39 meow systemd[410]: Reached target Basic System.
Jan 24 16:38:39 meow systemd[410]: Starting Update XDG user dir configuration...
Jan 24 16:38:39 meow systemd[410]: Finished Update XDG user dir configuration.
Jan 24 16:38:39 meow systemd[410]: Reached target Main User Target.
Jan 24 16:38:39 meow systemd[410]: Startup finished in 179ms.
Jan 24 16:39:21 meow sudo[438]: labricecat : TTY=tty1 ; PWD=/home/labricecat ; USER=root ; COMMAND=/usr/bin/pacman --remove -- xf86-video-ati
Jan 24 16:39:21 meow sudo[438]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Jan 24 16:39:22 meow sudo[438]: pam_unix(sudo:session): session closed for user root
Jan 24 16:39:26 meow systemd[410]: Created slice User Core Session Slice.
Jan 24 16:39:26 meow systemd[410]: Starting D-Bus User Message Bus...
Jan 24 16:39:26 meow dbus-broker-launch[479]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +31: Eavesdropping is deprecated and ignored
Jan 24 16:39:26 meow dbus-broker-launch[479]: Policy to allow eavesdropping in /usr/share/dbus-1/session.conf +33: Eavesdropping is deprecated and ignored
Jan 24 16:39:26 meow systemd[410]: Started D-Bus User Message Bus.
Jan 24 16:39:26 meow dbus-broker-launch[479]: Ready
Jan 24 16:39:26 meow pipewire[489]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:39:26 meow pipewire[489]: mod.rt: RTKit does not give us MaxRealtimePriority, using 1
Jan 24 16:39:26 meow pipewire[489]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:39:26 meow pipewire[489]: mod.rt: RTKit does not give us MinNiceLevel, using 0
Jan 24 16:39:26 meow pipewire[489]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:39:26 meow pipewire[489]: mod.rt: RTKit does not give us RTTimeUSecMax, using -1
Jan 24 16:39:26 meow systemd-coredump[501]: Process 463 (Xorg) of user 1000 dumped core.
                                            
                                            Stack trace of thread 463:
                                            #0  0x00007e170e47132c n/a (libc.so.6 + 0x8d32c)
                                            #1  0x00007e170e4206c8 raise (libc.so.6 + 0x3c6c8)
                                            #2  0x00007e170e4084b8 abort (libc.so.6 + 0x244b8)
                                            #3  0x000056cfe4af19f0 OsAbort (Xorg + 0x1599f0)
                                            #4  0x000056cfe4af1d2b FatalError (Xorg + 0x159d2b)
                                            #5  0x000056cfe4ae9ca6 n/a (Xorg + 0x151ca6)
                                            #6  0x00007e170e420770 n/a (libc.so.6 + 0x3c770)
                                            #7  0x00007e170b8cd545 n/a (radeonsi_dri.so + 0x6cd545)
                                            #8  0x00007e170b8cd711 n/a (radeonsi_dri.so + 0x6cd711)
                                            #9  0x00007e170bd55396 n/a (radeonsi_dri.so + 0xb55396)
                                            #10 0x00007e170bd55539 n/a (radeonsi_dri.so + 0xb55539)
                                            #11 0x00007e170b8e4e7b n/a (radeonsi_dri.so + 0x6e4e7b)
                                            #12 0x00007e170ba15803 n/a (radeonsi_dri.so + 0x815803)
                                            #13 0x00007e170b9f7dca n/a (radeonsi_dri.so + 0x7f7dca)
                                            #14 0x00007e170b9f91e1 n/a (radeonsi_dri.so + 0x7f91e1)
                                            #15 0x00007e170b9f5c50 n/a (radeonsi_dri.so + 0x7f5c50)
                                            #16 0x00007e170bd51b17 n/a (radeonsi_dri.so + 0xb51b17)
                                            #17 0x00007e170b3115d2 n/a (radeonsi_dri.so + 0x1115d2)
                                            #18 0x00007e170b2d299d n/a (radeonsi_dri.so + 0xd299d)
                                            #19 0x00007e170b2d577d n/a (radeonsi_dri.so + 0xd577d)
                                            #20 0x00007e170b2d586c n/a (radeonsi_dri.so + 0xd586c)
                                            #21 0x00007e170d69e822 n/a (libglamoregl.so + 0x28822)
                                            #22 0x00007e170d685f11 n/a (libglamoregl.so + 0xff11)
                                            #23 0x000056cfe4a6576d n/a (Xorg + 0xcd76d)
                                            #24 0x000056cfe4a0f7f5 n/a (Xorg + 0x777f5)
                                            #25 0x000056cfe49d6fee n/a (Xorg + 0x3efee)
                                            #26 0x00007e170e409cd0 n/a (libc.so.6 + 0x25cd0)
                                            #27 0x00007e170e409d8a __libc_start_main (libc.so.6 + 0x25d8a)
                                            #28 0x000056cfe49d75a5 _start (Xorg + 0x3f5a5)
                                            
                                            Stack trace of thread 464:
                                            #0  0x00007e170e46bebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x00007e170e46e750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x00007e170b28686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x00007e170b29e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x00007e170e46f55a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x00007e170e4eca3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 466:
                                            #0  0x00007e170e46bebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x00007e170e46e750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x00007e170b28686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x00007e170b29e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x00007e170e46f55a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x00007e170e4eca3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 472:
                                            #0  0x00007e170e46bebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x00007e170e46e750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x00007e170b28686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x00007e170b29e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x00007e170e46f55a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x00007e170e4eca3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 473:
                                            #0  0x00007e170e46bebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x00007e170e46e750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x00007e170b28686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x00007e170b29e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x00007e170e46f55a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x00007e170e4eca3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 475:
                                            #0  0x00007e170e46c110 n/a (libc.so.6 + 0x88110)
                                            #1  0x00007e170e472a0a pthread_mutex_lock (libc.so.6 + 0x8ea0a)
                                            #2  0x000056cfe4ae3dd5 n/a (Xorg + 0x14bdd5)
                                            #3  0x000056cfe4ae4842 n/a (Xorg + 0x14c842)
                                            #4  0x000056cfe4ae8649 n/a (Xorg + 0x150649)
                                            #5  0x00007e170e46f55a n/a (libc.so.6 + 0x8b55a)
                                            #6  0x00007e170e4eca3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 471:
                                            #0  0x00007e170e46bebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x00007e170e46e750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x00007e170b28686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x00007e170b29e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x00007e170e46f55a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x00007e170e4eca3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 465:
                                            #0  0x00007e170e46bebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x00007e170e46e750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x00007e170b28686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x00007e170b29e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x00007e170e46f55a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x00007e170e4eca3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 468:
                                            #0  0x00007e170e46bebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x00007e170e46e750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x00007e170b28686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x00007e170b29e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x00007e170e46f55a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x00007e170e4eca3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 469:
                                            #0  0x00007e170e46bebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x00007e170e46e750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x00007e170b28686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x00007e170b29e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x00007e170e46f55a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x00007e170e4eca3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 467:
                                            #0  0x00007e170e46bebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x00007e170e46e750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x00007e170b28686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x00007e170b29e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x00007e170e46f55a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x00007e170e4eca3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 470:
                                            #0  0x00007e170e46bebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x00007e170e46e750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x00007e170b28686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x00007e170b29e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x00007e170e46f55a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x00007e170e4eca3c n/a (libc.so.6 + 0x108a3c)
                                            ELF object binary architecture: AMD x86-64
Jan 24 16:39:27 meow systemd-coredump[510]: Process 488 (i3) of user 1000 dumped core.
                                            
                                            Stack trace of thread 488:
                                            #0  0x00005f3736ec87d5 n/a (i3 + 0x157d5)
                                            #1  0x00007c2f0069ecd0 n/a (libc.so.6 + 0x25cd0)
                                            #2  0x00007c2f0069ed8a __libc_start_main (libc.so.6 + 0x25d8a)
                                            #3  0x00005f3736ecac05 n/a (i3 + 0x17c05)
                                            
                                            Stack trace of thread 492:
                                            #0  0x00007c2f0077f88d syscall (libc.so.6 + 0x10688d)
                                            #1  0x00007c2f0091f337 g_cond_wait (libglib-2.0.so.0 + 0xb3337)
                                            #2  0x00007c2f008911b4 n/a (libglib-2.0.so.0 + 0x251b4)
                                            #3  0x00007c2f0089121c g_async_queue_pop (libglib-2.0.so.0 + 0x2521c)
                                            #4  0x00007c2f002aad08 n/a (libpangoft2-1.0.so.0 + 0x8d08)
                                            #5  0x00007c2f008f7a45 n/a (libglib-2.0.so.0 + 0x8ba45)
                                            #6  0x00007c2f0070455a n/a (libc.so.6 + 0x8b55a)
                                            #7  0x00007c2f00781a3c n/a (libc.so.6 + 0x108a3c)
                                            ELF object binary architecture: AMD x86-64
Jan 24 16:39:32 meow pipewire[569]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:39:32 meow pipewire[569]: mod.rt: RTKit does not give us MaxRealtimePriority, using 1
Jan 24 16:39:32 meow pipewire[569]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:39:32 meow pipewire[569]: mod.rt: RTKit does not give us MinNiceLevel, using 0
Jan 24 16:39:32 meow pipewire[569]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:39:32 meow pipewire[569]: mod.rt: RTKit does not give us RTTimeUSecMax, using -1
Jan 24 16:39:32 meow systemd-coredump[581]: Process 545 (Xorg) of user 1000 dumped core.
                                            
                                            Stack trace of thread 545:
                                            #0  0x000071882f8dc32c n/a (libc.so.6 + 0x8d32c)
                                            #1  0x000071882f88b6c8 raise (libc.so.6 + 0x3c6c8)
                                            #2  0x000071882f8734b8 abort (libc.so.6 + 0x244b8)
                                            #3  0x00005c107269b9f0 OsAbort (Xorg + 0x1599f0)
                                            #4  0x00005c107269bd2b FatalError (Xorg + 0x159d2b)
                                            #5  0x00005c1072693ca6 n/a (Xorg + 0x151ca6)
                                            #6  0x000071882f88b770 n/a (libc.so.6 + 0x3c770)
                                            #7  0x000071882cccd545 n/a (radeonsi_dri.so + 0x6cd545)
                                            #8  0x000071882cccd711 n/a (radeonsi_dri.so + 0x6cd711)
                                            #9  0x000071882d155396 n/a (radeonsi_dri.so + 0xb55396)
                                            #10 0x000071882d155539 n/a (radeonsi_dri.so + 0xb55539)
                                            #11 0x000071882cce4e7b n/a (radeonsi_dri.so + 0x6e4e7b)
                                            #12 0x000071882ce15803 n/a (radeonsi_dri.so + 0x815803)
                                            #13 0x000071882cdf7dca n/a (radeonsi_dri.so + 0x7f7dca)
                                            #14 0x000071882cdf91e1 n/a (radeonsi_dri.so + 0x7f91e1)
                                            #15 0x000071882cdf5c50 n/a (radeonsi_dri.so + 0x7f5c50)
                                            #16 0x000071882d151b17 n/a (radeonsi_dri.so + 0xb51b17)
                                            #17 0x000071882c7115d2 n/a (radeonsi_dri.so + 0x1115d2)
                                            #18 0x000071882c6d299d n/a (radeonsi_dri.so + 0xd299d)
                                            #19 0x000071882c6d577d n/a (radeonsi_dri.so + 0xd577d)
                                            #20 0x000071882c6d586c n/a (radeonsi_dri.so + 0xd586c)
                                            #21 0x000071882eb09822 n/a (libglamoregl.so + 0x28822)
                                            #22 0x000071882eaf0f11 n/a (libglamoregl.so + 0xff11)
                                            #23 0x00005c107260f76d n/a (Xorg + 0xcd76d)
                                            #24 0x00005c10725b97f5 n/a (Xorg + 0x777f5)
                                            #25 0x00005c1072580fee n/a (Xorg + 0x3efee)
                                            #26 0x000071882f874cd0 n/a (libc.so.6 + 0x25cd0)
                                            #27 0x000071882f874d8a __libc_start_main (libc.so.6 + 0x25d8a)
                                            #28 0x00005c10725815a5 _start (Xorg + 0x3f5a5)
                                            
                                            Stack trace of thread 549:
                                            #0  0x000071882f8d6ebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x000071882f8d9750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x000071882c68686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x000071882c69e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x000071882f8da55a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x000071882f957a3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 546:
                                            #0  0x000071882f8d6ebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x000071882f8d9750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x000071882c68686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x000071882c69e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x000071882f8da55a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x000071882f957a3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 547:
                                            #0  0x000071882f8d6ebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x000071882f8d9750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x000071882c68686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x000071882c69e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x000071882f8da55a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x000071882f957a3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 548:
                                            #0  0x000071882f8d6ebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x000071882f8d9750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x000071882c68686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x000071882c69e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x000071882f8da55a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x000071882f957a3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 553:
                                            #0  0x000071882f8d6ebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x000071882f8d9750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x000071882c68686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x000071882c69e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x000071882f8da55a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x000071882f957a3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 554:
                                            #0  0x000071882f8d6ebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x000071882f8d9750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x000071882c68686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x000071882c69e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x000071882f8da55a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x000071882f957a3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 557:
                                            #0  0x000071882f8d7110 n/a (libc.so.6 + 0x88110)
                                            #1  0x000071882f8dda0a pthread_mutex_lock (libc.so.6 + 0x8ea0a)
                                            #2  0x00005c107268ddd5 n/a (Xorg + 0x14bdd5)
                                            #3  0x00005c107268e842 n/a (Xorg + 0x14c842)
                                            #4  0x00005c1072692649 n/a (Xorg + 0x150649)
                                            #5  0x000071882f8da55a n/a (libc.so.6 + 0x8b55a)
                                            #6  0x000071882f957a3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 551:
                                            #0  0x000071882f8d6ebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x000071882f8d9750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x000071882c68686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x000071882c69e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x000071882f8da55a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x000071882f957a3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 555:
                                            #0  0x000071882f8d6ebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x000071882f8d9750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x000071882c68686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x000071882c69e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x000071882f8da55a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x000071882f957a3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 552:
                                            #0  0x000071882f8d6ebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x000071882f8d9750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x000071882c68686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x000071882c69e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x000071882f8da55a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x000071882f957a3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 550:
                                            #0  0x000071882f8d6ebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x000071882f8d9750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x000071882c68686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x000071882c69e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x000071882f8da55a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x000071882f957a3c n/a (libc.so.6 + 0x108a3c)
                                            ELF object binary architecture: AMD x86-64
Jan 24 16:39:33 meow systemd-coredump[590]: Process 568 (i3) of user 1000 dumped core.
                                            
                                            Stack trace of thread 568:
                                            #0  0x00006173e3b5b7d5 n/a (i3 + 0x157d5)
                                            #1  0x0000767149cf2cd0 n/a (libc.so.6 + 0x25cd0)
                                            #2  0x0000767149cf2d8a __libc_start_main (libc.so.6 + 0x25d8a)
                                            #3  0x00006173e3b5dc05 n/a (i3 + 0x17c05)
                                            
                                            Stack trace of thread 572:
                                            #0  0x0000767149dd388d syscall (libc.so.6 + 0x10688d)
                                            #1  0x0000767149f73337 g_cond_wait (libglib-2.0.so.0 + 0xb3337)
                                            #2  0x0000767149ee51b4 n/a (libglib-2.0.so.0 + 0x251b4)
                                            #3  0x0000767149ee521c g_async_queue_pop (libglib-2.0.so.0 + 0x2521c)
                                            #4  0x00007671498fed08 n/a (libpangoft2-1.0.so.0 + 0x8d08)
                                            #5  0x0000767149f4ba45 n/a (libglib-2.0.so.0 + 0x8ba45)
                                            #6  0x0000767149d5855a n/a (libc.so.6 + 0x8b55a)
                                            #7  0x0000767149dd5a3c n/a (libc.so.6 + 0x108a3c)
                                            ELF object binary architecture: AMD x86-64
Jan 24 16:39:59 meow pipewire[649]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:39:59 meow pipewire[649]: mod.rt: RTKit does not give us MaxRealtimePriority, using 1
Jan 24 16:39:59 meow pipewire[649]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:39:59 meow pipewire[649]: mod.rt: RTKit does not give us MinNiceLevel, using 0
Jan 24 16:39:59 meow pipewire[649]: mod.rt: RTKit error: org.freedesktop.DBus.Error.ServiceUnknown
Jan 24 16:39:59 meow pipewire[649]: mod.rt: RTKit does not give us RTTimeUSecMax, using -1
Jan 24 16:39:59 meow systemd-coredump[661]: Process 625 (Xorg) of user 1000 dumped core.
                                            
                                            Stack trace of thread 625:
                                            #0  0x00007a60de57232c n/a (libc.so.6 + 0x8d32c)
                                            #1  0x00007a60de5216c8 raise (libc.so.6 + 0x3c6c8)
                                            #2  0x00007a60de5094b8 abort (libc.so.6 + 0x244b8)
                                            #3  0x00005992c328e9f0 OsAbort (Xorg + 0x1599f0)
                                            #4  0x00005992c328ed2b FatalError (Xorg + 0x159d2b)
                                            #5  0x00005992c3286ca6 n/a (Xorg + 0x151ca6)
                                            #6  0x00007a60de521770 n/a (libc.so.6 + 0x3c770)
                                            #7  0x00007a60db8cd545 n/a (radeonsi_dri.so + 0x6cd545)
                                            #8  0x00007a60db8cd711 n/a (radeonsi_dri.so + 0x6cd711)
                                            #9  0x00007a60dbd55396 n/a (radeonsi_dri.so + 0xb55396)
                                            #10 0x00007a60dbd55539 n/a (radeonsi_dri.so + 0xb55539)
                                            #11 0x00007a60db8e4e7b n/a (radeonsi_dri.so + 0x6e4e7b)
                                            #12 0x00007a60dba15803 n/a (radeonsi_dri.so + 0x815803)
                                            #13 0x00007a60db9f7dca n/a (radeonsi_dri.so + 0x7f7dca)
                                            #14 0x00007a60db9f91e1 n/a (radeonsi_dri.so + 0x7f91e1)
                                            #15 0x00007a60db9f5c50 n/a (radeonsi_dri.so + 0x7f5c50)
                                            #16 0x00007a60dbd51b17 n/a (radeonsi_dri.so + 0xb51b17)
                                            #17 0x00007a60db3115d2 n/a (radeonsi_dri.so + 0x1115d2)
                                            #18 0x00007a60db2d299d n/a (radeonsi_dri.so + 0xd299d)
                                            #19 0x00007a60db2d577d n/a (radeonsi_dri.so + 0xd577d)
                                            #20 0x00007a60db2d586c n/a (radeonsi_dri.so + 0xd586c)
                                            #21 0x00007a60dd79f822 n/a (libglamoregl.so + 0x28822)
                                            #22 0x00007a60dd786f11 n/a (libglamoregl.so + 0xff11)
                                            #23 0x00005992c320276d n/a (Xorg + 0xcd76d)
                                            #24 0x00005992c31ac7f5 n/a (Xorg + 0x777f5)
                                            #25 0x00005992c3173fee n/a (Xorg + 0x3efee)
                                            #26 0x00007a60de50acd0 n/a (libc.so.6 + 0x25cd0)
                                            #27 0x00007a60de50ad8a __libc_start_main (libc.so.6 + 0x25d8a)
                                            #28 0x00005992c31745a5 _start (Xorg + 0x3f5a5)
                                            
                                            Stack trace of thread 634:
                                            #0  0x00007a60de56cebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x00007a60de56f750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x00007a60db28686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x00007a60db29e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x00007a60de57055a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x00007a60de5eda3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 637:
                                            #0  0x00007a60de56d110 n/a (libc.so.6 + 0x88110)
                                            #1  0x00007a60de573a0a pthread_mutex_lock (libc.so.6 + 0x8ea0a)
                                            #2  0x00005992c3280dd5 n/a (Xorg + 0x14bdd5)
                                            #3  0x00005992c3281842 n/a (Xorg + 0x14c842)
                                            #4  0x00005992c3285649 n/a (Xorg + 0x150649)
                                            #5  0x00007a60de57055a n/a (libc.so.6 + 0x8b55a)
                                            #6  0x00007a60de5eda3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 631:
                                            #0  0x00007a60de56cebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x00007a60de56f750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x00007a60db28686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x00007a60db29e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x00007a60de57055a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x00007a60de5eda3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 635:
                                            #0  0x00007a60de56cebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x00007a60de56f750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x00007a60db28686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x00007a60db29e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x00007a60de57055a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x00007a60de5eda3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 626:
                                            #0  0x00007a60de56cebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x00007a60de56f750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x00007a60db28686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x00007a60db29e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x00007a60de57055a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x00007a60de5eda3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 632:
                                            #0  0x00007a60de56cebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x00007a60de56f750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x00007a60db28686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x00007a60db29e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x00007a60de57055a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x00007a60de5eda3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 630:
                                            #0  0x00007a60de56cebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x00007a60de56f750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x00007a60db28686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x00007a60db29e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x00007a60de57055a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x00007a60de5eda3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 627:
                                            #0  0x00007a60de56cebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x00007a60de56f750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x00007a60db28686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x00007a60db29e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x00007a60de57055a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x00007a60de5eda3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 629:
                                            #0  0x00007a60de56cebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x00007a60de56f750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x00007a60db28686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x00007a60db29e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x00007a60de57055a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x00007a60de5eda3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 628:
                                            #0  0x00007a60de56cebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x00007a60de56f750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x00007a60db28686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x00007a60db29e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x00007a60de57055a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x00007a60de5eda3c n/a (libc.so.6 + 0x108a3c)
                                            
                                            Stack trace of thread 633:
                                            #0  0x00007a60de56cebe n/a (libc.so.6 + 0x87ebe)
                                            #1  0x00007a60de56f750 pthread_cond_wait (libc.so.6 + 0x8a750)
                                            #2  0x00007a60db28686c n/a (radeonsi_dri.so + 0x8686c)
                                            #3  0x00007a60db29e83c n/a (radeonsi_dri.so + 0x9e83c)
                                            #4  0x00007a60de57055a n/a (libc.so.6 + 0x8b55a)
                                            #5  0x00007a60de5eda3c n/a (libc.so.6 + 0x108a3c)
                                            ELF object binary architecture: AMD x86-64
Jan 24 16:40:00 meow systemd-coredump[670]: Process 648 (i3) of user 1000 dumped core.
                                            
                                            Stack trace of thread 648:
                                            #0  0x00005dd7432e07d5 n/a (i3 + 0x157d5)
                                            #1  0x000077a8e6c9acd0 n/a (libc.so.6 + 0x25cd0)
                                            #2  0x000077a8e6c9ad8a __libc_start_main (libc.so.6 + 0x25d8a)
                                            #3  0x00005dd7432e2c05 n/a (i3 + 0x17c05)
                                            
                                            Stack trace of thread 652:
                                            #0  0x000077a8e6d7b88d syscall (libc.so.6 + 0x10688d)
                                            #1  0x000077a8e6f1b337 g_cond_wait (libglib-2.0.so.0 + 0xb3337)
                                            #2  0x000077a8e6e8d1b4 n/a (libglib-2.0.so.0 + 0x251b4)
                                            #3  0x000077a8e6e8d21c g_async_queue_pop (libglib-2.0.so.0 + 0x2521c)
                                            #4  0x000077a8e68a6d08 n/a (libpangoft2-1.0.so.0 + 0x8d08)
                                            #5  0x000077a8e6ef3a45 n/a (libglib-2.0.so.0 + 0x8ba45)
                                            #6  0x000077a8e6d0055a n/a (libc.so.6 + 0x8b55a)
                                            #7  0x000077a8e6d7da3c n/a (libc.so.6 + 0x108a3c)
                                            ELF object binary architecture: AMD x86-64
Jan 24 16:48:36 meow sudo[739]: pam_unix(sudo:auth): conversation failed
Jan 24 16:48:36 meow sudo[739]: pam_unix(sudo:auth): auth could not identify password for [labricecat]
Jan 24 16:48:38 meow sudo[739]: PAM Attempted to close sd-bus after fork, this should not happen.
Jan 24 16:48:47 meow sudo[743]: labricecat : TTY=tty1 ; PWD=/home/labricecat ; USER=root ; COMMAND=/usr/bin/dmesg
Jan 24 16:48:47 meow sudo[743]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Jan 24 16:48:47 meow sudo[743]: pam_unix(sudo:session): session closed for user root
Jan 24 17:07:08 meow systemd[410]: Activating special unit Exit the Session...
Jan 24 17:07:08 meow systemd[410]: Stopped target Main User Target.
Jan 24 17:07:08 meow systemd[410]: Stopped target Basic System.
Jan 24 17:07:08 meow systemd[410]: Stopped target Paths.
Jan 24 17:07:08 meow systemd[410]: Stopped target Sockets.
Jan 24 17:07:08 meow systemd[410]: Stopped target Timers.
Jan 24 17:07:08 meow systemd[410]: Closed GnuPG network certificate management daemon.
Jan 24 17:07:08 meow systemd[410]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
Jan 24 17:07:08 meow systemd[410]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
Jan 24 17:07:08 meow systemd[410]: Closed GnuPG cryptographic agent (ssh-agent emulation).
Jan 24 17:07:08 meow systemd[410]: Closed GnuPG cryptographic agent and passphrase cache.
Jan 24 17:07:08 meow systemd[410]: Closed GnuPG public key management service.
Jan 24 17:07:08 meow systemd[410]: Closed p11-kit server.
Jan 24 17:07:08 meow systemd[410]: Closed PipeWire PulseAudio.
Jan 24 17:07:08 meow systemd[410]: Closed PipeWire Multimedia System Sockets.
Jan 24 17:07:08 meow dbus-broker[480]: Dispatched 161 messages @ 2(±4)μs / message.
Jan 24 17:07:08 meow systemd[410]: Stopping D-Bus User Message Bus...
Jan 24 17:07:08 meow systemd[410]: Stopped D-Bus User Message Bus.
Jan 24 17:07:08 meow systemd[410]: Removed slice User Core Session Slice.
Jan 24 17:07:08 meow systemd[410]: Closed D-Bus User Message Bus Socket.
Jan 24 17:07:08 meow systemd[410]: Removed slice User Application Slice.
Jan 24 17:07:08 meow systemd[410]: Reached target Shutdown.
Jan 24 17:07:08 meow systemd[410]: Finished Exit the Session.
Jan 24 17:07:08 meow systemd[410]: Reached target Exit the Session.
Jan 24 17:07:08 meow (sd-pam)[412]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8004 service=[systemd-user] terminal=[] user=[labricecat] ruser=[<unknown>] rhost=[<unknown>]
-- Boot 6a38bf626e2842668e2162bc3c3a0326 --
Feb 18 14:20:06 meow systemd[400]: Queued start job for default target Main User Target.
Feb 18 14:20:06 meow systemd[400]: Created slice User Application Slice.
Feb 18 14:20:06 meow systemd[400]: Reached target Paths.
Feb 18 14:20:06 meow systemd[400]: Reached target Timers.
Feb 18 14:20:06 meow systemd[400]: Starting D-Bus User Message Bus Socket...
Feb 18 14:20:06 meow systemd[400]: Listening on GnuPG network certificate management daemon.
Feb 18 14:20:06 meow systemd[400]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Feb 18 14:20:06 meow systemd[400]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Feb 18 14:20:06 meow systemd[400]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Feb 18 14:20:06 meow systemd[400]: Listening on GnuPG cryptographic agent and passphrase cache.
Feb 18 14:20:06 meow systemd[400]: Listening on GnuPG public key management service.
Feb 18 14:20:06 meow systemd[400]: Listening on p11-kit server.
Feb 18 14:20:06 meow systemd[400]: Listening on D-Bus User Message Bus Socket.
Feb 18 14:20:06 meow systemd[400]: Reached target Sockets.
Feb 18 14:20:06 meow systemd[400]: Reached target Basic System.
Feb 18 14:20:06 meow systemd[400]: Reached target Main User Target.
Feb 18 14:20:06 meow systemd[400]: Startup finished in 135ms.
Feb 18 14:20:35 meow sudo[419]: labricecat : TTY=tty1 ; PWD=/home/labricecat ; USER=root ; COMMAND=/usr/bin/mv /paru/ .
Feb 18 14:20:35 meow sudo[419]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:20:35 meow sudo[419]: pam_unix(sudo:session): session closed for user root
Feb 18 14:21:08 meow sudo[460]: labricecat : TTY=tty1 ; PWD=/home/labricecat ; USER=root ; COMMAND=/usr/bin/chown -R labricecat paru
Feb 18 14:21:08 meow sudo[460]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:21:08 meow sudo[460]: pam_unix(sudo:session): session closed for user root
Feb 18 14:21:29 meow sudo[3222]: labricecat : TTY=tty1 ; PWD=/home/labricecat/paru ; USER=root ; COMMAND=/usr/bin/pacman -S makepkg fakeroot
Feb 18 14:21:29 meow sudo[3222]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:21:29 meow sudo[3222]: pam_unix(sudo:session): session closed for user root
Feb 18 14:21:32 meow sudo[3226]: labricecat : TTY=tty1 ; PWD=/home/labricecat/paru ; USER=root ; COMMAND=/usr/bin/pacman -S fakeroot
Feb 18 14:21:32 meow sudo[3226]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:21:33 meow sudo[3226]: pam_unix(sudo:session): session closed for user root
Feb 18 14:21:36 meow sudo[3250]: labricecat : TTY=tty1 ; PWD=/home/labricecat/paru ; USER=root ; COMMAND=/usr/bin/pacman -Syy fakeroot
Feb 18 14:21:36 meow sudo[3250]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:21:36 meow sudo[3250]: pam_unix(sudo:session): session closed for user root
Feb 18 14:22:03 meow sudo[3348]: labricecat : TTY=tty1 ; PWD=/home/labricecat/paru ; USER=root ; COMMAND=/usr/bin/pacman -Syy fakeroot
Feb 18 14:22:03 meow sudo[3348]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:22:03 meow sudo[3348]: pam_unix(sudo:session): session closed for user root
Feb 18 14:22:20 meow sudo[3391]: labricecat : TTY=tty1 ; PWD=/home/labricecat/paru ; USER=root ; COMMAND=/usr/bin/pacman -Syy fakeroot
Feb 18 14:22:20 meow sudo[3391]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:22:25 meow sudo[3391]: pam_unix(sudo:session): session closed for user root
Feb 18 14:22:48 meow sudo[3430]: labricecat : TTY=tty1 ; PWD=/home/labricecat/paru ; USER=root ; COMMAND=/usr/bin/vim /etc/pacman.conf
Feb 18 14:22:48 meow sudo[3430]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:22:58 meow sudo[3430]: pam_unix(sudo:session): session closed for user root
Feb 18 14:23:00 meow sudo[3435]: labricecat : TTY=tty1 ; PWD=/home/labricecat/paru ; USER=root ; COMMAND=/usr/bin/pacman -Syy fakeroot
Feb 18 14:23:00 meow sudo[3435]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:23:08 meow sudo[3435]: pam_unix(sudo:session): session closed for user root
Feb 18 14:23:09 meow sudo[3467]: labricecat : TTY=tty1 ; PWD=/home/labricecat/paru ; USER=root ; COMMAND=/usr/bin/vim /etc/pacman.conf
Feb 18 14:23:09 meow sudo[3467]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:23:19 meow sudo[3467]: pam_unix(sudo:session): session closed for user root
Feb 18 14:23:23 meow sudo[3473]: labricecat : TTY=tty1 ; PWD=/home/labricecat/paru ; USER=root ; COMMAND=/usr/bin/pacman -Syyu
Feb 18 14:23:23 meow sudo[3473]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:23:25 meow sudo[3473]: pam_unix(sudo:session): session closed for user root
Feb 18 14:24:20 meow sudo[6765]: labricecat : TTY=tty1 ; PWD=/home/labricecat/paru ; USER=root ; COMMAND=/usr/bin/pacman -S openssl
Feb 18 14:24:20 meow sudo[6765]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:24:22 meow sudo[6765]: pam_unix(sudo:session): session closed for user root
Feb 18 14:24:56 meow sudo[9687]: labricecat : TTY=tty1 ; PWD=/home/labricecat/paru ; USER=root ; COMMAND=/usr/bin/pacman -S pkg-config
Feb 18 14:24:56 meow sudo[9687]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:24:57 meow sudo[9687]: pam_unix(sudo:session): session closed for user root
Feb 18 14:29:16 meow sudo[17161]: labricecat : TTY=tty1 ; PWD=/home/labricecat/paru ; USER=root ; COMMAND=/usr/bin/pacman -U /home/labricecat/paru/paru-2.0.1-1-x86_64.pkg.tar.zst /home/labricecat/paru/paru-debug-2.0.1-1-x86_64.pkg.tar.zst
Feb 18 14:29:16 meow sudo[17161]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:29:19 meow sudo[17161]: pam_unix(sudo:session): session closed for user root
Feb 18 14:29:36 meow sudo[17179]: labricecat : TTY=tty1 ; PWD=/home/labricecat/paru ; USER=root ; COMMAND=/usr/bin/pacman --sync -y -y -u -- adobe-source-han-sans-jp-fonts asio base base-devel bat calc cmake composer ddgr ddrescue dkms dotnet-runtime dpkg elinks ext4magic fakeroot fd feh ffmpeg ffmpegthumbnailer firefox fontforge foremost fzf gdb gimp git highlight htop i3-wm i3blocks i3lock i3status imagemagick intellij-idea-community-edition js91 kitty lftp lib32-pipewire lib32-sdl2 libjpeg-turbo limine linux linux-firmware llvm luarocks magic-wormhole maim man-db man-pages maven meson mumble nasm neofetch neovim networkmanager npm obs-studio openshot peek picom pipewire pipewire-alsa pipewire-pulse pkgconf polybar python-gobject python-pip python-pipx python-pygments qemu-desktop qemu-full qemu-img qemu-system-x86 qpwgraph ranger ripgrep rofi rust sad sdl12-compat speech-dispatcher steam sudo syncthing testdisk tree tree-sitter-cli ttf-fira-code ttf-firacode-nerd unrar unzip
Feb 18 14:29:36 meow sudo[17179]: labricecat : (command continued) uwufetch valgrind vi vim wget wine winetricks wireplumber xclip xdg-user-dirs xdg-utils xerces-c xf86-video-ati xf86-video-vesa xorg-bdftopcf xorg-docs xorg-font-util xorg-fonts-100dpi xorg-fonts-75dpi xorg-iceauth xorg-mkfontscale xorg-server xorg-server-devel xorg-server-xephyr xorg-server-xnest xorg-sessreg xorg-smproxy xorg-x11perf xorg-xbacklight xorg-xcmsdb xorg-xcursorgen xorg-xdpyinfo xorg-xdriinfo xorg-xev xorg-xgamma xorg-xhost xorg-xinit xorg-xinput xorg-xkbevd xorg-xkbutils xorg-xkill xorg-xlsatoms xorg-xlsclients xorg-xlsfonts xorg-xpr xorg-xrefresh xorg-xsetroot xorg-xvinfo xorg-xwayland xorg-xwd xorg-xwininfo xorg-xwud yt-dlp ytfzf zip
Feb 18 14:29:36 meow sudo[17179]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:30:46 meow sudo[17179]: pam_unix(sudo:session): session closed for user root
Feb 18 14:30:52 meow sudo[17192]: labricecat : TTY=tty1 ; PWD=/home/labricecat/paru ; USER=root ; COMMAND=/usr/bin/pacman --sync -y -y -u -- adobe-source-han-sans-jp-fonts asio base base-devel bat calc cmake composer ddgr ddrescue dkms dotnet-runtime dpkg elinks ext4magic fakeroot fd feh ffmpeg ffmpegthumbnailer firefox fontforge foremost fzf gdb gimp git highlight htop i3-wm i3blocks i3lock i3status imagemagick intellij-idea-community-edition js91 kitty lftp lib32-pipewire lib32-sdl2 libjpeg-turbo limine linux linux-firmware llvm luarocks magic-wormhole maim man-db man-pages maven meson mumble nasm neofetch neovim networkmanager npm obs-studio openshot peek picom pipewire pipewire-alsa pipewire-pulse pkgconf polybar python-gobject python-pip python-pipx python-pygments qemu-desktop qemu-full qemu-img qemu-system-x86 qpwgraph ranger ripgrep rofi rust sad sdl12-compat speech-dispatcher steam sudo syncthing testdisk tree tree-sitter-cli ttf-fira-code ttf-firacode-nerd unrar unzip
Feb 18 14:30:52 meow sudo[17192]: labricecat : (command continued) uwufetch valgrind vi vim wget wine winetricks wireplumber xclip xdg-user-dirs xdg-utils xerces-c xf86-video-ati xf86-video-vesa xorg-bdftopcf xorg-docs xorg-font-util xorg-fonts-100dpi xorg-fonts-75dpi xorg-iceauth xorg-mkfontscale xorg-server xorg-server-devel xorg-server-xephyr xorg-server-xnest xorg-sessreg xorg-smproxy xorg-x11perf xorg-xbacklight xorg-xcmsdb xorg-xcursorgen xorg-xdpyinfo xorg-xdriinfo xorg-xev xorg-xgamma xorg-xhost xorg-xinit xorg-xinput xorg-xkbevd xorg-xkbutils xorg-xkill xorg-xlsatoms xorg-xlsclients xorg-xlsfonts xorg-xpr xorg-xrefresh xorg-xsetroot xorg-xvinfo xorg-xwayland xorg-xwd xorg-xwininfo xorg-xwud yt-dlp ytfzf zip
Feb 18 14:30:52 meow sudo[17192]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:31:29 meow sudo[17192]: pam_unix(sudo:session): session closed for user root
Feb 18 14:31:35 meow sudo[17203]: labricecat : TTY=tty1 ; PWD=/home/labricecat/paru ; USER=root ; COMMAND=/usr/bin/pacman --sync -y -y -u --
Feb 18 14:31:35 meow sudo[17203]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:31:37 meow sudo[17203]: pam_unix(sudo:session): session closed for user root
Feb 18 14:31:42 meow sudo[17216]: labricecat : TTY=tty1 ; PWD=/home/labricecat/paru ; USER=root ; COMMAND=/usr/bin/pacman --sync -- adobe-source-han-sans-jp-fonts asio base base-devel bat calc cmake composer ddgr ddrescue dkms dotnet-runtime dpkg elinks ext4magic fakeroot fd feh ffmpeg ffmpegthumbnailer firefox fontforge foremost fzf gdb gimp git highlight htop i3-wm i3blocks i3lock i3status imagemagick intellij-idea-community-edition js91 kitty lftp lib32-pipewire lib32-sdl2 libjpeg-turbo limine linux linux-firmware llvm luarocks magic-wormhole maim man-db man-pages maven meson mumble nasm neofetch neovim networkmanager npm obs-studio openshot peek picom pipewire pipewire-alsa pipewire-pulse pkgconf polybar python-gobject python-pip python-pipx python-pygments qemu-desktop qemu-full qemu-img qemu-system-x86 qpwgraph ranger ripgrep rofi rust sad sdl12-compat speech-dispatcher steam sudo syncthing testdisk tree tree-sitter-cli ttf-fira-code ttf-firacode-nerd unrar unzip uwufetch
Feb 18 14:31:42 meow sudo[17216]: labricecat : (command continued) valgrind vi vim wget wine winetricks wireplumber xclip xdg-user-dirs xdg-utils xerces-c xf86-video-ati xf86-video-vesa xorg-bdftopcf xorg-docs xorg-font-util xorg-fonts-100dpi xorg-fonts-75dpi xorg-iceauth xorg-mkfontscale xorg-server xorg-server-devel xorg-server-xephyr xorg-server-xnest xorg-sessreg xorg-smproxy xorg-x11perf xorg-xbacklight xorg-xcmsdb xorg-xcursorgen xorg-xdpyinfo xorg-xdriinfo xorg-xev xorg-xgamma xorg-xhost xorg-xinit xorg-xinput xorg-xkbevd xorg-xkbutils xorg-xkill xorg-xlsatoms xorg-xlsclients xorg-xlsfonts xorg-xpr xorg-xrefresh xorg-xsetroot xorg-xvinfo xorg-xwayland xorg-xwd xorg-xwininfo xorg-xwud yt-dlp ytfzf zip
Feb 18 14:31:42 meow sudo[17216]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:31:48 meow sudo[17216]: pam_unix(sudo:session): session closed for user root
Feb 18 14:32:39 meow sudo[17230]: labricecat : TTY=tty1 ; PWD=/home/labricecat/paru ; USER=root ; COMMAND=/usr/bin/pacman --sync -- adobe-source-han-sans-jp-fonts asio base base-devel bat calc cmake composer ddgr ddrescue dkms dotnet-runtime dpkg elinks ext4magic fakeroot fd feh ffmpeg ffmpegthumbnailer firefox fontforge foremost fzf gdb gimp git highlight htop i3-wm i3blocks i3lock i3status imagemagick intellij-idea-community-edition js91 kitty lftp lib32-pipewire lib32-sdl2 libjpeg-turbo limine linux linux-firmware llvm luarocks magic-wormhole maim man-db man-pages maven meson mumble nasm neofetch neovim networkmanager npm obs-studio openshot peek picom pipewire pipewire-alsa pipewire-pulse pkgconf polybar python-gobject python-pip python-pipx python-pygments qemu-desktop qemu-full qemu-img qemu-system-x86 qpwgraph ranger ripgrep rofi rust sad sdl12-compat speech-dispatcher steam sudo syncthing testdisk tree tree-sitter-cli ttf-fira-code ttf-firacode-nerd unrar unzip uwufetch
Feb 18 14:32:39 meow sudo[17230]: labricecat : (command continued) valgrind vi vim wget wine winetricks wireplumber xclip xdg-user-dirs xdg-utils xerces-c xorg-bdftopcf xorg-docs xorg-font-util xorg-fonts-100dpi xorg-fonts-75dpi xorg-iceauth xorg-mkfontscale xorg-server xorg-server-devel xorg-server-xephyr xorg-server-xnest xorg-sessreg xorg-smproxy xorg-x11perf xorg-xbacklight xorg-xcmsdb xorg-xcursorgen xorg-xdpyinfo xorg-xdriinfo xorg-xev xorg-xgamma xorg-xhost xorg-xinit xorg-xinput xorg-xkbevd xorg-xkbutils xorg-xkill xorg-xlsatoms xorg-xlsclients xorg-xlsfonts xorg-xpr xorg-xrefresh xorg-xsetroot xorg-xvinfo xorg-xwayland xorg-xwd xorg-xwininfo xorg-xwud yt-dlp ytfzf zip
Feb 18 14:32:39 meow sudo[17230]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:32:58 meow sudo[17230]: pam_unix(sudo:session): session closed for user root
Feb 18 14:33:01 meow sudo[17240]: labricecat : TTY=tty1 ; PWD=/home/labricecat/paru ; USER=root ; COMMAND=/usr/bin/pacman --sync -- libffi
Feb 18 14:33:01 meow sudo[17240]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:33:03 meow sudo[17240]: pam_unix(sudo:session): session closed for user root
Feb 18 14:33:07 meow sudo[17275]: labricecat : TTY=tty1 ; PWD=/home/labricecat/paru ; USER=root ; COMMAND=/usr/bin/pacman --sync -- lib32-libffi
Feb 18 14:33:07 meow sudo[17275]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:33:19 meow sudo[17275]: pam_unix(sudo:session): session closed for user root
Feb 18 14:33:25 meow sudo[17285]: labricecat : TTY=tty1 ; PWD=/home/labricecat/paru ; USER=root ; COMMAND=/usr/bin/pacman --remove -n -s -- libffi
Feb 18 14:33:25 meow sudo[17285]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:33:25 meow sudo[17285]: pam_unix(sudo:session): session closed for user root
Feb 18 14:33:53 meow sudo[17302]: labricecat : TTY=tty1 ; PWD=/home/labricecat/paru ; USER=root ; COMMAND=/usr/bin/pacman --sync --ignore=lib32-libffi -- adobe-source-han-sans-jp-fonts asio base base-devel bat calc cmake composer ddgr ddrescue dkms dotnet-runtime dpkg elinks ext4magic fakeroot fd feh ffmpeg ffmpegthumbnailer firefox fontforge foremost fzf gdb gimp git highlight htop i3-wm i3blocks i3lock i3status imagemagick intellij-idea-community-edition js91 kitty lftp lib32-pipewire lib32-sdl2 libjpeg-turbo limine linux linux-firmware llvm luarocks magic-wormhole maim man-db man-pages maven meson mumble nasm neofetch neovim networkmanager npm obs-studio openshot peek picom pipewire pipewire-alsa pipewire-pulse pkgconf polybar python-gobject python-pip python-pipx python-pygments qemu-desktop qemu-full qemu-img qemu-system-x86 qpwgraph ranger ripgrep rofi rust sad sdl12-compat speech-dispatcher steam sudo syncthing testdisk tree tree-sitter-cli ttf-fira-code ttf-firacode-nerd
Feb 18 14:33:53 meow sudo[17302]: labricecat : (command continued) unrar unzip uwufetch valgrind vi vim wget wine winetricks wireplumber xclip xdg-user-dirs xdg-utils xerces-c xorg-bdftopcf xorg-docs xorg-font-util xorg-fonts-100dpi xorg-fonts-75dpi xorg-iceauth xorg-mkfontscale xorg-server xorg-server-devel xorg-server-xephyr xorg-server-xnest xorg-sessreg xorg-smproxy xorg-x11perf xorg-xbacklight xorg-xcmsdb xorg-xcursorgen xorg-xdpyinfo xorg-xdriinfo xorg-xev xorg-xgamma xorg-xhost xorg-xinit xorg-xinput xorg-xkbevd xorg-xkbutils xorg-xkill xorg-xlsatoms xorg-xlsclients xorg-xlsfonts xorg-xpr xorg-xrefresh xorg-xsetroot xorg-xvinfo xorg-xwayland xorg-xwd xorg-xwininfo xorg-xwud yt-dlp ytfzf zip
Feb 18 14:33:53 meow sudo[17302]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:34:08 meow sudo[17302]: pam_unix(sudo:session): session closed for user root
Feb 18 14:34:12 meow sudo[17312]: labricecat : TTY=tty1 ; PWD=/home/labricecat/paru ; USER=root ; COMMAND=/usr/bin/pacman --sync -- wine
Feb 18 14:34:12 meow sudo[17312]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:34:21 meow sudo[17312]: pam_unix(sudo:session): session closed for user root
Feb 18 14:34:33 meow sudo[17326]: labricecat : TTY=tty1 ; PWD=/home/labricecat/paru ; USER=root ; COMMAND=/usr/bin/pacman --sync -- lib32-libffi
Feb 18 14:34:33 meow sudo[17326]: pam_unix(sudo:session): session opened for user root(uid=0) by labricecat(uid=1000)
Feb 18 14:34:36 meow sudo[17326]: pam_unix(sudo:session): session closed for user root
Feb 18 14:34:39 meow sudo[17341]: labricecat : TTY=tty1 ; PWD=/home/labricecat/paru ; USER=root ; COMMAND=/usr/bin/pacman --sync -- lib32-libffi libffi
Feb 18 14:34:39 meow sudo[17341]: pam_unix(sudo:session): session

Last edited by LabRicecat (2024-02-21 13:30:00)

Offline

#4 2024-02-21 13:36:52

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

Re: [SOLVED] GPU drivers broken after update. Cant start display servers.

curacao chip, so it's the mesa 24 bug.
Downgrade mesa or enable https://wiki.archlinux.org/title/AMDGPU … K)_support

Last edited by seth (2024-02-21 13:37:04)

Offline

#5 2024-02-21 14:29:05

loqs
Member
Registered: 2014-03-06
Posts: 18,922

Re: [SOLVED] GPU drivers broken after update. Cant start display servers.

Offline

#6 2024-02-21 14:31:56

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

Re: [SOLVED] GPU drivers broken after update. Cant start display servers.

Probably follow-up of https://bbs.archlinux.org/viewtopic.php … 6#p2152106
It's all over the forum since a couple of days.

Edit: also linking through upstream bug and patch, https://gitlab.freedesktop.org/mesa/mes … te_2290167

Last edited by seth (2024-02-21 14:32:56)

Offline

#7 2024-02-21 14:46:12

LabRicecat
Member
Registered: 2023-09-10
Posts: 36

Re: [SOLVED] GPU drivers broken after update. Cant start display servers.

seth wrote:

curacao chip, so it's the mesa 24 bug.
Downgrade mesa or enable https://wiki.archlinux.org/title/AMDGPU … K)_support

When downgrading I get the issue with GLX, and the link you sent seems to be for newer GPUs, or am I reading something wrong?

Offline

#8 2024-02-21 15:10:05

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

Re: [SOLVED] GPU drivers broken after update. Cant start display servers.

You'll be able to use the GPU on the amdgpu driver and previous reports suggest that this will side-step the issue (even previouslier reports suggest better performance, but ymmv)
As for the glx issues on downgrading, please post your xorg log w/ mesa 23 if using the amdgpu module does for some reason not work.

Offline

#9 2024-02-21 15:21:04

loqs
Member
Registered: 2014-03-06
Posts: 18,922

Re: [SOLVED] GPU drivers broken after update. Cant start display servers.

Offline

#10 2024-02-22 16:02:59

LabRicecat
Member
Registered: 2023-09-10
Posts: 36

Re: [SOLVED] GPU drivers broken after update. Cant start display servers.

Following the instructions seth provided, I was able to fix my issue. Thanks a lot!

Offline

Board footer

Powered by FluxBB