This page (revision-4) was last changed on 13-Nov-2006 14:35 by PeterHormanns 

This page was created on 03-Oct-2006 21:29 by UnknownAuthor

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
4 13-Nov-2006 14:35 5 KB PeterHormanns to previous für JSPWiki mit Filter
3 13-Nov-2006 14:35 5 KB PeterHormanns to previous | to last für JSPWiki mit Filter
2 13-Nov-2006 14:33 5 KB PeterHormanns to previous | to last Alte Seite übernemmon
1 03-Oct-2006 21:29 5 KB UnknownAuthor to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

= Nvidia ~GeForceGeForce 5200 Zwei Monitore mit unterschiedlichen Auflösungen =
<pre>
##########################################################################
# Server flags section.
##########################################################################

Section "ServerFlags"

   # Uncomment this to cause a core dump at the spot where a signal is
   # received.  This may leave the console in an unusable state, but may
   # provide a better stack trace in the core dump to aid in debugging
   #NoTrapSignals

   # Uncomment this to disable the <Crtl><Alt><BS> server abort sequence
   # This allows clients to receive this key event.
   #DontZap

   # Uncomment this to disable the <Crtl><Alt><KP_+>/<KP_-> mode switching
   # sequences.  This allows clients to receive these key events.
   DontZoom

   # This  allows  the  server  to start up even if the
   # mouse device can't be opened/initialised.
   AllowMouseOpenFail

EndSection


##########################################################################
# Input devices
##########################################################################

#
# Keyboard section
#

Section "InputDevice"
       Identifier      "Keyboard1"
       Driver          "kbd"
#       Option          "CoreKeyboard"
       Option          "XkbRules"    "xorg"
       Option          "XkbModel"    "pc105"
       Option          "XkbLayout"   "de"
       Option          "XkbVariant"  "nodeadkeys"
EndSection

#
# Pointer section
#
Section "InputDevice"
       Identifier      "Mouse1"
       Driver          "mouse"
#       Option          "CorePointer"
       Option          "Device"              "/dev/input/mice"
       Option          "Protocol"            "ImPS/2"
       Option          "Emulate3Buttons"     "true"
       Option          "ZAxisMapping"                "4 5"
EndSection



##########################################################################
# Module section
##########################################################################

Section "Module"

#   Load        "dbe"

   # Load the glx module.
   Load        "glx"

   Load        "extmod"

   Load        "type1"
   Load        "freetype"
EndSection


##########################################################################
# Monitor section
##########################################################################

Section "Monitor"
       Identifier      "MyMonitor"
       HorizSync       30-70
       VertRefresh     50-120
#       Modeline        "1280x800"  68.56  1280 1336 1472 1664  800 801 804 824  -HSync +Vsync
#       Option          "DPMS"

EndSection


##########################################################################
# Graphics device section(s)
##########################################################################

Section "Device"
       Identifier      "NV AGP TwinView"
       Driver          "nvidia"
       BusID           "PCI:1:0:0"
       Option          "CursorShadow"        "off"
       Option          "RenderAccel" "true"
       Option          "TwinView" "true"
       Option          "ConnectedMonitor" "DFP-0, CRT-0"
#       Option          "MetaModes" "1200x800,1200x800"
       Option          "MetaModes" "CRT-0:1280x1024, DFP-0:1024x768; 1024x768,1024x768"

       Option "SecondMonitorHorizSync" "30-70"
       Option "SecondMonitorVertRefresh" "50-120"
#       Option "MetaModes" "1200x800,1200x800; 1024x768,1024x768;"

       Option "TwinViewOrientation" "CRT-0 LeftOf DFP-0"
#       Option "ConnectedMonitor"         "crt,crt"


EndSection


Section "DRI"
       Mode    0666
EndSection

##########################################################################
# Screen sections
##########################################################################


#
# screen section for an nvidia AGP TwinView card
# (look at the appropriate Device section)
#
Section "Screen"
   Identifier "Screen AGP TwinView"
   Device "NV AGP TwinView"
   Monitor "MyMonitor"           #RightOf "MyMonitorX"
   DefaultColorDepth 24
   Subsection "Display"
       Depth       16
       Modes       "1280x1024" "1200x800" "1024x768" "800x600" "640x480"
   EndSubsection
   Subsection "Display"
       Depth       24
       Modes       "1280x1024" "1200x800" "1024x768" "800x600" "640x480"
   EndSubsection
EndSection




#
# just one agp twinview card
#
Section "ServerLayout"
   Identifier  "AGPTwinView"
   Screen      "Screen AGP TwinView"
   InputDevice "Mouse1" "CorePointer"
   InputDevice "Keyboard1" "CoreKeyboard"
EndSection


Section "Files"
       FontPath        "/usr/share/X11/fonts/misc"
       FontPath        "/usr/share/X11/fonts/cyrillic"
       FontPath        "/usr/share/X11/fonts/100dpi/:unscaled"
       FontPath        "/usr/share/X11/fonts/75dpi/:unscaled"
       FontPath        "/usr/share/X11/fonts/Type1"
       FontPath        "/usr/share/X11/fonts/CID"
       FontPath        "/usr/share/X11/fonts/100dpi"
       FontPath        "/usr/share/X11/fonts/75dpi"
       # paths to defoma fonts
       FontPath        "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
       FontPath        "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"
EndSection
</pre>