LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Debian
User Name
Password
Debian This forum is for the discussion of Debian Linux.

Notices


Reply
  Search this Thread
Old 11-21-2003, 07:15 PM   #1
ertmann|CPH
Member
 
Registered: Oct 2003
Location: Copenhagen
Distribution: Debian SID
Posts: 36

Rep: Reputation: 15
debian - kernel 2.4.22-1 - nvidia problems


im trying to get the nvidia drivers to work, having troubles though heres a part of the log

Quote:
Using: nvidia-installer ncurses user interface
-> License accepted.
-> No precompiled kernel interface was found to match your kernel; would you li
ke the installer to attempt to download a kernel interface for your kernel f
rom the NVIDIA ftp site (ftp://download.nvidia.com)? (Answer: Yes)
-> No matching precompiled kernel interface was found on the NVIDIA ftp site;
this means that the installer will need to compile a kernel interface for
your kernel.
-> Kernel include path: '/usr/src/linux/include'
-> Cleaning kernel module build directory.
executing: 'cd ./usr/src/nv; make clean'...
rm -f nv.o os-agp.o os-interface.o os-registry.o nv-linux.o nv_compiler.h *
.d NVdriver nvidia.o
-> Building kernel module:
executing: 'cd ./usr/src/nv; make nvidia.o SYSINCLUDE=/usr/src/linux/include
'...
echo \#define NV_COMPILER \"`cc -v 2>&1 | tail -n 1`\" > nv_compiler.h
cc -c -Wall -Wimplicit -Wreturn-type -Wswitch -Wformat -Wchar-subscripts -Wp
arentheses -Wpointer-arith -Wcast-qual -Wno-multichar -O -MD -D__KERNEL__ -
DMODULE -D_LOOSE_KERNEL_NAMES -DNTRM -D_GNU_SOURCE -D_LOOSE_KERNEL_NAMES -D_
_KERNEL__ -DMODULE -DNV_MAJOR_VERSION=1 -DNV_MINOR_VERSION=0 -DNV_PATCHLEVE
L=4496 -DNV_UNIX -DNV_LINUX -DNV_INT64_OK -DNVCPU_X86 -DREMAP_PA
GE_RANGE_4 -I. -I/usr/src/linux/include -Wno-cast-qual nv.c
cc -c -Wall -Wimplicit -Wreturn-type -Wswitch -Wformat -Wchar-subscripts -Wp
arentheses -Wpointer-arith -Wcast-qual -Wno-multichar -O -MD -D__KERNEL__ -
DMODULE -D_LOOSE_KERNEL_NAMES -DNTRM -D_GNU_SOURCE -D_LOOSE_KERNEL_NAMES -D_
_KERNEL__ -DMODULE -DNV_MAJOR_VERSION=1 -DNV_MINOR_VERSION=0 -DNV_PATCHLEVE
L=4496 -DNV_UNIX -DNV_LINUX -DNV_INT64_OK -DNVCPU_X86 -DREMAP_PA
GE_RANGE_4 -I. -I/usr/src/linux/include -Wno-cast-qual os-agp.c
cc -c -Wall -Wimplicit -Wreturn-type -Wswitch -Wformat -Wchar-subscripts -Wp
arentheses -Wpointer-arith -Wcast-qual -Wno-multichar -O -MD -D__KERNEL__ -
DMODULE -D_LOOSE_KERNEL_NAMES -DNTRM -D_GNU_SOURCE -D_LOOSE_KERNEL_NAMES -D_
_KERNEL__ -DMODULE -DNV_MAJOR_VERSION=1 -DNV_MINOR_VERSION=0 -DNV_PATCHLEVE
L=4496 -DNV_UNIX -DNV_LINUX -DNV_INT64_OK -DNVCPU_X86 -DREMAP_PA
GE_RANGE_4 -I. -I/usr/src/linux/include -Wno-cast-qual os-interface.c
os-interface.c:729: warning: `wb_list' defined but not used
cc -c -Wall -Wimplicit -Wreturn-type -Wswitch -Wformat -Wchar-subscripts -Wp
arentheses -Wpointer-arith -Wcast-qual -Wno-multichar -O -MD -D__KERNEL__ -
DMODULE -D_LOOSE_KERNEL_NAMES -DNTRM -D_GNU_SOURCE -D_LOOSE_KERNEL_NAMES -D_
_KERNEL__ -DMODULE -DNV_MAJOR_VERSION=1 -DNV_MINOR_VERSION=0 -DNV_PATCHLEVE
L=4496 -DNV_UNIX -DNV_LINUX -DNV_INT64_OK -DNVCPU_X86 -DREMAP_PA
GE_RANGE_4 -I. -I/usr/src/linux/include -Wno-cast-qual os-registry.c
ld -r -o nv-linux.o nv.o os-agp.o os-interface.o os-registry.o
ld -r -o nvidia.o nv-linux.o nv-kernel.o
-> done.
-> Kernel module compilation complete.
ERROR: Unable to load the kernel module 'nvidia.o'. This is most likely
because the kernel module was built using the wrong kernel header files.
Please make sure you have installed the kernel header files for your
kernel; on Red Hat Linux systems, for example, be sure you have the
'kernel-source' rpm installed. If you know the correct kernel header
files are installed, you may specify the kernel include path with the
'--kernel-include-path' commandline option.
However, a uname -r gives this 2.4.22-1-386

and i have apted and installed these files
kernel-headers-2.4.22-1-386 2.4.22-3 and
kernel-source-2.4.22

which should be correct eh?

I have linked them by the command

ln -sf kernel-headers-2.4.22-1-386 linux in the /usr/src directory

but in no vain, can anyone help me out?
 
Old 11-21-2003, 10:31 PM   #2
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
/usr/src/linux should point to /usr/src/linux-<your kernel version here>.

You made the wrong symbolic link as it points to kernel-headers.

# Compiling/installing kernel modules
You will need to have installed:
1. The developmental packages (compiler)
2. The kernel source code that matches your running kernel
3. The module source or install code

Check out your system and look under the hood and see if you installed the stuff you need to do the job. Open an x terminal and type in this sequence of commands to see what kernel we are running and see if you have the kernel source installed:
Code:
[fancy@tinwhistle fancy]$ su -
Password:
[root@tinwhistle root]# uname -r
2.4.18-3
I am running kernel version 2.4.18-3. Do I have the proper source code?
Code:
[root@tinwhistle root]# cd /usr/src
[root@tinwhistle src]# ls -alc
total 3
drwxr-xr-x    4 root     root          136 Jun 12 14:53 .
drwxr-xr-x   16 root     root          424 Jun  4 12:04 ..
lrwxrwxrwx    1 root     root           14 Jun  4 12:11 linux-2.4 -> linux-2.4.18-3
drwxr-xr-x   16 root     root          584 Jun  4 12:11 linux-2.4.18-3
drwxr-xr-x    7 root     root          168 Jun  4 12:08 redhat
[root@tinwhistle src]#
I do have the same kernel version source code installed in the directory /usr/src/linux-2.4.18-3 and there is a symbolic link named linux-2.4 pointing to it.

If you don't see something similiar to this (but in color), you will need to install the kernel source.

NOTE: I noticed that Red Hat didn't make the symbolic link /usr/src/linux that all of the INSTALL files that I have read mentioned that I need, so I may as well make one now to save editing the files in the source code to install.So, I'll make it just now:
Code:
[root@tinwhistle src]# ln -s linux-2.4.18-3 linux         
[root@tinwhistle src]# ls -alc
total 3
drwxr-xr-x    4 root     root          160 Jun 12 15:46 .
drwxr-xr-x   16 root     root          424 Jun  4 12:04 ..
lrwxrwxrwx    1 root     root           14 Jun 12 15:46 linux -> linux-2.4.18-3
lrwxrwxrwx    1 root     root           14 Jun  4 12:11 linux-2.4 -> linux-2.4.18-3
drwxr-xr-x   16 root     root          584 Jun  4 12:11 linux-2.4.18-3
drwxr-xr-x    7 root     root          168 Jun  4 12:08 redhat
[root@tinwhistle src]#
Ah, there it is, so that's done.

Next, did I install the compiler?
Code:
[root@tinwhistle src]# gcc -v          
Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/2.96/specs
gcc version 2.96 20000731 (Red Hat Linux 7.3 2.96-113)
[root@tinwhistle src]#
Yes, I have a compiler installed.

If you don't have those two things installed, you have to install them first off your install CD.

If they are installed, download the source and happy comiling. Make sure you carefully read the README and INSTALL files after extracting and before compiling/installing.

# Guides to software management
LNAG - How do I install a program I downloaded from the Internet?
Rute Guide's software explanation
You might want to check out CheckInstall to manage source code installations/uninstallation

Last edited by fancypiper; 11-21-2003 at 10:36 PM.
 
Old 11-21-2003, 11:44 PM   #3
ertmann|CPH
Member
 
Registered: Oct 2003
Location: Copenhagen
Distribution: Debian SID
Posts: 36

Original Poster
Rep: Reputation: 15
Well, i do think i have all the stuff, but i maybe i have f**** something up during the process of making it work anyway..... if you'd please have a look at this, and tell me if it's all wrong, and how to fix it if it is - especially how to fix the symlink

Quote:
localhost:/home/sertmann# uname -r
2.4.22-1-386
Quote:
localhost:/usr/src# ls -alc
total 20
drwxrwsr-x 5 root src 4096 2003-11-22 06:29 .
drwxr-xr-x 12 root root 4096 2003-11-20 18:09 ..
drwxr-xr-x 3 root root 4096 2003-11-22 06:34 kernel-headers-2.4.22-1
drwxr-xr-x 15 root root 4096 2003-11-22 06:29 kernel-source-2.4.22
lrwxrwxrwx 1 root src 23 2003-11-21 11:33 linux -> kernel-headers-2.4.22-1
drwxr-xr-x 7 root root 4096 2003-11-20 18:10 rpm
Quote:
localhost:/usr/src# gcc -v
Reading specs from /usr/lib/gcc-lib/i486-linux/3.3.2/specs
Configured with: ../src/configure -v --enable-languages=c,c++,java,f77,pascal,objc,ada,treelang --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-gxx-include-dir=/usr/include/c++/3.3 --enable-shared --with-system-zlib --enable-nls --without-included-gettext --enable-__cxa_atexit --enable-clocale=gnu --enable-debug --enable-java-gc=boehm --enable-java-awt=xlib --enable-objc-gc i486-linux
Thread model: posix
gcc version 3.3.2 (Debian)
 
Old 11-22-2003, 01:53 AM   #4
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
Strange.. your kernel source should have a directory /usr/src/linux-2.4.22-1, I think, but I haven't used Debian, so I may be wrong. Can any Debian users confirm this?

Did you install it by apt-get install kernel-source?

You might try using the symbolic link

ln -sf kernel-source-2.4.22 linux

and see it you can install
 
Old 11-22-2003, 03:35 AM   #5
ertmann|CPH
Member
 
Registered: Oct 2003
Location: Copenhagen
Distribution: Debian SID
Posts: 36

Original Poster
Rep: Reputation: 15
yeah, installed both kernel-headers and kernel-source via apt-get

your trick, didn't help though - anyone else?
 
Old 11-22-2003, 06:19 AM   #6
TigerOC
Senior Member
 
Registered: Jan 2003
Location: Devon, UK
Distribution: Debian Etc/kernel 2.6.18-4K7
Posts: 2,380

Rep: Reputation: 49
When I did in the install I noticed in the docs that by default the nvidia compile looks for the headers in /usr/include/linux. I copied the header files to this directory and had no real problems. I know that debian puts them in /usr/src
 
Old 11-22-2003, 06:39 AM   #7
llamakc
Member
 
Registered: Nov 2003
Distribution: Debian & Ubuntu
Posts: 402

Rep: Reputation: 31
The issue at hand is going into the source tree that is similar to your running kernel-image (so if you have kernel-image-2.4.22-* go into kernel-source-2.4.22 which should have a symlink to /usr/src/linux

$ ln -s /usr/src/kernel-source-2.4.22 /usr/src/linux

and type make dep

$ make dep

then the nvidia driver should compile. Also, if you get a kernel-mismatch error about the compiler, check which compiler the kernel-image was compiled with by doing:

$ cat /proc/version

That should help.

Once more, the deal is that you need make dep. You can copy the config that came with the kernel-image to /usr/src/linux and run make dep too. This config is in /boot and will be named

config-2.4.22-1-686 or something of the sorts.

$cp /boot/config-2.4.22-1-686 /usr/src/linux/.config

AFTER saving any .config you already have there!

$ make dep

HTH
 
Old 11-22-2003, 07:30 AM   #8
ertmann|CPH
Member
 
Registered: Oct 2003
Location: Copenhagen
Distribution: Debian SID
Posts: 36

Original Poster
Rep: Reputation: 15
thanks for your help, but this didn't work either...

I removed both kernel-source and kernel-headers

ran apt-get install kernel-source-2.4.22 & apt-get install kernel-headers-2.4.22-1-386

went into the source directory

cd /usr/src/kernel-source-2.4.22

made symlink

ln -s /usr/src/kernel-source-2.4.22 /usr/src/linux

typed

make dep

which ran, but came out with one error (find: /usr/src/kernel-source-2.4.22/include/asm: No such file or directory)

ran the nvidia installer, and same problem

ERROR: Unable to load the kernel module 'nvidia.o'. This is most likely
because the kernel module was built using the wrong kernel header files.
Please make sure you have installed the kernel header files for your
kernel

checked the compiler, and it's the same version.
 
Old 11-22-2003, 07:35 AM   #9
llamakc
Member
 
Registered: Nov 2003
Distribution: Debian & Ubuntu
Posts: 402

Rep: Reputation: 31
Since you have the kernel-source package you don't need the kernel-headers package. You may remove the kernel-headers-2.4.22-1-386.

Go into the /usr/src/kernel-source-2.4.22 and make menuconfig. Save the default config. THEN run make dep (my fault for forgetting).

Then create the symlink

$ ln -s /usr/src/kernel-source-2.4.22 /usr/src/linux

Then rerun the installer.

Ya know, I have had this same problem with nvidia before and I've figured it out. I knew I should have made a page...
 
Old 11-22-2003, 08:30 AM   #10
ertmann|CPH
Member
 
Registered: Oct 2003
Location: Copenhagen
Distribution: Debian SID
Posts: 36

Original Poster
Rep: Reputation: 15
still doesn't work, here's what i did

su
apt-get remove kernel-source-2.4.22
apt-get remove kernel-headers-2.4.22-1
deleted the two folders with nautilus as root
apt-get install kernel-source-2.4.22
bunzip2 kernel-source-2.4.22.tar.bz2
tar xvf kernel-source-2-4-22.tar
cd /usr/src/kernel-source-2.4.22
make menu-config
> (select) exit > do you want to save your new kernel konfiguration > yes
make dep (runs no errors i can see)
ln -s /usr/src/kernel-source-2.4.22 /usr/src/linux
init 1
cd /home/sertmann/Download
sh NVIDIA-Linux-x86-1.0-4496-pkg2.run

same error

tried 'sh NVIDIA-Linux-x86-1.0-4496-pkg2.run --kernel-include-path /usr/src/linux/include (installer adds /linux itself)

same error

Last edited by ertmann|CPH; 11-22-2003 at 08:37 AM.
 
Old 11-22-2003, 08:35 AM   #11
llamakc
Member
 
Registered: Nov 2003
Distribution: Debian & Ubuntu
Posts: 402

Rep: Reputation: 31
I'm exhausted then. Hopefully somebody will come by and illuminate. In the meantime, you can use the stock XFree "nv" driver to get X temporarily running...

--ken
 
Old 11-22-2003, 08:50 AM   #12
ertmann|CPH
Member
 
Registered: Oct 2003
Location: Copenhagen
Distribution: Debian SID
Posts: 36

Original Poster
Rep: Reputation: 15
here is the full log.....

----------------------------------------------------------------------------------------------------------

nvidia-installer log file '/var/log/nvidia-installer.log'
creation time: Sat Nov 22 15:44:50 2003

option status:
license pre-accepted : false
update : false
force update : false
expert : false
uninstall : false
driver info : false
no precompiled interface: false
no ncurses color : false
query latest driver ver : false
OpenGL header files : false
no questions : false
silent : false
XFree86 install prefix : /usr/X11R6
OpenGL install prefix : /usr
Installer install prefix: /usr
kernel include path : (not specified)
kernel install path : (not specified)
proc mount point : /proc
ui : (not specified)
tmpdir : /tmp
ftp site : ftp://download.nvidia.com

Using: nvidia-installer ncurses user interface
-> License accepted.
-> No precompiled kernel interface was found to match your kernel; would you li
ke the installer to attempt to download a kernel interface for your kernel f
rom the NVIDIA ftp site (ftp://download.nvidia.com)? (Answer: Yes)
-> No matching precompiled kernel interface was found on the NVIDIA ftp site;
this means that the installer will need to compile a kernel interface for
your kernel.
-> Kernel include path: '/usr/src/linux/include'
-> Cleaning kernel module build directory.
executing: 'cd ./usr/src/nv; make clean'...
rm -f nv.o os-agp.o os-interface.o os-registry.o nv-linux.o nv_compiler.h *
.d NVdriver nvidia.o
-> Building kernel module:
executing: 'cd ./usr/src/nv; make nvidia.o SYSINCLUDE=/usr/src/linux/include
'...
echo \#define NV_COMPILER \"`cc -v 2>&1 | tail -n 1`\" > nv_compiler.h
cc -c -Wall -Wimplicit -Wreturn-type -Wswitch -Wformat -Wchar-subscripts -Wp
arentheses -Wpointer-arith -Wcast-qual -Wno-multichar -O -MD -D__KERNEL__ -
DMODULE -D_LOOSE_KERNEL_NAMES -DNTRM -D_GNU_SOURCE -D_LOOSE_KERNEL_NAMES -D_
_KERNEL__ -DMODULE -DNV_MAJOR_VERSION=1 -DNV_MINOR_VERSION=0 -DNV_PATCHLEVE
L=4496 -DNV_UNIX -DNV_LINUX -DNV_INT64_OK -DNVCPU_X86 -DREMAP_PA
GE_RANGE_4 -I. -I/usr/src/linux/include -Wno-cast-qual nv.c
cc -c -Wall -Wimplicit -Wreturn-type -Wswitch -Wformat -Wchar-subscripts -Wp
arentheses -Wpointer-arith -Wcast-qual -Wno-multichar -O -MD -D__KERNEL__ -
DMODULE -D_LOOSE_KERNEL_NAMES -DNTRM -D_GNU_SOURCE -D_LOOSE_KERNEL_NAMES -D_
_KERNEL__ -DMODULE -DNV_MAJOR_VERSION=1 -DNV_MINOR_VERSION=0 -DNV_PATCHLEVE
L=4496 -DNV_UNIX -DNV_LINUX -DNV_INT64_OK -DNVCPU_X86 -DREMAP_PA
GE_RANGE_4 -I. -I/usr/src/linux/include -Wno-cast-qual os-agp.c
cc -c -Wall -Wimplicit -Wreturn-type -Wswitch -Wformat -Wchar-subscripts -Wp
arentheses -Wpointer-arith -Wcast-qual -Wno-multichar -O -MD -D__KERNEL__ -
DMODULE -D_LOOSE_KERNEL_NAMES -DNTRM -D_GNU_SOURCE -D_LOOSE_KERNEL_NAMES -D_
_KERNEL__ -DMODULE -DNV_MAJOR_VERSION=1 -DNV_MINOR_VERSION=0 -DNV_PATCHLEVE
L=4496 -DNV_UNIX -DNV_LINUX -DNV_INT64_OK -DNVCPU_X86 -DREMAP_PA
GE_RANGE_4 -I. -I/usr/src/linux/include -Wno-cast-qual os-interface.c
os-interface.c:729: warning: `wb_list' defined but not used
cc -c -Wall -Wimplicit -Wreturn-type -Wswitch -Wformat -Wchar-subscripts -Wp
arentheses -Wpointer-arith -Wcast-qual -Wno-multichar -O -MD -D__KERNEL__ -
DMODULE -D_LOOSE_KERNEL_NAMES -DNTRM -D_GNU_SOURCE -D_LOOSE_KERNEL_NAMES -D_
_KERNEL__ -DMODULE -DNV_MAJOR_VERSION=1 -DNV_MINOR_VERSION=0 -DNV_PATCHLEVE
L=4496 -DNV_UNIX -DNV_LINUX -DNV_INT64_OK -DNVCPU_X86 -DREMAP_PA
GE_RANGE_4 -I. -I/usr/src/linux/include -Wno-cast-qual os-registry.c
ld -r -o nv-linux.o nv.o os-agp.o os-interface.o os-registry.o
ld -r -o nvidia.o nv-linux.o nv-kernel.o
-> done.
-> Kernel module compilation complete.
ERROR: Unable to load the kernel module 'nvidia.o'. This is most likely
because the kernel module was built using the wrong kernel header files.
Please make sure you have installed the kernel header files for your
kernel; on Red Hat Linux systems, for example, be sure you have the
'kernel-source' rpm installed. If you know the correct kernel header
files are installed, you may specify the kernel include path with the
'--kernel-include-path' commandline option.
-> Kernel module load error: ./usr/src/nv/nvidia.o: unresolved symbol
__get_free_pages_Rsmp_4784e424
./usr/src/nv/nvidia.o: unresolved symbol pci_read_config_byte_Rsmp_3ccefab4
./usr/src/nv/nvidia.o: unresolved symbol free_irq_Rsmp_f20dabd8
./usr/src/nv/nvidia.o: unresolved symbol create_proc_entry_Rsmp_92a27ea8
./usr/src/nv/nvidia.o: unresolved symbol pci_find_device_Rsmp_c584f4e3
./usr/src/nv/nvidia.o: unresolved symbol strncpy_from_user_Rsmp_24428be5
./usr/src/nv/nvidia.o: unresolved symbol smp_call_function_Rsmp_0014bfd1
./usr/src/nv/nvidia.o: unresolved symbol boot_cpu_data_Rsmp_0657d037
./usr/src/nv/nvidia.o: unresolved symbol securebits_Rsmp_abe77484
./usr/src/nv/nvidia.o: unresolved symbol del_timer_Rsmp_fc62f16d
./usr/src/nv/nvidia.o: unresolved symbol
__global_restore_flags_Rsmp_54dd1dcb
./usr/src/nv/nvidia.o: unresolved symbol mod_timer_Rsmp_1f13d309
./usr/src/nv/nvidia.o: unresolved symbol iounmap_Rsmp_5fb196d4
./usr/src/nv/nvidia.o: unresolved symbol
inter_module_get_request_Rsmp_b69f826b
./usr/src/nv/nvidia.o: unresolved symbol remove_proc_entry_Rsmp_f633c778
./usr/src/nv/nvidia.o: unresolved symbol
__generic_copy_to_user_Rsmp_d523fdd3
./usr/src/nv/nvidia.o: unresolved symbol pci_write_config_byte_Rsmp_364fc2a2
./usr/src/nv/nvidia.o: unresolved symbol __pollwait_Rsmp_573950bb
./usr/src/nv/nvidia.o: unresolved symbol unregister_chrdev_Rsmp_c192d491
./usr/src/nv/nvidia.o: unresolved symbol irq_stat_Rsmp_e224e01b
./usr/src/nv/nvidia.o: unresolved symbol __vmalloc_Rsmp_79995c5b
./usr/src/nv/nvidia.o: unresolved symbol change_page_attr_Rsmp_30122a8c
./usr/src/nv/nvidia.o: unresolved symbol pci_read_config_dword_Rsmp_0bf170e2
./usr/src/nv/nvidia.o: unresolved symbol __global_cli_Rsmp_64576b05
./usr/src/nv/nvidia.o: unresolved symbol sprintf_Rsmp_1d26aa98
./usr/src/nv/nvidia.o: unresolved symbol
pci_write_config_dword_Rsmp_77f7f940
./usr/src/nv/nvidia.o: unresolved symbol schedule_timeout_Rsmp_17d59d01
./usr/src/nv/nvidia.o: unresolved symbol pci_write_config_word_Rsmp_f23d8795
./usr/src/nv/nvidia.o: unresolved symbol __ioremap_Rsmp_9eac042a
./usr/src/nv/nvidia.o: unresolved symbol pci_find_class_Rsmp_643cfa42
./usr/src/nv/nvidia.o: unresolved symbol pm_register_Rsmp_027ebe5e
./usr/src/nv/nvidia.o: unresolved symbol __wake_up_Rsmp_127fda83
./usr/src/nv/nvidia.o: unresolved symbol printk_Rsmp_1b7d4074
./usr/src/nv/nvidia.o: unresolved symbol kfree_Rsmp_037a0cba
./usr/src/nv/nvidia.o: unresolved symbol tq_immediate_Rsmp_0da0dcd1
./usr/src/nv/nvidia.o: unresolved symbol inter_module_get_Rsmp_f6a0ce24
./usr/src/nv/nvidia.o: unresolved symbol remap_page_range_Rsmp_69d01e73
./usr/src/nv/nvidia.o: unresolved symbol init_mm_Rsmp_ba6750fc
./usr/src/nv/nvidia.o: unresolved symbol __global_save_flags_Rsmp_5d902e96
./usr/src/nv/nvidia.o: unresolved symbol tqueue_lock_Rsmp_b7a0c0b5
./usr/src/nv/nvidia.o: unresolved symbol vsprintf_Rsmp_954cbb26
./usr/src/nv/nvidia.o: unresolved symbol free_pages_Rsmp_9941ccb8
./usr/src/nv/nvidia.o: unresolved symbol kill_proc_Rsmp_932da67e
./usr/src/nv/nvidia.o: unresolved symbol vfree_Rsmp_2fd1d81c
./usr/src/nv/nvidia.o: unresolved symbol inter_module_put_Rsmp_6b99f7d8
./usr/src/nv/nvidia.o: unresolved symbol pci_find_slot_Rsmp_391edc78
./usr/src/nv/nvidia.o: unresolved symbol kmalloc_Rsmp_93d4cfe6
./usr/src/nv/nvidia.o: unresolved symbol proc_root_driver_Rsmp_f4485f28
./usr/src/nv/nvidia.o: unresolved symbol smp_num_cpus_Rsmp_3b86334d
./usr/src/nv/nvidia.o: unresolved symbol __const_udelay_Rsmp_eae3dfd6
./usr/src/nv/nvidia.o: unresolved symbol __udelay_Rsmp_9e7d6bd0
./usr/src/nv/nvidia.o: unresolved symbol pm_unregister_Rsmp_94097bd6
./usr/src/nv/nvidia.o: unresolved symbol high_memory_Rsmp_8a7d1c31
./usr/src/nv/nvidia.o: unresolved symbol register_chrdev_Rsmp_d08c1abe
./usr/src/nv/nvidia.o: unresolved symbol
__generic_copy_from_user_Rsmp_116166aa
./usr/src/nv/nvidia.o: unresolved symbol jiffies_Rsmp_0da02d67
./usr/src/nv/nvidia.o: unresolved symbol pci_read_config_word_Rsmp_923654cb
./usr/src/nv/nvidia.o: unresolved symbol request_irq_Rsmp_0c60f2e0
./usr/src/nv/nvidia.o: unresolved symbol bh_task_vec_Rsmp_284177b8
./usr/src/nv/nvidia.o: unresolved symbol do_gettimeofday_Rsmp_72270e35
./usr/src/nv/nvidia.o: unresolved symbol mem_map_Rsmp_d5b93995
./usr/src/nv/nvidia.o: unresolved symbol __tasklet_hi_schedule_Rsmp_60ea5fe7
./usr/src/nv/nvidia.o:
Hint: You are trying to load a module without a GPL compatible license
and it has unresolved symbols. The module may be trying to access
GPLONLY symbols but the problem is more likely to be a coding or
user error. Contact the module supplier for assistance, only they
can help you.
ERROR: Installation has failed. Please see the file
'/var/log/nvidia-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.
 
  


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
Debian A8N-SL1 Deluxe sound & Nvidia 6800GT problems jlmoschner Linux - Hardware 2 09-29-2005 12:16 PM
Display problems with Nvidia drivers on Debian (XFree86 4.3.0.1) with GeForce 4MX 440 lordnukem Linux - Hardware 6 02-05-2005 05:32 AM
nvidia and debian kernel 2.6.10 six6 Debian 5 01-13-2005 02:37 AM
Help - nVidia drivers (6011) - Debian Sarge (2.6.7 kernel) BaptismOfFire Linux - Hardware 8 08-15-2004 12:47 PM
Debian / nVidia Driver / Kernel 2.6.2 / gcc muzicman82 Linux - Hardware 3 02-15-2004 06:19 AM

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

All times are GMT -5. The time now is 02:15 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