PDA

View Full Version : Any idea what's going wrong with my nForce install on Ubuntu?


exile29
04-13-06, 12:13 AM
Here is the log:
Using: nvidia-installer ncurses user interface
-> Found package NVIDIA network driver for Linux-x86
-> Found package NVIDIA audio driver for Linux-x86
-> Please select packages for installation:
Selections:
NVIDIA audio driver for Linux-x86 (1.0-7)
-> Starting install of NVIDIA audio driver for Linux-x86
-> Checking for loaded module nvsound
-> Checking for loaded module nvaudio
-> License accepted.
-> Skipping check for conflicting rpms.
-> /proc/version is Linux version 2.6.12-10-386 (buildd@terranova) (gcc version
3.4.5 20050809 (prerelease) (Ubuntu 3.4.4-6ubuntu8.1)) #1 Sat Mar 11
16:13:17 UTC 2006
-> No precompiled kernel interface was found to match your kernel; this means
that the installer will need to compile a new kernel interface.
-> Using the kernel source path '/usr/src/linux-headers-2.6.12-10-386' as
specified by the '--kernel-source-path' commandline option.
-> Kernel source path: '/usr/src/linux-headers-2.6.12-10-386'
-> Kernel output path: '/lib/modules/2.6.12-10-386/build'
-> Performing cc_version_check with CC="gcc-3.4".
ERROR: ./nvsound/main/conftest.sh: line 9: cc: command not found

If you are using a Linux 2.4 kernel, please make sure
you either have configured kernel sources matching your
kernel or the correct set of kernel headers installed
on your system.

If you are using a Linux 2.6 kernel, please make sure
you have configured kernel sources matching your kernel
installed on your system. If you specified a separate
output directory using either the "KBUILD_OUTPUT" or
the "O" KBUILD parameter, make sure to specify this
directory with the SYSOUT environment variable or with
the appropriate nvidia-installer command line option.
ERROR: Installation of the audio driver has failed. Please see the file
'/var/log/nvidia-nforce-installer.log' for details. You may find
suggestions on fixing installation problems in the README available on
the Linux driver download page at www.nvidia.com.

Any help would be great.
Thanks!

netllama
04-13-06, 12:15 AM
You need to install gcc, the gnu compiler collection. A default Ubuntu install typically lacks development tools.

Thanks,
Lonni

blueworm
04-27-06, 04:22 AM
Is there any compelling reason for you to need to install the nforce drivers?
Ubuntu ships with forcedeth for lan and alsa for the audio.

shawanagonabe
04-29-06, 12:28 AM
Perhaps you could help us all with a step-by-step on how to setup an nForce platform using ALSA, so far, it's nothing but a pain in the royal arse to find information. And the terminal is completely new to me as I'm an old windoze user. I would rather stop using all Microsoft software if I can help it.

blueworm
04-29-06, 02:11 AM
Ubuntu should do all the work for you. ;)
Any howwhy re-invent the wheel. The documentation does not get much better than this.
http://www.alsa-project.org/alsa-doc/doc-php/template.php?company=Nvidia&card=.&chip=nForce&module=intel8x0

shawanagonabe
04-29-06, 10:54 PM
Well, for some reason, (this isn't the first time I've tried) Ubuntu Hoary didn't setup my nforce drivers and, I figure, breezy works off of old settings and therefore didn't update the nforce chipset with the intel i8x0 drivers that Knoppix Live CD used. So, that said, I have to start at the ground and build my hotel.

Thank you for the link, I'm checking it out right now. (nana2)

[DK]-E
05-05-06, 06:50 PM
Well, for some reason, (this isn't the first time I've tried) Ubuntu Hoary didn't setup my nforce drivers and, I figure, breezy works off of old settings and therefore didn't update the nforce chipset with the intel i8x0 drivers that Knoppix Live CD used. So, that said, I have to start at the ground and build my hotel.

Thank you for the link, I'm checking it out right now. (nana2)

I don't seem to be able to make out your mb nforce version, but if it's nforce 2 I for one would like to see your hotel if you've built one :p ;)

-E

Random Roadkill
06-25-06, 11:16 AM
You need to install gcc, the gnu compiler collection. A default Ubuntu install typically lacks development tools.

Thanks,
Lonni

I've this problem installing the gfx drivers, but how do i do this using the terminal, as im am fairly new to Linux??

devrandom
06-26-06, 09:26 PM
I've this problem installing the gfx drivers, but how do i do this using the terminal, as im am fairly new to Linux??
first install gcc and other stuff needed for compiling:
sudo apt-get install build-essential
you also have to find out, what kernel version you are using:
uname -r
than use that info and install the appropriate kernel-headers:
sudo apt-get install linux-headers-2.6.12-10-386 (your kernel version)
you might also need the complete kernel source (but I'm not sure, whether this is really necessary)
sudo apt-get install linux-source-2.6.12 (your version without the last numbers)XX
that should do the trick. :thumbsup: