marietto The Xorg server is using the NVIDIA RTX 2080ti card:
[ 1202.633] (--) PCI: (0@0:2:0) 8086:3e98:1458:d000 rev 2, Mem @ 0x98000000/16777216, 0x40000000/536870912, I/O @ 0x00005000/64
[ 1202.633] (--) PCI:*(1@1:0:0) 10de:1e04:19da:2503 rev 161, Mem @ 0x96000000/16777216, 0x60000000/268435456, 0x94000000/33554432, I/O @ 0x00004000/128, BIOS @ 0x????????/524288
[ 1202.633] (--) PCI: (2@2:0:0) 10de:1c02:19da:2438 rev 161, Mem @ 0x92000000/16777216, 0x80000000/268435456, 0x90000000/33554432, I/O @ 0x00003000/128, BIOS @ 0x????????/524288
You can see the *
on the 2nd line. However, the nvidia driver fails to initialize the card:
[ 1202.649] (EE) [drm] Failed to open DRM device for pci:0001:01:00.0: -19
[ 1202.661] (EE) [drm] Failed to open DRM device for pci:0001:01:00.0: -19
[ 1202.661] (EE) open /dev/dri/card0: No such file or directory
[ 1202.661] (WW) Falling back to old probe method for modesetting
[ 1202.661] (EE) open /dev/dri/card0: No such file or directory
so, Xorg falls back to the safe option for your HW which is the wsfb
driver:
[ 1202.661] (II) wsfb(0): Creating default Display subsection in Screen section
"Builtin Default wsfb Screen 0" for depth/fbbpp 24/32
[ 1202.661] (==) wsfb(0): Depth 24, (==) framebuffer bpp 32
and that, since you probably haven't configured it to use a better resolution, defaults to 1024x768.
Try:
Uninstall modular-xorg
and xf86-video-intel
--Just use what's in the base install.
Re-create the DRM devices. As root:
cd /dev
sh ./MAKEDEV drm0 drm1 drm2
Edit /boot.cfg
and disable the nouveau
drivers by adding this line:
userconf=disable nouveau*
Reboot. Post /var/run/dmesg.boot
and current Xorg log file if X starts.