> I posted the following article on the nvidia site, we'll see what
comes
> out of it. If what I wrote si wrong or does not make sense, please
tell
> me and I'll modify it.
>
>
http://www.nvnews.net/cgi-bin/ultimatebb.cgi?ubb=get_topic&f=29&t=001044
Ah, he done it finally :-) One correction for posted script:
if [ -c /dev/.devfsd ]; then
# next lines are from original script + one of me
sed '/^alias.*char-major-.*NVdriver/d' < $confmod > $conftmp
echo "alias /dev/nvidia* NVdriver" >> $conftmp
echo "alias char-major-$major NVdriver" >> $conftmp
mv $conftmp $confmod
the sed line should actually be
sed -e '/^alias.*char-major-.*NVdriver/d' \
-e '/^alias.*/dev/nvidia.*NVdriver/d' \
< $confmod > $conftmp
You have to remove both of them, do not you? Alexander, it goes into
modules.conf as you suggested :-)
This guy (rcc) intended to email nVidia as well. Let's hope next release
will include sensible installation script.
-andrej