Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
https://wiki.archlinux.org/title/Bug_reporting_guidelines
Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.
REPEAT: Do NOT report bugs for outdated packages!
FS#3186 - nvidia-legacy won't work with kernel 2.6.13
Attached to Project:
Arch Linux
Opened by Michal Kaliszka (Desmont) - Sunday, 18 September 2005, 10:00 GMT
Opened by Michal Kaliszka (Desmont) - Sunday, 18 September 2005, 10:00 GMT
|
DetailsThe package compiles without problems, but when I try to start xorg, it gives an error:
(EE) NVIDIA(0): Failed to load the NVIDIA kernel module! (EE) NVIDIA(0): *** Aborting *** (II) UnloadModule: "nvidia" (EE) Screen(s) found, but none have a usable configuration. Fatal server error: no screens found However, the nvidia module is present in the system: lsmod |grep nvidia nvidia 3918044 0 |
This task depends upon
----
#!/bin/sh
major=195
for i in 0 1 2 3; do
devfile="/dev/nvidia$i"
rm -f $devfile
if ! mknod $devfile c $major $i || ! chmod 0666 $devfile; then
echo "Couldn't create device \"$devfile\"."
exit 1
fi
done
devfile=/dev/nvidiactl
rm -f $devfile
mknod $devfile c $major 255
chmod 0666 $devfile
exit 0
----
The bad is, in dynamic /dev system this script must be run every time the system loads.
Am currently using the nv driver rather than the nvidia-legacy one.
the devices should be created by loading the module
862 ? 00:00:00 udevd
As you can see I'm running udev. The device creation works fine (for usb keys, hard disks etc), except nvidia(the legacy package - nvidia 1.0.7676-1 works just fine, but it doesn't support my card).
i don't know why it doesn't work on your systems.
Ok i have a geforce 3ti here and not a real legacy card, but that shouldn't matter.
http://bbs.archlinux.org/viewtopic.php?p=114370
But according to the nvnews.net thread it seems than it's general nvidia problem and not arch-related.
please add nvidia module again to rc.conf else it will not create the devices.
greetings
tpowa