Forum Linux.débutant Configuration Ecran LCD

Posté par  .
Étiquettes :
0
3
nov.
2008

Bonjour,
Je viens de m'acheter un nouvel ecran le Hyundai W220D ca fait 1H que je travaille dessus (sous une fedora core 6 ) et j'ai les yeux explosés. :(
En fait j'ai pas changé mon xorg.conf tout à marché du premier coup :




# Multiple FontPath entries are allowed (they are concatenated together)
# By default, Red Hat use a font server xfs independent of the X server.
# This loads all the modules...

Section "ServerLayout"
Identifier "Single Head"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
RgbPath "/usr/X11R6/lib/X11/rgb"
ModulePath "/usr/lib/xorg/modules/extensions/nvidia"
ModulePath "/usr/lib/xorg/modules"
FontPath "unix/:7100"
EndSection

Section "Module"

#Load "GLcore" # OpenGL support
#Load "dri" # Direct rendering infrastructure
# The following are only needed if you do not use xfs
# This loads the font modules /usr/X11R6/lib/modules/fonts
Load "record" # X event recorder
Load "v4l" # Video4Linux
Load "fbdevhw" # FrameBuffer device access
Load "type1" # Adobe Type 1 font handler
Load "bitmap"
Load "speedo"
Load "freetype" # TrueType font handler
Load "xtt"
Load "glx"
Load "dbe"
Load "extmod"
EndSection

Section "InputDevice"
Identifier "Keyboard0"
Driver "keyboard"
Option "AutoRepeat" "400 40"
Option "XkbRules" "xorg"
Option "XkbModel" "pc105"
Option "XkbLayout" "fr"
Option "XkbOptions" "compose:compirisa"
EndSection

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Device" "/dev/input/mice"
Option "Protocol" "IMPS/2"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "on"
EndSection

Section "Modes"

# 1280x800 @ 75.00 Hz (GTF) hsync: 62.62 kHz; pclk: 107.21 MHz
Identifier "16:10"
ModeLine "1280x800" 107.2 1280 1360 1496 1712 800 801 804 835
# 1280x800 @ 85.00 Hz (GTF) hsync: 71.40 kHz; pclk: 123.38 MHz
ModeLine "1280x800" 123.4 1280 1368 1504 1728 800 801 804 840
# 1280x800 @ 100.00 Hz (GTF) hsync: 84.80 kHz; pclk: 147.89 MHz
ModeLine "1280x800" 147.9 1280 1376 1512 1744 800 801 804 848
# 1680x1050 @ 60.00 Hz (GTF) hsync: 65.22 kHz; pclk: 147.14 MHz
ModeLine "1680x1050" 147.1 1680 1784 1968 2256 1050 1051 1054 1087
# 1680x1050 @ 75.00 Hz (GTF) hsync: 82.20 kHz; pclk: 188.07 MHz
ModeLine "1680x1050" 188.1 1680 1800 1984 2288 1050 1051 1054 1096
# 1680x1050 @ 85.00 Hz (GTF) hsync: 93.76 kHz; pclk: 214.51 MHz
ModeLine "1680x1050" 214.5 1680 1800 1984 2288 1050 1051 1054 1103
# 1680x1050 @ 100.00 Hz (GTF) hsync: 111.20 kHz; pclk: 256.20 MHz
ModeLine "1680x1050" 256.2 1680 1808 1992 2304 1050 1051 1054 1112
# 1920x1200 @ 75.00 Hz (GTF) hsync: 93.97 kHz; pclk: 246.59 MHz
ModeLine "1920x1200" 246.6 1920 2064 2272 2624 1200 1201 1204 1253
# 1920x1200 @ 85.00 Hz (GTF) hsync: 107.10 kHz; pclk: 282.74 MHz
ModeLine "1920x1200" 282.7 1920 2072 2280 2640 1200 1201 1204 1260
# 1920x1200 @ 100.00 Hz (GTF) hsync: 127.10 kHz; pclk: 337.58 MHz
ModeLine "1920x1200" 337.6 1920 2072 2288 2656 1200 1201 1204 1271
EndSection

Section "Monitor"

### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
### Comment all HorizSync and VertSync values to use DDC:
Identifier "Monitor0"
UseModes "16:10"
### Comment all HorizSync and VertSync values to use DDC:
HorizSync 28.0 - 110.0
VertRefresh 43.0 - 90.0
Option "dpms"
EndSection

Section "Device"
Identifier "Videocard0"
Driver "nvidia"
Option "NoLogo" "on"
Option "AddARGBGLXVisuals" "True"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1680x1050"
EndSubSection
EndSection

Section "DRI"
Mode 0666
EndSection




Donc je suppose qu'il faut générer des modelines suivant les frequences de mon LCD mais je sais plus comment on fait...

Voilà

Merci
  • # facile

    Posté par  . Évalué à 2.

    avec les dstribs recentes il n'y a plus rien à faire
    c'est le module xorg qui cause avec l'ecran pour calculer les resolutions et frequences possibles.

    en gros ton xorg.conf pourrait ressembler à ca :

    Section "Monitor"
    Identifier "Configured Monitor"
    EndSection

    Section "Module"
    Load "glx"
    EndSection

    Section "Device"
    Identifier "Configured Video Device"
    EndSection

    Section "Screen"
    Identifier "Default Screen"
    Monitor "Configured Monitor"
    Device "Configured Video Device"
    DefaultDepth 24
    EndSection


    et ca marche

    (me demande pas comment il fait pour trouver aussi ma config clavier...)
    • [^] # Re: facile

      Posté par  . Évalué à 1.

      Ouais bé pas sur une Fedora Core 6...
      En fait je branche mon portable sur un dock et apres c'est branché sur mon ecran LCD, ca a peut etre une incidence...
      • [^] # Re: facile

        Posté par  . Évalué à 2.

        en meme temps j'ai parlé de distribution recente...

        je ne connais pas bien fedora, mais la Core6 ca me semble un peu "vieux" sachant qu'il me semble que la 9 est la derniere en date (http://www.fedora-fr.org/)

        toujours d'apres internet, fedora core 6 date du 24 oct 2006
        ce qui peut expliquer que certaines fonctionnalités n'existent pas encore
        • [^] # Re: facile

          Posté par  . Évalué à 1.

          Bé oui mais j'ai pas le droit au boulot de changer de distrib ;)
          Bon sinon effectivement en allégeant le xorg, en virant les infos de modeline et de definition c'est un peu mieux MAIS LOIN encore de la qualité sous Windows..
          GRR
          • [^] # Re: facile

            Posté par  (site web personnel) . Évalué à 1.

            Les LCD sont maintenant avec une résolution fixe et unique (60Hz) qui
            est configuré par le DDC normalement.
            Pense a supprimer les lignes HorizSync/VertRefresh aussi

            As-tu pensé a modifier la luminosité de ton LCD, souvent c'est la ou se trouvent
            les "agressions" de ceux-ci (enfin sur mon Dell 2709 en tout cas c'est ça).
            • [^] # Re: facile

              Posté par  . Évalué à 1.

              Non en fait c'est pas une histoire de luminosité, mais bien de frequence de rafraichissement.
              En fait je vois un balayage...
              Merci

Suivre le flux des commentaires

Note : les commentaires appartiennent à celles et ceux qui les ont postés. Nous n’en sommes pas responsables.