02-27-2020, 02:59 AM
(02-26-2020, 08:00 AM)tophneal Wrote: I'll check into mine this evening (I forgot my Gnome install SDs at home today.) If I can get my Arch install resized enough to install GNome, today, I'll try then if the problem exists there, too.
EDIT: Just tried this
Code:$ grep -r '/dev[^i]\|dri\|gpu' /etc/dbus-1 /usr/share/dbus-1
on a fresh Arch install, and got an error that /etc/dbus-1 did not exist. Checked with ls, and it was, in fact, not there. No dbus folder was, even after installing dbus.
What about this (on a system with broken GNOME)?
Code:
$ for d in {/etc,/usr/share}/{dbus-1,polkit-1,pam.d}; do [ -d $d ] && sudo grep -ri '/dev[^i]\|dri[^v]\|gpu' $d; done