Penguin
Blame: XOrgMonitorNotes
EditPageHistoryDiffInfoLikePages
Annotated edit history of XOrgMonitorNotes version 2, including all changes. View license author blame.
Rev Author # Line
2 DanielLawson 1
2 Notes for Monitor setup with [XOrg]
1 DanielLawson 3
4 !!Poor configuration defaults in debian-derived systems
5
6 dpkg-reconfigure xserver-xorg no longer enables the reconfiguration of the
7 the monitor. A number systems end up with a very low default resolution
8 with a minimal xorg.conf
9
10 The core of the problem is that xorg.conf configuration has been replaced
11 by hald which does not work with all hardware. However, xorg.conf can be
12 used to over-ride hald.
13
14 After extensive Googling I discovered confusion and partial information
15 which enabled me to solve the problem for myself and this solution should
16 work for others. I hope that these people will find this posting on
17 Google. My xorg.conf follows.
18
19 <verbatim>
20 ************
21
22 # xorg.conf (X.Org X Window System server configuration file)
23 #
24 #This file was generated by dexconf,the Debian X Configuration tool, using
25 # values from the debconf database.
26 #
27 # Edit this file with caution, and see the xorg.conf manual page.
28 # (Type "man xorg.conf" at the shell prompt.)
29 #
30 #This file is automatically updated on xserver-xorg package upgrades *only*
31 # if it has not been modified since the last upgrade of the xserver-xorg
32 # package.
33 #
34 #If you have edited this file but would like it to be automatically updated
35 # again, run the following command:
36 # sudo dpkg-reconfigure -phigh xserver-xorg
37
38 Section "InputDevice"
39 Identifier "Generic Keyboard"
40 Driver "kbd"
41 Option "XkbRules" "xorg"
42 Option "XkbModel" "pc104"
43 Option "XkbLayout" "us"Section "InputDevice"
44 Identifier "Generic Keyboard"
45 Driver "kbd"
46 Option "XkbRules" "xorg"
47 Option "XkbModel" "pc104"
48 Option "XkbLayout" "us"
49 EndSection
50
51 Section "InputDevice"
52 Identifier "Configured Mouse"
53 Driver "mouse"
54 EndSection
55
56 Section "Device"
57 Identifier "Configured Video Device"
58 EndSection
59
60 Section "Monitor"
61 Identifier "Configured Monitor"
62 HorizSync 30-85 (New - use the values for your monitor)
63 VertRefresh 50-180 (New - use the values for your monitor)
64 EndSection
65
66 Section "Screen"
67 Identifier "Default Screen"
68 Monitor "Configured Monitor"
69 SubSection "Display" (New)
70 Depth 24 (New - use the values for your monitor)
71 Modes "1600x1200" (New - use the values for your monitor)
72 EndSubsection (New)
73 EndSection
74
75 *************
76 </verbatim>
77
78 This can also be used to knock back the screen resolution if the default
79 is too high.
80
81 Good luck.
82
83 Phil