Bonjour,
J'ai installé les drivers ATI sur ma FC4.
Aucun problèmes mis-à-part la fréquence de raffraichissement de mon moniteur 17" que je n'arrive pas a remmetre en place.
Je tourne actuellement en 85 Hz (1024*768) ce qui a pour effet de bomber légerement l'écran (ce qui est assez désagréable à la longue).
Un petit tour dans gnome pour essayer de changer de fréquence de raffraichissement et là, surprise ! je ne peut rien mettre d'autre que 85 Hz.
Je vais donc dans mon xorg.conf, j'ai donc ceci :
1.
# File: xorg.conf
2.
# File generated by fglrxconfig (C) ATI Technologies, a substitute for xf86config.
3.
4.
# Note by ATI: the below copyright notice is there for servicing possibly
5.
# pending third party rights on the file format and the instance of this file.
6.
#
7.
# Copyright (c) 1999 by The XFree86 Project, Inc.
8.
#
9.
# Permission is hereby granted, free of charge, to any person obtaining a
10.
# copy of this software and associated documentation files (the "Software"),
11.
# to deal in the Software without restriction, including without limitation
12.
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
13.
# and/or sell copies of the Software, and to permit persons to whom the
14.
# Software is furnished to do so, subject to the following conditions:
15.
#
16.
# The above copyright notice and this permission notice shall be included in
17.
# all copies or substantial portions of the Software.
18.
#
19.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20.
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21.
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22.
# THE XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
23.
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
24.
# OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25.
# SOFTWARE.
26.
#
27.
# Except as contained in this notice, the name of the XFree86 Project shall
28.
# not be used in advertising or otherwise to promote the sale, use or other
29.
# dealings in this Software without prior written authorization from the
30.
# XFree86 Project.
31.
#
32.
33.
# **********************************************************************
34.
# Refer to the XF86Config(4/5) man page for details about the format of
35.
# this file.
36.
# **********************************************************************
37.
38.
# **********************************************************************
39.
# DRI Section
40.
# **********************************************************************
41.
Section "dri"
42.
# Access to OpenGL ICD is allowed for all users:
43.
Mode 0666
44.
# Access to OpenGL ICD is restricted to a specific user group:
45.
# Group 100 # users
46.
# Mode 0660
47.
EndSection
48.
49.
# **********************************************************************
50.
# Module section -- this section is used to specify
51.
# which dynamically loadable modules to load.
52.
# **********************************************************************
53.
#
54.
Section "Module"
55.
56.
# This loads the DBE extension module.
57.
58.
Load "dbe" # Double buffer extension
59.
60.
# This loads the miscellaneous extensions module, and disables
61.
# initialisation of the XFree86-DGA extension within that module.
62.
SubSection "extmod"
63.
Option "omit xfree86-dga" # don't initialise the DGA extension
64.
EndSubSection
65.
66.
# This loads the Type1 and FreeType font modules
67.
Load "type1"
68.
Load "freetype"
69.
70.
# This loads the GLX module
71.
Load "glx" # libglx.a
72.
Load "dri" # libdri.a
73.
74.
EndSection
75.
76.
# **********************************************************************
77.
# Files section. This allows default font and rgb paths to be set
78.
# **********************************************************************
79.
80.
Section "Files"
81.
82.
# The location of the RGB database. Note, this is the name of the
83.
# file minus the extension (like ".txt" or ".db"). There is normally
84.
# no need to change the default.
85.
86.
RgbPath "/usr/X11R6/lib/X11/rgb"
87.
88.
# Multiple FontPath entries are allowed (which are concatenated together),
89.
# as well as specifying multiple comma-separated entries in one FontPath
90.
# command (or a combination of both methods)
91.
#
92.
# If you don't have a floating point coprocessor and emacs, Mosaic or other
93.
# programs take long to start up, try moving the Type1 and Speedo directory
94.
# to the end of this list (or comment them out).
95.
#
96.
97.
FontPath "/usr/X11R6/lib/X11/fonts/local/"
98.
FontPath "/usr/X11R6/lib/X11/fonts/misc/"
99.
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
100.
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
101.
FontPath "/usr/X11R6/lib/X11/fonts/Type1/"
102.
# FontPath "/usr/X11R6/lib/X11/fonts/Speedo/"
103.
FontPath "/usr/X11R6/lib/X11/fonts/75dpi/"
104.
FontPath "/usr/X11R6/lib/X11/fonts/100dpi/"
105.
106.
# The module search path. The default path is shown here.
107.
108.
# ModulePath "/usr/X11R6/lib/modules"
109.
110.
EndSection
111.
112.
# **********************************************************************
113.
# Server flags section.
114.
# **********************************************************************
115.
116.
Section "ServerFlags"
117.
118.
# Uncomment this to cause a core dump at the spot where a signal is
119.
# received. This may leave the console in an unusable state, but may
120.
# provide a better stack trace in the core dump to aid in debugging
121.
122.
# Option "NoTrapSignals"
123.
124.
# Uncomment this to disable the <Crtl><Alt><BS> server abort sequence
125.
# This allows clients to receive this key event.
126.
127.
# Option "DontZap"
128.
129.
# Uncomment this to disable the <Crtl><Alt><KP_+>/<KP_-> mode switching
130.
# sequences. This allows clients to receive these key events.
131.
132.
# Option "Dont Zoom"
133.
134.
# Uncomment this to disable tuning with the xvidtune client. With
135.
# it the client can still run and fetch card and monitor attributes,
136.
# but it will not be allowed to change them. If it tries it will
137.
# receive a protocol error.
138.
139.
# Option "DisableVidModeExtension"
140.
141.
# Uncomment this to enable the use of a non-local xvidtune client.
142.
143.
# Option "AllowNonLocalXvidtune"
144.
145.
# Uncomment this to disable dynamically modifying the input device
146.
# (mouse and keyboard) settings.
147.
148.
# Option "DisableModInDev"
149.
150.
# Uncomment this to enable the use of a non-local client to
151.
# change the keyboard or mouse settings (currently only xset).
152.
153.
# Option "AllowNonLocalModInDev"
154.
155.
EndSection
156.
157.
# **********************************************************************
158.
# Input devices
159.
# **********************************************************************
160.
161.
# **********************************************************************
162.
# Core keyboard's InputDevice section
163.
# **********************************************************************
164.
165.
Section "InputDevice"
166.
167.
Identifier "Keyboard1"
168.
Driver "kbd"
169.
# For most OSs the protocol can be omitted (it defaults to "Standard").
170.
# When using XQUEUE (only for SVR3 and SVR4, but not Solaris),
171.
# uncomment the following line.
172.
173.
# Option "Protocol" "Xqueue"
174.
175.
Option "AutoRepeat" "500 30"
176.
177.
# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
178.
# Option "Xleds" "1 2 3"
179.
180.
# Option "LeftAlt" "Meta"
181.
# Option "RightAlt" "ModeShift"
182.
183.
# To customise the XKB settings to suit your keyboard, modify the
184.
# lines below (which are the defaults). For example, for a non-U.S.
185.
# keyboard, you will probably want to use:
186.
# Option "XkbModel" "pc102"
187.
# If you have a US Microsoft Natural keyboard, you can use:
188.
# Option "XkbModel" "microsoft"
189.
#
190.
# Then to change the language, change the Layout setting.
191.
# For example, a german layout can be obtained with:
192.
# Option "XkbLayout" "de"
193.
# or:
194.
# Option "XkbLayout" "de"
195.
# Option "XkbVariant" "nodeadkeys"
196.
#
197.
# If you'd like to switch the positions of your capslock and
198.
# control keys, use:
199.
# Option "XkbOptions" "ctrl:swapcaps"
200.
201.
# These are the default XKB settings for XFree86
202.
# Option "XkbRules" "xfree86"
203.
# Option "XkbModel" "pc101"
204.
# Option "XkbLayout" "us"
205.
# Option "XkbVariant" ""
206.
# Option "XkbOptions" ""
207.
208.
# Option "XkbDisable"
209.
210.
Option "XkbRules" "xfree86"
211.
Option "XkbModel" "pc101"
212.
Option "XkbLayout" "fr"
213.
214.
EndSection
215.
216.
217.
# **********************************************************************
218.
# Core Pointer's InputDevice section
219.
# **********************************************************************
220.
221.
Section "InputDevice"
222.
223.
# Identifier and driver
224.
225.
Identifier "Mouse1"
226.
Driver "mouse"
227.
Option "Protocol" "ImPS/2"
228.
Option "ZAxisMapping" "4 5"
229.
Option "Device" "/dev/input/mice"
230.
231.
# When using XQUEUE, comment out the above two lines, and uncomment
232.
# the following line.
233.
234.
# Option "Protocol" "Xqueue"
235.
236.
# Baudrate and SampleRate are only for some Logitech mice. In
237.
# almost every case these lines should be omitted.
238.
239.
# Option "BaudRate" "9600"
240.
# Option "SampleRate" "150"
241.
242.
# Emulate3Buttons is an option for 2-button Microsoft mice
243.
# Emulate3Timeout is the timeout in milliseconds (default is 50ms)
244.
245.
# Option "Emulate3Buttons"
246.
# Option "Emulate3Timeout" "50"
247.
248.
# ChordMiddle is an option for some 3-button Logitech mice
249.
250.
# Option "ChordMiddle"
251.
252.
EndSection
253.
254.
255.
# **********************************************************************
256.
# Other input device sections
257.
# this is optional and is required only if you
258.
# are using extended input devices. This is for example only. Refer
259.
# to the XF86Config man page for a description of the options.
260.
# **********************************************************************
261.
#
262.
# Section "InputDevice"
263.
# Identifier "Mouse2"
264.
# Driver "mouse"
265.
# Option "Protocol" "MouseMan"
266.
# Option "Device" "/dev/mouse2"
267.
# EndSection
268.
#
269.
# Section "InputDevice"
270.
# Identifier "spaceball"
271.
# Driver "magellan"
272.
# Option "Device" "/dev/cua0"
273.
# EndSection
274.
#
275.
# Section "InputDevice"
276.
# Identifier "spaceball2"
277.
# Driver "spaceorb"
278.
# Option "Device" "/dev/cua0"
279.
# EndSection
280.
#
281.
# Section "InputDevice"
282.
# Identifier "touchscreen0"
283.
# Driver "microtouch"
284.
# Option "Device" "/dev/ttyS0"
285.
# Option "MinX" "1412"
286.
# Option "MaxX" "15184"
287.
# Option "MinY" "15372"
288.
# Option "MaxY" "1230"
289.
# Option "ScreenNumber" "0"
290.
# Option "ReportingMode" "Scaled"
291.
# Option "ButtonNumber" "1"
292.
# Option "SendCoreEvents"
293.
# EndSection
294.
#
295.
# Section "InputDevice"
296.
# Identifier "touchscreen1"
297.
# Driver "elo2300"
298.
# Option "Device" "/dev/ttyS0"
299.
# Option "MinX" "231"
300.
# Option "MaxX" "3868"
301.
# Option "MinY" "3858"
302.
# Option "MaxY" "272"
303.
# Option "ScreenNumber" "0"
304.
# Option "ReportingMode" "Scaled"
305.
# Option "ButtonThreshold" "17"
306.
# Option "ButtonNumber" "1"
307.
# Option "SendCoreEvents"
308.
# EndSection
309.
310.
# **********************************************************************
311.
# Monitor section
312.
# **********************************************************************
313.
314.
# Any number of monitor sections may be present
315.
316.
Section "Monitor"
317.
Identifier "Monitor0"
318.
HorizSync 31.5 - 60.0
319.
VertRefresh 60 - 85
320.
Option "DPMS"
321.
322.
# === mode lines based on GTF ===
323.
# VGA @ 100Hz
324.
# Modeline "640x480@100" 43.163 640 680 744 848 480 481 484 509 +hsync +vsync
325.
# SVGA @ 100Hz
326.
# Modeline "800x600@100" 68.179 800 848 936 1072 600 601 604 636 +hsync +vsync
327.
# XVGA @ 100Hz
328.
# Modeline "1024x768@100" 113.309 1024 1096 1208 1392 768 769 772 814 +hsync +vsync
329.
# 1152x864 @ 60Hz
330.
# Modeline "1152x864@60" 81.642 1152 1216 1336 1520 864 865 868 895 +hsync +vsync
331.
# 1152x864 @ 85Hz
332.
# Modeline "1152x864@85" 119.651 1152 1224 1352 1552 864 865 868 907 +hsync +vsync
333.
# 1152x864 @ 100Hz
334.
# Modeline "1152x864@100" 143.472 1152 1232 1360 1568 864 865 868 915 +hsync +vsync
335.
# 1280x960 @ 75Hz
336.
# Modeline "1280x960@75" 129.859 1280 1368 1504 1728 960 961 964 1002 +hsync +vsync
337.
# 1280x960 @ 100Hz
338.
# Modeline "1280x960@100" 178.992 1280 1376 1520 1760 960 961 964 1017 +hsync +vsync
339.
# SXGA @ 100Hz
340.
# Modeline "1280x1024@100" 190.960 1280 1376 1520 1760 1024 1025 1028 1085 +hsync +vsync
341.
# SPEA GDM-1950 (60Hz,64kHz,110MHz,-,-): 1280x1024 @ V-freq: 60.00 Hz, H-freq: 63.73 KHz
342.
# Modeline "GDM-1950" 109.62 1280 1336 1472 1720 1024 1024 1026 1062 -hsync -vsync
343.
# 1600x1000 @ 60Hz
344.
# Modeline "1600x1000" 133.142 1600 1704 1872 2144 1000 1001 1004 1035 +hsync +vsync
345.
# 1600x1000 @ 75Hz
346.
# Modeline "1600x1000" 169.128 1600 1704 1880 2160 1000 1001 1004 1044 +hsync +vsync
347.
# 1600x1000 @ 85Hz
348.
# Modeline "1600x1000" 194.202 1600 1712 1888 2176 1000 1001 1004 1050 +hsync +vsync
349.
# 1600x1000 @ 100Hz
350.
# Modeline "1600x1000" 232.133 1600 1720 1896 2192 1000 1001 1004 1059 +hsync +vsync
351.
# 1600x1024 @ 60Hz
352.
# Modeline "1600x1024" 136.385 1600 1704 1872 2144 1024 1027 1030 1060 +hsync +vsync
353.
# 1600x1024 @ 75Hz
354.
# Modeline "1600x1024" 174.416 1600 1712 1888 2176 1024 1025 1028 1069 +hsync +vsync
355.
# 1600x1024 @ 76Hz
356.
# Modeline "1600x1024" 170.450 1600 1632 1792 2096 1024 1027 1030 1070 +hsync +vsync
357.
# 1600x1024 @ 85Hz
358.
# Modeline "1600x1024" 198.832 1600 1712 1888 2176 1024 1027 1030 1075 +hsync +vsync
359.
# 1920x1080 @ 60Hz
360.
# Modeline "1920x1080" 172.798 1920 2040 2248 2576 1080 1081 1084 1118 -hsync -vsync
361.
# 1920x1080 @ 75Hz
362.
# Modeline "1920x1080" 211.436 1920 2056 2264 2608 1080 1081 1084 1126 +hsync +vsync
363.
# 1920x1200 @ 60Hz
364.
# Modeline "1920x1200" 193.156 1920 2048 2256 2592 1200 1201 1203 1242 +hsync +vsync
365.
# 1920x1200 @ 75Hz
366.
# Modeline "1920x1200" 246.590 1920 2064 2272 2624 1200 1201 1203 1253 +hsync +vsync
367.
# 2048x1536 @ 60
368.
# Modeline "2048x1536" 266.952 2048 2200 2424 2800 1536 1537 1540 1589 +hsync +vsync
369.
# 2048x1536 @ 60
370.
# Modeline "2048x1536" 266.952 2048 2200 2424 2800 1536 1537 1540 1589 +hsync +vsync
371.
# 1400x1050 @ 60Hz M9 Laptop mode
372.
# ModeLine "1400x1050" 122.000 1400 1488 1640 1880 1050 1052 1064 1082 +hsync +vsync
373.
# 1920x2400 @ 25Hz for IBM T221, VS VP2290 and compatible display devices
374.
# Modeline "1920x2400@25" 124.620 1920 1928 1980 2048 2400 2401 2403 2434 +hsync +vsync
375.
# 1920x2400 @ 30Hz for IBM T221, VS VP2290 and compatible display devices
376.
# Modeline "1920x2400@30" 149.250 1920 1928 1982 2044 2400 2402 2404 2434 +hsync +vsync
377.
378.
EndSection
379.
380.
381.
# **********************************************************************
382.
# Graphics device section
383.
# **********************************************************************
384.
385.
# Any number of graphics device sections may be present
386.
387.
# Standard VGA Device:
388.
389.
Section "Device"
390.
Identifier "Standard VGA"
391.
VendorName "Unknown"
392.
BoardName "Unknown"
393.
394.
# The chipset line is optional in most cases. It can be used to override
395.
# the driver's chipset detection, and should not normally be specified.
396.
397.
# Chipset "generic"
398.
399.
# The Driver line must be present. When using run-time loadable driver
400.
# modules, this line instructs the server to load the specified driver
401.
# module. Even when not using loadable driver modules, this line
402.
# indicates which driver should interpret the information in this section.
403.
404.
Driver "vga"
405.
# The BusID line is used to specify which of possibly multiple devices
406.
# this section is intended for. When this line isn't present, a device
407.
# section can only match up with the primary video device. For PCI
408.
# devices a line like the following could be used. This line should not
409.
# normally be included unless there is more than one video device
410.
# installed.
411.
412.
# BusID "PCI:0:10:0"
413.
414.
# VideoRam 256
415.
416.
# Clocks 25.2 28.3
417.
418.
EndSection
419.
420.
# === ATI device section ===
421.
422.
Section "Device"
423.
Identifier "ATI Graphics Adapter"
424.
Driver "fglrx"
425.
# ### generic DRI settings ###
426.
# === disable PnP Monitor ===
427.
#Option "NoDDC"
428.
# === disable/enable XAA/DRI ===
429.
Option "no_accel" "no"
430.
Option "no_dri" "no"
431.
# === misc DRI settings ===
432.
Option "mtrr" "off" # disable DRI mtrr mapper, driver has its own code for mtrr
433.
# ### FireGL DDX driver module specific settings ###
434.
# === Screen Management ===
435.
Option "DesktopSetup" "0x00000000"
436.
Option "MonitorLayout" "AUTO, AUTO"
437.
Option "IgnoreEDID" "off"
438.
Option "HSync2" "unspecified"
439.
Option "VRefresh2" "unspecified"
440.
Option "ScreenOverlap" "0"
441.
# === TV-out Management ===
442.
Option "NoTV" "yes"
443.
Option "TVStandard" "NTSC-M"
444.
Option "TVHSizeAdj" "0"
445.
Option "TVVSizeAdj" "0"
446.
Option "TVHPosAdj" "0"
447.
Option "TVVPosAdj" "0"
448.
Option "TVHStartAdj" "0"
449.
Option "TVColorAdj" "0"
450.
Option "GammaCorrectionI" "0x00000000"
451.
Option "GammaCorrectionII" "0x00000000"
452.
# === OpenGL specific profiles/settings ===
453.
Option "Capabilities" "0x00000000"
454.
# === Video Overlay for the Xv extension ===
455.
Option "VideoOverlay" "on"
456.
# === OpenGL Overlay ===
457.
# Note: When OpenGL Overlay is enabled, Video Overlay
458.
# will be disabled automatically
459.
Option "OpenGLOverlay" "off"
460.
# === Center Mode (Laptops only) ===
461.
Option "CenterMode" "off"
462.
# === Pseudo Color Visuals (8-bit visuals) ===
463.
Option "PseudoColorVisuals" "off"
464.
# === QBS Management ===
465.
Option "Stereo" "off"
466.
Option "StereoSyncEnable" "1"
467.
# === FSAA Management ===
468.
Option "FSAAEnable" "no"
469.
Option "FSAAScale" "1"
470.
Option "FSAADisableGamma" "no"
471.
Option "FSAACustomizeMSPos" "no"
472.
Option "FSAAMSPosX0" "0.000000"
473.
Option "FSAAMSPosY0" "0.000000"
474.
Option "FSAAMSPosX1" "0.000000"
475.
Option "FSAAMSPosY1" "0.000000"
476.
Option "FSAAMSPosX2" "0.000000"
477.
Option "FSAAMSPosY2" "0.000000"
478.
Option "FSAAMSPosX3" "0.000000"
479.
Option "FSAAMSPosY3" "0.000000"
480.
Option "FSAAMSPosX4" "0.000000"
481.
Option "FSAAMSPosY4" "0.000000"
482.
Option "FSAAMSPosX5" "0.000000"
483.
Option "FSAAMSPosY5" "0.000000"
484.
# === Misc Options ===
485.
Option "UseFastTLS" "0"
486.
Option "BlockSignalsOnLock" "on"
487.
Option "UseInternalAGPGART" "yes"
488.
Option "ForceGenericCPU" "no"
489.
BusID "PCI:1:0:0" # vendor=1002, device=5961
490.
Screen 0
491.
EndSection
492.
493.
# **********************************************************************
494.
# Screen sections
495.
# **********************************************************************
496.
497.
# Any number of screen sections may be present. Each describes
498.
# the configuration of a single screen. A single specific screen section
499.
# may be specified from the X server command line with the "-screen"
500.
# option.
501.
Section "Screen"
502.
Identifier "Screen0"
503.
Device "ATI Graphics Adapter"
504.
Monitor "Monitor0"
505.
DefaultDepth 24
506.
#Option "backingstore"
507.
508.
Subsection "Display"
509.
Depth 24
510.
Modes "1024x768"
511.
ViewPort 0 0 # initial origin if mode is smaller than desktop
512.
# Virtual 1280 1024
513.
EndSubsection
514.
EndSection
515.
516.
# **********************************************************************
517.
# ServerLayout sections.
518.
# **********************************************************************
519.
520.
# Any number of ServerLayout sections may be present. Each describes
521.
# the way multiple screens are organised. A specific ServerLayout
522.
# section may be specified from the X server command line with the
523.
# "-layout" option. In the absence of this, the first section is used.
524.
# When now ServerLayout section is present, the first Screen section
525.
# is used alone.
526.
527.
Section "ServerLayout"
528.
529.
# The Identifier line must be present
530.
Identifier "Server Layout"
531.
532.
# Each Screen line specifies a Screen section name, and optionally
533.
# the relative position of other screens. The four names after
534.
# primary screen name are the screens to the top, bottom, left and right
535.
# of the primary screen.
536.
537.
Screen "Screen0"
538.
539.
# Each InputDevice line specifies an InputDevice section name and
540.
# optionally some options to specify the way the device is to be
541.
# used. Those options include "CorePointer", "CoreKeyboard" and
542.
# "SendCoreEvents".
543.
544.
InputDevice "Mouse1" "CorePointer"
545.
InputDevice "Keyboard1" "CoreKeyboard"
546.
547.
EndSection
548.
549.
### EOF ###
Merci d'avance.