Re: nvidia: Unknown symbol register_ioctl32_conversion

2005-12-01 Thread Dean Hamstead

there was, there may not be any more



Dean

Colin Ingram wrote:

These sources provide the 7676 driver in (hopefully) easy to
compile/install packages.

deb http://people.debian.org/~rdonald/nvidia unstable/amd64/
deb http://people.debian.org/~rdonald/nvidia unstable/all/



Is there a difference between these packages and whats in experimental





--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: nvidia: Unknown symbol register_ioctl32_conversion

2005-12-01 Thread Colin Ingram

> These sources provide the 7676 driver in (hopefully) easy to
> compile/install packages.
>
> deb http://people.debian.org/~rdonald/nvidia unstable/amd64/
> deb http://people.debian.org/~rdonald/nvidia unstable/all/

Is there a difference between these packages and whats in experimental


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: nvidia: Unknown symbol register_ioctl32_conversion

2005-11-22 Thread Stefan Salewski
On 22. 11 2005 15:18 Hugh Waite wrote:
>
> These sources provide the 7676 driver in (hopefully) easy to
> compile/install packages.
>
> deb http://people.debian.org/~rdonald/nvidia unstable/amd64/
> deb http://people.debian.org/~rdonald/nvidia unstable/all/
>
> Hugh

Are you sure that these entries in sources.list gives access to 
7676 driver? I have included it, but my impression is that there 
is no effect. I tried again the recipes from
http://home.comcast.net/~andrex/Debian-nVidia/installation.html
and tried to verify nvidia version with "apt-cache policy ..." 
but can't see nvidia version 7676.

On 22. 11 2005 14:59 Jo Shields wrote:
> > 2.6.14 requires newer drivers than those in sarge or sid:
> >
> > * add "deb-src http://mirror.ox.ac.uk/debian experimental
> > main contrib non-free" to /etc/apt/sources.list
> > * go to a new empty folder
> > * "apt-get update"
> > * "apt-get source -t experimental nvidia-glx"
> > * "apt-get build-dep nvidia-glx"
> > * "cd nvidia*"
> > * "dpkg-buildpackage"
> > * "cd .."
> > * "dpkg -i nvidia-kernel-source*"
> > * "apt-get install module-assistant build-essential"
> > * "cat /proc/version" - make sure your kernel's gcc is
> > installed (e.g. gcc-3.4 must be installed if your kernel was
> > compiled with gcc 3.4.x) * "wget
> > ftp://ftp.debian.org/debian/pool/contrib/n/nvidia-kernel-com
> >mon/nvidia-kernel-common_20051028+1_all.deb"
> >
> > * "dpkg -i nvidia-kernel-common*"
> > * "m-a a-i nvidia"
> > * "dpkg -i nvidia-glx_*"
> > * "dpkg -i nvidia-glx-i*"
> > * "aptitude install nvidia-settings"
> >
> > Change your X server as per usual. I think some people make
> > their generated packages available on the web.
> >
> > --Jo Shields

I tried to follow this advice carefully, but after rebooting I 
got the same error message as before.

Tomorrow I will make a complete reinstall with debian amd64 etch.
Maybe with this release it is easier to install nvidia driver. I 
hope that kernel 2.6.12 (smp) of etch will work fine. (On my old 
computer I was not happy with the i386-flavour of this kernel. 
Printer at parallel port lp0 was not working, dhcp network 
connection failed often.)

Best regards

Stefan Salewski
 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: nvidia: Unknown symbol register_ioctl32_conversion

2005-11-22 Thread Ian Campbell
On Tue, 2005-11-22 at 14:25 +0100, Stefan Salewski wrote:
> dmesg gives error messages like 
> 
> nvidia: Unknown symbol register_ioctl32_conversion
> 
> I think the reason is, that kernel 2.6.14 needs nvidia driver 
> 7676, which is not part of Sid (unstable) for AMD64.

I've been using the following patch against the 1.0.7174-3
nvidia-kernel-source, seems to work OK.

Ian.

diff -urN nvidia-kernel.orig/nv/os-interface.c nvidia-kernel/nv/os-interface.c
--- nvidia-kernel.orig/nv/os-interface.c2005-04-08 08:06:58.0 
+0100
+++ nvidia-kernel/nv/os-interface.c 2005-11-12 11:52:46.0 +
@@ -1227,7 +1227,7 @@
 
 void NV_API_CALL os_register_ioctl32_conversion(U032 cmd, U032 size)
 {
-#if defined(NVCPU_X86_64) && defined(CONFIG_IA32_EMULATION)
+#if defined(NVCPU_X86_64) && defined(CONFIG_IA32_EMULATION) && 
!defined(HAVE_COMPAT_IOCTL)
 unsigned int request = _IOWR(NV_IOCTL_MAGIC, cmd, char[size]);
 register_ioctl32_conversion(request, (void *)sys_ioctl);
 #endif /* NVCPU_X86_64 */
@@ -1235,7 +1235,7 @@
 
 void NV_API_CALL os_unregister_ioctl32_conversion(U032 cmd, U032 size)
 {
-#if defined(NVCPU_X86_64) && defined(CONFIG_IA32_EMULATION)
+#if defined(NVCPU_X86_64) && defined(CONFIG_IA32_EMULATION) && 
!defined(HAVE_COMPAT_IOCTL)
 unsigned int request = _IOWR(NV_IOCTL_MAGIC, cmd, char[size]);
 unregister_ioctl32_conversion(request);
 #endif /* NVCPU_X86_64 */

-- 
Ian Campbell

You will live a long, healthy, happy life and make bags of money.


signature.asc
Description: This is a digitally signed message part


Re: nvidia: Unknown symbol register_ioctl32_conversion

2005-11-22 Thread Hugh Waite

Stefan Salewski wrote:

Hello,

I have an Athlon64 X2 (dual core) processor and nvidia 7800GTX 
graphic card.


Some days ago I installed Sid with kernel 2.6.14. Textmode works 
well, but nv graphic card driver gives me a corrupted display on 
my TFT (DVI) at 1600x1200 resolution. (GDM login screen is ok, 
but when I try to log in, display gets corrupted.


I tried installing nvidia driver the debian way following this 
tutorial:


http://home.comcast.net/~andrex/Debian-nVidia/installation.html
...
I know that a few people have sucessfully installed nvidia driver 
mit 2.6.14 kernel, but I can not find a complete installation 
tutorial for this. Can somebody post this including changes for 
sources.list. 

I think another working installation recipe would be very usefull 
for many of us.


Thanks

Stefan Salewski

These sources provide the 7676 driver in (hopefully) easy to 
compile/install packages.


deb http://people.debian.org/~rdonald/nvidia unstable/amd64/
deb http://people.debian.org/~rdonald/nvidia unstable/all/

Hugh


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: nvidia: Unknown symbol register_ioctl32_conversion

2005-11-22 Thread Gilles
Hi.

> 
> But starting  xserver fails, dmesg gives error messages like 
> 
> nvidia: Unknown symbol register_ioctl32_conversion
> 
> I think the reason is, that kernel 2.6.14 needs nvidia driver 
> 7676, which is not part of Sid (unstable) for AMD64.
>

Yes, you need to add

#---cut---
deb http://people.debian.org/~rdonald/nvidia unstable/amd64/
#---cut--

in your "/etc/apt/sources.list" file and you'll get the possibility
to download the tarball of the 7676 version, from which you can then
make the installable module.  My attempts were described in this
thread:

  http://lists.debian.org/debian-amd64/2005/11/msg00233.html


Gilles


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: nvidia: Unknown symbol register_ioctl32_conversion

2005-11-22 Thread Jo Shields

Stefan Salewski wrote:


Hello,

I have an Athlon64 X2 (dual core) processor and nvidia 7800GTX 
graphic card.


Some days ago I installed Sid with kernel 2.6.14. Textmode works 
well, but nv graphic card driver gives me a corrupted display on 
my TFT (DVI) at 1600x1200 resolution. (GDM login screen is ok, 
but when I try to log in, display gets corrupted.


I tried installing nvidia driver the debian way following this 
tutorial:


http://home.comcast.net/~andrex/Debian-nVidia/installation.html

But starting  xserver fails, dmesg gives error messages like 


nvidia: Unknown symbol register_ioctl32_conversion

I think the reason is, that kernel 2.6.14 needs nvidia driver 
7676, which is not part of Sid (unstable) for AMD64.


Currently I am runnig kernel 2.6.14 smp, which works fine, but is 
incompatible with available nvidia driver. I tried some hours to 
modify the installation routine, but without success. I tried to 
expand my sources.list with other sources (experimental or 
rdonald), but I was not able to use 7676 nvidia driver.


I think using kernel 2.6.12 is not possible with my sid 
installation, so I have to reinstall all to try this. Or I may 
try to install nvidia driver as decribed by nvidia.


I know that a few people have sucessfully installed nvidia driver 
mit 2.6.14 kernel, but I can not find a complete installation 
tutorial for this. Can somebody post this including changes for 
sources.list. 

I think another working installation recipe would be very usefull 
for many of us.


Thanks

Stefan Salewski



Jo Shields wrote:


Graham Smith wrote:


On Sunday 13 November 2005 00:30, Alan Ianson wrote:
 


On Sat November 12 2005 04:01 pm, Stefan Salewski wrote:
  


Hello,

next week I will try to install debian-amd64 on a new computer
with a nvidia graphic card (7800GTX).

I don't really like these closed source drivers from ati and
nvidia, but I think I have to use it.

I have just done some google search about debian and nvidia
drivers. Some people recommend not to install the nvidia way,
but to use the debian way. I found only one detailed explanation
about how to do it:

http://home.comcast.net/~andrex/Debian-nVidia/installation.html

This tutorial is very nice, but I am not sure if it is an
official debian recommendation and if it will work for AMD64
too.

Can you comment on this? Are there other tutorials around? Will I
have only textmode available until I install the nvidia driver,
or will the X-Org driver give me  an unaccelerated graphical
display?



You can use the "nv" driver in the mean time. That's what I have 
been using
here and it works fine. I don't know for sure what the difference is 
but I

think if you want 3D acceleration (for gaming) you may need the nvidia
drivers. I've been trying to get them installed too, so I'll be 
watching

this thread.
  



The difference, at least to my eyes, is much better font rendering 
and a generally over all shaper image with the nvidia drivers 
compared to nv. I didn't realize that a driver could make so much 
difference but switching to nvidia after using nv for a while was 
like getting a new monitor.


Having said that I can't get the nvidia drivers to work with 2.6.14 
but they work fine with 2.6.12.


Graham


 


2.6.14 requires newer drivers than those in sarge or sid:

* add "deb-src http://mirror.ox.ac.uk/debian experimental main contrib 
non-free" to /etc/apt/sources.list

* go to a new empty folder
* "apt-get update"
* "apt-get source -t experimental nvidia-glx"
* "apt-get build-dep nvidia-glx"
* "cd nvidia*"
* "dpkg-buildpackage"
* "cd .."
* "dpkg -i nvidia-kernel-source*"
* "apt-get install module-assistant build-essential"
* "cat /proc/version" - make sure your kernel's gcc is installed (e.g. 
gcc-3.4 must be installed if your kernel was compiled with gcc 3.4.x)
* "wget 
ftp://ftp.debian.org/debian/pool/contrib/n/nvidia-kernel-common/nvidia-kernel-common_20051028+1_all.deb"; 


* "dpkg -i nvidia-kernel-common*"
* "m-a a-i nvidia"
* "dpkg -i nvidia-glx_*"
* "dpkg -i nvidia-glx-i*"
* "aptitude install nvidia-settings"

Change your X server as per usual. I think some people make their 
generated packages available on the web.


--Jo Shields





--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



nvidia: Unknown symbol register_ioctl32_conversion

2005-11-22 Thread Stefan Salewski
Hello,

I have an Athlon64 X2 (dual core) processor and nvidia 7800GTX 
graphic card.

Some days ago I installed Sid with kernel 2.6.14. Textmode works 
well, but nv graphic card driver gives me a corrupted display on 
my TFT (DVI) at 1600x1200 resolution. (GDM login screen is ok, 
but when I try to log in, display gets corrupted.

I tried installing nvidia driver the debian way following this 
tutorial:

http://home.comcast.net/~andrex/Debian-nVidia/installation.html

But starting  xserver fails, dmesg gives error messages like 

nvidia: Unknown symbol register_ioctl32_conversion

I think the reason is, that kernel 2.6.14 needs nvidia driver 
7676, which is not part of Sid (unstable) for AMD64.

Currently I am runnig kernel 2.6.14 smp, which works fine, but is 
incompatible with available nvidia driver. I tried some hours to 
modify the installation routine, but without success. I tried to 
expand my sources.list with other sources (experimental or 
rdonald), but I was not able to use 7676 nvidia driver.

I think using kernel 2.6.12 is not possible with my sid 
installation, so I have to reinstall all to try this. Or I may 
try to install nvidia driver as decribed by nvidia.

I know that a few people have sucessfully installed nvidia driver 
mit 2.6.14 kernel, but I can not find a complete installation 
tutorial for this. Can somebody post this including changes for 
sources.list. 

I think another working installation recipe would be very usefull 
for many of us.

Thanks

Stefan Salewski


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]