Hi folks,
Recently I upgraded by laptop from Slackware 13.0 to Slackware 13.1 (via DVD) following the instructions in the UPGRADE.TXT. Every part of the upgrade seemed to go with the exception that I could not start X.
Poking around in the logs I found that X wouldn't start because there was no /dev/dri/card0 directory, even though the drivers for my Intel i915 video card were loaded.
I manually created /dev/dri/card0 using:
Code:
sudo mkdir -p /dev/dri/
sudo mknod /dev/dri/card0 -m 0600 c 226 0
and was the able to start X correctly.
Of course, a subsequent reboot cleaned out my /dev/dri directory... but I can't figure out a consistent way to have this directory created (and this was not an issue for my laptop under Slackware 13.0). I'm assuming I would do this via udev, but I'm not that well versed in that software.
Thanks in advance for any suggestions!