[Drivers] Intel Extreme Graphic Controler

Fermé
ekra Messages postés 1870 Date d'inscription vendredi 15 avril 2005 Statut Membre Dernière intervention 24 juillet 2014 - 16 févr. 2006 à 17:48
 Maegia.com - 28 mai 2008 à 17:23
Bonjour,

Je voudrais installer les pilotes de ma carte graphique (ou semblant de carte :p) car ça rame un peu sur le bureau ! Le problème est que je ne connais pas excatement le nom de ma carte, je sais que c'est une Intel Extreme GM ou à peu près. Mais hélas, sur le site d'Intel, il y a plein de modèle.
Comment savoir le modèle exact de mon chipset SVP ?

Merci d'avance.
A voir également:

6 réponses

ekra Messages postés 1870 Date d'inscription vendredi 15 avril 2005 Statut Membre Dernière intervention 24 juillet 2014 342
16 févr. 2006 à 19:13
Merci beacoup, grâce à ton premier logiciel, j'ai pu trouvé :)

Mais voilà, je n'arrive pas à installer le pilote.
J'ai décompréssé le fichier. J'ai fabriqué le "lndir" après la compilation avec make ne marche pas (j'ai déjà réussi à compilé d'autres applications).

Je vous mets un extraits du fichier d'aide, si vous pouviez m'aider :

2.  Configuring the source before building

In most cases it shouldn't be necessary to configure anything before build-
ing.

If you do want to make configuration changes, it is recommended that you
start by going to the xc/config/cf directory, and copying the file
xorgsite.def to host.def.  Then read through the host.def file (which is
heavily commented), and set your configuration parameters. Usually you can
find the default settings by checking the .cf file(s) relevant to your OS.

A good rule to follow is only to change things that you understand as it's
easy to create build problems by changing the default configuration.  Check
the configuration parameters specified in the xc/config/cf/README.

If you are using just the X11R6.8.1-src1.tar.gz, X11R6.8.1-src2.tar.gz and
X11R6.8.1-src3.tar.gz parts of the source dist, you will need to define
BuildFonts to NO.

3.  Using a shadow directory of symbolic links for the build

A recommended practice is to use a shadow directory of symbolic links to do
the build of X11R6.8.1 as this allows you to keep the source directory unmod-
ified during the build.  It has the following benefits:

   o When you are using CVS to maintain your source tree, the update process
     is not disturbed by foreign files not under CVS's control.

   o It is possible to build X11R6.8.1 for several different Operating System
     or architectures from the same sources, shared by read-only NFS mounts.

   o It is possible to build X11R6.8.1 with different configuration options,
     by putting a real copy of the host.def file in each build tree and by
     customizing it separately in each build tree.

To make a shadow directory of symbolic links, use the following steps:

   o create the directory at the top of the build tree. It is often created
     at the same level that the xc directory, but this is not mandatory.

          cd the directory containing the xcdirectory

          mkdir build

   o use the "lndir" command to make the shadow tree:

          lndir ../xc

     Note that you can refer to the xc directory with an absolute path if
     needed.

     See the lndir(1) manual page for details.

If lndir is not already installed on your system, you can build it manually
from the X11R6.8.1 sources by running the following commands:

     cd xc/config/util

     make -f Makefile.ini lndir

     cp lndir some directory in your PATH

Occasionally there may be stale links in the build tree, like when files in
the source tree are removed or renamed.  These can be cleaned up by running
the "cleanlinks" script from the build directory (see the cleanlinks(1) man-
ual page).  Rarely there will be changes that will require the build tree to
be re-created from scratch.  A symptom of this can be mysterious build prob-
lems.  The best solution for this is to remove the build tree, and then re-
create it using the steps outlined above.

4.  Building and installing the distribution

Before building the distribution, read through the OS-specific README file in
xc/programs/Xserver/hw/xfree86/doc that is relevant to you.  Once you have
addressed the OS-specific details, go your build directory (either the xc
directory or the shadow tree created before) and run "make World" with the
BOOTSTRAPCFLAGS set as described in the OS-specific README (if necessary, but
most systems supported by X11R6.8.1 don't need BOOTSTRAPCFLAGS).  It is
advisable to redirect stdout and stderr to World.Log so that you can track
down problems that might occur during the build.

With Bourne-like shells (Bash, the Korn shell, zsh, etc.) use a command like:

     make World > World.log 2>&1

Witch C-shell variants (csh, tcsh, etc), use:

     make World >& World.log

You can follow the progress of the build by running:

     tail -f World.log

 in a terminal.

When the build is finished, you should check the World.Log file to see if
there were any problems.  If there weren't any then you can install the bina-
ries.  By default the "make World" process will exit at the first error.  To
restart the build process after correcting the problems, just run 'make'.  If
Imakefiles or part of the build configuration was changed as part of correct-
ing the problem, either re-run "make World", or run "make Everything".

If you would prefer "make World" to ignore errors and build as much as possi-
ble, run it in the following way instead of the way described above:

for Bourne-like shells:

     make WORLDOPTS=-k World > World.log 2>&1

for C-shell variants:

     make WORLDOPTS=-k World >& World.log

To do the install, run "make install" and "make install.man".  Make sure you
have enough space in /usr/X11R6 for the install to succeed.  If you want to
install on a filesystem other than /usr, make a symbolic link to /usr/X11R6
before installing.

Cross compiling is supported if the appropriate config files for your target
platforms exist. You must have the compiler toolchain installed for your tar-
get platform and the C-compiler must know where those tools exist. To inform
the build system where your cross compiler is located use BOOTSTRAPCFLAGS to
set the make variable CROSSCOMPILEDIR.

     make World BOOTSTRAPCFLAGS="CROSSCOMPILEDIR=<cross compiler dir>";

5.  Reconfiguring the server (source distribution)

To build a different set of servers or servers with a different set of
drivers installed:

  1.  Make sure the source for any new drivers is in the correct place (e.g.,
      driver source should be in a subdirectory of xc/pro-
      grams/Xserver/hw/xfree86/drivers).

  2.  Change the settings of the server defines in host.def to specify which
      servers you wish to build.  Also, change the driver lists to suit your
      needs.

  3.  From xc/programs/Xserver, run:

                make Makefile
                make Makefiles
                make includes
                make depend
                make

6.  Other useful make targets

There are some other useful targets defined in the top level Makefile of
X11R6.8.1:

   o Everything after a make World, make Everything does everything a make
     World does, except the cleaning of the tree. It is a way to quickly
     rebuild the tree after a source patch, but it is not 100% bullet proof.
     There are cases were it is better to force a full build by using make
     World.

   o clean does a partial cleaning of the source tree. Removes object files
     and generated manual pages, but leaves the Makefiles and the generated
     dependencies files in place. After a make clean you need to re-run

                  make includes
                  make depend
                  make

     to rebuild the X11R6.8.1.

   o distclean does a full cleaning of the source tree, removing all gener-
     ated files. After a make distclean, make World is the only option to
     rebuild X11R6.8.1.

   o includes generates all generated header files and in-tree symbolic links
     needed by the build. These files are removed by a make clean.

   o depend recomputes the dependencies for the various targets in all Make-
     files. Depending on the operating system, the dependencies are stored in
     the Makefile, or as a separate file, called .depend. This target needs
     the generated include files produced by make includes.

   o VerifyOS displays the detected operating system version. If the numbers
     shown do not match your system, you probably need to set them manually
     in host.def and report the problem to <xorg@freedesktop.org>.

     $Id: BUILD,v 1.1.1.1 2004/12/14 16:13:50 alanh Exp $


$XdotOrg: $


Merci !
5
tufs Messages postés 1272 Date d'inscription mercredi 1 décembre 2004 Statut Contributeur Dernière intervention 16 mars 2008 192
16 févr. 2006 à 18:18
salut

la commande : lspci ne donne rien

je sais que chez mandrake tu as un programme lspcidrake permet de connaitre les pilotes ( driver ) associer à une carte ....

sinon voir là

http://ezix.sourceforge.net/software/lshw.html

http://www.nongnu.org/dmidecode/
2
salut

pouvez vous m'indiqué ou je peux trouver les pilotes de Intel 82810 E Extreme Graphic Controler
1
Allez sur ma-config.com, démarrez la détection automatique, puis cliquez sur Télécharger mes drivers. Vous aurez alors la liste exhausitve de votre matériel et des drivers à jour correspondant.
1

Vous n’avez pas trouvé la réponse que vous recherchez ?

Posez votre question
Bonjour,

J'ai reformter mon disque dur et suite à l'installation de windows XP, je ne peux plus ajuster la résolution de l'écran ni jouer à des jeux. Il semblerait que je n'ai pas les bons "drivers" graphiques. Tout ce que j'ai peu obtenir comme info en ouvrant le boiter de mon ordi c'est que la carte graphique est APOLLO GRAPHICS 128 MEGA BITE+TV+DVI/A. Que dois-je faire ? trouver les bons drivers ? si oui, à quel endroit ?


merci pour votre aide
0
mouad maghdaoui
3 mai 2008 à 20:15
l'écran de mon pc portable et courte comment fais pour le grandir merci
0