LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Setting up dual monitors (https://www.linuxquestions.org/questions/linux-newbie-8/setting-up-dual-monitors-526577/)

Figgy 02-07-2007 08:40 PM

Setting up dual monitors
 
Hey, I just joined but I have browsed here before. I am trying to set up my video drivers for my ubuntu 6.10 system. I currently have 2 Nvidia 6600GT's, and with those two I would like to run two monitors, one video card per monitor ( Not SLI ). I have tried to follow some tutorials but I always end up killing my xorg.conf file, which gets to be quite time consuming when trying to do this between school.
In case this info is needed.
Code:

figgy@Delta:~$ lspci -x | grep VGA
02:00.0 VGA compatible controller: nVidia Corporation NV43 [GeForce 6600 GT] (rev a2)
05:00.0 VGA compatible controller: nVidia Corporation NV43 [GeForce 6600 GT] (rev a2)

Code:

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 1.0  (buildmeister@builder26)  Mon Oct 16 22:13:48 PDT 2006

# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#  sudo dpkg-reconfigure -phigh xserver-xorg

Section "ServerLayout"
    Identifier    "Default Layout"
    Screen        "Default Screen" 0 0
    InputDevice    "Generic Keyboard"
    InputDevice    "Configured Mouse"
    InputDevice    "stylus" "SendCoreEvents"
    InputDevice    "cursor" "SendCoreEvents"
    InputDevice    "eraser" "SendCoreEvents"
EndSection

Section "Files"

        # path to defoma fonts
    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/100dpi"
    FontPath        "/usr/share/X11/fonts/75dpi"
    FontPath        "/usr/share/fonts/X11/misc"
    FontPath        "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
    Load          "i2c"
    Load          "bitmap"
    Load          "ddc"
    Load          "extmod"
    Load          "freetype"
    Load          "glx"
    Load          "int10"
    Load          "type1"
    Load          "vbe"
EndSection

Section "InputDevice"
    Identifier    "Generic Keyboard"
    Driver        "kbd"
    Option        "CoreKeyboard"
    Option        "XkbRules" "xorg"
    Option        "XkbModel" "pc105"
    Option        "XkbLayout" "us"
    Option        "XkbOptions" "lv3:ralt_switch"
EndSection

Section "InputDevice"
    Identifier    "Configured Mouse"
    Driver        "mouse"
    Option        "CorePointer"
    Option        "Device" "/dev/input/mice"
    Option        "Protocol" "ExplorerPS/2"
    Option        "ZAxisMapping" "4 5"
    Option        "Emulate3Buttons" "true"
EndSection

Section "InputDevice"

                                                      # /dev/input/event
                                                      # for USB
    Identifier    "stylus"
    Driver        "wacom"
    Option        "Device" "/dev/wacom"          # Change to
    Option        "Type" "stylus"
    Option        "ForceDevice" "ISDV4"              # Tablet PC ONLY
EndSection

Section "InputDevice"

                                                      # /dev/input/event
                                                      # for USB
    Identifier    "eraser"
    Driver        "wacom"
    Option        "Device" "/dev/wacom"          # Change to
    Option        "Type" "eraser"
    Option        "ForceDevice" "ISDV4"              # Tablet PC ONLY
EndSection

Section "InputDevice"

                                                      # /dev/input/event
                                                      # for USB
    Identifier    "cursor"
    Driver        "wacom"
    Option        "Device" "/dev/wacom"          # Change to
    Option        "Type" "cursor"
    Option        "ForceDevice" "ISDV4"              # Tablet PC ONLY
EndSection

Section "Monitor"
    Identifier    "AOC Spectrum"
    Option        "DPMS"
EndSection

Section "Device"
    Identifier    "NVIDIA Corporation NV43 [GeForce 6600 GT]"
    Driver        "nvidia"
EndSection

Section "Screen"
    Identifier    "Default Screen"
    Device        "NVIDIA Corporation NV43 [GeForce 6600 GT]"
    Monitor        "AOC Spectrum"
    DefaultDepth    24
    SubSection    "Display"
        Depth      1
        Modes      "1280x1024" "1280x960" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection    "Display"
        Depth      4
        Modes      "1280x1024" "1280x960" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection    "Display"
        Depth      8
        Modes      "1280x1024" "1280x960" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection    "Display"
        Depth      15
        Modes      "1280x1024" "1280x960" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection    "Display"
        Depth      16
        Modes      "1280x1024" "1280x960" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection    "Display"
        Depth      24
        Modes      "1280x1024" "1280x960" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection


HappyTux 02-07-2007 10:15 PM

Quote:

Originally Posted by Figgy
Hey, I just joined but I have browsed here before. I am trying to set up my video drivers for my ubuntu 6.10 system. I currently have 2 Nvidia 6600GT's, and with those two I would like to run two monitors, one video card per monitor ( Not SLI ). I have tried to follow some tutorials but I always end up killing my xorg.conf file, which gets to be quite time consuming when trying to do this between school.
In case this info is needed.
Code:

figgy@Delta:~$ lspci -x | grep VGA
02:00.0 VGA compatible controller: nVidia Corporation NV43 [GeForce 6600 GT] (rev a2)
05:00.0 VGA compatible controller: nVidia Corporation NV43 [GeForce 6600 GT] (rev a2)


Try the file below after copying your current file to a backup this should give you two separate desktops one for each video card/monitor combination. Depending how the monitors are situated on the desktop you may want to change the LeftOf to RightOf and you might want to fill in the VendorName and ModelName correctly for the second monitor. If it does not work can you post the /var/log/Xorg.0.log file so we can see how everything gets detected, you will need to put this in two post as it is rather big and make sure to copy it to a backup before starting X with your working file otherwise it will be overwritten.

Code:

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 1.0  (buildmeister@builder26)  Mon Oct 16 22:13:48 PDT 2006

# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#  sudo dpkg-reconfigure -phigh xserver-xorg

Section "Dual Head"
    Identifier    "Default Layout"
    Screen      0  "Screen0" 0 0
    Screen      1  "Screen1" LeftOf  "Screen0"
    InputDevice    "Generic Keyboard"
    InputDevice    "Configured Mouse"
EndSection

Section "Files"

        # path to defoma fonts
    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/100dpi"
    FontPath        "/usr/share/X11/fonts/75dpi"
    FontPath        "/usr/share/fonts/X11/misc"
    FontPath        "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
    Load          "i2c"
    Load          "bitmap"
    Load          "ddc"
    Load          "extmod"
    Load          "freetype"
    Load          "glx"
    Load          "int10"
    Load          "type1"
    Load          "vbe"
    Load          "xtrap"
EndSection

Section "InputDevice"
    Identifier    "Generic Keyboard"
    Driver        "kbd"
    Option        "CoreKeyboard"
    Option        "XkbRules" "xorg"
    Option        "XkbModel" "pc105"
    Option        "XkbLayout" "us"
    Option        "XkbOptions" "lv3:ralt_switch"
EndSection

Section "InputDevice"
    Identifier    "Configured Mouse"
    Driver        "mouse"
    Option        "CorePointer"
    Option        "Device" "/dev/input/mice"
    Option        "Protocol" "ExplorerPS/2"
    Option        "ZAxisMapping" "4 5"
    Option        "Emulate3Buttons" "true"
EndSection


Section "Monitor"
    Identifier    "Monitor0"
    VendorName  "AOC"
    ModelName    "Spectrum"
    Option        "DPMS"
EndSection

Section "Monitor"
    Identifier    "Monitor1"
    VendorName  "Name"
    ModelName    "Model"
    Option        "DPMS"
EndSection

Section "Device"
    Identifier    "Card0"
    VendorName  "Nvidia"
    BoardName  "NVIDIA Corporation NV43 [GeForce 6600 GT]"
    Driver        "nvidia"
    BusID        "PCI:2:0:0"
EndSection

Section "Device"
    Identifier    "Card1"
    VendorName  "Nvidia"
    BoardName  "NVIDIA Corporation NV43 [GeForce 6600 GT]"
    Driver        "nvidia"
    BusID        "PCI:5:0:0"
EndSection

Section "Screen"
    Identifier    "Screen0"
    Device        "Card0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection    "Display"
        Depth      24
        Modes      "1280x1024" "1280x960" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection

Section "Screen"
    Identifier    "Screen1"
    Device        "Card1"
    Monitor        "Monitor1"
    DefaultDepth    24
    SubSection    "Display"
        Depth      24
        Modes      "1280x1024" "1280x960" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection


Figgy 02-09-2007 04:06 PM

When I did that I got a parse error on line 20 that says "Dual Head" is not a valid section name.


Fatal server error:
no screens found.

EDIT: I just changed it to serverlayout and it works.. sorta. Now that I have done that, I now can use both monitors. The only thing is both of them are the same only with one mouse. I have 2 separate start menu's and I can't drag a window from one window to the next.

HappyTux 02-09-2007 04:41 PM

Sorry edited the wrong line there that should be "ServerLayout" and the line below "Dual Head" instead of "Default Layout".

Figgy 02-09-2007 05:38 PM

Are you saying that the default layout part should read dualhead? Also, I need to flip the monitors because the left is on the right and vice versa.

HappyTux 02-09-2007 06:27 PM

Quote:

Originally Posted by Figgy
Are you saying that the default layout part should read dualhead? Also, I need to flip the monitors because the left is on the right and vice versa.

The section should read and I have changed the monitors around.

Code:

Section "ServerLayout"
    Identifier    "Dual Head"
    Screen      0  "Screen0" 0 0
    Screen      1  "Screen1" RightOf  "Screen0"
    InputDevice    "Generic Keyboard"
    InputDevice    "Configured Mouse"
EndSection


Figgy 02-09-2007 09:34 PM

I had already gotten it, but thanks again.

EDIT:
Arg... for some reason every time I start this machine up the main screen has a low res screen, while the other is 1280. If I restart X it fixes it, any suggestions.

HappyTux 02-09-2007 10:16 PM

Quote:

Originally Posted by Figgy
I had already gotten it, but thanks again.

EDIT:
Arg... for some reason every time I start this machine up the main screen has a low res screen, while the other is 1280. If I restart X it fixes it, any suggestions.

That seems strange can you post the /var/log/Xorg.0.log file copy it to a backup before restarting X to get the proper resolution otherwise it gets overwritten, you will need to put it into two separate posts as it is rather big.

Figgy 02-10-2007 10:41 AM

As you requested here is the Xorg.0.log file. I had to edit it some to make it fit on the forum. And as a side question, I updated my computer yesterday, and it caused my terminal to break, leaving me to use xterm.

Code:

X Window System Version 7.1.1
Release Date: 12 May 2006
X Protocol Version 11, Revision 0, Release 7.1.1
Build Operating System: Linux 2.6.15.7 x86_64
Current Operating System: Linux Delta 2.6.17-11-generic #2 SMP Thu Feb 1 18:03:05 UTC 2007 x86_64
Build Date: 07 July 2006
        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Sat Feb 10 11:35:03 2007
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Dual Head"
(**) |-->Screen "Screen0" (0)
(**) |  |-->Monitor "Monitor0"
(**) |  |-->Device "Card0"
(**) |-->Screen "Screen1" (1)
(**) |  |-->Monitor "Monitor1"
(**) |  |-->Device "Card1"
(**) |-->Input Device "Generic Keyboard"
(**) |-->Input Device "Configured Mouse"
(WW) The directory "/usr/share/X11/fonts/misc" does not exist.
        Entry deleted from font path.
(WW) The directory "/usr/share/X11/fonts/cyrillic" does not exist.
        Entry deleted from font path.
(WW) The directory "/usr/share/X11/fonts/100dpi/" does not exist.
        Entry deleted from font path.
(WW) The directory "/usr/share/X11/fonts/75dpi/" does not exist.
        Entry deleted from font path.
(WW) The directory "/usr/share/X11/fonts/Type1" does not exist.
        Entry deleted from font path.
(WW) The directory "/usr/share/X11/fonts/100dpi" does not exist.
        Entry deleted from font path.
(WW) The directory "/usr/share/X11/fonts/75dpi" does not exist.
        Entry deleted from font path.
(WW) `fonts.dir' not found (or not valid) in "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType".
        Entry deleted from font path.
        (Run 'mkfontdir' on "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType").
(**) FontPath set to:
        /usr/share/fonts/X11/misc,
        /usr/share/fonts/X11/misc/,
        /usr/share/fonts/X11/TTF/,
        /usr/share/fonts/X11/OTF,
        /usr/share/fonts/X11/Type1/,
        /usr/share/fonts/X11/CID/,
        /usr/share/fonts/X11/100dpi/,
        /usr/share/fonts/X11/75dpi/
(==) RgbPath set to "/usr/share/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(**) Option "Xinerama" "true"
(**) Xinerama: enabled
(II) Open ACPI successful (/var/run/acpid.socket)
(II) Module ABI versions:
        X.Org ANSI C Emulation: 0.3
        X.Org Video Driver: 1.0
        X.Org XInput driver : 0.6
        X.Org Server Extension : 0.3
        X.Org Font Renderer : 0.5
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/lib/xorg/modules/fonts/libbitmap.so
(II) Module bitmap: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.0.0
        Module class: X.Org Font Renderer
        ABI class: X.Org Font Renderer, version 0.5
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/lib/xorg/modules/libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.0.0
        ABI class: X.Org Video Driver, version 1.0
(++) using VT number 7

(II) PCI: PCI scan (all values are in hex)
REMOVED PCI SCAN
(II) PCI: End of PCI scan
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:1:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) Subtractive PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:9:0), (0,1,1), BCTRL: 0x0204 (VGA_EN is cleared)
(II) Bus 1 I/O range:
        [0] -1        0        0x0000a000 - 0x0000a0ff (0x100) IX[B]
        [1] -1        0        0x0000a400 - 0x0000a4ff (0x100) IX[B]
        [2] -1        0        0x0000a800 - 0x0000a8ff (0x100) IX[B]
        [3] -1        0        0x0000ac00 - 0x0000acff (0x100) IX[B]
(II) Bus 1 non-prefetchable memory range:
        [0] -1        0        0xfde00000 - 0xfdefffff (0x100000) MX[B]
(II) Bus 1 prefetchable memory range:
        [0] -1        0        0xfdf00000 - 0xfdffffff (0x100000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:11:0), (0,2,2), BCTRL: 0x0004 (VGA_EN is cleared)
(II) Bus 2 I/O range:
        [0] -1        0        0x00009000 - 0x000090ff (0x100) IX[B]
        [1] -1        0        0x00009400 - 0x000094ff (0x100) IX[B]
        [2] -1        0        0x00009800 - 0x000098ff (0x100) IX[B]
        [3] -1        0        0x00009c00 - 0x00009cff (0x100) IX[B]
(II) Bus 2 non-prefetchable memory range:
        [0] -1        0        0xf4000000 - 0xfbffffff (0x8000000) MX[B]
(II) Bus 2 prefetchable memory range:
        [0] -1        0        0xc8000000 - 0xcfffffff (0x8000000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 3: bridge is at (0:12:0), (0,3,3), BCTRL: 0x0004 (VGA_EN is cleared)
(II) Bus 3 I/O range:
        [0] -1        0        0x00008000 - 0x000080ff (0x100) IX[B]
        [1] -1        0        0x00008400 - 0x000084ff (0x100) IX[B]
        [2] -1        0        0x00008800 - 0x000088ff (0x100) IX[B]
        [3] -1        0        0x00008c00 - 0x00008cff (0x100) IX[B]
(II) Bus 3 non-prefetchable memory range:
        [0] -1        0        0xfdd00000 - 0xfddfffff (0x100000) MX[B]
(II) Bus 3 prefetchable memory range:
        [0] -1        0        0xfdc00000 - 0xfdcfffff (0x100000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 4: bridge is at (0:13:0), (0,4,4), BCTRL: 0x0004 (VGA_EN is cleared)
(II) Bus 4 I/O range:
        [0] -1        0        0x00007000 - 0x000070ff (0x100) IX[B]
        [1] -1        0        0x00007400 - 0x000074ff (0x100) IX[B]
        [2] -1        0        0x00007800 - 0x000078ff (0x100) IX[B]
        [3] -1        0        0x00007c00 - 0x00007cff (0x100) IX[B]
(II) Bus 4 non-prefetchable memory range:
        [0] -1        0        0xfdb00000 - 0xfdbfffff (0x100000) MX[B]
(II) Bus 4 prefetchable memory range:
        [0] -1        0        0xfda00000 - 0xfdafffff (0x100000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 5: bridge is at (0:14:0), (0,5,5), BCTRL: 0x000c (VGA_EN is set)
(II) Bus 5 I/O range:
        [0] -1        0        0x00006000 - 0x000060ff (0x100) IX[B]
        [1] -1        0        0x00006400 - 0x000064ff (0x100) IX[B]
        [2] -1        0        0x00006800 - 0x000068ff (0x100) IX[B]
        [3] -1        0        0x00006c00 - 0x00006cff (0x100) IX[B]
(II) Bus 5 non-prefetchable memory range:
        [0] -1        0        0xd4000000 - 0xdbffffff (0x8000000) MX[B]
(II) Bus 5 prefetchable memory range:
        [0] -1        0        0xc0000000 - 0xc7ffffff (0x8000000) MX[B]
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:24:0), (0,0,5), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
        [0] -1        0        0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
        [0] -1        0        0x00000000 - 0xffffffff (0x100000000) MX[B]
(II) Bus 0 prefetchable memory range:
        [0] -1        0        0x00000000 - 0xffffffff (0x100000000) MX[B]
(--) PCI: (2:0:0) nVidia Corporation NV43 [GeForce 6600 GT] rev 162, Mem @ 0xf4000000/26, 0xc8000000/27, 0xfa000000/24
(--) PCI:*(5:0:0) nVidia Corporation NV43 [GeForce 6600 GT] rev 162, Mem @ 0xd4000000/26, 0xc0000000/27, 0xda000000/24
(II) Addressable bus resource ranges are
        REMOVED FOR FORUM LENGTH
(II) LoadModule: "i2c"
(II) Loading /usr/lib/xorg/modules/libi2c.so
(II) Module i2c: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.2.0
        ABI class: X.Org Video Driver, version 1.0
(II) LoadModule: "bitmap"
(II) Reloading /usr/lib/xorg/modules/fonts/libbitmap.so
(II) Loading font Bitmap
(II) LoadModule: "ddc"
(II) Loading /usr/lib/xorg/modules/libddc.so
(II) Module ddc: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.0.0
        ABI class: X.Org Video Driver, version 1.0
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.0.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 0.3
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "freetype"
(II) Loading /usr/lib/xorg/modules/fonts/libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
        compiled for 7.1.1, module version = 2.1.0
        Module class: X.Org Font Renderer
        ABI class: X.Org Font Renderer, version 0.5
(II) Loading font FreeType
(II) LoadModule: "glx"
(II) Loading /usr/lib/xorg/modules/libglx.so
(II) Module glx: vendor="NVIDIA Corporation"
        compiled for 4.0.2, module version = 1.0.8776
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 0.1
(II) Loading extension GLX
(II) LoadModule: "int10"
(II) Loading /usr/lib/xorg/modules/libint10.so
(II) Module int10: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.0.0
        ABI class: X.Org Video Driver, version 1.0
(II) LoadModule: "type1"
(II) Loading /usr/lib/xorg/modules/fonts/libtype1.so
(II) Module type1: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.0.2
        Module class: X.Org Font Renderer
        ABI class: X.Org Font Renderer, version 0.5
(II) Loading font Type1
(II) LoadModule: "vbe"
(II) Loading /usr/lib/xorg/modules/libvbe.so
(II) Module vbe: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.1.0
        ABI class: X.Org Video Driver, version 1.0
(II) LoadModule: "xtrap"
(II) Loading /usr/lib/xorg/modules/extensions/libxtrap.so
(II) Module xtrap: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.0.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 0.3
(II) Loading extension DEC-XTRAP
(II) LoadModule: "nvidia"
(II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.o
(II) Module nvidia: vendor="NVIDIA Corporation"
        compiled for 4.0.2, module version = 1.0.8776
        Module class: X.Org Video Driver
(II) LoadModule: "kbd"
(II) Loading /usr/lib/xorg/modules/input/kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.1.0
        Module class: X.Org XInput Driver
        ABI class: X.Org XInput driver, version 0.6
(II) LoadModule: "mouse"
(II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.1.1
        Module class: X.Org XInput Driver
        ABI class: X.Org XInput driver, version 0.6
(II) NVIDIA X Driver  1.0-8776  Mon Oct 16 21:56:44 PDT 2006
(II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
(II) Primary Device is: PCI 05:00:0
(--) Chipset NVIDIA GPU found
(--) Chipset NVIDIA GPU found
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/xorg/modules/libfb.so
(II) Module fb: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.0.0
        ABI class: X.Org ANSI C Emulation, version 0.3
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/lib/xorg/modules/libramdac.so
(II) Module ramdac: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 0.1.0
        ABI class: X.Org Video Driver, version 1.0
(II) resource ranges after xf86ClaimFixedResources() call:
        [0] -1        0        0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
        [1] -1        0        0x000f0000 - 0x000fffff (0x10000) MX[B]
        [2] -1        0        0x000c0000 - 0x000effff (0x30000) MX[B]
        [3] -1        0        0x00000000 - 0x0009ffff (0xa0000) MX[B]
        [4] -1        0        0xfdeff000 - 0xfdeff7ff (0x800) MX[B]
        [5] -1        0        0xfe02a000 - 0xfe02afff (0x1000) MX[B]
        [6] -1        0        0xfe02b000 - 0xfe02bfff (0x1000) MX[B]
        [7] -1        0        0xfe02c000 - 0xfe02cfff (0x1000) MX[B]
        [8] -1        0        0xfe02d000 - 0xfe02dfff (0x1000) MX[B]
        [9] -1        0        0xfeb00000 - 0xfeb000ff (0x100) MX[B]
        [10] -1        0        0xfe02f000 - 0xfe02ffff (0x1000) MX[B]
        [11] -1        0        0xda000000 - 0xdaffffff (0x1000000) MX[B](B)
        [12] -1        0        0xc0000000 - 0xc7ffffff (0x8000000) MX[B](B)
        [13] -1        0        0xd4000000 - 0xd7ffffff (0x4000000) MX[B](B)
        [14] -1        0        0xfa000000 - 0xfaffffff (0x1000000) MX[B](B)
        [15] -1        0        0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
        [16] -1        0        0xf4000000 - 0xf7ffffff (0x4000000) MX[B](B)
        [17] -1        0        0x0000ffff - 0x0000ffff (0x1) IX[B]
        [18] -1        0        0x00000000 - 0x000000ff (0x100) IX[B]
        [19] -1        0        0x0000ac00 - 0x0000ac7f (0x80) IX[B]
        [20] -1        0        0x0000bc00 - 0x0000bc07 (0x8) IX[B]
        [21] -1        0        0x0000c000 - 0x0000c00f (0x10) IX[B]
        [22] -1        0        0x00000b60 - 0x00000b63 (0x4) IX[B]
        [23] -1        0        0x00000960 - 0x00000967 (0x8) IX[B]
        [24] -1        0        0x00000be0 - 0x00000be3 (0x4) IX[B]
        [25] -1        0        0x000009e0 - 0x000009e7 (0x8) IX[B]
        [26] -1        0        0x0000d400 - 0x0000d40f (0x10) IX[B]
        [27] -1        0        0x00000b70 - 0x00000b73 (0x4) IX[B]
        [28] -1        0        0x00000970 - 0x00000977 (0x8) IX[B]
        [29] -1        0        0x00000bf0 - 0x00000bf3 (0x4) IX[B]
        [30] -1        0        0x000009f0 - 0x000009f7 (0x8) IX[B]
        [31] -1        0        0x0000e800 - 0x0000e80f (0x10) IX[B]
        [32] -1        0        0x0000ec00 - 0x0000ecff (0x100) IX[B]
        [33] -1        0        0x0000f000 - 0x0000f0ff (0x100) IX[B]
        [34] -1        0        0x00001c40 - 0x00001c7f (0x40) IX[B]
        [35] -1        0        0x00001c00 - 0x00001c3f (0x40) IX[B]
        [36] -1        0        0x0000fc00 - 0x0000fc1f (0x20) IX[B]
(II) resource ranges after xf86ClaimFixedResources() call:
        [0] -1        0        0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
        [1] -1        0        0x000f0000 - 0x000fffff (0x10000) MX[B]
        [2] -1        0        0x000c0000 - 0x000effff (0x30000) MX[B]
        [3] -1        0        0x00000000 - 0x0009ffff (0xa0000) MX[B]
        [4] -1        0        0xfdeff000 - 0xfdeff7ff (0x800) MX[B]
        [5] -1        0        0xfe02a000 - 0xfe02afff (0x1000) MX[B]
        [6] -1        0        0xfe02b000 - 0xfe02bfff (0x1000) MX[B]
        [7] -1        0        0xfe02c000 - 0xfe02cfff (0x1000) MX[B]
        [8] -1        0        0xfe02d000 - 0xfe02dfff (0x1000) MX[B]
        [9] -1        0        0xfeb00000 - 0xfeb000ff (0x100) MX[B]
        [10] -1        0        0xfe02f000 - 0xfe02ffff (0x1000) MX[B]
        [11] -1        0        0xda000000 - 0xdaffffff (0x1000000) MX[B](B)
        [12] -1        0        0xc0000000 - 0xc7ffffff (0x8000000) MX[B](B)
        [13] -1        0        0xd4000000 - 0xd7ffffff (0x4000000) MX[B](B)
        [14] -1        0        0xfa000000 - 0xfaffffff (0x1000000) MX[B](B)
        [15] -1        0        0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
        [16] -1        0        0xf4000000 - 0xf7ffffff (0x4000000) MX[B](B)
        [17] -1        0        0x0000ffff - 0x0000ffff (0x1) IX[B]
        [18] -1        0        0x00000000 - 0x000000ff (0x100) IX[B]
        [19] -1        0        0x0000ac00 - 0x0000ac7f (0x80) IX[B]
        [20] -1        0        0x0000bc00 - 0x0000bc07 (0x8) IX[B]
        [21] -1        0        0x0000c000 - 0x0000c00f (0x10) IX[B]
        [22] -1        0        0x00000b60 - 0x00000b63 (0x4) IX[B]
        [23] -1        0        0x00000960 - 0x00000967 (0x8) IX[B]
        [24] -1        0        0x00000be0 - 0x00000be3 (0x4) IX[B]
        [25] -1        0        0x000009e0 - 0x000009e7 (0x8) IX[B]
        [26] -1        0        0x0000d400 - 0x0000d40f (0x10) IX[B]
        [27] -1        0        0x00000b70 - 0x00000b73 (0x4) IX[B]
        [28] -1        0        0x00000970 - 0x00000977 (0x8) IX[B]
        [29] -1        0        0x00000bf0 - 0x00000bf3 (0x4) IX[B]
        [30] -1        0        0x000009f0 - 0x000009f7 (0x8) IX[B]
        [31] -1        0        0x0000e800 - 0x0000e80f (0x10) IX[B]
        [32] -1        0        0x0000ec00 - 0x0000ecff (0x100) IX[B]
        [33] -1        0        0x0000f000 - 0x0000f0ff (0x100) IX[B]
        [34] -1        0        0x00001c40 - 0x00001c7f (0x40) IX[B]
        [35] -1        0        0x00001c00 - 0x00001c3f (0x40) IX[B]
        [36] -1        0        0x0000fc00 - 0x0000fc1f (0x20) IX[B]
(II) resource ranges after probing:
        [0] -1        0        0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
        [1] -1        0        0x000f0000 - 0x000fffff (0x10000) MX[B]
        [2] -1        0        0x000c0000 - 0x000effff (0x30000) MX[B]
        [3] -1        0        0x00000000 - 0x0009ffff (0xa0000) MX[B]
        [4] -1        0        0xfdeff000 - 0xfdeff7ff (0x800) MX[B]
        [5] -1        0        0xfe02a000 - 0xfe02afff (0x1000) MX[B]
        [6] -1        0        0xfe02b000 - 0xfe02bfff (0x1000) MX[B]
        [7] -1        0        0xfe02c000 - 0xfe02cfff (0x1000) MX[B]
        [8] -1        0        0xfe02d000 - 0xfe02dfff (0x1000) MX[B]
        [9] -1        0        0xfeb00000 - 0xfeb000ff (0x100) MX[B]
        [10] -1        0        0xfe02f000 - 0xfe02ffff (0x1000) MX[B]
        [11] -1        0        0xda000000 - 0xdaffffff (0x1000000) MX[B](B)
        [12] -1        0        0xc0000000 - 0xc7ffffff (0x8000000) MX[B](B)
        [13] -1        0        0xd4000000 - 0xd7ffffff (0x4000000) MX[B](B)
        [14] -1        0        0xfa000000 - 0xfaffffff (0x1000000) MX[B](B)
        [15] -1        0        0xc8000000 - 0xcfffffff (0x8000000) MX[B](B)
        [16] -1        0        0xf4000000 - 0xf7ffffff (0x4000000) MX[B](B)
        [17] 0        0        0x000a0000 - 0x000affff (0x10000) MS[B]
        [18] 0        0        0x000b0000 - 0x000b7fff (0x8000) MS[B]
        [19] 0        0        0x000b8000 - 0x000bffff (0x8000) MS[B]
        [20] 1        0        0x000a0000 - 0x000affff (0x10000) MS[B]
        [21] 1        0        0x000b0000 - 0x000b7fff (0x8000) MS[B]
        [22] 1        0        0x000b8000 - 0x000bffff (0x8000) MS[B]
        [23] -1        0        0x0000ffff - 0x0000ffff (0x1) IX[B]
        [24] -1        0        0x00000000 - 0x000000ff (0x100) IX[B]
        [25] -1        0        0x0000ac00 - 0x0000ac7f (0x80) IX[B]
        [26] -1        0        0x0000bc00 - 0x0000bc07 (0x8) IX[B]
        [27] -1        0        0x0000c000 - 0x0000c00f (0x10) IX[B]
        [28] -1        0        0x00000b60 - 0x00000b63 (0x4) IX[B]
        [29] -1        0        0x00000960 - 0x00000967 (0x8) IX[B]
        [30] -1        0        0x00000be0 - 0x00000be3 (0x4) IX[B]
        [31] -1        0        0x000009e0 - 0x000009e7 (0x8) IX[B]
        [32] -1        0        0x0000d400 - 0x0000d40f (0x10) IX[B]
        [33] -1        0        0x00000b70 - 0x00000b73 (0x4) IX[B]
        [34] -1        0        0x00000970 - 0x00000977 (0x8) IX[B]
        [35] -1        0        0x00000bf0 - 0x00000bf3 (0x4) IX[B]
        [36] -1        0        0x000009f0 - 0x000009f7 (0x8) IX[B]
        [37] -1        0        0x0000e800 - 0x0000e80f (0x10) IX[B]
        [38] -1        0        0x0000ec00 - 0x0000ecff (0x100) IX[B]
        [39] -1        0        0x0000f000 - 0x0000f0ff (0x100) IX[B]
        [40] -1        0        0x00001c40 - 0x00001c7f (0x40) IX[B]
        [41] -1        0        0x00001c00 - 0x00001c3f (0x40) IX[B]
        [42] -1        0        0x0000fc00 - 0x0000fc1f (0x20) IX[B]
        [43] 0        0        0x000003b0 - 0x000003bb (0xc) IS[B]
        [44] 0        0        0x000003c0 - 0x000003df (0x20) IS[B]
        [45] 1        0        0x000003b0 - 0x000003bb (0xc) IS[B]
        [46] 1        0        0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(II) Setting vga for screen 1.
(**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
(==) NVIDIA(0): RGB weight 888
(==) NVIDIA(0): Default visual is TrueColor
(==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
(**) NVIDIA(0): Enabling RENDER acceleration
(II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
(II) NVIDIA(0):    enabled.
(WW) NVIDIA(0): Unable to read EDID for display device CRT-0
(II) NVIDIA(0): NVIDIA GPU GeForce 6600 GT at PCI:2:0:0
(--) NVIDIA(0): VideoRAM: 131072 kBytes
(--) NVIDIA(0): VideoBIOS: 05.43.02.16.01
(II) NVIDIA(0): Detected PCI Express Link width: 2X
(--) NVIDIA(0): Interlaced video modes are supported on this GPU
(--) NVIDIA(0): Connected display device(s) on GeForce 6600 GT at PCI:2:0:0:
(--) NVIDIA(0):    CRT-0
(--) NVIDIA(0): CRT-0: 400.0 MHz maximum pixel clock
(II) NVIDIA(0): Assigned Display Device: CRT-0
(WW) NVIDIA(0): No valid modes for "1280x1024"; removing.
(WW) NVIDIA(0): No valid modes for "1280x960"; removing.
(WW) NVIDIA(0): No valid modes for "1024x768"; removing.
(WW) NVIDIA(0): No valid modes for "800x600"; removing.
(II) NVIDIA(0): Validated modes:
(II) NVIDIA(0):    "640x480"
(II) NVIDIA(0): Virtual screen size determined to be 640 x 480
(WW) NVIDIA(0): Unable to get display device CRT-0's EDID; cannot compute DPI
(WW) NVIDIA(0):    from EDID.
(==) NVIDIA(0): DPI set to (75, 75); computed from built-in default
(**) NVIDIA(1): Depth 24, (--) framebuffer bpp 32
(==) NVIDIA(1): RGB weight 888
(==) NVIDIA(1): Default visual is TrueColor
(==) NVIDIA(1): Using gamma correction (1.0, 1.0, 1.0)
(**) NVIDIA(1): Enabling RENDER acceleration
(II) NVIDIA(1): NVIDIA GPU GeForce 6600 GT at PCI:5:0:0
(--) NVIDIA(1): VideoRAM: 131072 kBytes
(--) NVIDIA(1): VideoBIOS: 05.43.02.16.01
(II) NVIDIA(1): Detected PCI Express Link width: 16X
(--) NVIDIA(1): Interlaced video modes are supported on this GPU
(--) NVIDIA(1): Connected display device(s) on GeForce 6600 GT at PCI:5:0:0:
(--) NVIDIA(1):    Envision AOC Spectrum9K (CRT-0)
(--) NVIDIA(1): Envision AOC Spectrum9K (CRT-0): 400.0 MHz maximum pixel
(--) NVIDIA(1):    clock
(II) NVIDIA(1): Assigned Display Device: CRT-0
(II) NVIDIA(1): Validated modes:
(II) NVIDIA(1):    "1280x1024"
(II) NVIDIA(1):    "1280x960"
(II) NVIDIA(1):    "1024x768"
(II) NVIDIA(1):    "800x600"
(II) NVIDIA(1):    "640x480"
(II) NVIDIA(1): Virtual screen size determined to be 1280 x 1024
(--) NVIDIA(1): DPI set to (90, 96); computed from "UseEdidDpi" X config option
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC?  Yes, I do.
(II) LoadModule: "rac"
(II) Loading /usr/lib/xorg/modules/librac.so
(II) Module rac: vendor="X.Org Foundation"
        compiled for 7.1.1, module version = 1.0.0
        ABI class: X.Org Video Driver, version 1.0
(II) resource ranges after preInit:
        RANGES REMOVED FOR FORUM LENGTH.
(II) NVIDIA(0): Setting mode "640x480"
(II) Loading extension NV-GLX
(II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
(II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
(==) NVIDIA(0): Backing store disabled
(==) NVIDIA(0): Silken mouse enabled
(**) Option "dpms"
(**) NVIDIA(0): DPMS enabled
(II) Loading extension NV-CONTROL
(==) RandR enabled
(II) NVIDIA(1): Setting mode "1280x1024"
(II) NVIDIA(1): NVIDIA 3D Acceleration Architecture Initialized
(II) NVIDIA(1): Using the NVIDIA 2D acceleration architecture
(==) NVIDIA(1): Backing store disabled
(==) NVIDIA(1): Silken mouse enabled
(**) Option "dpms"
(**) NVIDIA(1): DPMS enabled
(==) RandR enabled
(II) Entity 0 shares no resources
(II) Entity 1 shares no resources
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension XC-APPGROUP
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension XFree86-Bigfont
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
(II) Initializing built-in extension XEVIE
(II) Initializing extension GLX
error opening security policy file /usr/lib/xserver/SecurityPolicy
(**) Option "CoreKeyboard"
(**) Generic Keyboard: Core Keyboard
(**) Option "Protocol" "standard"
(**) Generic Keyboard: Protocol: standard
(**) Option "AutoRepeat" "500 30"
(**) Option "XkbRules" "xorg"
(**) Generic Keyboard: XkbRules: "xorg"
(**) Option "XkbModel" "pc105"
(**) Generic Keyboard: XkbModel: "pc105"
(**) Option "XkbLayout" "us"
(**) Generic Keyboard: XkbLayout: "us"
(**) Option "XkbOptions" "lv3:ralt_switch"
(**) Generic Keyboard: XkbOptions: "lv3:ralt_switch"
(**) Option "CustomKeycodes" "off"
(**) Generic Keyboard: CustomKeycodes disabled
(**) Option "Protocol" "ExplorerPS/2"
(**) Configured Mouse: Device: "/dev/input/mice"
(**) Configured Mouse: Protocol: "ExplorerPS/2"
(**) Option "CorePointer"
(**) Configured Mouse: Core Pointer
(**) Option "Device" "/dev/input/mice"
(**) Option "Emulate3Buttons" "true"
(**) Configured Mouse: Emulate3Buttons, Emulate3Timeout: 50
(**) Option "ZAxisMapping" "4 5"
(**) Configured Mouse: ZAxisMapping: buttons 4 and 5
(**) Configured Mouse: Buttons: 9
(II) XINPUT: Adding extended input device "Configured Mouse" (type: MOUSE)
(II) XINPUT: Adding extended input device "Generic Keyboard" (type: KEYBOARD)
(II) XINPUT: Adding extended input device "NVIDIA Event Handler" (type: Other)
(II) XINPUT: Adding extended input device "NVIDIA Event Handler" (type: Other)
    xkb_keycodes            { include "xfree86+aliases(qwerty)" };
    xkb_types                { include "complete" };
    xkb_compatibility        { include "complete" };
    xkb_symbols              { include "pc(pc105)+us+level3(ralt_switch)" };
    xkb_geometry            { include "pc(pc105)" };
(II) Configured Mouse: ps2EnableDataReporting: succeeded
Could not init font path element /usr/share/fonts/X11/TTF/, removing from list!
Could not init font path element /usr/share/fonts/X11/OTF, removing from list!
Could not init font path element /usr/share/fonts/X11/CID/, removing from list!


HappyTux 02-10-2007 11:45 AM

Alright try the file below it does not seem to want to find the information it needs from the monitor itself so you will need to put your refresh rate ranges in for each monitor like this example from my file.

Code:

# NEC P1250 +
Section "Monitor"
      DisplaySize      384  288    # mm
      Identifier  "Monitor0"
      VendorName  "NEC"
      ModelName    "P1250 +"
      HorizSync    31-110 # DDC-probed
      VertRefresh  55-160 # DDC-probed
      Option      "DPMS"  "true"
      Option      "BackingStore" "On"
EndSection

You need to add the HorizSync and VertRefresh numbers for your monitors to the right sections if you don't have the manuals for the monitors putting the make/model number into a Google search will usually find the specifications needed. BTW if needing to post the log file again post the whole thing in two separate posts so we can see how everything gets detected and I see from a previous edit I missed that you probably don't want the two different screens but most likely want one large desktop. Is this correct?


Code:

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 1.0  (buildmeister@builder26)  Mon Oct 16 22:13:48 PDT 2006

# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#  sudo dpkg-reconfigure -phigh xserver-xorg

Section "ServerLayout"
    Identifier    "Dual Head"
    Screen      0  "Screen0" 0 0
    Screen      1  "Screen1" RightOf  "Screen0"
    InputDevice    "Generic Keyboard"
    InputDevice    "Configured Mouse"
EndSection

Section "Files"

        # path to defoma fonts
    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/100dpi"
    FontPath        "/usr/share/X11/fonts/75dpi"
    FontPath        "/usr/share/fonts/X11/misc"
    FontPath        "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
EndSection

Section "Module"
    Load          "i2c"
    Load          "bitmap"
    Load          "ddc"
    Load          "extmod"
    Load          "freetype"
    Load          "glx"
    Load          "int10"
    Load          "type1"
    Load          "vbe"
    Load          "xtrap"
EndSection

Section "InputDevice"
    Identifier    "Generic Keyboard"
    Driver        "kbd"
    Option        "CoreKeyboard"
    Option        "XkbRules" "xorg"
    Option        "XkbModel" "pc105"
    Option        "XkbLayout" "us"
    Option        "XkbOptions" "lv3:ralt_switch"
EndSection

Section "InputDevice"
    Identifier    "Configured Mouse"
    Driver        "mouse"
    Option        "CorePointer"
    Option        "Device" "/dev/input/mice"
    Option        "Protocol" "ExplorerPS/2"
    Option        "ZAxisMapping" "4 5"
    Option        "Emulate3Buttons" "true"
EndSection


Section "Monitor"
    Identifier    "Monitor0"
    VendorName  "AOC"
    ModelName    "Spectrum"
    Option        "DPMS"
EndSection

Section "Monitor"
    Identifier    "Monitor1"
    VendorName  "Name"
    ModelName    "Model"
    Option        "DPMS"
EndSection

Section "Device"
    Identifier    "Card0"
    VendorName  "Nvidia"
    BoardName  "NVIDIA Corporation NV43 [GeForce 6600 GT]"
    Option      "IgnoreEDID" "on"
    Driver        "nvidia"
    BusID        "PCI:2:0:0"
EndSection

Section "Device"
    Identifier    "Card1"
    VendorName  "Nvidia"
    BoardName  "NVIDIA Corporation NV43 [GeForce 6600 GT]"
    Option      "IgnoreEDID" "on"
    Driver        "nvidia"
    BusID        "PCI:5:0:0"
EndSection

Section "Screen"
    Identifier    "Screen0"
    Device        "Card0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection    "Display"
        Depth      24
        Modes      "1280x1024" "1280x960" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection

Section "Screen"
    Identifier    "Screen1"
    Device        "Card1"
    Monitor        "Monitor1"
    DefaultDepth    24
    SubSection    "Display"
        Depth      24
        Modes      "1280x1024" "1280x960" "1024x768" "800x600" "640x480"
    EndSubSection
EndSection



All times are GMT -5. The time now is 04:08 PM.