LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 04-01-2005, 01:19 AM   #1
novice26
Member
 
Registered: Mar 2005
Distribution: Slackware 10.1-2.6.11.6
Posts: 45

Rep: Reputation: 15
Unhappy Nvidia 7174 install issue


i just did a fresh install of slackware 10.1. right after i upgraded the kernel to 2.6.11.6 using this guide http://www.linuxquestions.org/questi...icle&artid=408
just an over of the what the process was:
make mrproper
make menuconfig - changed processor type, added reiserfs, and added ALSA
make -j5 bzImage
make -j5 modules
make modules_install

mv System.map /boot/System.map-2.6.11.6
mv .config /boot/config-2.6.11.6
mv /usr/src/linux/arch/i386/boot/bzImage /boot/vmlinuz-2.6.11.6
mv /boot/vmlinuz /boot/vmlinuz-old
configured lilo
run lilo

the kernel process went smooth with no erros and i am able to be off it. next was the nvidia install 7174. run the install and in the end it said unable to build nvidia kernel.

i checked the /var/log/nvidia-installer.log and this was at the end:
Building modules, stage 2.
make -rR -f /usr/src/linux-2.6.11.6/scripts/Makefile.modpost
/usr/src/linux-26.11.6/scripts/Makefile.modpost:38: .config: No such file or directory
make[4] *** No rule to make target '.config' . Stop.
make[3] *** [modules] Error 2
Make[2] *** [modules] Error 2
NVIDIA: left KBUILD
nvidia.ko failed to build!
make[1] *** [module] Error 1
make: *** [module] Error 2
->Error

this was what i done so far to try to resolve this:
recompiled the kernel x3 times
reinstalled with defualt settings 2x
reinstalled with selecting certain programs

btw, during the kernel configuration under character device for AGPGART i couldn't take it out the only two options were build-in or module same results in the help.

your help very appreciated thanks!
 
Old 04-01-2005, 01:54 AM   #2
bathory
LQ Guru
 
Registered: Jun 2004
Location: Piraeus
Distribution: Slackware
Posts: 13,163
Blog Entries: 1

Rep: Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032Reputation: 2032
Configure your kernel for AGP support (e.g. CONFIG_AGP=m), recompile it and boot it.
Then before running the nvidia-installer do a "modprobe -q agpgart".
I had similar problems and solved them this way, following the suggestions in nvnews

Good luck
 
Old 04-01-2005, 02:17 AM   #3
novice26
Member
 
Registered: Mar 2005
Distribution: Slackware 10.1-2.6.11.6
Posts: 45

Original Poster
Rep: Reputation: 15
i'll go ahead and try that and will let you know. thanks!
 
Old 04-01-2005, 02:35 AM   #4
Linux~Powered
Member
 
Registered: Jan 2004
Location: /lost+found
Distribution: Slackware 14.2
Posts: 849

Rep: Reputation: 33
I'm no expert, but this is what your error is telling you...

Quote:
make -rR -f /usr/src/linux-2.6.11.6/scripts/Makefile.modpost
/usr/src/linux-26.11.6/scripts/Makefile.modpost:38: .config: No such file or directory
It's saying that it can't find "/usr/src/linux-26.11.6/scripts/*.config:No such file or directory". It should be /usr/src/linux-2.6.11.6/*.
 
Old 04-01-2005, 03:27 AM   #5
acidjuice
Member
 
Registered: Jan 2005
Location: a tiny spot on the iceberg
Distribution: Slackware 10.1 (dropline 2.10, kernel 2.6.11.6)
Posts: 320

Rep: Reputation: 30
hi novice,

i wrote the guide you used and there's a small problem that can happen (however i can't modify the guide anymore). there are two solutions:

solution 1

instead of
Code:
mv System.map /boot/System.map-2.6.11.6
mv .config /boot/config-2.6.11.6
mv /usr/src/linux/arch/i386/boot/bzImage /boot/vmlinuz-2.6.11.6
mv /boot/vmlinuz /boot/vmlinuz-old
use
Code:
cp System.map /boot/System.map-2.6.11.6
cp .config /boot/config-2.6.11.6
cp /usr/src/linux/arch/i386/boot/bzImage /boot/vmlinuz-2.6.11.6
cp /boot/vmlinuz /boot/vmlinuz-old
solution 2

modify Makefile.modpost in the error line to make it point at config-2.6.11.6 instead of .config. i'd rather go with solution 1.

cheers,

aj.

Last edited by acidjuice; 04-01-2005 at 03:30 AM.
 
Old 04-01-2005, 03:56 AM   #6
novice26
Member
 
Registered: Mar 2005
Distribution: Slackware 10.1-2.6.11.6
Posts: 45

Original Poster
Rep: Reputation: 15
acidjuice, i just gave it a try right now i think it worked my just right off reboot display seems better but during nvidia install shows up a conflict with a rivfb in my kernel so i need to recompile again. but will let you know. thanks!

excellent guide by the way~!
 
Old 04-01-2005, 04:18 AM   #7
acidjuice
Member
 
Registered: Jan 2005
Location: a tiny spot on the iceberg
Distribution: Slackware 10.1 (dropline 2.10, kernel 2.6.11.6)
Posts: 320

Rep: Reputation: 30
yes rivafb module needs to be not selected, however personally never had problems with it even when compiled.

cheers,

aj.
 
Old 04-01-2005, 04:53 AM   #8
novice26
Member
 
Registered: Mar 2005
Distribution: Slackware 10.1-2.6.11.6
Posts: 45

Original Poster
Rep: Reputation: 15
excellent that did the trick acidjuice thanks again!
 
Old 04-01-2005, 06:05 AM   #9
acidjuice
Member
 
Registered: Jan 2005
Location: a tiny spot on the iceberg
Distribution: Slackware 10.1 (dropline 2.10, kernel 2.6.11.6)
Posts: 320

Rep: Reputation: 30
you're welcome,

you might as well change your distro in your CP now
 
Old 04-01-2005, 07:18 AM   #10
DaWallace
Member
 
Registered: Feb 2004
Location: Southern Maine, United States
Distribution: Slackware Ubuntu Debian FreeBSD
Posts: 418

Rep: Reputation: 31
it's only a problem if the module is loaded, or the code is statically built into the kernel.

and seeing the number of people not notice that the driver works even with the module installed, but not loaded and that they can just hit ok and the driver will build and load fine, it appears that a large number of linux users cannot read.

you may or may not need to recompile again.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Nvidia 7174 Woes odin123 Slackware 83 09-08-2006 10:09 AM
howto use Nvidia 6269, NVIDIA 7174 is very buggy jery_wang2002 Arch 9 06-28-2005 02:54 PM
NVIDIA 7174 Driver - Wrong kernel sources error dezza Linux - Hardware 6 05-06-2005 01:34 PM
NVIDIA 7174 driver hangs at spalsh screen cleidh_mor Linux - Hardware 3 04-28-2005 01:28 PM
2.6.10-1.770_FC3 Reboot Fail with Nvidia 7174 Driver HikingFool Fedora 2 04-12-2005 10:10 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 02:21 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration