> Thank you for excellent help. I could use a bit more of course ;-)
> I am running XFree86-4.0.1 as far as I can tell although the
> /etc/X11/XF86Config lists it as version 4.0
The best way to see precisely what X is doing as it starts is to look at the
log file it writes in /var/log/XFree86.0.log. Scanning through this is an
effective way to see what has loaded successfully or has failed and is the
first place I look when I hit trouble. This also tells you which configuration
file is being loaded - useful when you have several in /etc/X11 and you aren't
sure which one you need to edit.
Quote:> I now need to add a section to /etc/X11/XF86Config to make the
> settings come up right each time, like you said. I'll ask my
> questions here as I go by placing each question in [ ] immediately
> below the appropriate line. The man page says to add a section:
> ModeLine "name" mode-description
> [is this the exact name or am I supposed to substitute something for "name"?
The "name" is the name you give to the mode, which can be simply "1024x768" (in
which case it will replace any existing 1024x768 mode that XFree86 has
automatically configured) or something more esoteric, such as "Custom1". The
name you put here should also be specified as the first mode to be used in the
Display section later.
This ModeLine info needs to be put in the Section "Monitor" ... EndSection part
of the XF86Config file. For easier maintenance (the Modeline syntax is a little
obscure) you should probably use the new Mode "name" format.
Quote:> I would then add the info acquired through xvidtune in 3 sections:
> Pixel Clock "78.05"
> HDisplay "1025"
> HSynchStart "1060"
> HSychEnd "1156"
> HTotal "1312"
> VDisplay "768"
> VSynchStart "768"
> VSynchEnd "771"
> VTotal "796"
Add the Mode ... EndMode command to the monitor section (I've assumed the
monitor is called eOne).
Section "Monitor"
Identifier "eOne"
...
Mode "1024x768"
DotClock 78.05
HTimings 1025 1060 1156 1312
VTimings 768 768 771 796
EndMode
EndSection
Quote:> [Do these 3 sections each need a name? If so, what?]
Hopefully the example above is clear enough.
Quote:> Finally, can I slap these new sections anywhere in the monitor portion of
> XF86Config or is there a required order?
I believe that order does not matter in the file BUT the Mode ... EndMode must
appear inside the Section "Monitor" ... EndSection part.
You should also alter your Section "Screen" ... EndSection to reference the new
mode if it does not already have "1024x768" as the first entry in each Modes
line of each Section "Display" ... EndSection part. While only the one with the
colour depth you specify on the DefaultDepth line is really necessary, you
might as well keep the rest in sync! For example,
Section "Screen"
...
Monitor "eOne"
DefaultDepth 16
...
Section "Display"
Depth 16
Modes "1024x768" "800x600" "640x480"
EndSection
...
EndSection
Specifying multiple resolutions allows you to use Ctrl-Alt-Keypad+/- to switch
modes in the X server.
Quote:> Thank you greatly for any help; I am a rank newbie but I am determined ;-)
We all start somewhere!
Cheers,
Toby Haynes
--
Toby Haynes
The views and opinions expressed in this message are my own, and do
not necessarily reflect those of IBM Canada.