Installer les drivers nVidia pour Debian

Installer les drivers nVidia pour Debian

Moi même j’ai dû chercher un peu la première fois pour Debian, étant relativement différent des autres ditributions (avec Mandriva j’installais les drivers directement depuis le site nVidia et avec Ubuntu il y a avait un how-to très simple).

Pour ne pas réinventer la roue, je vais simplement fournir la référence du how-to qui m’a permis, contrairement à d’autres, d’installer et faire fonctionner les drivers nVidia pour Debian.

Référence du how-to: tinyplanet.ca/~lsorense/debian/d … -howto.txt

Il suffit de le suivre pas à pas, tel quel.

Juste une petite remarque pour les utilisateurs de Xorg et non de Xfree, tout comme moi, il suffit de remplacer les « xserver-xfree86 » rencontrés dans ce how-to par « xserver-xorg ».

[quote]Simple instructions on how to install nVidia drivers for X11 on
Debian written by Len Sorensen.
(LSorensen on irc.debian.org, lsorense -at- csclub.uwaterloo.ca)

Last updated September 7 2005.
Feel free to email reports on this information working or not working
and any suggestions you have on making it better.

Note:
At this time these are the debian versions:
sarge: Debian 3.1 stable release
etch: Debian testing release (will be next stable release when done)
sid: Debian unstable (will never be released, but provides packages for
testing after they have been tested for a while.)

Step 0: Cleaning up the mess from nvidia’s installer (if you used it first)

Make sure to remove all the garbage created by the nvidia installer,
since it places files in different locations, and may cause problems
even after following these instructions. It is supposed to have an
uninstall option. Something like: nvidia-installer --uninstall should
do it. I have not used it myself, since doing it this way is so simple
and works very well, and of course: It is `The Debian Way’. The
–uninstall option should remove everything it installed (At least I
hope so.)

Do NOT try to mix and match with the debian packages and the nvidia
installer. They do not get along, they don’t agree on where files should
go or how just about anything should be done. It’s one way or the other.
To do it right the Debian way, all traces of the nvidia installer has
to go. In fact the nvidia installer doesn’t agree with where Debian
installs files.

Step 1: Preparing your package sources

Ensure you have main contrib non-free in your /etc/apt/sources.list since
the nvidia drivers are in non-free and some of the helpers are in contrib.

Step 2: Ensure your kernel is the right version.

The nvidia driver requries a 2.4 or 2.6 kernel at the moment. This should
not be a problem since all current Debian releases use either 2.4 or
2.6 kernels.

Please make sure you are running an up to date kernel so that the headers
matching it can be installed. The simplest way to do this is to do:

apt-get install kernel-image-2.4-686
or
apt-get install kernel-image-2.4-k7
or
apt-get install kernel-image-2.6-686
or
apt-get install kernel-image-2.6-k7

That will keep you running the latest kernel released (either 2.4.x
or 2.6.x). If the command to install kernel-headers fails later, you
didn’t do this step right.

Remember to reboot after installing a new kernel so that you are running
the right one. If you already had the current kernel, you can just
continue.

Step 3: Installing needed packages for building the nvidia kernel module.

Install a few packages needed:

apt-get install nvidia-kernel-common module-assistant

If you are running a debian kernel do this:

m-a -i prepare
If you built your own kernel, just make sure you know where the source
for it is located so you can pass the location to m-a.

Step 4: Building and installing the nvidia kernel module

Build the kernel module package:

m-a a-i -i -t -f nvidia-kernel
depmod -a
or if using your own kernel build:
m-a a-i -i -t -f -k /usr/src/kernelsourcepath nvidia-kernel
depmod -a
Where /usr/src/kernelsourcepath is the location of your kernelsource

Step 5: Installing and configuring the nvidia glx X driver

Install the last few packages:

apt-get install nvidia-glx nvidia-glx-dev xserver-xfree86

Now you are ready to change X to use the new driver. Configure X
normally using:

dpkg-reconfigure xserver-xfree86
And configure the monitor, resolution, mouse, etc settings as you need
and select nvidia instead of nv as your driver. If you ever edited the
XF86Config-4 file manually, the simplest way to overwrite it with one that
has the new values is to run ‹ dexconf ›. If you never edited it yourself,
it should just auto update with the new settings.

Note: Any user that wants to run 3D code must be in the video group.
To add a user to the video group do this:

adduser youruser video
The next time they login to X they will have 3D access.

That’s it. You should be running the new X. You should see the nvidia
logo when X starts if you are succesfully running the new driver.

Notes:

Keep in mind that whenever a new version of the nvidia driver comes out,
or whenever you upgrade to a newer kernel, you will have to repeat step
4 again to build the nvidia kernel module to match the new driver and/or
new kernel. One potential solution to part of this (at least for a new
kernel version) would be to have something in the boot up scripts do:
modprobe nvidia || m-a a-i -i -t -f nvidia-kernel && depmod -a && modprobe nvidia
That should load the nvidia driver and if it fails, run the rebuild
command and then load it again. It won’t help if a new nvidia glx driver
is installed, since the old module will load fine, but the driver won’t
get along with it, and the boot scripts can’t detect the cause of X not
started (it probably won’t even know X failed to start).

If the nvidia modules doesn’t load automatically and the X server
complains about it, add ‹ nvidia › to /etc/modules to make it auto load
on boot.

When upgrading, the simplest is to reboot afterwards to make sure X and
the kernel module are using the same version. You could also stop X;
modprobe -r nvidia; modprobe nvidia; start X again.[/quote]

A titre d’exemple, voici le contenu de mon fichier /etc/X11/xorg.conf:

[code] (…)

Section « Module »
Load « bitmap »
Load « dbe »
Load « ddc »

Load « dri »

Load	"extmod"
Load	"freetype"
Load	"glx"
Load	"int10"
Load	"record"
Load	"type1"
Load	"v4l"
Load	"vbe"

EndSection

(…)

Section « Device »
Identifier « NVIDIA Corporation NV34 [GeForce FX 5200] »
Driver « nvidia »
BusID « PCI:1:0:0 »
Option « UseFBDev » « true »
Option « NoLogo »
EndSection

Section « Monitor »
Identifier « CPD-E430 »
Option « DPMS »
EndSection

Section « Screen »
Identifier « Default Screen »
Device « NVIDIA Corporation NV34 [GeForce FX 5200] »
Monitor « CPD-E430 »
DefaultDepth 24
SubSection « Display »
Depth 1
Modes « 1280x1024 » « 1024x768 » « 800x600 » « 640x480 »
EndSubSection
SubSection « Display »
Depth 4
Modes « 1280x1024 » « 1024x768 » « 800x600 » « 640x480 »
EndSubSection
SubSection « Display »
Depth 8
Modes « 1280x1024 » « 1024x768 » « 800x600 » « 640x480 »
EndSubSection
SubSection « Display »
Depth 15
Modes « 1280x1024 » « 1024x768 » « 800x600 » « 640x480 »
EndSubSection
SubSection « Display »
Depth 16
Modes « 1280x1024 » « 1024x768 » « 800x600 » « 640x480 »
EndSubSection
SubSection « Display »
Depth 24
Modes « 1280x1024 » « 1024x768 » « 800x600 » « 640x480 »
EndSubSection
EndSection

(…)

#Section « DRI »

Mode 0666

#EndSection
[/code]

Et pour terminer, voici d’autres how-to concernant l’installation des drivers nVidia pour Debian:

Simple question : est-ce bien utile d’avoir ça :

SubSection "Display" Depth 1 Modes "1280x1024" "1024x768" "800x600" "640x480" EndSubSection SubSection "Display" Depth 4 Modes "1280x1024" "1024x768" "800x600" "640x480" EndSubSection SubSection "Display" Depth 8 Modes "1280x1024" "1024x768" "800x600" "640x480" EndSubSection SubSection "Display" Depth 15 Modes "1280x1024" "1024x768" "800x600" "640x480" EndSubSection SubSection "Display" Depth 16 Modes "1280x1024" "1024x768" "800x600" "640x480" EndSubSection
quand on a ça :

[quote=“ricardo”]Simple question : est-ce bien utile d’avoir ça :

SubSection "Display" Depth 1 Modes "1280x1024" "1024x768" "800x600" "640x480" EndSubSection SubSection "Display" Depth 4 Modes "1280x1024" "1024x768" "800x600" "640x480" EndSubSection SubSection "Display" Depth 8 Modes "1280x1024" "1024x768" "800x600" "640x480" EndSubSection SubSection "Display" Depth 15 Modes "1280x1024" "1024x768" "800x600" "640x480" EndSubSection SubSection "Display" Depth 16 Modes "1280x1024" "1024x768" "800x600" "640x480" EndSubSection
quand on a ça :

ce n’est pas nécessaire, en effet.

pour module-assistant et les commandes a rentré, y’a plus simple :slightly_smiling:
module assistant a une interface dialog qui evite d’avoir a rentré une seule commande. pour y acceder il suffit de faire un petit

module-assistant
en root bien entendu.
Et hop, y’a plus qu’a selectionner avec les fleches pour tout faire. Il est d’ailleurs capable de compiler bien plus que seulement les drivers nvidia.

[quote=“DiCiCat”]pour module-assistant et les commandes a rentré, y’a plus simple :slightly_smiling:
module assistant a une interface dialog qui evite d’avoir a rentré une seule commande. pour y acceder il suffit de faire un petit

module-assistant
en root bien entendu.
Et hop, y’a plus qu’a selectionner avec les fleches pour tout faire. Il est d’ailleurs capable de compiler bien plus que seulement les drivers nvidia.[/quote]
Je confirme, il y a une option de préparation du système pour la compilation, etc.
Je me permets aussi de décrire mon installation, en adaptant le même tuto, sur une ubuntu parfaitement clean que j’utilise en ce moment chez moi.
apt-get install nvidia-kernel-common module-assistant ->OK
m-a -i prepare ->OK
m-a a-i -i -t -f nvidia-kernel ->ca plante ( comme le disait bien le bug #329316 vu dans apt-listbugs ) !

alors en remontant dans les traces, je vois quelques “suggested package”. Je me dis qu’ils sont peut être plus important que ca, je teste:

je relance ma compil de nvidia directement en lingne de commande:ca replante. J’epluche les logs de compil, et là, je m’apercois que contrairement à ce qu’il dit, il a bien créé le .deb dans /usr/src ! quand et pourquoi ?
enfin… vite fait:

super, ca marche…
sudo depmod -a ->OK
sudo apt-get install nvidia-glx nvidia-glx-dev xserver-xorg ->OK
dpkg-reconfigure xserver-xorg ->OK

Et voilà !

bonjour et merci pour ce tuto, j’ai moi aussi une FX5200 Nvidia que je voudrais installer (je suis en mode console pour l’instant)

je voudrai savoir si cette méthode necessite une connexion internet ?

(car je n’en ai pas pour l’instant)
ou si tout se fait sur la machine (sans connexion internet)

et je comprends pas le Step 1 … ?

[code]Step 1: Preparing your package sources

Ensure you have main contrib non-free in your /etc/apt/sources.list since
the nvidia drivers are in non-free and some of the helpers are in contrib. [/code]

Traduction littérale :

Assurez vous d’avoir les sources main contrib et non-free dans votre fichier /etc/apt/sources.list puisque les drivers nvidia ne sont pas libre et que certaines docs se trouve dans contrib

Dsl pour ma traduction j’ai fait de mon mieux :slightly_smiling:

Ce qui veut dire que tu doit avoir dans ton fichier sources.list des sources du type

deb http://ftp.fr.debian.org/debian stable main contrib non-free deb http://ftp.fr.debian.org/debian testing main contrib non-free

ok donc je rajoute ces deux lignes :

deb http://ftp.fr.debian.org/debian stable main contrib non-free deb http://ftp.fr.debian.org/debian testing main contrib non-free

dans le fichier sources.list avec vi s’ils n’y sont pas …

je vais essayer merci milles fois

Hi,

Pour ceux qui ont suivi le how-to présenté dans le premier post (tout comme moi) et qui sont en Etch (tout comme moi), voici comment faire fonctionner les nouveaux drivers nVidia (qui ont été upgradé à la version 1.0-8178) …

Je m’attendais à un joli crachouilli de X après upgrade et reboot et en effet, Xorg a pas trop apprécié …

Alors, comment qu’on fait?

Et bien tout simplement :slightly_smiling:

0/ plantage de Xorg, mode console obligatoire youpiee
1/ se logguer en root
2/ executer les commandes suivantes:

m-a a-i -i -t -f nvidia-kernel depmod -a
3/ rebooter (You could also stop X; modprobe -r nvidia; modprobe nvidia; start X again.)

plus d’infos et de détail dans la note:

[quote]
Keep in mind that whenever a new version of the nvidia driver comes out,
or whenever you upgrade to a newer kernel, you will have to repeat step
4 again to build the nvidia kernel module to match the new driver and/or
new kernel. One potential solution to part of this (at least for a new
kernel version) would be to have something in the boot up scripts do:
modprobe nvidia || m-a a-i -i -t -f nvidia-kernel && depmod -a && modprobe nvidia
That should load the nvidia driver and if it fails, run the rebuild
command and then load it again. It won’t help if a new nvidia glx driver
is installed, since the old module will load fine, but the driver won’t
get along with it, and the boot scripts can’t detect the cause of X not
started (it probably won’t even know X failed to start).

(…)

When upgrading, the simplest is to reboot afterwards to make sure X and
the kernel module are using the same version. You could also stop X;
modprobe -r nvidia; modprobe nvidia; start X again.[/quote]

cheers 8)

il y a des outils pour compiler en même temps le noyau pour plusieurs architectures, et idem aussi pour recompiler les modules automatiquement (dkms, si je me souviens bien).
J’ai un article à lire dessus depuis une semaine :cry:

quote="ricardo"
Tu peux aussi apporter une précision qui m’a fait perdre du tps et qui est ptet évidente pour certains mais pas pour moi :
la commande :.
m-a a-i -i -t -f nvidia-kernel
elle ne fonctionne pas si on ne sais pas que ‘m-a’ ça veut dire ‘module-assistant’ :astonished:
Je ne l’avais pas installé et bien sûr … :question:
Merci encore[/quote]

Donc, comme le précise Ricardo, le package module-assistant doit être installé pour utiliser ce how-to. Merci Ricardo pour ta remarque judicieuse :smiley:

Moi, j’ai suivi le tuto auquel tu fais référence, et sur ma bécane ça n’a pas marché. Enfin, pas tout de suite : j’ai dû virer à la mano LibGl.so dans /usr/lib, puis donner en détail dans XF86Config-4 le chemin de la librairie glx de Nvidia, en lieu et place du “glx” placé après Load. Depuis, ça marche.

[quote=“ghostintheshell”]Installer les drivers nVidia pour Debian

m-a a-i -i -t -f nvidia-kernel
[/quote]

Cette étape ne fonctionne pas chez moi ! Je suis en unstable-amd64 .

J’obtiens cette erreur :

Grâce à mon ami google, j’ai trouvé dans le bug tracker mon problème (je pense) mais ça n’a pas l’air de fonctionner :frowning: :
bugs.debian.org/cgi-bin/bugreport.cgi?bug=357992

J’ai téléchargé nvidia-kernel-source_1.0.8178-2.diff mais je n’ai pas trouvé comment appliquer le patch (par la commande patch je suppose ?). De plus, ce fichier indique un mauvais répertoire a priori car ce serait plutôt /usr/src/modules/nvidia-kernel/nv que /usr/src/nv .

Voilà, je suis un peu perdu.

J’en profite pour vous demander qu’elles sont les apports de la version proprio ? nview ? Le dual-view avec une télé est possible avec les drivers debian ?

Merci d’avance.

les apports ??? ben, c’est que ca va beaucoup plus vite, et cela active l’accelération 3d…

concernant, le dualview et tout ca, je ne sais pas

[quote=“bulby”][quote=“ghostintheshell”]Installer les drivers nVidia pour Debian

m-a a-i -i -t -f nvidia-kernel
[/quote]

Cette étape ne fonctionne pas chez moi ! Je suis en unstable-amd64 .
(…)[/quote]
fais un apt-get update, fais une mise à jour de nvidia-kernel-sources,
supprimes le repertoire /usr/src/modules/nvidia, et relances le module-assistant. La version actuelle en sid est la 1.0.8756-4, ça t’evitera d’avoir à patcher.
sinon, en etant dans nv, je crois que l’application du patch se fait par ‘patch -p0 <chemin/vers/ton/patch’

merci, je vais tester ça.

Salut a tous ! :slightly_smiling:.

J’aimerais savoir si quelqu’un peut écrire toutes les étapes qu’il a fait pour que ça fonctionne, car sur certains reply moi je comprend pas trop.

Et j’aimerais savoir si la manip marche pour les puce Nvidia mobile ? (Car j’ai un Ordinateur portable Toshiba avec un Geforce 4 mobile et sur Ubuntu c’était la zizanie :s), si vous avez besoin de plus d’infos, je peux en chercher voila :slightly_smiling:

Hello,
Comment être sûr que l’accélération graphique fonctionne ?

Je ne suis pas expert mais si tu lance glxgearsSuivant les valeurs affiché tu peux savoir si ton acceleration materielle est mise en place on peux voir chez moi que ce n’est pas le cas a la vue des résultats :slightly_smiling:

ash@seal:/media/cdrom$ glxgears 357 frames in 5.0 seconds = 71.322 FPS 384 frames in 5.0 seconds = 76.626 FPS 386 frames in 5.0 seconds = 76.929 FPS 387 frames in 5.0 seconds = 77.233 FPS

francois@totoche:~$ glxgears
11720 frames in 5.0 seconds = 2344.000 FPS
13859 frames in 5.0 seconds = 2771.800 FPS
15477 frames in 5.0 seconds = 3095.400 FPS
15367 frames in 5.0 seconds = 3073.400 FPS

nVidia Corporation NV34M [GeForce FX Go 5200] (rev a1) sur Toshiba P10

avec
module nvidia 1.0-5328 Wed Dec 17 13:54:51 PST 2003